
  /**********************************/
/********** 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: relative;
        z-index: 1100;
        min-height: 50px;   /* smaller height */
        padding: 4px 0;
    }

    #nav .navbar {
        position: fixed;
        top: 50px;
        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;
    }
}


/* ============================
   GOOGLE FONTS
============================ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600&family=Montserrat:wght@300;400;500&display=swap');

/* ============================
   ABOUT SECTION
============================ */
.about-section {
    padding: 0px 0 !important;
    height: 110vh;
    background: #f9fbff;
    margin-top: 70px;

}

/* Center title */
.about-title {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 6px;
    font-size: 14px;
    color: #1e88e5;
}

/* Brand name */
.brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 20px;
}

.brand-name span {
    color: #005eff;
}

/* Text */
.about-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    max-width: 520px;

    text-align: justify;
    text-justify: inter-word;

    word-break: normal;       /* prevent word cutting */
    overflow-wrap: normal;    /* keep words intact */
    hyphens: none;            /* disable hyphenation */
}

/* ============================
   TEXT SLIDE (LEFT → RIGHT)
============================ */
/* ======================================================
   TEXT SLIDE (LEFT → RIGHT)
====================================================== */
.text-slide {
    opacity: 0;
    animation: textSlide 1.2s ease forwards;
}

@keyframes textSlide {
    from {
        transform: translateX(-90px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* MOBILE – SMALLER ANIMATION DISTANCE */
@media (max-width: 768px) {
    @keyframes textSlide {
        from {
            transform: translateX(-25px); /* smaller movement */
            opacity: 0;
        }
        to {
            transform: translateX(0);
            opacity: 1;
        }
    }
    p {
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.015em;
    max-width: 100%;
  }

  .about-section {
    padding: 0px 0 !important;
    height: 85vh;
    background: #f9fbff;
    margin-top: 30px;
}

}

/* ======================================================
   IMAGE SLIDE (RIGHT → LEFT)
====================================================== */
.img-slide {
    opacity: 0;
    animation: imgSlide 1.4s ease forwards;
    animation-delay: 0.3s;
}

@keyframes imgSlide {
    from {
        transform: translateX(120px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* IMAGE STYLE */
.about-img img {
    width: 100%;
    border-radius: 12px;
    position: relative;
    z-index: 2;
    box-shadow:
        0 20px 40px rgba(13, 110, 253, 0.25),
        0 10px 20px rgba(13, 110, 253, 0.18);
}


/*************************************/
/******** ABOUT FEATURE SECTION *******/
/*************************************/
/* SECTION */
.about-feature {
    min-height: 80vh; /* FULL PAGE HEIGHT */
    background: #f8f9fa;
    display: flex;
    padding-top: 20px;
}

/* FEATURE BOX */
/* FEATURE BOX */
.about-feature-box {
    width: 100%;
    height: 250px;
    margin-bottom: 20px;                     /* SAME BOX HEIGHT */
    background: #ffffff;
    border-radius: 18px;
    padding: 40px 50px;
    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;

    transition: all 0.45s ease;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    cursor: pointer;
}

/* ICON */
.about-feature-box .icon {
    width: 90px;
    height: 90px;
    margin-bottom: 22px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 38px;
    color: #fff;
    transition: transform 0.45s ease;
}

/* TITLE – FIXED HEIGHT */
.about-feature-box h1 {
    font-size: 26px;
    font-weight: 700;
    min-height: 64px;                  /* ✅ SAME TITLE HEIGHT */
    margin-bottom: 16px;
    color: #111;
    transition: color 0.35s ease;
}

/* TEXT – FLEXIBLE */
.about-feature-box p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    flex-grow: 1;                      /* ✅ paragraph adjusts */
    transition: color 0.35s ease;
    text-align: justify;
    text-justify: inter-word;

    word-break: normal;       /* prevent word cutting */
    overflow-wrap: normal;    /* keep words intact */
    hyphens: none;            /* disable hyphenation */
    
}

/* COLOR VARIANTS */
.about-feature-box.blue .icon {
    background: linear-gradient(135deg, #0d6efd, #40f7f7);
}
.about-feature-box.green .icon {
    background: linear-gradient(135deg, #0d6efd, #40f7f7);
}

/* HOVER EFFECT – PREMIUM */
.about-feature-box:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 35px 70px rgba(13, 110, 253, 0.35);
}

/* HOVER TEXT COLOR CHANGE */
.about-feature-box:hover h1,
.about-feature-box:hover p {
    color: #0b2c5f;                    /* DARK BLUE */
}

/* ICON ANIMATION ON HOVER */
.about-feature-box:hover .icon {
    transform: rotate(6deg) scale(1.1);
}


/* INNER MINI FEATURE ROW (INSIDE MAIN BOX) */
.feature-wrapper{
    max-width:1200px;
    margin:80px auto;
    display:grid;
    grid-template-columns:repeat(4,1fr); /* 4 in one row */
    gap:25px;
    padding:0 15px;
    
}

/* CARD */
.feature-card{
    background:#0d6efd;
    border-radius:6px;
    height:200px;
    text-align:center;
    padding-top:55px;
    position:relative;
    color:#fff;
    font-family:'Segoe UI', sans-serif;
    box-shadow:0 10px 30px rgba(0,0,0,0.15);
    transition:0.4s ease;
}

/* ICON PANEL */
.icon-box{
    width:130px;
    height:110px;
    background:#fff;
    border-radius:0px 0px 100px 100px;
    position:absolute;
    top:-40px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 8px 20px rgba(0,0,0,0.15);
}

.icon-box img{
    width:80px;
}

/* TITLE */
.feature-card h3{
    padding-top: 20px;
    font-size:14px;
    font-weight:700;
    letter-spacing:0.6px;
    margin:15px 10px 6px;
    text-transform:uppercase;
    color: white;
}

/* TEXT */
.feature-card p{
    font-size:12px;
    opacity:0.9;
    margin:0 15px;
    line-height:1.5;
    color: white;
    text-align: justify;
    text-justify: inter-word;

    word-break: normal;       /* prevent word cutting */
    overflow-wrap: normal;    /* keep words intact */
    hyphens: none;            /* disable hyphenation */
}

/* HOVER */
.feature-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,0.25);
}

/* INITIAL HIDDEN STATE */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* WHEN VISIBLE */
.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ================= MOBILE & TABLET RESPONSIVE ================= */
@media (max-width: 991px) {

    /* ===== ABOUT SECTION STACK ===== */
    .about-section .row.align-items-center {
        row-gap: 20px;
    }

    .about-content {
        text-align: center;
    }

    .about-content h3 {
        font-size: 22px;
    }

    .about-text {
        font-size: 14px;
        line-height: 1.6;
    }

    .about-img img {
        width: 100%;
        max-width: 420px;
        margin: 0 auto;
        display: block;
    }
    .about-section{
        margin-bottom: 280px;
    }
    p {
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.015em;
    max-width: 100%;
    }
    

    /* ================================================= */
    /* =============== BIG FEATURE BOXES ================ */
    /* ================================================= */

    .about-feature .col-lg-6,
    .about-feature .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;         /* 2 PER ROW */
    }

    .about-feature-box {
        height: 270px;          /* FIXED SAME SIZE */
        padding: 18px 16px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        overflow: hidden;
    }

    .about-feature-box h1 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .about-feature-box p {
        font-size: 13px;
        line-height: 1.5;
        text-align: justify;
    text-justify: inter-word;

    word-break: normal;       /* prevent word cutting */
    overflow-wrap: normal;    /* keep words intact */
    hyphens: none;            /* disable hyphenation */
    }
}
/* ===== SECTION ===== */
.image-slider-section {
    padding: 70px 20px;
    background: linear-gradient(180deg, #f8f9fb 0%, #eef1f6 100%);
    overflow: hidden;
}

/* ===== HEADING ===== */
.slider-heading {
    position: relative;
    max-width: 700px;
    margin: 0 auto 45px auto;
    padding-bottom: 20px;
    text-align: center;
}

/* underline small */
.slider-heading::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    left: calc(50% - 25px);
    bottom: 10px;
    background: #161616;
}

/* underline big */
.slider-heading::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 2px;
    left: calc(50% - 50px);
    bottom: 0;
    background: #333333;
}

.slider-heading p {
    margin: 0;
    color: #FFD662;
    font-size: 25px;
    font-weight: 700;
    text-align: justify;
    text-justify: inter-word;

    word-break: normal;       /* prevent word cutting */
    overflow-wrap: normal;    /* keep words intact */
    hyphens: none;            /* disable hyphenation */
}

.slider-heading h2 {
    margin: 0;
    color: #000000;
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 5px;
}

/* ===== SLIDER ===== */
.slider-wrapper {
    position: relative;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px 0;
}

/* fade edges */
.slider-wrapper::before,
.slider-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.slider-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #f8f9fb 0%, transparent 100%);
}

.slider-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #f8f9fb 0%, transparent 100%);
}

