/* =========================
   GLOBAL
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    overflow-x:hidden;
    background:#f8fafc;
}

.container{
    max-width:1400px;
    margin:auto;
    padding:0 20px;
}

/* =========================
   TOP HEADER
========================= */

.top-header{

    background:#0b1f33;

    color:#fff;

    height:50px;

    display:flex;
    align-items:center;

    transition:.4s ease;

    overflow:hidden;
}

.top-header.hide{

    height:0;

    opacity:0;
}

.top-header .container{

    width:100%;

    display:flex;
    align-items:center;
    justify-content:space-between;
}

.top-left,
.top-right{

    display:flex;
    align-items:center;
    gap:20px;
}

.top-left span{

    font-size:14px;
}

/* =========================
   BUTTONS
========================= */

.enquiry-btn{

    background:linear-gradient(
    135deg,
    #1d9bf0,
    #0f4c81
    );

    color:#fff;

    text-decoration:none;

    padding:10px 20px;

    border-radius:50px;

    font-size:14px;
    font-weight:600;

    transition:.3s;
}

.enquiry-btn:hover{

    transform:translateY(-2px);
}

.call-btn{

    background:#22c55e;

    color:#fff;

    text-decoration:none;

    padding:10px 20px;

    border-radius:50px;

    font-size:14px;
    font-weight:600;

    transition:.3s;
}

.call-btn:hover{

    transform:translateY(-2px);
}

/* =========================
   MAIN HEADER
========================= */

.main-header{

    position:sticky;

    top:0;

    z-index:9999;

    background:#fff;

    box-shadow:
    0 4px 20px rgba(0,0,0,.08);

    transition:.4s ease;
}

.main-header.shrink{

    box-shadow:
    0 10px 30px rgba(0,0,0,.12);
}

.main-header .container{

    height:90px;

    display:flex;
    align-items:center;
    justify-content:space-between;
}

/* =========================
   LOGO
========================= */

.logo img{

    height:60px;
    width:auto;

    display:block;
}

/* =========================
   NAVBAR
========================= */

.navbar ul{

    display:flex;
    align-items:center;

    gap:35px;

    list-style:none;
}

.navbar ul li{

    position:relative;
}

.navbar a{

    text-decoration:none;

    color:#111827;

    font-weight:600;

    font-size:15px;

    transition:.3s;
}

.navbar a:hover{

    color:#1d9bf0;
}

.navbar a.active{

    color:#1d9bf0;
}

/* =========================
   PRODUCTS DROPDOWN
========================= */

.dropdown-toggle{

    display:flex;
    align-items:center;
    gap:8px;
}

.dropdown-toggle i{

    font-size:12px;

    transition:.3s;
}

.dropdown:hover .dropdown-toggle i{

    transform:rotate(180deg);
}

/* =========================
   MEGA MENU
========================= */

.mega-menu{

    position:absolute;

    top:55px;
    left:50%;

    transform:
    translateX(-50%)
    translateY(20px);

    width:800px;

    background:#fff;

    display:flex;

    gap:30px;

    padding:30px;

    border-radius:16px;

    box-shadow:
    0 20px 60px rgba(0,0,0,.15);

    opacity:0;

    visibility:hidden;

    transition:.35s ease;

    z-index:999;
}

.dropdown:hover .mega-menu{

    opacity:1;

    visibility:visible;

    transform:
    translateX(-50%)
    translateY(0);
}

.mega-column{

    flex:1;

    display:flex;
    flex-direction:column;

    gap:10px;
}

.mega-column h4{

    color:#0f4c81;

    margin-bottom:10px;

    font-size:16px;
}

.mega-column a{

    padding:10px 12px;

    border-radius:10px;

    transition:.3s;
}

.mega-column a:hover{

    background:#f1f5f9;

    padding-left:18px;
}

/* =========================
   SEARCH
========================= */

.search-box{

    display:flex;

    align-items:center;

    border:1px solid #dbe2ea;

    border-radius:50px;

    overflow:hidden;

    transition:.3s;
}

