
/*******************************/
/********* General Styles *******/
/*******************************/
body {
    font-family: 'Poppins', sans-serif;
}

body {
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

body, html {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* removes right-side white space */
}


.wrapper {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 20px;
}

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 90px; /* moved up so it doesn’t overlap */
    width: 42px;
    height: 42px;
    background: #030f27;
    color: #fdbe33;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    text-decoration: none;
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease, background .3s ease;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}


.back-to-top:hover {
    background: #fdbe33;
    color: #030f27;
}

.page-row {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.col-main {
    flex: 0 0 60%;
}

.side-panel {
    flex: 0 0 30%;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/*******************************/
/********* Navbar Styles *******/
/*******************************/

.main-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 18px 0;
    background: transparent;
    transition: background-color .3s ease, padding .3s ease, box-shadow .3s ease;
}

.main-navbar.scrolled {
    background: #030f27 !important;
    padding: 12px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
}


.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-logo img {
    height: 46px;
}

.company-name {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: .5px;
}

/* Nav Menu */
.nav-menu {
    list-style: none;
    display: flex;
    gap: 24px;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    transition: color .3s ease;
}

.nav-menu li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: #fdbe33;
    transition: width .3s ease;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #fdbe33;
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
}

/* Mobile toggle (optional) */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: #ffffff;
}

/* Dropdown */
.nav-menu .dropdown {
    position: relative;
}

.nav-menu .dropdown-menu {
    position: absolute;
    top: 100%; /* sits directly below parent */
    left: 0;
    background: #030f27;
    padding: 10px 0;
    border-radius: 6px;
    display: none;
    min-width: 220px;
    z-index: 9999;
}

.nav-menu .dropdown:hover > .dropdown-menu {
    display: block;
}

.nav-menu .dropdown-menu li {
    width: 100%;
}

.nav-menu .dropdown-menu li a {
    display: block;
    padding: 10px 18px;
    color: #ffffff;
    font-size: 14px;
    text-decoration: none;
    white-space: nowrap;
}

.nav-menu .dropdown-menu li a:hover {
    background: #fdbe33;
    color: #030f27;
}

.dropdown-arrow {
    font-size: 10px;
    margin-left: 6px;
}

/* CTA Button */
.nav-cta .btn-cert {
    background: #fdbe33;
    color: #030f27;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: .3s ease;
}

.nav-cta .btn-cert:hover {
    background: #ffffff;
    color: #030f27;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex; /* Show only on mobile */
    }
}

@media (max-width: 768px) {
    .nav-cta .btn-cert {
        width: 100%;
        text-align: center;
        white-space: nowrap;
        padding: 10px 0;
    }
}

.nav-menu.menu-open {
    display: flex;
    flex-direction: column;
    /* Add styling for mobile menu appearance */
}

/* Show mobile menu when toggled */
.nav-menu.menu-open {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    padding: 20px;
    gap: 10px;
    z-index: 999;
}

.nav-menu.menu-open li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 0;
}

.nav-menu.menu-open li:last-child {
    border-bottom: none;
}


/*******************************/
/********* Hero Carousel *******/
/*******************************/

.hero-carousel {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 520px;
    overflow: hidden; /* prevents video overflow */
    display: flex;
    align-items: center;
    justify-content: center;

}

/**.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    background: #030f27 url('../img/carousel-4.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: heroZoom 18s ease-in-out infinite;
}**/

/* Background Video */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
}


.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(3,15,39,0.85), rgba(3,15,39,0.45));
    z-index: 2;
}

.hero-watermark1 {
    position: absolute;
    top: 190px;;        /* adjust position */
    left: 40px;         /* move to left if you prefer */
    width: 160px;        /* adjust size */
    opacity: 0.2;       /* transparency level */
    z-index: 2;          /* above video, below text */
    pointer-events: none; /* prevents accidental clicks */
    filter: grayscale(100%); /* optional: makes it blend better */
}

.hero-watermark2 {
    position: absolute;
    top: 190px;;        /* adjust position */
    right: 40px;         /* move to left if you prefer */
    width: 160px;        /* adjust size */
    opacity: 0.3;       /* transparency level */
    z-index: 2;          /* above video, below text */
    pointer-events: none; /* prevents accidental clicks */
    filter: grayscale(100%); /* optional: makes it blend better */

}