/* ===== TRACK ===== */
.slider-track {
    display: flex;
    width: max-content;
    animation: scroll 22s linear infinite;
    will-change: transform;
    animation-play-state: running !important;
}

/* ===== SLIDE CARD ===== */
.slide {
    width: 300px;
    height: 220px;
    margin: 0 30px;
    flex-shrink: 0;
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    transform-style: preserve-3d;
    box-shadow:
        0 8px 18px rgba(0,0,0,0.08),
        0 3px 6px rgba(0,0,0,0.04);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* 3D border */
.slide::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 14px;
    padding: 1.5px;
    background: linear-gradient(
        135deg,
        rgba(255,214,98,0.9),
        rgba(0,0,0,0.15)
    );
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* IMAGE */
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    transform: translateZ(20px);
}

/* hover effect */
@media (hover: hover) {
    .slide:hover {
        transform: translateY(-10px) scale(1.03);
        box-shadow:
            0 18px 40px rgba(0,0,0,0.18),
            0 8px 16px rgba(0,0,0,0.08);
    }
}

/* ===== ANIMATION ===== */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

    .image-slider-section {
        padding: 20px 10px 0 0;
    }

    .slider-heading h2 {
        font-size: 28px;
        letter-spacing: 3px;
    }

    .slider-heading p {
        font-size: 18px;
    }

    .slide {
        width: 240px;
        height: 180px;
        margin: 0 20px;
    }

    .slider-track {
        animation-duration: 26s;
    }

    .slider-wrapper::before,
    .slider-wrapper::after {
        width: 60px;
    }
}

