
  /**********************************/
/********** General CSS ***********/
/**********************************/
body {
    color: #555555;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    background: #ffffff;
    margin: 0%;
    padding: 0px;
    padding-top: 100px;
}


a {
    color: #FFD662;
    transition: .3s;
}

a:hover,
a:active,
a:focus {
    color: #333333;
    outline: none;
    text-decoration: none;
}

p {
    color: #555555;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #333333;
    font-family: 'Oswald', sans-serif;
}

/* TOP BAR */
.top-bar {
    position: relative;   /* NOT fixed */
    top: auto;
    width: 100%;
    z-index: auto;
    background: #387DF8;          /* light background */
    color: #000;
    font-size: 14px;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}


/* LEFT SIDE */
.top-left {
    display: flex;
    align-items: center;
    gap: 30px;                    /* space between items */
}

.top-left span {
    display: flex;
    align-items: center;
    gap: 8px;                     /* space between icon & text */
}

.top-left i {
    color: #000;
    font-size: 13px;
}

/* LINKS */
.top-bar a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
}

.top-bar a:hover {
    text-decoration: underline;
}

/* RIGHT SIDE (SOCIAL ICONS) */
.top-right {
    display: flex;
    align-items: center;
    gap: 18px;                    /* space between icons */
}

.top-right a {
    color: #000;
    font-size: 15px;
    transition: 0.3s ease;
}

.top-right a:hover {
    opacity: 0.7;
}

/**********************************
*********** NAV BAR CSS ***********
**********************************/

/* MAIN NAV WRAPPER */
#nav {
    position: fixed;        /* FLOAT ABOVE HEADER */
    top: 0;
    left: 0;
    width: 100%;
    min-height: 158px;
    height: 80px;

    background: white;
    box-shadow: none;
    z-index: 5;

    box-shadow: 0 3px 10px rgba(0,0,0,0.12);
}


/* NAVBAR CONTAINER */
#nav .navbar {
   max-width: 1140px;
    margin: auto;
    padding: 5px 0;
    background: transparent !important;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO IMAGE */
#nav .navbar img.certificates {
     width: 100px;
    height: auto;
    display: block;
}

/* CERTIFICATE IMAGE */
#nav .navbar img.certificate {
    width: 200px;
    height: auto;
    display: block;
}

.certificat {
    width: 100px;
    margin-left: 60px;
    height: auto;
    display: block;
}


/* NAV LINKS */
#nav .navbar-nav {
    display: flex;
    align-items: center;
    margin-left: 170px;
   
}

#nav .navbar-light .nav-link {
   position: relative;
    color: #0a2e6f;             /* DARK FOR HEADER IMAGE */
    font-size: 20px;
    font-weight: 700;
    padding: 12px 18px;
    letter-spacing: 0.5px;
     white-space: nowrap;
    font-family: 'Playfair Display', serif;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

/* UNDERLINE EFFECT */
#nav .navbar-light .nav-link::after {
    content: "";
    position: absolute;
    width: 36px;
    height: 2px;
    left: 50%;
    bottom: 4px;
    transform: translateX(-50%);
    background: #0a2e6f;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#nav .navbar-light .nav-link:hover::after,
#nav .navbar-light .nav-link.active::after {
      opacity: 1;
}

#nav .navbar-light .nav-link:hover,
#nav .navbar-light .nav-link.active {
    color: #0081a1;
}

/* TOGGLER */
.navbar-toggler {
    border: none;
    outline: none;
}


/* ===== MEGA DROPDOWN ===== */
/* ===== MEGA DROPDOWN ===== */
.mega-dropdown {
    position: relative;
}

/* MENU PANEL */
.mega-menu {
    position: fixed;
    top: 130px;
    left: 20%;
    right: 2%;
    padding: 18px;

    background: linear-gradient(135deg, #3a99dd, #ffffff 65%);
    border-radius: 16px;

    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: 0.35s ease;

    z-index: 9999;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* SHOW MENU */
.mega-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* GRID */
.mega-container {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 14px;
}

/* PRODUCT CARD */
.mega-item {
    background: linear-gradient(to bottom right, #ffffff, #dbeeff);
    border-radius: 12px;
    padding: 12px 8px;
    text-align: center;
    transition: 0.3s ease;
}

/* IMAGE HOLDER (IMPORTANT FIX) */
.mega-img {
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mega-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* TEXT */
.mega-item h4 {
    font-size: 13px;
    color: #0d6efd;
    margin: 6px 0 2px;
}

.mega-item span {
    font-size: 11px;
    color: #444;
}

/* HOVER */
.mega-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(13,110,253,0.25);
}
/* ================= MOBILE NAV FIX ================= */
/* ================= MOBILE RESPONSIVE (MERGED) ================= */
/* ================= MOBILE ONLY ================= */
@media (max-width: 991px) {

    html, body {
        margin: 0;
        padding: 0;
        overflow-x: hidden;
    }

    /* ================= TOP BAR ================= */
    .top-bar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: #387DF8;
        padding: 4px 8px;
        font-size: 12px;
        z-index: 1200;
    }

     .phonesize{
        font-size: 8px;
    }
    .emailsize{
        margin-left: -40px;
    }


    .top-bar .container {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }

    .top-left {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .top-right {
        display: flex;
        gap: 12px;
    }

    /* ================= NAV ================= */
    #nav {
        position: fixed;
        top: -45px;
        left: 0;
        width: 100%;
        z-index: 1100;
    }

    #nav .navbar {
        position: fixed;
        top: 55px;
        left: 0;
        width: 100%;
        background: #ffffff !important;
        box-shadow: 0 3px 8px rgba(0,0,0,0.12);
        border-bottom: none !important;
        margin: 0;
        padding: 2px 0px;
        z-index: 1100;
    }

    #nav .navbar .container {
        position: relative;   /* anchor for absolute positioning */
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0;
        padding-right: 10px;
    }

    /* ================= LOGO ================= */
    #nav .navbar img.certificate {
        width: 150px;
        height: auto;
        position: relative;
        z-index: 1;
    }

     #nav .navbar img.certificat{
        width: 63px !important;
        margin-left: -70px !important;
     }
     
    /* ================= CERTIFICATE IMAGE (CENTER LAYER) ================= */
    #nav .navbar img.certificates {
        display: block !important;
        position: absolute;
        left: 75%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 80px;
        height: auto;
        z-index: 2;
        pointer-events: none;
    }

    /* ================= NAV TOGGLER ================= */
    .navbar-toggler {
        padding: 4px 6px;
        border: 1px solid #ccc;
        position: relative;
        z-index: 3;
    }

    .navbar-toggler-icon {
        width: 18px;
        height: 18px;
    }

    /* ================= MENU ================= */
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        border-top: 1px solid #eee;
        z-index: 1000;
    }

    .navbar-nav {
        margin-left: 0 !important;
        padding: 0px;

        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .navbar-nav .nav-item {
        flex: 1;
        text-align: center;
        min-width: 0;
    }

    .navbar-nav .nav-link {
        font-size: 12px !important;
        padding: 4px 0px;
        color: #0a2e6f;
        white-space: nowrap;
        text-transform: uppercase;
        overflow: hidden;
    }

    /* ================= REMOVE MEGA MENU ================= */
    .mega-menu,
    .mega-dropdown:hover .mega-menu {
        display: none !important;
    }

    .mega-dropdown > a::after {
        display: none;
    }

    /* ================= PAGE OFFSET ================= */
    body {
        padding-top: 30px;
    }
}