.hero-content {
    position: relative;
    z-index: 3;
    color: #ffffff;
    max-width: 700px;
    padding: 0 20px;
    text-align: left; /* or center if you prefer */
    margin: 0 auto; /* centers the block */
}


.hero-tagline {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fdbe33;
    margin-bottom: 10px;
}

.hero-content h1 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 15px;
}

.hero-subtext {
    font-size: 16px;
    max-width: 520px;
    margin-bottom: 25px;
}

.hero-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #fdbe33;
    color: #030f27;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: .3s ease;
}

.hero-btn:hover {
    background: #ffffff;
    color: #030f27;
}

/* Zoom animation */
@keyframes heroZoom {
    0% { transform: scale(1); }
    50% { transform: scale(1.06); }
    100% { transform: scale(1); }
}

/* Responsive */
@media (max-width: 991px) {
    .nav-menu {
        display: none; /* you can later add mobile menu logic */
    }

    .nav-toggle {
        display: flex;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .hero-subtext {
        margin: 0 auto 22px auto;
    }
}

@media (max-width: 575px) {
    .hero-carousel {
        height: 80vh;
    }
}

/*******************************/
/******* TRUST BADGES CONTAINER  CSS *******/
/*******************************/

/* TRUST BADGES CONTAINER */
.trust-badges {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    justify-content: left;
    flex-wrap: wrap;
}

/* EACH BADGE */
.trust-badges span {
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;

    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 20px;

    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(2px);

    transition: all 0.3s ease;
}

/* HOVER EFFECT (OPTIONAL PREMIUM) */
.trust-badges span:hover {
    background: #f4b400;
    color: #000;
    border-color: #f4b400;
}

@media (max-width: 767.98px) {
    .trust-badges span {
        font-size: 12px;
        padding: 6px 14px;
    }
}






/*******************************/
/******* Section Header ********/
/*******************************/
.section-header {
    position: relative;
    width: 100%;
    margin-top: 35px;
    margin-bottom: 45px;
}

.section-header p {
    color: #fdbe33;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.section-header h2 {
    margin: 0;
    position: relative;
    font-size: 50px;
    font-weight: 700;
}

@media (max-width: 767.98px) {
    .section-header h2 {
        font-size: 30px;
    }
}


/*******************************/
/******* Feature Section *******/
/*******************************/

.feature-section {
    padding: 10px 0;
    background: #fdbe33;
}

.feature-section .section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #030f27;
}

.feature-section .section-header p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

/* Feature Cards */
.feature-card {
    background: #f5f6f7;
    padding: 10px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: .3s ease;
    border-top: 4px solid #0b1c6d;
    border-bottom: 4px solid #0b1c6d;
}

.feature-card:hover {
    transform: translateY(-8px);
    background: #030f27;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: #555;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    transition: .3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon i {
    font-size: 28px;
    color: #fdbe33;
}

.feature-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #0b3c91;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 767px) {
    .feature-card {
        margin-bottom: 20px;
    }
}



/*******************************/
/******** About Us CSS *********/
/*******************************/

.about-section {
    padding: 80px 0;
    background: #e3e4e6;
}

/* Title */
.about-section .section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #030f27;
}

.about-section .section-header p {
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
}

/* LEFT TEXT */
.about-text h3 {
    font-size: 26px;
    font-weight: 700;
    color: #030f27;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 18px;
}

/* Highlights */
.about-highlights {
    margin-top: 20px;
}

.highlight-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    background: #f5f6f7;
    padding: 12px 15px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: .3s ease;
}

.highlight-item:hover {
    transform: translateX(6px);
    background: #fdbe33;
}

.highlight-item i {
    font-size: 20px;
    color: #030f27;
    margin-right: 10px;
}

.highlight-item span {
    font-size: 15px;
    font-weight: 600;
    color: #030f27;
}

.about-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #030f27;
    color: #fdbe33;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: .3s ease;
}

.about-btn:hover {
    background: #fdbe33;
    color: #030f27;
}