/* ================= CERT MARQUEE SECTION ================= */
.cert-marquee-section {
    padding: 70px 20px;
    background: linear-gradient(180deg, #f8f9fb 0%, #eef1f6 100%);
    overflow: hidden;
}

.cert-marquee-heading::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    left: calc(50% - 25px);
    bottom: 10px;
    background: #161616;
}

.cert-marquee-heading::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 2px;
    left: calc(50% - 50px);
    bottom: 0;
    background: #333;
}

.cert-marquee-heading p {
    margin: 0;
    color: #FFD662;
    font-size: 25px;
    font-weight: 700;
    text-align: justify;
    text-justify: inter-word;

    word-break: normal;       /* prevent word cutting */
    overflow-wrap: normal;    /* keep words intact */
    hyphens: none;            /* disable hyphenation */
}

.cert-marquee-heading h2 {
    margin: 0;
    color: #000;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
}

/* ================= WRAPPER ================= */
.cert-marquee-wrapper {
    position: relative;
    width: 100%;
    max-width: 1600px;
    margin: auto;
    overflow: hidden;
    padding: 20px 0;
}

/* Fade edges */
.cert-marquee-wrapper::before,
.cert-marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.cert-marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #f8f9fb 0%, transparent 100%);
}

.cert-marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #f8f9fb 0%, transparent 100%);
}

/* ================= TRACK ================= */
.cert-marquee-track {
    display: flex;
    width: max-content;
    animation: certScrollLeft 24s linear infinite;
    will-change: transform;
}