.search-box:focus-within{

    box-shadow:
    0 10px 25px rgba(29,155,240,.25);
}

.search-box input{

    width:250px;

    border:none;
    outline:none;

    padding:12px 18px;
}

.search-box button{

    border:none;

    background:#0f4c81;

    color:#fff;

    padding:12px 18px;

    cursor:pointer;
}

/* =========================
   HAMBURGER
========================= */

.mobile-toggle{

    display:none;

    width:40px;

    height:40px;

    border:none;

    background:none;

    cursor:pointer;
}

.mobile-toggle span{

    display:block;

    width:28px;
    height:3px;

    margin:5px auto;

    background:#111;

    transition:.3s;
}

/* ===================================
   MOBILE DRAWER
=================================== */

.mobile-menu{

    position:fixed;

    top:0;
    right:-100%;

    width:85%;
    max-width:340px;

    height:100vh;

    background:#fff;

    z-index:10000;

    transition:.4s ease;

    overflow-y:auto;

    box-shadow:
    -10px 0 40px rgba(0,0,0,.15);
}

.mobile-menu.active{

    right:0;
}

/* ===================================
   MOBILE HEADER
=================================== */

.mobile-header{

    height:80px;

    display:flex;

    align-items:center;
    justify-content:space-between;

    padding:0 20px;

    border-bottom:
    1px solid #e5e7eb;
}

.mobile-header img{

    height:45px;
}

.close-menu{

    border:none;

    background:none;

    font-size:26px;

    cursor:pointer;
}

/* ===================================
   MOBILE SEARCH
=================================== */

.mobile-search{

    padding:20px;
}

.mobile-search{

    display:flex;

    border:1px solid #dbe2ea;

    border-radius:50px;

    overflow:hidden;
}

.mobile-search input{

    flex:1;

    border:none;
    outline:none;

    padding:12px 15px;
}

.mobile-search button{

    border:none;

    background:#0f4c81;

    color:#fff;

    padding:0 18px;
}

/* ===================================
   MOBILE MENU LINKS
=================================== */

.mobile-menu ul{

    list-style:none;

    padding:10px 20px;
}

.mobile-menu ul li{

    border-bottom:
    1px solid #f1f5f9;
}

.mobile-menu ul li a{

    display:flex;

    justify-content:space-between;
    align-items:center;

    text-decoration:none;

    color:#111827;

    font-weight:600;

    padding:16px 0;
}

/* ===================================
   MOBILE DROPDOWN
=================================== */

.mobile-dropdown-btn{

    cursor:pointer;
}

.mobile-submenu{

    max-height:0;

    overflow:hidden;

    transition:.4s ease;

    padding-left:15px;
}

.mobile-dropdown.active .mobile-submenu{

    max-height:500px;
}

.mobile-submenu a{

    display:block;

    font-size:14px;

    padding:12px 0;

    color:#64748b;
}

/* ===================================
   MOBILE BUTTONS
=================================== */

.mobile-buttons{

    padding:20px;

    display:flex;
    flex-direction:column;

    gap:12px;
}

.mobile-buttons .enquiry-btn,
.mobile-buttons .call-btn{

    width:100%;

    justify-content:center;

    display:flex;
    align-items:center;
}

/* ===================================
   OVERLAY
=================================== */

.menu-overlay{

    position:fixed;

    inset:0;

    background:
    rgba(0,0,0,.55);

    opacity:0;

    visibility:hidden;

    transition:.4s ease;

    z-index:9999;
}

.menu-overlay.active{

    opacity:1;

    visibility:visible;
}

/* ===================================
   HAMBURGER TO CROSS
=================================== */

.mobile-toggle.active span:nth-child(1){

    transform:
    rotate(45deg)
    translate(6px,6px);
}

.mobile-toggle.active span:nth-child(2){

    opacity:0;
}

.mobile-toggle.active span:nth-child(3){

    transform:
    rotate(-45deg)
    translate(6px,-6px);
}

/* ===================================
   TABLET
=================================== */