/* RIGHT IMAGE */
.about-image {
    text-align: center;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform .4s ease;
}

.about-image img:hover {
    transform: scale(1.03);
}

/* Responsive */
@media (max-width: 767px) {
    .about-text {
        text-align: center;
        margin-bottom: 30px;
    }

    .highlight-item {
        justify-content: center;
    }
}

/*******************************/
/***** Mission & Vision Cards **/
/*******************************/

.mv-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.mv-card {
    flex: 1;
    min-width: 260px;
    background: #030f27;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: .3s ease;
    border-left: 4px solid #fdbe33;
}

.mv-card:hover {
    transform: translateY(-6px);
    background: #fdbe33;
}

.mv-card:hover h4,
.mv-card:hover p {
    color: #030f27;
}

/* Icon */
.mv-icon {
    width: 55px;
    height: 55px;
    background: #f2f5ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: .3s ease;
}

.mv-card:hover .mv-icon {
    background: #030f27;
    transform: scale(1.1);
}

.mv-icon i {
    font-size: 22px;
    color: #fdbe33;
}

/* Text */
.mv-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #fdbe33;
    margin-bottom: 10px;
}

.mv-card p {
    font-size: 15px;
    color: #f2f5ff;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 767px) {
    .mv-wrapper {
        flex-direction: column;
    }
}



/*******************************/
/******* ISO Standards CSS *****/
/*******************************/

.iso-section {
    padding: 80px 0;
    background: #030f27;
}

/* ISO Section Grid */
.page-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: stretch;

}

/* 3 columns on desktop */
.iso-col {
    display: flex; /* ← THIS makes equal-height cards work */
    flex-direction: column;
    flex: 0 0 calc(33.333% - 20px);
    

}

/* 2 columns on tablets */
@media (max-width: 992px) {
    .iso-col {
        display: flex; /* ← THIS makes equal-height cards work */
        flex-direction: column;
        flex: 0 0 calc(50% - 20px);

    }
}

/* 1 column on mobile */
@media (max-width: 600px) {
    .iso-col {
        display: flex; /* ← THIS makes equal-height cards work */
        flex-direction: column;
        flex: 0 0 100%;

    }
}

/* Title */
.iso-section .section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #fdbe33;
}

.iso-section .section-header p {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 40px;
}

/* ISO Cards */
.iso-card {
    background: #f5f6f7;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all .3s ease;
    border-top: 4px solid #fdbe33;
    border-bottom: 4px solid #fdbe33;
}

.iso-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    background: #fdbe33;
}

/* Icon */
.iso-icon {
    width: 70px;
    height: 70px;
    background: #030f27;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    transition: transform .3s ease, background .3s ease;
}

.iso-card:hover .iso-icon {
    transform: scale(1.1);
    background: #030f27;
}

.iso-icon i {
    font-size: 28px;
    color: #fdbe33;
}

/* Text */
.iso-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #030f27;
    margin-bottom: 10px;
}

.iso-card p {
    font-size: 15px;
    color: #555;
    flex-grow: 1;
    line-height: 1.6;
}

/* Button */
.iso-btn {
    display: inline-block;
    margin-top: auto;
    padding: 10px 22px;
    background: #030f27;
    color: #fdbe33;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: .3s ease;
}

.iso-card:hover .iso-btn {
    background: #030f27;
    color: #fdbe33;
}

.iso-btn:hover {
    background: #ffffff;
    color: #030f27;
}

/* Responsive */
@media (max-width: 767px) {
    .iso-card {
        margin-bottom: 20px;
    }
}



/**********************************/
/***** Certification Process ******/
/**********************************/

.process-section {
    background:#e3e4e6;
    padding: 35px 0;
}

/* Header */
.process-section .section-header p {
    max-width: 700px;
    margin: 0 auto 50px;
    color: #666;
}

/* Flow wrapper */
.process-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