/* ================= ITEM ================= */
.cert-marquee-item {
    width: 120px;
    height: 120px;
    margin: 0 30px;
    flex-shrink: 0;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    box-shadow:
        0 8px 18px rgba(0,0,0,0.08),
        0 3px 6px rgba(0,0,0,0.04);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Gradient border */
.cert-marquee-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 14px;
    padding: 1.5px;
    background: linear-gradient(
        135deg,
        rgba(255,214,98,0.9),
        rgba(0,0,0,0.15)
    );
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* IMAGE */
.cert-marquee-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    background: transparent;
}

/* Hover */
@media (hover:hover) {
    .cert-marquee-item:hover {
        transform: translateY(-10px) scale(1.04);
        box-shadow:
            0 18px 40px rgba(0,0,0,0.18),
            0 8px 16px rgba(0,0,0,0.08);
    }
}

/* ================= ANIMATION ================= */
@keyframes certScrollLeft {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .cert-marquee-section {
        padding: 50px 10px;
    }

    .cert-marquee-heading h2 {
        font-size: 28px;
        letter-spacing: 3px;
    }

    .cert-marquee-heading p {
        font-size: 18px;
    }

    .cert-marquee-item {
        width: 100px;
        height: 100px;
        margin: 0 18px;
    }

    .cert-marquee-track {
        animation-duration: 20s;
    }

    .cert-marquee-wrapper::before,
    .cert-marquee-wrapper::after {
        width: 60px;
    }
}


/* ================= MVH SECTION ================= */

.mvh-section {
    padding: 30px 0;
    background: linear-gradient(135deg, #f5f9ff, #eaf2ff);
}

.mvh-heading {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #0d6efd;
    margin-bottom: 60px;
    letter-spacing: 1px;
}

/* GRID */
.mvh-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    height: 70vh;
}

/* CARD */
.mvh-card {
    position: relative;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 18px 40px rgba(13, 110, 253, 0.15);
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}
.mvh-card {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease-out;
}

/* When visible in viewport */
.mvh-card.show {
    opacity: 1;
    transform: translateY(0);
}

/* TOP COLOR SLIDE */
.mvh-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0d6efd, #6ea8ff);
    transform: translateY(100%);
    transition: transform 0.45s ease;
    z-index: 0;
}

/* ICON */
.mvh-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #eaf2ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #0d6efd;
    transition: all 0.45s ease;
    position: relative;
    z-index: 1;
}

/* TEXT */
.mvh-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #0d6efd;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.mvh-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    position: relative;
    z-index: 1;
    text-align: justify;
    text-justify: inter-word;

    word-break: normal;       /* prevent word cutting */
    overflow-wrap: normal;    /* keep words intact */
    hyphens: none;            /* disable hyphenation */
}

/* HOVER EFFECT */
.mvh-card:hover {
    transform: translateY(-12px) scale(1.03);
}

.mvh-card:hover::before {
    transform: translateY(0);
}

.mvh-card:hover h3,
.mvh-card:hover p {
    color: #ffffff;
}

.mvh-card:hover .mvh-icon {
    background: #ffffff;
    color: #0d6efd;
    transform: rotate(8deg) scale(1.1);
}

/* ================= MOBILE OPTIMIZATION ================= */
@media (max-width: 991px) {

    .mvh-section {
        padding: 20px 0;
    }

    .mvh-heading {
        font-size: 22px;
        margin-bottom: 30px;
        letter-spacing: 0.5px;
    }

    .mvh-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        height: auto; /* remove large height */
    }

    .mvh-card {
        padding: 20px 18px;     /* smaller box */
        border-radius: 14px;
        box-shadow: 0 12px 28px rgba(13, 110, 253, 0.12);
    }

    .mvh-icon {
        width: 52px;
        height: 52px;
        font-size: 22px;
        margin-bottom: 12px;
    }

    .mvh-card h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .mvh-card p {
        font-size: 13px;
        line-height: 1.5;
    
        z-index: 1;
        text-align: justify;
        text-justify: inter-word;

        word-break: normal;       /* prevent word cutting */
        overflow-wrap: normal;    /* keep words intact */
        hyphens: none;  
    }

    /* Reduce hover movement for mobile */
    .mvh-card:hover {
        transform: translateY(-6px) scale(1.01);
    }
}