@media(max-width:1024px){

    .navbar{

        display:none;
    }

    .mobile-toggle{

        display:block;
    }

    .search-box input{

        width:180px;
    }
}

/* ===================================
   MOBILE
=================================== */

@media(max-width:768px){

    .top-header{

        display:none;
    }

    .main-header .container{

        height:75px;
    }

    .logo img{

        height:50px;
    }

    .search-box{

        display:none;
    }

    .mobile-toggle{

        display:block;
    }
}

/* ===================================
   SMALL MOBILE
=================================== */

@media(max-width:480px){

    .mobile-menu{

        width:100%;
        max-width:none;
    }

    .logo img{

        height:42px;
    }

    .main-header .container{

        padding:0 15px;
    }
}


/* ++++++++++++++++++++++++++++ BANNER IMAGE +++++++++++++++++++++++++++++ */
.phe-hero {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
  background: #f5f5f5;
}

/* image wrapper */
.phe-hero__picture {
  width: 100%;
  display: block;
}

/* image full width */
.phe-hero__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;

  /* refresh zoom effect */
  transform: scale(0.85);
  opacity: 0;
  animation: pheZoomIn 1.2s ease-out forwards;
}

/* animation */
@keyframes pheZoomIn {
  from {
    transform: scale(0.85);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* mobile tweaks */
@media (max-width: 768px) {
  .phe-hero__img {
    width: 100%;
  }
}

/* ++++++++++++++++++++++++++ poly section ++++++++++++++++++++++++++ */
.poly-gallery-section{
    padding:80px 0;
    background:#f5f5f5;
}

.poly-container{
    width:90%;
    max-width:1400px;
    margin:auto;
}

.poly-main-title{
    text-align:center;
    font-size:42px;
    font-weight:700;
    margin-bottom:60px;
    position:relative;
}

.poly-main-title::after{
    content:"";
    width:100px;
    height:4px;
    background:#d40000;
    position:absolute;
    left:50%;
    bottom:-15px;
    transform:translateX(-50%);
    border-radius:20px;
}

/* IMPORTANT */

.poly-gallery-slider{
    overflow:hidden;
    position:relative;
    padding:10px 10px 60px;
}

.poly-gallery-slider .swiper-wrapper{
    align-items:stretch;
}

.poly-gallery-slider .swiper-slide{
    height:auto;
}

.poly-gallery-card{
    display:block;
    position:relative;
    overflow:hidden;
    border-radius:20px;
    height:350px;
    text-decoration:none;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
}

.poly-gallery-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:.6s;
}

.poly-overlay{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    padding:25px;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.9),
        rgba(0,0,0,.4),
        transparent
    );
    transition:.4s;
}

.poly-overlay h3{
    color:#fff;
    margin:0;
    font-size:24px;
    text-align:center;
}

.poly-view-btn{
    display:none;
    margin-top:15px;
    padding:10px 22px;
    background:#fff;
    color:#111;
    border-radius:30px;
    font-weight:600;
}

.poly-gallery-card:hover img{
    transform:scale(1.1);
}

.poly-gallery-card:hover .poly-overlay{
    top:0;
    bottom:0;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    background:rgba(0,0,0,.75);
}

.poly-gallery-card:hover .poly-view-btn{
    display:inline-block;
}

/* Arrows */

.poly-swiper-prev,
.poly-swiper-next{
    width:55px;
    height:55px;
    background:#fff;
    border-radius:50%;
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    z-index:20;
    display:flex;
    justify-content:center;
    align-items:center;
    cursor:pointer;
    box-shadow:0 5px 20px rgba(0,0,0,.15);
}

.poly-swiper-prev{
    left:0;
}

.poly-swiper-next{
    right:0;
}

/* Responsive */

@media(max-width:991px){

    .poly-gallery-card{
        height:300px;
    }

}

@media(max-width:767px){

    .poly-gallery-card{
        height:250px;
    }

    .poly-swiper-prev,
    .poly-swiper-next{
        display:none;
    }

}