/* Step */
.process-step {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    width: 180px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* Icon */
.process-icon {
    width: 60px;
    height: 60px;
    background: #eef2ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.process-icon i {
    font-size: 24px;
    color: #fdbe33;
}

/* Title */
.process-step h5 {
    font-size: 15px;
    font-weight: 600;
    margin: 0;
}

/* Arrow */
.process-arrow {
    font-size: 24px;
    color: #999;
    margin: 0 12px;
}

/* Button */
.process-btn {
    background: #fdbe33;
    color: #030f27;
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 600;
}

.process-btn:hover {
    background: #030f27;
    color: #fdbe33;
}

.step-no {
    display: inline-block;
    background: #0b1c6d;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    margin-bottom: 8px;
}

.process-subtitle {
    margin-bottom: 30px;
    color: #030f27;
}


@media (max-width: 768px) {

    .process-flow {
        flex-direction: column;
    }

    .process-arrow {
        transform: rotate(90deg);
        margin: 15px 0;
    }

    .process-step {
        width: 100%;
        max-width: 320px;
    }
}



/**********************************/
/******** Policies Slider *********/
/**********************************/

.policies-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.policy-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    transition: transform 0.1s ease;
}

.policy-card:hover {
    transform: translateY(-6px);
}

.policy-card i {
    font-size: 36px;
    color: #0b3c91;
    margin-bottom: 20px;
}

.policy-card h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.policy-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}


/*******************************/
/*********** FAQs CSS **********/
/*******************************/
.faqs {
    position: relative;
    width: 100%;
    background:#fafcfc;
    padding: 45px 0;
}

.faqs .row {
    position: relative;
}

.faqs .row::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    left: calc(50% - .5px);
    background: #fdbe33;
}

.faqs #accordion-1 {
    padding-right: 15px;
}

.faqs #accordion-2 {
    padding-left: 15px;
}

@media(max-width: 767.98px) {
    .faqs .row::after {
        display: none;
    }
    
    .faqs #accordion-1,
    .faqs #accordion-2 {
        padding: 0;
    }
    
    .faqs #accordion-2 {
        padding-top: 15px;
    }
}

.faqs .card {
    margin-bottom: 15px;
    border: none;
    border-radius: 0;
}

.faqs .card:last-child {
    margin-bottom: 0;
}

.faqs .card-header {
    padding: 0;
    border: none;
    background: #ffffff;
}

.faqs .card-header a {
    display: block;
    padding: 10px 25px;
    width: 100%;
    color: #121518;
    font-size: 16px;
    line-height: 40px;
    border: 1px solid rgba(0, 0, 0, .1);
    transition: .5s;
}

.faqs .card-header [data-toggle="collapse"][aria-expanded="true"] {
    background: #fdbe33;
}

.faqs .card-header [data-toggle="collapse"]:after {
    font-family: 'font Awesome 5 Free';
    content: "\f067";
    float: right;
    color: #fdbe33;
    font-size: 12px;
    font-weight: 900;
    transition: .5s;
}

.faqs .card-header [data-toggle="collapse"][aria-expanded="true"]:after {
    font-family: 'font Awesome 5 Free';
    content: "\f068";
    float: right;
    color: #030f27;
    font-size: 12px;
    font-weight: 900;
    transition: .5s;
}

.faqs .card-body {
    padding: 20px 25px;
    font-size: 16px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, .1);
    border-top: none;
}


/*******************************/
/******* Compliance CSS ********/
/*******************************/

.compliance-section {
    padding: 80px 0;
    background: #030f27;
}

/* Compliance Section Grid */
.page-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

/* 2 columns on desktop */
.compliance-col {
    flex: 0 0 calc(50% - 20px);
}

/* 2 columns on tablets */
@media (max-width: 992px) {
    .compliance-col {
        flex: 0 0 calc(50% - 20px);
    }
}

/* 1 column on mobile */
@media (max-width: 600px) {
    .compliance-col {
        flex: 0 0 100%;
    }
}


/* TOP CENTER TITLE */
.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #fdbe33;
    margin-bottom: 10px;
}

.section-header p {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 40px;
}


/* RIGHT TEXT AREA */
.compliance-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: #fdbe33;
    margin-bottom: 20px;
}

.compliance-text p {
    font-size: 16px;
    color: #ffffff;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* POLICY MINI CARDS */
.policy-card-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.policy-card {
    display: inline-block;
    padding: 12px 20px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    font-size: 15px;
    font-weight: 600;
    color: #030f27;
    text-decoration: none;
    transition: all .3s ease;
    border-left: 4px solid #fdbe33;
}

.policy-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    background: #fdbe33;
    color: #030f27;
}