/* 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;
     text-align: justify;
    text-justify: inter-word;
}

/* 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;
}

/* 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 */
/* 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;
    }
}


/**********************************/
/******* Section Header CSS *******/
/**********************************/
.section-header {
    position: relative;
    max-width: 700px;
    margin: 0 auto 45px auto;
    padding-bottom: 20px;
}

.section-header::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    left: calc(50% - 25px);
    bottom: 10px;
    background: #161616;
}

.section-header::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 2px;
    left: calc(50% - 50px);
    bottom: 0;
    background: #333333;
}

.section-header p {
    margin: 0;
    color: #FFD662;
    font-size: 25px;
    font-weight: 700;
    text-align: center;
}

.section-header h1 {
    margin: 0;
    color: #000000;
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 5px;
    text-align: center;
}

@media (max-width: 575.98px) {
    .section-header h1 {
        font-size: 45px;
    }
}



/* ============================
   GOOGLE FONTS
============================ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600&family=Montserrat:wght@300;400;500&display=swap');

/* ============================
   CERTIFICATION SECTION
============================ */
.certification-section {
    padding: 70px 0;
    min-height: 110vh;
    background: #f9fbff;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* ============================
   WRAPPER
============================ */
.certification-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* ============================
   IMAGE (LEFT)
============================ */
.cert-image-wrapper {
    flex: 1;
    position: relative;
    opacity: 0;
}

.cert-image-wrapper img {
    width: 70%;
    border-radius: 14px;
    margin-left: 100px;
    position: relative;
    z-index: 2;
    background: #fff;
    box-shadow:
        0 25px 50px rgba(13, 110, 253, 0.25),
        0 12px 25px rgba(13, 110, 253, 0.18);
}

/* ============================
   CONTENT (RIGHT)
============================ */
.cert-content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;   /* 🔑 KEY FIX */
    align-items: flex-start;       /* keep left aligned */
    padding-top: 0;
    margin-top: 0;
}

/* BRAND TITLE */
.cert-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 600;
    margin-top: 0px;
    margin-bottom: 20px;
    color: #000;
}

.cert-brand span {
    color: #1e88e5;
}

/* TEXT */
.cert-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    max-width: 520px;

    text-align: justify;
    text-justify: inter-word;

    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
}

/* ============================
   SCROLL SLIDE LOOP EFFECT
============================ */
.slide-img,
.slide-content {
    opacity: 0;
}

/* ACTIVE STATE (JS ADDS THIS) */
.slide-active .slide-img {
    animation: imgSlideLoop 1.3s ease forwards;
}

.slide-active .slide-content {
    animation: textSlideLoop 1.3s ease forwards;
}

/* IMAGE → LEFT TO RIGHT */
@keyframes imgSlideLoop {
    from {
        transform: translateX(-120px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* CONTENT → RIGHT TO LEFT */
@keyframes textSlideLoop {
    from {
        transform: translateX(120px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ============================
   MOBILE RESPONSIVE
============================ */
@media (max-width: 991px) {

    .certification-section {
        min-height: auto;
        padding: 50px 20px;
    }

    .certification-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .cert-image-wrapper img {
    width: 100%;
    border-radius: 14px;
    margin-left: 0px;
    position: relative;
    z-index: 2;
    background: #fff;
    box-shadow:
        0 25px 50px rgba(13, 110, 253, 0.25),
        0 12px 25px rgba(13, 110, 253, 0.18);
}

    .cert-brand {
        font-size: 34px;
        text-align: center;
        margin-bottom: 0px;
    }

    .cert-content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;   /* 🔑 KEY FIX */
    align-items: flex-start;       /* keep left aligned */
    padding-top: 0;
    margin-top: 50px;
}

    .cert-text {
        max-width: 100%;
        font-size: 15px;
        line-height: 1.6;
        margin-top: 0px !important;
    }

    /* MOBILE ANIMATION DISTANCE */
    @keyframes imgSlideLoop {
        from {
            transform: translateX(-30px);
            opacity: 0;
        }
        to {
            transform: translateX(0);
            opacity: 1;
        }
    }

    @keyframes textSlideLoop {
        from {
            transform: translateX(30px);
            opacity: 0;
        }
        to {
            transform: translateX(0);
            opacity: 1;
        }
    }
}