/*aquarise css*/
/* AQUARISE SECTION STYLING */
/* ================================
   GLOBAL RESET (NO SIDE GAPS)
================================ */
html, body {
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    background: #f6f9ff;
    padding-top: 75px;
     text-align: justify;
    text-justify: inter-word;

}

/* ================================
   PRODUCT INTRO SECTION
================================ */
.product-intro {
    background: linear-gradient(135deg, #ffffff 60%, #eef4ff 100%);
    padding: 60px 0;
}

/* Heading */
.product-heading {
    font-family: 'Oswald', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #194ea9;
    margin-bottom: 20px;

    padding: 16px 24px;
    border-radius: 14px;

    background: linear-gradient(
        to right,
        #ffffff 0%,
        #e6f0ff 25%,
        #e6f0ff 75%,
        #ffffff 100%
    );
}


/* Description */
.product-description {
    font-family: 'Lato', sans-serif;
    font-size: 20px;
    line-height: 1.8;
    color: #444;
}

.product-intro {
    padding: 80px 0 100px;
}

.product-heading {
    text-align: center;
    margin-bottom: 25px;
}

.product-description {
    margin-bottom: 35px;
}

.product-intro {
    padding: 80px 0 100px;
}

.product-heading {
    text-align: center;
    margin-bottom: 25px;
}

.product-description {
    margin-bottom: 35px;
}

.product-images {
        max-width: 100px;   /* reduce image width */
        width: 13%;
        height: auto;       /* keep aspect ratio */
        margin: 0 auto;     /* center image */
    }

.product-images-cutmaxx{
    width: 70%;
}
.product-images-drainforce {
        max-width: 500px;   /* reduce image width */
        width: 40%;
        height: auto;       /* keep aspect ratio */
        margin: 0 auto;     /* center image */
    }

    .product-images-wellrise {
        max-width: 800px;   /* reduce image width */
        width: 55%;
        height: auto;       /* keep aspect ratio */
        margin: 0 auto;     /* center image */
    }
    .product-image-prime{
        max-width: 500%;   /* reduce image width */
        width: 110%;
        height: auto;       /* keep aspect ratio */
        margin: 0 auto;

    }

/* Tablet: 768px - 1024px */
@media (max-width: 1024px) {
    .product-intro {
        padding: 60px 15px 80px;
    }

    .product-heading {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .product-description {
        font-size: 18px;
        line-height: 1.6;
        margin-bottom: 30px;
    }
}

/* Tablet: 768px - 1024px */
@media (max-width: 1024px) {
    .product-intro {
        padding: 60px 15px 80px;
    }

    .product-heading {
        font-size: 36px;
        margin-top: 0;       /* remove extra space above */
        margin-bottom: 20px;
    }

    .product-description {
        font-size: 18px;
        line-height: 1.6;
        margin-bottom: 30px;
    }
}

/* Mobile: ≤ 767px */
@media (max-width: 767px) {
    .product-intro {
        padding: 50px 15px 60px;
        margin-top: -20px;
    }

    .product-heading {
        font-size: 28px;
        margin-top: 0;       /* remove extra space above */
        margin-bottom: 15px;
    }

    .product-description {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 20px;
    }
}

/* Small Mobile: ≤ 575px */
@media (max-width: 575px) {
    .product-intro {
        padding: 40px 10px 50px;
    }

    .product-heading {
        font-size: 24px;
        margin-top: 0;       /* remove extra space above */
        margin-bottom: 12px;
    }

    .product-description {
        font-size: 14px;
        line-height: 1.4;
        margin-bottom: 15px;
    }
}


/* ================================
   FEATURE BOX
================================ */
.product-feature-box {
    background: #ffffff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(56, 125, 248, 0.12);
}

.product-feature-box {
    padding: 30px 20px;   /* reduced size */
}

/* Feature circle */
.feature-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffffff, #ffffff);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}
.featureImages{
    width: 85px;
    height: 85px;
    object-fit: contain;
}
.feature-circle i {
    font-size: 36px;
    color: #ffffff;
}

/* Feature text */
.feature-box h5 {
    font-size: 14px;
    font-weight: 700;
    color: #387DF8;
    margin: 0;
}

/* Product Image */
.product-image {
    max-width: 85%;
}
@media (max-width: 767px) {
  .featureImages{
    width: 55px;
    height: 65px;
    object-fit: contain;
}
}


/* ================================
    TECHNICAL TECHNICAL SPECIFICATIONS
================================ */
.technical-specs {
    background: linear-gradient(180deg, #eef4ff, #ffffff);
    padding: 0px;
    
}
.text-content p{
  color: white;
}

/* Tech Heading */
.tech-heading {
    font-family: 'Oswald', sans-serif;
    font-size: 36px;
    color: #194ea9;
    font-weight: 700;
    text-transform: uppercase;
    padding-left: 25px;
    position: relative;
}

.tech-heading::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    height: 80%;
    width: 6px;
    background: linear-gradient(180deg, #d3e3ff, #1e5eff);
    border-radius: 10px;
}

/* ================================
   TECH BOXES
================================ */
/* Section */
.technical-specs {
  background: linear-gradient(180deg, #eef4ff, #ffffff);
  padding: 0px;
  margin-top: 20px;
}
   .text-content {
        margin-left: 40px;     /* mobile */
        padding: 0 7px;    /* optional for spacing */
    }

/* Heading */
.tech-heading {
  font-family: 'Oswald', sans-serif;
  font-size: 36px;
  color: #194ea9;
  font-weight: 700;
  text-transform: uppercase;
  padding-left: 25px;
  position: relative;
}

.tech-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  height: 80%;
  width: 6px;
  background: linear-gradient(180deg, #387DF8, #1e5eff);
  border-radius: 10px;
}

/* Card */
.rating-card {
  height: 90px;
  background: linear-gradient(90deg, #aefcffa4, #387DF8);
  border-radius: 50px;
  display: flex;
  align-items: center;
  padding-left: 70px;
  position: relative;
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
  max-width: 300px;
  width: 100%;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Hover animation */
.rating-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 18px 35px rgba(25,78,169,0.35);
}

/* Icon */
.icon-circle {
  position: absolute;
  left: -20px;
  width: 85px;
  height: 85px;
  background: #387DF8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease;
}

.rating-card:hover .icon-circle {
  transform: rotate(6deg) scale(1.08);
}

.icon-circle img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}
.col-md-4 {
  display: flex;
  justify-content: center;
}


/* Text */
.text-content h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.text-content p {
  margin: 3px 0 0;
  font-size: 14px;
  opacity: 0.9;
}
.technical-specs .row {
    row-gap: 24px;   /* adjust value as needed */
}
/* ===== MOBILE (≤ 575px) ===== */
@media (max-width: 575px) {

  body {
    overflow-x: hidden;
  }

 .text-content {
        margin-left: 5px;     /* mobile */
        padding: 0px 5px;    /* optional for spacing */
    }

  /* GRID layout */
  
  /* 🔥 REMOVE GAP BELOW HEADING */
  .technical-specs .mb-5 {
    margin-bottom: 0 !important;   /* kill mb-5 */
    padding: 0;
    grid-column: 1 / -1;
  }

  .tech-heading {
    margin: 0;
    padding-left: 0;
    font-size: 18px;
    text-align: center;
  }

  /* Row should NOT add spacing */
  .technical-specs .row {
    margin: 0;
    padding: 0;
    grid-column: 1 / -1;
  }

  /* Remove pb-4 effect visually */
  .technical-specs .row.pb-4 {
    padding-bottom: 0 !important;
  }

  /* Columns */
  .technical-specs .col-md-4,
  .technical-specs .col-lg-4 {
    padding: 0;
    display: flex;
    justify-content: center;
  }

  /* Cards */
  .rating-card {
    width: 100%;
    padding: 10px 10px 10px 46px;
    border-radius: 22px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
  }

  /* Icon */
  .icon-circle {
    width: 38px;
    height: 38px;
    left: 6px;
  }

  .icon-circle img {
    width: 22px;
    height: 22px;
  }

  /* Text */
  .text-content h3 {
    font-size: 12px;
    line-height: 1.25;
    margin: 0;
  }

  .text-content p {
    font-size: 10.5px;
    line-height: 1.35;
    margin: 0;
  }
}

/* ========== DESIGN HIGHLIGHTS ========== */
.highlights {
    background: linear-gradient(180deg, #ffffff, #eef4ff);
    padding: 80px 0;
}

.design-heading {
    font-family: 'Oswald', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #194ea9;
    padding-left: 25px;
    margin-bottom: 50px;
    position: relative;
}

.design-heading::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 6px;
    height: 80%;
    background: linear-gradient(180deg, #387DF8, #1e5eff);
    border-radius: 10px;
}

/* Highlight Card */
.highlight-box {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(56,125,248,0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.highlight-box:hover {
    transform: translateY(-12px);
    box-shadow: 0 22px 50px rgba(56,125,248,0.35);
}

/* Icon */
.highlight-icon {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    background: linear-gradient(135deg, #387DF8, #1e5eff);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.highlight-icon i {
    font-size: 36px;
    color: #ffffff;
}

/* Text */
.highlight-box h5 {
    font-size: 15px;
    font-weight: 700;
    color: #387DF8;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.highlight-box p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .design-heading {
        font-size: 28px;
    }
}

/* Slide-up animation */
@keyframes highlightFadeUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Base animation class */
.animate-up {
    opacity: 0;
    animation: highlightFadeUp 0.9s ease forwards;
}

/* ================= OUR PRODUCT MODELS SECTION ================= */
.pm-section {
    padding: 20px 20px;
    background: #f9f9f9;
}

.pm-container {
    max-width: 1500px;
    margin: 0 auto;
}

.pm-heading {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 45px;
    letter-spacing: 1px;
    color:#194ea9 ;
}

/* ================= GRID ================= */
.pm-grid {
    display: grid;

    /* EXACT 5 ITEMS PER ROW */
    grid-template-columns: repeat(5, 1fr);

    gap: 25px;

    /* CENTER LAST ROW (IMPORTANT) */
    justify-content: center;
}

/* ================= CARD ================= */
.pm-card {
    background: #ffffff;
    border-radius: 14px;

    /* SAME SIZE FOR ALL BOXES */
    height: 280px;
    width: 260px;
    margin: 0;
    padding: 25px 20px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.pm-card::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image: url("img/model\ background.png"); /* 👈 your image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    opacity: 0.18;   /* LOW opacity */
    z-index: -1;
}
/* Image */
.pm-card img {
    width: 120px;
    height: 170px;
    object-fit: contain;
    margin-bottom: 15px;
     transition: transform 0.4s ease-in-out;
}

/* Title */
.pm-card h5 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
}

/* Text */
.pm-card p {
    font-size: 14px;
    line-height: 1.5;
    color: #555;
}

/* Hover Effect */
.pm-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.15);
}
.pm-card:hover img {
     transform: scale(1.10);
    
}

.pm-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;   /* 🔥 centers last row */
    gap: 25px;
}

/* ================= RESPONSIVE ================= */
/* Large Tablet */
@media (min-width: 1201px) {
    .pm-card {
        flex: 0 0 calc((100% - 100px) / 5);
        max-width: 260px;
    }
}

@media (max-width: 1200px) {
    .pm-card {
        flex: 0 0 calc((100% - 50px) / 3);
    }
}


/* Tablet */
@media (max-width: 768px) {
    .pm-card {
        flex: 0 0 calc((100% - 25px) / 2);
    }
}

/* Mobile – KEEP 2 BOXES */
@media (max-width: 480px) {

    /* GRID GAP REDUCE */
    .pm-grid {
        gap: 10px;
    }

    /* CARD SIZE REDUCE */
    .pm-card {
        width: 100%;
        height: 200px;
        padding: 12px 10px;
        border-radius: 10px;
    }

    /* IMAGE SMALLER */
    .pm-card img {
        width: 80px;
        height: 110px;
        margin-bottom: 8px;
    }

    /* TITLE SMALLER */
    .pm-card h5 {
        font-size: 12.5px;
        margin-bottom: 4px;
        line-height: 1.3;
    }

    /* TEXT SMALLER */
    .pm-card p {
        font-size: 12px;
        line-height: 1.3;
    }
}


/* ================================
   FIX DESIGN HIGHLIGHTS WIDTH
================================ */

.design-highlights .container-fluid,
.design-highlights .container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* ===== DESIGN HIGHLIGHTS RESPONSIVE ===== */

/* Highlight box styling (safe for all sizes) */
.highlight-box {
    background: #ffffff;
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    height: 100%;
}

/* Icon styling */
.highlight-icon {
    width: 70px;
    height: 70px;
    background: #eaf1ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.highlight-icon i {
    font-size: 28px;
    color: #194ea9;
}

/* Text */
.highlight-box h5 {
    font-size: 16px;
    font-weight: 700;
    color: #194ea9;
    margin-bottom: 10px;
}

.highlight-box p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* ===== TABLET (≤ 991px) ===== */
@media (max-width: 991px) {
    .design-heading {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .highlight-box {
        padding: 22px;
    }
}
/* ===== MOBILE (≤ 575px) ===== */
@media (max-width: 575px) {

  .design-heading {
    font-size: 24px;
    text-align: center;
    margin-bottom: 25px;
    grid-column: 1 / -1; /* ensure full width */
  }

  /* Remove Bootstrap row behavior */
  .design-highlights .row {
    display: contents;
  }

  /* Apply grid ONLY to highlight columns */
  .design-highlights .container-fluid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* Force heading to take full width */
  .design-highlights h2 {
    grid-column: 1 / -1;
  }

  .highlight-box {
    padding: 20px;
  }

  .highlight-box h5 {
    font-size: 15px;
  }

  .highlight-box p {
    font-size: 13px;
  }

  .highlight-icon {
    width: 60px;
    height: 60px;
  }

  .highlight-icon i {
    font-size: 24px;
  }
}






/* ========== MATERIALS USED ========== */

.materials-heading {
    font-family: 'Oswald', sans-serif;
    font-size: 40px;
    font-weight: 1000;          /* Bold */
    color: #194ea9;
    letter-spacing: 1px;
    margin-bottom: 20px;            
}

.materials-used {
    padding: 60px 20px;
    background: #f8f9fa;
}

.materials-used .materials-heading {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
}

/* Grid layout */
.materials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns */
    gap: 30px;
    justify-content: center; /* center items horizontally */
}

/* Staggered second row */
.materials-grid .material-box:nth-child(5) {
    grid-column: 1 / 2; /* start in 1st column */
    justify-self: center;
}

.materials-grid .material-box:nth-child(6) {
    grid-column: 2 / 3; /* start in 2nd column */
    justify-self: center;
}

.materials-grid .material-box:nth-child(7) {
    grid-column: 3 / 4; /* start in 3rd column */
    justify-self: center;
}

/* Boxes */
.material-box {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.material-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(25, 78, 169, 0.18);
    background: linear-gradient(135deg, #f3f8ff, #ffffff);
}

.material-box h4 {
    font-size: 18px;
    font-weight: bold;
    color: #007BFF;
    margin-bottom: 10px;
}

.material-box .material-image {
    margin-bottom: 15px;
}

.material-box .material-image img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.material-box:hover .material-image img {
    transform: scale(1.28);
}

.material-box p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

.material-box:hover h4 {
    color: #194ea9;
}

/* Responsive */
@media (max-width: 1200px) {
    .materials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .materials-grid .material-box:nth-child(5),
    .materials-grid .material-box:nth-child(6),
    .materials-grid .material-box:nth-child(7) {
        grid-column: auto;
        justify-self: auto;
    }
}

@media (max-width: 992px) {
    .materials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .materials-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Animations ===== */
@keyframes slideUp {
    0% { opacity: 0; transform: translateY(50px); }
    100% { opacity: 1; transform: translateY(0); }
}

.animate-up {
    animation: slideUp 1s ease forwards;
}

.materials-used .material-box:nth-child(1) { animation-delay: 0s; }
.materials-used .material-box:nth-child(2) { animation-delay: 0.2s; }
.materials-used .material-box:nth-child(3) { animation-delay: 0.4s; }
.materials-used .material-box:nth-child(4) { animation-delay: 0.6s; }
.materials-used .material-box:nth-child(5) { animation-delay: 0.8s; }
.materials-used .material-box:nth-child(6) { animation-delay: 1s; }
.materials-used .material-box:nth-child(7) { animation-delay: 1.2s; }
/* ===== MOBILE (≤ 576px) ===== */
@media (max-width: 576px) {

    /* Grid: 2 boxes per row */
    .materials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    /* Equal-size boxes */
    .material-box {
        padding: 14px 12px 16px;
        border-radius: 14px;
        min-height: 200px;      /* 🔒 same height for all */
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    /* Title */
    .material-box h4 {
        font-size: 13px;
        margin-bottom: 8px;
        line-height: 1.2;
    }

    /* Image */
    .material-box .material-image {
        margin-bottom: 8px;
    }

    .material-box .material-image img {
        width: 70px;
        height: 70px;
        transform: none;       /* prevent hover zoom issue on mobile */
    }

    /* Description */
    .material-box p {
        font-size: 11px;
        line-height: 1.4;
        margin-top: auto;      /* aligns text evenly */
    }

    /* Heading spacing fix */
    .materials-heading {
        font-size: 24px;
        margin-bottom: 22px;   /* reduced gap */
    }
}


/* ===== IDEAL FOR SECTION ===== */
.design-highlights {
    background: linear-gradient(135deg, #eef4ff, #ffffff);
    padding: 90px 0;
}

.design-heading {
    font-family: 'Oswald', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #194ea9;
    margin-bottom: 60px;
    text-align: center;
}

/* Hexagon Box */
.hexagon-box {
    background:#387DF8;
    color: #fff;
    padding: 50px 20px;
    text-align: center;
    position: relative;
    clip-path: polygon(
        25% 5%, 75% 5%,
        100% 50%, 75% 95%,
        25% 95%, 0% 50%
    );
    transform-style: preserve-3d;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow:
        0 12px 25px rgba(0,0,0,0.25),
        inset 0 6px 8px rgba(0,0,0,0.1),
        0 -2px 8px rgba(255,255,255,0.1) inset;
    cursor: pointer;
}

/* Hover effect → comes forward */
.hexagon-box:hover {
    transform: translateY(-10px) rotateX(6deg) rotateY(6deg);
    box-shadow:
        0 30px 60px rgba(0,0,0,0.35),
        inset 0 12px 20px rgba(0,0,0,0.15),
        0 -6px 14px rgba(255,255,255,0.25) inset;
}

/* Light reflection overlay */
.hexagon-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(255,255,255,0.18), transparent);
    clip-path: polygon(
        25% 5%, 75% 5%,
        100% 50%, 75% 95%,
        25% 95%, 0% 50%
    );
    pointer-events: none;
}

/* Icon */
.hexagon-icon img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

/* Title */
.hexagon-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Description */
.hexagon-box p {
    font-size: 15px;
    line-height: 1.6;
    color: #e0e6ff;
    text-align: center;

}

/* Animation */
@keyframes slideInUp {
    0% { opacity: 0; transform: translateY(50px); }
    100% { opacity: 1; transform: translateY(0); }
}

.animate-up {
    opacity: 0;
    animation: slideInUp 1s forwards;
}

@media (max-width: 576px) {
    /* Heading */
    .design-heading {
        font-size: 24px;
        margin-bottom: 10px; /* reduce space below heading */
        text-align: center;
    }

    /* Hexagon grid: 2 per row, shifted right */
    .row.justify-content-center.g-4 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
        gap: 15px;           
        padding-left: 40px;  /* shift entire grid right */
        padding-right: 10px;
        margin-top: 0 !important;
    }

    .col-md-6.col-lg-3 {
        width: 100%;
        max-width: 260px;
    }

    /* Hexagon box: fixed size and content visible */
    .hexagon-box {
        width: 100%;
        max-width: 260px;
        height: 260px;         
        padding: 15px;        
        display: flex;
        flex-direction: column;
        justify-content: center;  
        align-items: center;
        box-sizing: border-box;
        clip-path: polygon(
            25% 5%, 75% 5%,
            100% 50%, 75% 95%,
            25% 95%, 0% 50%
        ); 
    }

    /* Hexagon icon */
    .hexagon-icon img {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }

    /* Title */
    .hexagon-box h4 {
        font-size: 14px;
        line-height: 1.2;
        margin-bottom: 4px;
        text-align: center;
    }

    /* Description */
    .hexagon-box p {
        font-size: 12px;
        line-height: 1.3;
        text-align: center;
    }
}
/* ===== TABLET & MOBILE (≤ 768px) ===== */
@media (max-width: 768px) {

  .design-highlights {
    padding: 10px 16px;
    margin-bottom: 10px;   /* reduced spacing */
  }

  /* Equal-size grid */
  .design-highlights .highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 1fr;      /* 🔥 same box height */
    gap: 12px;
  }

  /* Compact boxes */
  .design-highlights .highlight-box {
    padding: 14px;
    border-radius: 18px;

    display: flex;
    flex-direction: column;
    justify-content: center; /* vertical centering */
    box-sizing: border-box;
  }

  .design-highlights .highlight-box h3 {
    font-size: 14px;
    margin-bottom: 4px;
  }

  .design-highlights .highlight-box p {
    font-size: 12px;
    line-height: 1.4;
    margin: 0;
  }
}

/* ===== SMALL MOBILE (≤ 576px) ===== */
@media (max-width: 576px) {

  .design-highlights {
    padding: 24px 12px;   /* tighter for small screens */
  }

  .design-highlights .highlights-grid {
    gap: 10px;
  }

  .design-highlights .highlight-box {
    padding: 12px;
  }

  .design-highlights .highlight-box h3 {
    font-size: 13px;
  }

  .design-highlights .highlight-box p {
    font-size: 11px;
  }
}

/* Responsive */
/* ===== CORE BENEFITS ===== */
.core-benefits {
    padding: 20px 20px;
    background: linear-gradient(135deg, #f2f6ff, #ffffff);
}
.row.g-4 {
  row-gap: 30px;   /* space between row 1 & row 2 */
}

/* Main Heading */
.core-heading {
    text-align: center;
    font-size: 34px;
    padding-top: 0px;
    font-weight: bold;
    color: #194ea9;
    margin-bottom: 10px; /* reduced space below heading */
}

/* Sub Heading */
.core-subheading {
    text-align: center;
    font-size: 16px;
    margin-bottom: 40px; /* reduced space below subheading */
}

.core-subheading .solution {
    color: #194ea9;
    font-weight: bold;
}

/* Benefit Box */
.benefit-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #ffffff;
    padding: 20px 25px;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.benefit-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.12);
}

/* Image */
.benefit-image img {
    width: 90px;
    height: auto;
}

/* Content */
.benefit-content {
    max-width: 600px;
}

.problem-text {
    color: #555;
    font-size: 14px;
    margin-bottom: 6px;
}

.solution-text {
    font-size: 15px;
    font-weight: bold;
    color: #194ea9;
    background: linear-gradient(90deg, #e6efff, #f4f8ff);
    padding: 8px 12px;
    border-radius: 6px;
}

/* ===== MOBILE (≤ 768px) ===== */
@media (max-width: 768px) {

    /* Grid layout: 2 boxes per row */
    .row.g-4 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        justify-items: center;
    }

    /* Benefit box adjustments */
    .benefit-box {
        display: flex;
        flex-direction: column;
        justify-content: space-between; /* solution-text stays at bottom */
        align-items: center;
        text-align: center;
        padding: 15px;
        width: 100%;
        max-width: 300px;
        min-height: 320px; /* fixed height for all boxes */
        box-sizing: border-box;
    }

    .benefit-image img {
        width: 80px;
        height: auto;
    }

    /* Solution box stays at bottom */
    .solution-text {
        margin-top: auto;
        display: inline-block;
        width: 100%;
        box-sizing: border-box;
    }
}

/* ===== MOBILE SMALL (≤ 576px) ===== */
@media (max-width: 576px) {
    .row.g-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        justify-items: center;
    }
}




/* Reduce bottom space after the content */
@media (max-width: 768px) {
    .core-heading{
        padding-top: 30px; /* previously 80px, reduced */
    }
}

@media (max-width: 576px) {
    .core-heading{
        padding-top: 30px; /* even smaller for small screens */
    }
}




/* Section heading */
/* ===== RECOMMENDED APPLICATIONS ===== */
.recommended-applications {
    padding: 80px 20px;
    background: linear-gradient(135deg, #eef4ff, #ffffff);
}

/* Section Heading */
.section-heading {
    font-size: 32px;
    font-weight: 700;
    color: #194ea9;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Application Item */
.recommended-applications .col-lg-3 {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Image Styling */
.recommended-applications img {
    width: 100%;
    max-width: 280px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Hover Effect */
.recommended-applications .col-lg-3:hover img {
    transform: scale(1.07);
    box-shadow: 0 18px 40px rgba(25, 78, 169, 0.35);
}

/* Title below image */
.recommended-applications h5 {
    margin-top: 15px;
    font-size: 16px;
    font-weight: 600;
    color: #194ea9;
    transition: color 0.3s ease;
}

/* Hover text color */
.recommended-applications .col-lg-3:hover h5 {
    color: #0d47a1;
}

/* Responsive */
@media (max-width: 768px) {
    .recommended-applications img {
        max-width: 100%;
    }

    .section-heading {
        font-size: 26px;
    }
}
/* ===== MOBILE (≤ 768px) ===== */
@media (max-width: 768px) {

    /* Grid layout: 2 images per row */
    .recommended-applications .row.text-center {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* 2 items per row */
        gap: 20px;
        justify-items: center;
        text-align: center;
    }

    /* Section Heading smaller */
    .section-heading {
        font-size: 24px;
        margin-bottom: 30px;
    }

    /* Image sizing */
    .recommended-applications img {
        max-width: 150px; /* Reduce size to fit two per row */
        width: 100%;
    }

    /* Title below image */
    .recommended-applications h5 {
        font-size: 14px;
        margin-top: 10px;
    }

    /* Keep box same size */
    .application-box {
        width: 100%;
        max-width: 200px; /* Ensure consistent width for each box */
    }
}

/* ===== MOBILE SMALL (≤ 576px) ===== */
@media (max-width: 576px) {

    .recommended-applications .row.text-center {
        grid-template-columns: repeat(2, 1fr); /* 2 per row even on smaller screens */
        gap: 15px;
    }

    .recommended-applications img {
        max-width: 140px;
    }

    .application-box {
        max-width: 180px;
    }

    .recommended-applications h5 {
        font-size: 13px;
    }
}
/* Reduce bottom space after the content */
@media (max-width: 768px) {
    .recommended-applications {
        padding-bottom: 30px; /* previously 80px, reduced */
        padding-top: 20px;
    }
}

@media (max-width: 576px) {
    .recommended-applications {
        padding-bottom: 20px; /* even smaller for small screens */
        padding-top: 20px;
    }
}



/* ===== PERFORMANCE SECTION ===== */
.performance-section {
  background: linear-gradient(135deg, #e6f2ff, #cfe4ff);
  padding: 55px 20px;
}

/* Heading */
.performance-heading {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  color: #194ea9;
  margin-bottom: 40px;
}

/* 3D Box */
.performance-box {
  max-width: 900px;
  margin: 0 auto;
  padding: 25px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow:
    0 18px 40px rgba(25, 78, 169, 0.25),
    0 8px 18px rgba(0, 0, 0, 0.12);
  
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}




/* Image */
.performance-box img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}
/* ===== TABLET & MOBILE (≤ 768px) ===== */
@media (max-width: 768px) {

  .performance-heading {
    font-size: 26px;
    margin-bottom: 0px;   /* 🔥 remove space below heading */
    padding-bottom: 10px;
    padding-top: 10px;
  }

  .performance-box {
    padding: 15px;
    transform: none;
    margin-top: 0;      /* 🔥 remove space above box */
  }

  .performance-section {
    padding-top: 20px;
    padding-bottom: 30px;
  }
}

/* ===== SMALL MOBILE (≤ 576px) ===== */
@media (max-width: 576px) {

  .performance-section {
    padding-top: 10px;   /* tighter top spacing */
    padding-bottom: 20px;
  }

  .performance-heading {
    margin-bottom: 0;    /* ensure no gap */
  }

  .performance-box {
    margin-top: 0;       /* ensure no gap */
  }
}

/* WhatsApp Fixed Square Box */
.whatsapp-box {
    position: fixed;
    right: 0;
    bottom: 70px;

    height: 56px;
    width: 56px;                 /* logo visible before hover */
    background: #25d366;
    color: #fff;

    display: flex;
    align-items: center;

    font-size: 28px;
    z-index: 9999;

    border-radius: 6px 0 0 6px;
    overflow: hidden;

    transition: width 0.35s ease;
}

/* WhatsApp Icon (always visible) */
.whatsapp-box i {
    width: 56px;
    text-align: center;
    flex-shrink: 0;
}

/* Text hidden before hover */
.whatsapp-box span {
    white-space: nowrap;
    opacity: 0;
    font-size: 16px;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

/* Hover – slide left */
.whatsapp-box:hover {
    width: 170px;
}

/* Show text on hover */
.whatsapp-box:hover span {
    opacity: 1;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .whatsapp-box {
        width: 48px;
        height: 48px;
        bottom: 60px;
    }

    .whatsapp-box i {
        width: 48px;
        font-size: 24px;
    }

    /* Disable hover expand on mobile */
    .whatsapp-box:hover {
        width: 48px;
    }

    .whatsapp-box span {
        display: none;
    }
}

/* Phone Fixed Square Box */
.phone-box {
    position: fixed;
    right: 0;
    bottom: 210px;              /* place above Email */

    height: 56px;
    width: 56px;
    background: #28a745;        /* call green */
    color: #fff;

    display: flex;
    align-items: center;

    font-size: 24px;
    z-index: 9999;

    border-radius: 6px 0 0 6px;
    overflow: hidden;

    transition: width 0.35s ease;
}

/* Icon always visible */
.phone-box i {
    width: 56px;
    text-align: center;
    flex-shrink: 0;
}

/* Text hidden before hover */
.phone-box span {
    white-space: nowrap;
    opacity: 0;
    font-size: 16px;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

/* Hover – slide left */
.phone-box:hover {
    width: 150px;
}

/* Show text on hover */
.phone-box:hover span {
    opacity: 1;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .phone-box {
        width: 48px;
        height: 48px;
        bottom: 200px;
    }

    .phone-box i {
        width: 48px;
        font-size: 22px;
    }

    /* Disable expand on mobile */
    .phone-box:hover {
        width: 48px;
    }

    .phone-box span {
        display: none;
    }
}


/* Email Fixed Square Box */
.email-box {
    position: fixed;
    right: 0;
    bottom: 140px;              /* place above WhatsApp */

    height: 56px;
    width: 56px;
    background: #0072c6;        /* email blue */
    color: #fff;

    display: flex;
    align-items: center;

    font-size: 26px;
    z-index: 9999;

    border-radius: 6px 0 0 6px;
    overflow: hidden;

    transition: width 0.35s ease;
}

/* Icon always visible */
.email-box i {
    width: 56px;
    text-align: center;
    flex-shrink: 0;
}

/* Text hidden before hover */
.email-box span {
    white-space: nowrap;
    opacity: 0;
    font-size: 16px;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

/* Hover – slide left */
.email-box:hover {
    width: 160px;
}

/* Show text on hover */
.email-box:hover span {
    opacity: 1;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .email-box {
        width: 48px;
        height: 48px;
        bottom: 130px;
    }

    .email-box i {
        width: 48px;
        font-size: 22px;
    }

    /* Disable expand on mobile */
    .email-box:hover {
        width: 48px;
    }

    .email-box span {
        display: none;
    }
}


/* Footer Section */
.footer-section {
    background: #00356B; /* very light blue */
    color: #333;
}
/* Headings */
.footer-section h4 {
    color: #1e88e5; /* light blue */
    border-color: #90caf9 !important;
}


/* Paragraph & Text */
.footer-section p {
    color: #d8d8d8;
}

/* Icons */
.footer-section i {
    color: #1e88e5;
}
/* Links */
.footer-section a {
    color: #1e88e5;
    text-decoration: none;
}

.footer-section a:hover {
    color: #1565c0;
}

/* Phone link color fix */
.footer-section .phone-link {
    color: #d8d8d8 !important;
    text-decoration: none;
}

/* Prevent blue/purple on hover & visited */
.footer-section .phone-link:hover,
.footer-section .phone-link:focus,
.footer-section .phone-link:visited {
    color: #d8d8d8;
    text-decoration: none;
}
/* ================= FOOTER BUTTONS ================= */

/* Primary button base */
.footer-section .btn-primary {
    background-color: #1e88e5;
    border-color: #1e88e5;
    margin: 2%;
    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        transform 0.25s ease,
        box-shadow 0.3s ease;
}

.footer-section .btn-primary:hover {
    background-color: #1565c0;
    border-color: #1565c0;
}

/* ================= SOCIAL MEDIA BUTTONS ================= */

/* Default social button background */
.footer-section .btn-lg-square {
    background: #e3f2fd;
    color: #1e88e5;
}

.footer-section .btn-lg-square:hover {
    background: #70767a;
    color: #fff;
}
/* ================= CIRCLE SIZE CONTROL ================= */

/* Force perfect circle + smaller size */
.footer-section .social-simbol .btn {
    width: 42px;
    height: 38px;
    padding: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    /* animation base */
    background-color: transparent;
    border: 2px solid #1e88e5;
    transition:
        background-color 0.3s ease,
        transform 0.25s ease,
        box-shadow 0.3s ease;
}

/* Icon default size & color */
.footer-section .social-simbol .btn i {
    font-size: 18px;
    line-height: 1;
    color: #1e88e5;
    transition: color 0.3s ease;
}

/* ================= HOVER EFFECT (BLUE + GLOW + BLACK ICON) ================= */

.footer-section .social-simbol .btn:hover {
    background-color: #1e88e5; /* blue bg */
    transform: scale(1.15);
    box-shadow:
        0 0 10px rgba(30, 136, 229, 0.6),
        0 0 20px rgba(30, 136, 229, 0.4),
        0 0 30px rgba(30, 136, 229, 0.2); /* glow */
}

/* Icon turns black on hover */
.footer-section .social-simbol .btn:hover i {
    color: #000;
}

/* Reduce spacing between icons */
.footer-section .social-simbol {
    gap: 5px;
    overflow: visible;
}


/* Google Map */
.map-container iframe {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Copyright Section */
.container-fluid.border-top {
    background: #00356B;
    border-color: #bbdefb !important;
}

.container-fluid.border-top p {
    color: #d8d8d8;
    
}

.container-fluid.border-top a {
    color: #1e88e5;
    font-weight: 600;
}
.footer-section {
    padding-top: 30px;
    padding-bottom: 0;
    margin-bottom: 0;
}

/* Inner container spacing */
.footer-section .container {
    padding-bottom: 20px;
}

/* Copyright section */
.copyright-section {
    padding: 10px 0;
    margin: 0;
}

/* Ensure no gap after footer */
.footer-section + div {
    margin-bottom: 0 !important;
}
@media (max-width: 768px) {

   /* ================= RESET ================= */
    .footer-section h4,
    .footer-section p,
    .footer-section a {
        text-align: left;
        font-size: 13px;
         text-align: justify;
    text-justify: inter-word;

    word-break: normal;       /* prevent word cutting */
    overflow-wrap: normal;    /* keep words intact */
    hyphens: none; 
    }

    /* ================= MAIN STACK ================= */
    .footer-section .row {
        display: flex;
        flex-wrap: wrap;
        row-gap: 20px;
    }

    /* ================= GET IN TOUCH (FULL ROW) ================= */
    .footer-getintouch {
        width: 100%;
        order: 1;
    }

    /* ================= ADDRESS + ENQUIRY (2 COLUMNS) ================= */
    .footer-address {
        width: 50%;
        order: 2;
    }

    .footer-enquiry {
        width: 50%;
        order: 3;
    }

    /* ================= EMAIL (FULL ROW BELOW ADDRESS) ================= */
    .footer-email {
        width: 100%;
        order: 4;
    }

    /* ================= PHONE (FULL ROW) ================= */
    .footer-phone {
        width: 100%;
        order: 5;
    }

    /* ================= SOCIAL ICONS (SINGLE ROW) ================= */
    .footer-social {
        width: 100%;
        order: 6;
        display: flex;
        justify-content: center;
        gap: 12px;
        margin-top: 10px;
    }

    .footer-social .btn-lg-square {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    /* ================= GOOGLE MAP (FULL WIDTH) ================= */
    .footer-map {
        width: 100%;
        order: 7;
        margin-top: 15px;
    }

    .footer-map iframe {
        width: 100%;
        height: 220px;
        border-radius: 12px;
        border: none;
    }

    /* ================= COPYRIGHT ================= */
    .container-fluid.border-top p {
        font-size: 12px;
        text-align: center;
        padding: 10px 0;
    }
}



/* ================================
   GLOBAL HEADING ALIGNMENT & SPACING
================================ */

/* Center all main section headings */
.product-heading,
.tech-heading,
.design-heading,
.materials-heading,
.ideal-heading {
    text-align: center !important;
    padding-left: 0 !important;
    margin-left: auto;
    margin-right: auto;
}

/* Remove decorative left bars when centered */
.tech-heading::before,
.design-heading::before,
.materials-heading::before {
    display: none;
}

/* Equal spacing above & below headings */
.product-heading,
.tech-heading,
.design-heading,
.materials-heading,
.ideal-heading {
    margin-top: 0;
    margin-bottom: 60px;
}

/* ================================
   EQUAL SECTION PADDING
================================ */

.product-intro,
.design-highlights,
.materials-used,
.ideal-for,
.recommended-applications,
.performance-section
.core-benefits {
    padding: 30px;

}

/* ================================
   MOBILE SPACING FIX
================================ */

@media (max-width: 768px) {

    .product-heading,
    .tech-heading,
    .design-heading,
    .materials-heading,
    .ideal-heading {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .product-intro,
    .design-highlights,
    .materials-used,
    .ideal-for {
        padding: 20px 0;
    }
}