/* LEFT IMAGE */
.compliance-image {
    text-align: center;
}

.compliance-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform .4s ease;
}

.compliance-image img:hover {
    transform: scale(1.03);
}

/* RESPONSIVE */
@media (max-width: 767px) {
    .compliance-text {
        text-align: center;
        margin-bottom: 30px;
    }

    .policy-links li {
        margin-bottom: 12px;
    }
}

/*******************************/
/******** New Contact CSS ******/
/*******************************/

.contact-section {
    padding: 80px 0;
    background: #f5f6f7;
}

/* Header */
.contact-section .section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #030f27;
}

.contact-section .section-header p {
    font-size: 16px;
    color: #555;
    margin-top: 5px;
}

/* Compliance Section Grid */
.page-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

/* 3 columns on desktop */
.compliance-col2 {
    flex: 0 0 calc(33.333% - 20px);
}

/* 2 columns on tablets */
@media (max-width: 992px) {
    .compliance-col2 {
        flex: 0 0 calc(50% - 20px);
    }
}

/* 1 column on mobile */
@media (max-width: 600px) {
    .compliance-col2 {
        flex: 0 0 100%;
    }
}


/* Contact Cards */
.contact-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    text-align: center;
    margin-bottom: 30px;
    transition: transform .3s ease, box-shadow .3s ease;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* Icon */
.contact-icon {
    width: 70px;
    height: 70px;
    background: #fdbe33;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    transition: transform .3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
}

.contact-icon i {
    font-size: 30px;
    color: #030f27;
}

/* Text */
.contact-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #030f27;
    margin-bottom: 10px;
}

.contact-card p {
    font-size: 15px;
    color: #555;
}

.contact-card .email {
    color: #fdbe33;
    font-weight: 600;
}

/* Contact Form */
.contact-form-new {
    background: #030f27;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.contact-form-new input,
.contact-form-new textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: none;
    border-radius: 6px;
    background: rgba(255,255,255,0.1);
    color: #ffffff;
    font-size: 15px;
    outline: none;
    transition: background .3s ease;
}

.contact-form-new input:focus,
.contact-form-new textarea:focus {
    background: rgba(255,255,255,0.2);
}

.contact-form-new textarea {
    height: 120px;
    resize: none;
}

.btn-send {
    width: 100%;
    padding: 14px;
    background: #fdbe33;
    color: #030f27;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 6px;
    transition: .3s ease;
}

.btn-send:hover {
    background: #ffffff;
    color: #030f27;
}

/* PURE CSS Fade-in Animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}




/*******************************/
/********* Footer CSS **********/
/*******************************/
/* Footer */
.footer {
    background: #030f27;
    color: #ffffff;
    padding: 70px 0 30px;
    margin-top: 60px;
}

/* Footer Container */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;

    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

/* Logo column: small fixed width */
.footer-logo-col {
    flex: 0 0 120px; /* adjust width as needed */
}


/* Footer Other Columns */
.footer-col {
    flex: 1 1 250px;
}



/* Logo */
.footer-logo img {
    width: 90px;
    margin-bottom: 15px;
}

.footer-company {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
}

/* Section Titles */
.footer-col h2 {
    font-size: 20px;
    font-weight: 600;
    color: #fdbe33;
    margin-bottom: 15px;
    position: relative;
}

.footer-col h2::after {
    content: "";
    width: 50px;
    height: 2px;
    background: #fdbe33;
    position: absolute;
    bottom: -5px;
    left: 0;
}

/* Links */
.footer-col a {
    display: block;
    color: #ffffff;
    margin-bottom: 10px;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col a i {
    margin-right: 8px;
}

.footer-col a:hover {
    color: #fdbe33;
    letter-spacing: 1px;
}

/* Contact Icons */
.footer-col p i {
    margin-right: 10px;
    color: #fdbe33;
}

/* Footer Menu */
.footer-menu {
    text-align: center;
    padding: 15px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
}

.footer-menu a {
    color: #ffffff;
    margin: 0 15px;
    text-decoration: none;
    font-size: 15px;
}

.footer-menu a:hover {
    color: #fdbe33;
}

/* Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
    }

    .footer-col {
        flex: 1 1 100%;
    }

    .footer-menu a {
        display: block;
        margin: 8px 0;
    }
}

/*******************************/
/********** whatsapp CSS **********/
/*******************************/
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    z-index: 9999;
    text-decoration: none;
}