/* +++++++++++++++++++++++++++  Polytronic Corporation +++++++++++++++++++++++++ */
/* SECTION */
.polytronic-corpv2-section {
  position: relative;
  width: 100%;
  padding: 90px 20px;
  color: #fff;
  overflow: hidden;
  font-family: "Poppins", sans-serif;
}

/* BG */
.polytronic-corpv2-section__bg-layer {
  position: absolute;
  inset: 0;
}

.polytronic-corpv2-section__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY */
.polytronic-corpv2-section__overlay-layer {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.85));
}

/* TOP RIGHT BADGE */
.polytronic-corpv2-section__trust-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 85px;
  z-index: 5;
}

/* CONTAINER */
.polytronic-corpv2-section__container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* TOP TEXT */
.polytronic-corpv2-section__top-text {
  font-size: 18px;
  line-height: 1.6;
  max-width: 900px;
  margin: auto;
}

/* READ MORE WRAP */
.polytronic-corpv2-section__readmore-wrap {
  margin-top: 20px;
}

/* BUTTONS */
.polytronic-corpv2-section__btn-primary {
  padding: 10px 25px;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

/* STATS GRID */
.polytronic-corpv2-section__stats-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* ITEM */
.polytronic-corpv2-section__stats-item {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 14px;
}

.polytronic-corpv2-section__stats-item img {
  width: 30px;
}

.polytronic-corpv2-section__stats-item span {
  display: block;
  font-weight: 600;
  margin-top: 3px;
}

/* CTA */
.polytronic-corpv2-section__cta-wrapper {
  margin-top: 60px;
}

.polytronic-corpv2-section__cta-button {
  margin-top: 15px;
  padding: 12px 30px;
  background: #fff;
  color: #000;
  border: none;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .polytronic-corpv2-section__stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .polytronic-corpv2-section__top-text {
    font-size: 16px;
  }
}
/* INITIAL STATE */
.anim-left,
.anim-right,
.anim-up {
  opacity: 0;
  transition: all 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform, opacity;
}

/* START POSITIONS */
.anim-left { transform: translateX(-120px); }
.anim-right { transform: translateX(120px); }
.anim-up { transform: translateY(80px); }

/* ACTIVE STATE (WHEN IN VIEW) */
.anim-active {
  opacity: 1;
  transform: translate(0,0);
}


/* ++++++++++++++++++++++++++++++++ Magnetic Measuring Instruments+++++++++++++++++++++++++ */
.magnetic-gallery-section{
    padding:80px 0;
    background:#f5f5f5;
}

.magnetic-container{
    width:90%;
    max-width:1400px;
    margin:auto;
}

/* Masonry Layout */

.magnetic-gallery-grid{
    column-count:3;
    column-gap:25px;
}

.magnetic-gallery-item{
    position:relative;
    display:block;
    overflow:hidden;
    border-radius:20px;
    margin-bottom:25px;
    break-inside:avoid;
    text-decoration:none;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
}

.magnetic-gallery-item img{
    width:100%;
    display:block;
    transition:0.8s ease;
}

.magnetic-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.75);
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:#fff;
    padding:30px;
    opacity:0;
    transition:.5s ease;
}

.magnetic-gallery-item:hover .magnetic-overlay{
    opacity:1;
}

.magnetic-gallery-item:hover img{
    transform:scale(1.12);
}

.magnetic-overlay h3{
    font-size:32px;
    font-weight:700;
    margin-bottom:20px;
    line-height:1.3;
}

.magnetic-overlay ul{
    padding:0;
    margin:0 0 25px;
    list-style:none;
}

.magnetic-overlay ul li{
    margin-bottom:10px;
    font-size:18px;
    font-weight:500;
}

.magnetic-view-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 30px;
    background:#fff;
    color:#111;
    border-radius:40px;
    font-weight:700;
    transition:.3s;
}

.magnetic-view-btn:hover{
    background:#e30613;
    color:#fff;
}

/* Responsive */