/*******************************/
/******* SubPage Header CSS *******/
/*******************************/

.subpage-header {
    position: relative;
    width: 100%;
    height: 320px;
    background: url('../img/3409297.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.subpage-overlay {
    position: absolute;
    inset: 0;
    background: rgba(3, 15, 39, 0.75);
    z-index: 1;
}

.subpage-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.subpage-content h1 {
    color: #ffffff;
    font-size: 42px;
    font-weight: 800;
    letter-spacing: 1px;
}

/* Responsive: Subpage Header */
@media (max-width: 991.98px) {
    .subpage-header {
        height: 260px;
    }

    .subpage-content h1 {
        font-size: 34px;
    }
}

@media (max-width: 767.98px) {
    .subpage-header {
        height: 220px;
    }

    .subpage-content h1 {
        font-size: 28px;
    }
}

@media (max-width: 575.98px) {
    .subpage-header {
        height: 180px;
    }

    .subpage-content h1 {
        font-size: 24px;
    }
}

/*******************************/
/******* SubPage Header title animation  *******/
/*******************************/

/* SubPage Header Title Animation */
.subpage-title,
.subpage-subtitle {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards;
}

.subpage-subtitle {
    animation-delay: 0.3s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*******************************/
/**********Bredcrumb Section**********/
/*******************************/
.breadcrumb-nav {
    max-width: 1200px;
    margin: 20px auto 0;
    padding: 0 20px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #666;

}

.breadcrumb-nav a {
    color: #030f27;
    text-decoration: none;
    font-weight: 600;
}

.breadcrumb-nav span {
    margin: 0 6px;
    color: #999;
}

.breadcrumb-nav .current {
    color: #666;
    font-weight: 500;
}

/*******************************/
/**********Policy Section**********/
/*******************************/

/* Page Content Layout */
.page-content {
    padding: 60px 0;
    background: #f8f9fc;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Row */
.row {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* Main Content */
.col-main {
    flex: 0 0 70%;
}

/* Side Panel */
.side-panel {
    flex: 0 0 25%;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Side Box */
.side-box {
    background: #030f27;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

/* Side Box Title */
.side-box h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fdbe33;
    margin-bottom: 15px;
}

/* Quick Links */
.side-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.side-links li {
    margin-bottom: 10px;
   
}

.side-links li i {
    margin-right: 8px;
   
}

.side-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s;
}

.side-links a:hover {
    color: #fdbe33;
}

/* Contact Box */
.contact-box p {
    font-size: 14px;
    margin-bottom: 15px;
    color: #ffffff;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #ffffff;
    font-weight: 600;
}

.contact-item i {
    color: #fdbe33;
    font-size: 18px;
}

/* Contact Button */
.contact-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 18px;
    background: #fdbe33;
    color: #030f27;
    font-weight: 700;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
}

.contact-btn:hover {
    background: #030f27;
    color: #ffffff;
}

/* Policy Meta */
.policy-meta span {
    display: inline-block;
    background: #fdbe33;
    color: #030f27;
    padding: 6px 14px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
}

/* Titles */
.policy-title {
    font-size: 36px;
    font-weight: 800;
    color: #030f27;
    margin-bottom: 20px;
}

.policy-subtitle {
    font-size: 22px;
    font-weight: 700;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #030f27;
}

/* Paragraphs */
.col-main p {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 18px;
}

/* Bullet List */
.policy-list {
    padding-left: 20px;
    margin-bottom: 25px;
}

.policy-list li {
    margin-bottom: 12px;
    line-height: 1.6;
    position: relative;
    padding-left: 10px;
}

.policy-list li::before {
    content: "•";
    position: absolute;
    left: -12px;
    top: 0;
    color: #fdbe33;
    font-size: 20px;
}

/* Responsive */
@media (max-width: 900px) {
    .row {
        flex-direction: column;
    }

    .col-main,
    .side-panel {
        flex: 0 0 100%;
    }
}


/*******************************/
/**********Trust Section**********/
/*******************************/
/* Trust Section */
.trust-section {
    background: #fdbe33;
    padding: 60px 0;
    margin-top: 40px;
}

.trust-header {
    text-align: center;
    margin-bottom: 40px;
}

.trust-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: #030f27;
    margin-bottom: 10px;
}

.trust-header p {
    font-size: 16px;
    color: #555;
}

/* Grid Layout */
.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.trust-col {
    flex: 0 0 calc(33.333% - 20px);
}

/* Trust Card */
.trust-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: 0.3s;
}

.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.trust-icon {
    font-size: 40px;
    color: #030f27;
    margin-bottom: 15px;
}

.trust-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #030f27;
    margin-bottom: 10px;
}

.trust-card p {
    font-size: 15px;
    color: #555;
}

/* Responsive */
@media (max-width: 992px) {
    .trust-col {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (max-width: 600px) {
    .trust-col {
        flex: 0 0 100%;
    }
}


/*******************************/
/**********CTA Section**********/
/*******************************/
/* Contact CTA Section */
.contact-cta {
    background: #030f27;
    padding: 60px 0;
    text-align: center;
    color: #ffffff;
    margin-top: 50px;
    border-radius: 0;
}

.contact-cta .cta-content h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #fdbe33;
}

.contact-cta .cta-content p {
    font-size: 16px;
    color: #e0e0e0;
    margin-bottom: 25px;
}

/* Buttons */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
    font-size: 16px;
}

/* Primary Button */
.cta-btn.primary {
    background: #fdbe33;
    color: #030f27;
}

.cta-btn.primary:hover {
    background: #ffffff;
    color: #030f27;
}

/* Secondary Button */
.cta-btn.secondary {
    background: transparent;
    border: 2px solid #fdbe33;
    color: #fdbe33;
}

.cta-btn.secondary:hover {
    background: #fdbe33;
    color: #030f27;
}

/* Responsive */
@media (max-width: 600px) {
    .contact-cta .cta-content h2 {
        font-size: 26px;
    }
}


/*******************************/
/**BASIC CSS FOR TABS + LAYOUT***/
/*******************************/
<style>
/* Tabs */
.location-tabs {
    margin-bottom: 30px;
    text-align: center;
}

.tabs {
    list-style: none;
    padding: 0;
    display: inline-flex;
    gap: 20px;
    border-bottom: 2px solid #eee;
}

.tab {
    padding: 10px 20px;
    cursor: pointer;
    font-weight: 600;
    color: #555;
    border-bottom: 3px solid transparent;
    transition: 0.3s;
}

.tab.active {
    color: #ffb805;
    border-bottom: 3px solid #ffb805;
}

/* Content Layout */
.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.contact-card {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.contact-card h3 {
    margin-bottom: 10px;
}

.contact-form-new {
    flex: 1;
    min-width: 280px;
}

.contact-form-new form input,
.contact-form-new form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 6px;
    border: 1px solid #ddd;
}

.btn-send {
    background: #ffb805;
    color: #000;
    padding: 12px 25px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
}

.btn-send:hover {
    background: #e0a204;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
    }
}
</style>

/* Insights Grid */
.insight-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}


/*******************************/
/**Insight Cards***/
/*******************************/
/* Card */
/* Insights Grid - 3 cards per row */
.insight-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Tablet: 2 cards */
@media (max-width: 992px) {
    .insight-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile: 1 card */
@media (max-width: 600px) {
    .insight-cards {
        grid-template-columns: 1fr;
    }
}

/* Card */
.insight-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Inner Content */
.card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-content p {
    flex-grow: 1;
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

/* Read More Button */
.read-more {
    margin-top: auto;
    color: #fdbe33;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

/* Hover Effects */
.insight-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.read-more:hover {
    color: #030f27;
}

/* Mobile */
@media (max-width: 600px) {
    .insight-card {
        padding: 20px;
    }
}