@media(max-width:991px){

    .magnetic-gallery-grid{
        column-count:2;
    }

    .magnetic-overlay h3{
        font-size:26px;
    }

    .magnetic-overlay ul li{
        font-size:16px;
    }
}

@media(max-width:767px){

    .magnetic-gallery-grid{
        column-count:1;
    }

    .magnetic-gallery-section{
        padding:60px 0;
    }

    .magnetic-overlay h3{
        font-size:22px;
    }

    .magnetic-overlay ul li{
        font-size:15px;
    }

    .magnetic-view-btn{
        padding:12px 22px;
        font-size:14px;
    }
}
.magnetic-section-heading{
    text-align:center;
    max-width:800px;
    margin:0 auto 60px;
}

.magnetic-subtitle{
    display:inline-block;
    color:#e30613;
    font-size:15px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:12px;
}

.magnetic-main-title{
    font-size:35px;
    font-weight:700;
    color:#111;
    margin:0;
    line-height:1.2;
    position:relative;
    display:inline-block;
    padding-bottom:18px;
}

.magnetic-main-title::after{
    content:'';
    width:90px;
    height:4px;
    background:#e30613;
    position:absolute;
    left:50%;
    bottom:0;
    transform:translateX(-50%);
    border-radius:50px;
}

.magnetic-description{
    margin-top:25px;
    font-size:17px;
    line-height:1.8;
    color:#666;
}

@media(max-width:991px){

    .magnetic-main-title{
        font-size:38px;
    }

}

@media(max-width:767px){

    .magnetic-main-title{
        font-size:28px;
    }

    .magnetic-description{
        font-size:15px;
    }

}


/* +++++++++++++++++++++++++++ contact us ++++++++++++++++++++++ */
.form-contact{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#0b0f1a;
  position:relative;
  padding:60px 20px;
  font-family:system-ui;
  overflow:hidden;
}

/* background glow */
.form-bg-blur{
  position:absolute;
  width:500px;
  height:500px;
  background:radial-gradient(circle,#4b5cff55,#0000);
  top:-100px;
  left:-100px;
  filter:blur(60px);
}

.form-wrapper{
  width:1100px;
  display:flex;
  gap:30px;
  z-index:2;
}

/* LEFT PANEL */
.form-left-panel{
  flex:1;
  color:white;
}

.form-title-block h1{
  font-size:40px;
  margin:0;
  line-height:1.1;
}

.form-title-block p{
  opacity:0.7;
  margin-top:10px;
}

.form-glass-card{
  margin-top:30px;
  padding:25px;
  border-radius:18px;
  background:rgba(255,255,255,0.06);
  backdrop-filter:blur(15px);
  border:1px solid rgba(255,255,255,0.1);
}

.form-row{
  display:flex;
  gap:15px;
  margin-bottom:20px;
}

.form-dot{
  width:10px;
  height:10px;
  background:#4b5cff;
  border-radius:50%;
  margin-top:6px;
}

.form-row h3{
  margin:0;
  font-size:16px;
}

.form-row p{
  margin:5px 0 0;
  opacity:0.7;
  font-size:14px;
}

.form-link{
  color:#4b5cff;
  font-size:13px;
  display:inline-block;
  margin-top:5px;
}

.form-social{
  margin-top:30px;
  display:flex;
  align-items:center;
  gap:15px;
  color:white;
  opacity:0.8;
}

.form-icon-btn{
  display:inline-block;
  padding:8px 12px;
  border-radius:8px;
  background:rgba(255,255,255,0.08);
  margin-right:8px;
  color:white;
  text-decoration:none;
  transition:0.3s;
}

.form-icon-btn:hover{
  background:#4b5cff;
  transform:translateY(-2px);
}

/* RIGHT PANEL */
.form-right-panel{
  flex:1;
}

.form-card{
  background:white;
  border-radius:20px;
  padding:40px;
  box-shadow:0 20px 60px rgba(0,0,0,0.4);
}

.form-card h2{
  margin:0 0 25px;
}

/* FLOAT LABEL INPUT */
.form-group{
  position:relative;
  margin-bottom:25px;
}

.form-group input,
.form-group textarea{
  width:100%;
  padding:14px;
  border:none;
  border-bottom:2px solid #ddd;
  outline:none;
  background:transparent;
  font-size:15px;
}

.form-group textarea{
  height:120px;
  resize:none;
}

.form-group label{
  position:absolute;
  left:0;
  top:14px;
  color:#888;
  transition:0.3s;
  pointer-events:none;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label{
  top:-10px;
  font-size:12px;
  color:#4b5cff;
}

.form-card button{
  width:100%;
  padding:14px;
  border:none;
  border-radius:12px;
  background:linear-gradient(135deg,#4b5cff,#7b61ff);
  color:white;
  font-size:16px;
  cursor:pointer;
  transition:0.3s;
}

.form-card button:hover{
  transform:scale(1.03);
}

/* RESPONSIVE */
@media(max-width:900px){
  .form-wrapper{
    flex-direction:column;
  }

  .form-title-block h1{
    font-size:28px;
  }
}

/* +++++++++++++++++++++++++++++ Ratings & Reviews++++++++++++++++++++++ */
.review-section{
    padding:80px 20px;
    background:#f8fafc;
    font-family:'Poppins',sans-serif;
}

.review-container{
    max-width:1400px;
    margin:auto;
}

.review-header{
    text-align:center;
    margin-bottom:60px;
}

.review-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 22px;
    border-radius:50px;
    background:#ffffff;
    color:#2563eb;
    font-size:14px;
    font-weight:600;
    box-shadow:0 10px 30px rgba(37,99,235,.08);
}

.review-header h2{
    margin:18px 0 10px;
    font-size:42px;
    font-weight:700;
    color:#0f172a;
}

.review-header p{
    color:#64748b;
    font-size:16px;
}

.review-overview{
    display:grid;
    grid-template-columns:320px 1fr 400px;
    gap:25px;
    margin-bottom:70px;
}

.review-score-card,
.review-distribution,
.review-satisfaction{
    background:#ffffff;
    border-radius:24px;
    padding:30px;
    box-shadow:0 10px 40px rgba(15,23,42,.06);
    border:1px solid #eef2f7;
}

/* Rating Circle */

.review-score-card{
    text-align:center;
}

.review-score-circle{
    width:170px;
    height:170px;
    margin:auto;
    border-radius:50%;
    background:linear-gradient(135deg,#2563eb,#3b82f6);
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    color:#fff;
    box-shadow:0 20px 45px rgba(37,99,235,.25);
    position:relative;
}

.review-score-circle::before{
    content:'';
    position:absolute;
    inset:10px;
    border:2px dashed rgba(255,255,255,.3);
    border-radius:50%;
}

.review-score-circle h3{
    margin:0;
    font-size:58px;
    font-weight:700;
}

.review-score-circle span{
    font-size:18px;
    opacity:.9;
}

.review-stars{
    margin-top:22px;
    font-size:28px;
    color:#2563eb;
    letter-spacing:4px;
}

.review-score-card p{
    color:#64748b;
    margin-top:10px;
}

/* Progress Bar */

.review-progress-row,
.review-metric{
    display:grid;
    grid-template-columns:55px 1fr 60px;
    gap:15px;
    align-items:center;
    margin-bottom:22px;
}

.review-progress{
    height:12px;
    background:#e2e8f0;
    border-radius:50px;
    overflow:hidden;
}

.review-fill{
    height:100%;
    border-radius:50px;
    background:linear-gradient(90deg,#65a30d,#84cc16);
}

.review-progress-row strong,
.review-metric b{
    color:#334155;
    font-weight:600;
}

.review-satisfaction h4{
    text-align:center;
    font-size:24px;
    margin-bottom:30px;
    color:#0f172a;
}

/* Review Cards */

.review-title h3{
    font-size:30px;
    color:#0f172a;
    margin-bottom:30px;
}

.review-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.review-card{
    background:#ffffff;
    border-radius:24px;
    padding:30px;
    display:flex;
    gap:18px;
    border:1px solid #eef2f7;
    box-shadow:0 10px 30px rgba(15,23,42,.05);
    transition:.35s ease;
}

.review-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 50px rgba(15,23,42,.12);
}

.review-avatar{
    width:70px;
    height:70px;
    min-width:70px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#2563eb,#60a5fa);
    color:#fff;
    font-size:28px;
    font-weight:700;
}

.review-stars-small{
    color:#2563eb;
    font-size:18px;
    letter-spacing:2px;
    margin-bottom:10px;
}

.review-content h4{
    margin:0;
    color:#0f172a;
    font-size:22px;
}

.review-content span{
    display:block;
    color:#64748b;
    margin:6px 0 14px;
}

.review-content p{
    color:#475569;
    line-height:1.8;
    margin-bottom:15px;
}

.review-content small{
    color:#94a3b8;
}

/* Button */

.review-btn-wrap{
    text-align:center;
    margin-top:50px;
}

.review-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:16px 36px;
    text-decoration:none;
    border-radius:50px;
    color:#fff;
    font-weight:600;
    background:linear-gradient(135deg,#2563eb,#3b82f6);
    box-shadow:0 15px 30px rgba(37,99,235,.25);
    transition:.3s;
}

.review-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 20px 40px rgba(37,99,235,.35);
}

/* Responsive */

@media(max-width:1200px){

    .review-overview{
        grid-template-columns:1fr;
    }

    .review-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .review-header h2{
        font-size:32px;
    }

    .review-grid{
        grid-template-columns:1fr;
    }

    .review-progress-row,
    .review-metric{
        grid-template-columns:45px 1fr 50px;
    }

}

/* ++++++++++++++++++++++++++++ footer ++++++++++++++++++++++++++ */
.footer-section{
    background:#1f2937;
    color:#ffffff;
    padding-top:70px;
}

.footer-container{
    max-width:1300px;
    margin:auto;
    padding:0 20px 60px;
    display:grid;
    grid-template-columns:1.5fr 1fr 1.2fr 1fr;
    gap:60px;
}

.footer-logo{
    width:260px;
    max-width:100%;
    background:#fff;
    padding:12px;
    border-radius:12px;
    margin-bottom:25px;
}

.footer-about p{
    color:#d1d5db;
    line-height:1.9;
    font-size:15px;
}

.footer-title{
    font-size:28px;
    font-weight:700;
    margin-bottom:25px;
    position:relative;
}

.footer-title::after{
    content:"";
    width:60px;
    height:3px;
    background:#4f46e5;
    position:absolute;
    left:0;
    bottom:-10px;
    border-radius:50px;
}

.footer-links{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-links li{
    margin-bottom:18px;
}

.footer-links a{
    color:#d1d5db;
    text-decoration:none;
    transition:.3s;
    line-height:1.6;
}

.footer-links a:hover{
    color:#ffffff;
    padding-left:8px;
}

.footer-contact p{
    color:#d1d5db;
    line-height:1.9;
    margin-bottom:20px;
}

.footer-contact a{
    display:block;
    color:#d1d5db;
    text-decoration:none;
    margin-bottom:15px;
    transition:.3s;
}

.footer-contact a:hover{
    color:#ffffff;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.12);
    padding:22px 20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;
    max-width:1300px;
    margin:auto;
}

.footer-bottom p{
    margin:0;
    color:#cbd5e1;
    font-size:14px;
}

/* Tablet */

@media(max-width:991px){

    .footer-container{
        grid-template-columns:1fr 1fr;
        gap:40px;
    }

}

/* Mobile */

@media(max-width:768px){

    .footer-container{
        grid-template-columns:1fr;
        gap:35px;
    }

    .footer-title{
        font-size:24px;
    }

    .footer-bottom{
        text-align:center;
        justify-content:center;
        flex-direction:column;
    }

    .footer-logo{
        width:220px;
    }

}