@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
body{
    font-family: 'Poppins', sans-serif;
}
:root {
      --gold: #f4c403;
      --dark-navy: #0d1b2e;
      --nav-dark: #0a1625;
      --text-light: #c8d6e5;
      --navy: #112240;
      --text-muted-custom: #555f6e;
      --light-bg: #f9f9f9;
      --text-muted-gold: #B8821A;
      --border-gold: rgba(232,160,32,0.35);
      --gold-light: #FFD280;
      --dark: #0D1117;
      --dark2: #161C27;
      --dark3: #1E2637;
      --border: rgba(245,166,35,0.25);
      --text-muted: #ffffff;
    }

/* HEADER */
.main-header{
    position:absolute;
    width:100%;
    z-index:999;
}

/* TOP BAR */
.top-bar{
    background:#02142d;
    border-bottom:1px solid rgba(255,255,255,.1);
    padding:5px 0;
}

.top-left,
.top-center,
.top-info{
    display:flex;
    align-items:center;
}

.top-left{
    gap:10px;
    color:#fff;
    font-size:14px;
}

.top-left i{
    color:#fece0e;
}

.top-center{
    justify-content:center;
    gap:30px;
}

.top-info{
    gap:10px;
    color:#fff;
    font-size:14px;
}

.top-info i{
    color:#fece0e;
}

.social-icons a{
    color:#fff;
    margin-left:15px;
    transition:.3s;
}

.social-icons a:hover{
    color:#fece0e;
}

/* NAVBAR */
.custom-navbar{
    background:rgba(3, 19, 46, 0.449);
    /* backdrop-filter:blur(1px); */
    padding:20px 0;
}

.navbar-brand img{
    height:55px;
}

.navbar-nav{
    gap:44px;
}

.nav-link{
    color:#fff !important;
    font-size:14px;
    font-weight:600;
    position:relative;
    padding:12px 10px !important;
}

.nav-link:hover,
.nav-link.active{
    color:#fece0e !important;
    /* content:'' !important; */
}

.nav-link.active::after,
.nav-link:hover::after{
    /* content:''; */
    /* position:absolute;
    left:10px;
    bottom:-8px;
    width:50px;
    height:3px;
    background:#d8a63a; */
}

/* DROPDOWN */
.dropdown-menu{
    border:none;
    border-radius:10px;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
}

.dropdown-item{
    padding:10px 20px;
}

/* QUOTE BUTTON */
.quote-btn-custom{
    background:#fece0e;
    color:#111;
    padding:14px 25px;
    border-radius:8px;
    text-decoration:none;
    font-weight:700;
    display:flex;
    align-items:center;
    gap:10px;
    transition:.3s;
}


.quote-btn-custom:hover{
    background:#c59328;
    transform:translateY(-2px);
    color:#111;
}

/* MOBILE */
.navbar-toggler{
    border:none;
    color:#fff;
    font-size:28px;
}

@media(max-width:991px){

    .custom-navbar{
        padding:15px 0;
    }

    .navbar-collapse{
        background:#02142d;
        margin-top:20px;
        padding:20px;
        border-radius:10px;
    }

    .quote-btn-custom{
        margin-top:20px;
        justify-content:center;
    }
}

/* MEGA MENU */
.mega-dropdown {
    position: relative;
}

.mega-menu {
    position: absolute;
    top: 120%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    background: #fff;
    border-radius: 15px;
    padding: 22px;
    box-shadow: 0 15px 40px rgba(0,0,0,.15);
    opacity: 0;
    visibility: hidden;
    transition: .35s ease;
    z-index: 999;
}

/* Hover open */
.mega-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    top: 100%;
}

/* LEFT SIDE */
.mega-heading {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.navbar-toggler {
    padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
    font-size: var(--bs-navbar-toggler-font-size);
    line-height: 1;
    color: rgb(255 207 14) !important;
    background-color: transparent;
    border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);
    border-radius: var(--bs-navbar-toggler-border-radius);
    transition: var(--bs-navbar-toggler-transition);
}

.icon-circle {
    width: 44px;
    height: 44px;
    background: #d4a32d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle i {
    color: #fff;
    font-size: 24px;
}

.mega-heading h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #0b1b3d;
}

.heading-line {
    width: 60px;
    height: 4px;
    background: #d4a32d;
}

.mega-links {
    list-style: none;
    padding: 0;
}

.mega-links li {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
}

.mega-links i {
    font-size: 19px;
    color: #666;
    width: 35px;
}

.mega-links a {
    text-decoration: none;
    color: #111;
    font-size: 16px;
    font-weight: 500;
    transition: .3s;
}

.mega-links a:hover {
    color: #d4a32d;
    padding-left: 6px;
}

/* IMAGE CARD */
.mega-image-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
}

.mega-image-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 18px;
}

.mega-overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 30px;
    color: #fff;
    width: 100%;
    background: linear-gradient(
        to top,
        rgba(0,0,0,.85),
        transparent
    );
}

.mega-overlay h5 {
    font-size: 18px;
    margin-bottom: 10px;
}

.mega-overlay h2 {
    font-size: 23px;
    font-weight: 700;
    line-height: 1.2;
}

.mega-overlay span {
    color: #d4a32d;
}

.mega-line {
    width: 70px;
    height: 4px;
    background: #d4a32d;
    margin: 15px 0;
}

.mega-overlay p {
    font-size: 18px;
}

/* Responsive */
@media(max-width:991px){

    .mega-menu{
        position: static;
        width: 100%;
        transform: none;
        opacity: 1;
        visibility: visible;
        display: none;
        margin-top: 15px;
    }

    .mega-dropdown:hover .mega-menu{
        display: block;
    }
}
/* Parent menu position */
.main-menu ul li {
    position: relative;
}

/* Dropdown hidden by default */
.main-menu .sub-menu {
    position: absolute;
    top: 120%;
    left: 0;
    min-width: 280px;
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    z-index: 999;
}

/* Hover pe dropdown open */
.main-menu .menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    top: 100%;
}

/* Dropdown item style */
.main-menu .sub-menu li {
    display: block;
    width: 100%;
}

.main-menu .sub-menu li a {
    display: block;
    padding: 10px 15px;
    color: #222;
    font-size: 15px;
    border-radius: 6px;
    transition: 0.3s;
}

.main-menu .sub-menu li a:hover {
    background: #f4c443;
    color: #000;
}

/* hero slider  */
/*=========================
    HERO SLIDER
==========================*/
.hero-slider {
    position: relative;
}

.hero-slide {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgb(0 0 0 / 69%) 35%, rgba(0, 0, 0, 0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 650px;
}

.sub-title {
    color: #f4b223;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 20px;
    position: relative;
    padding-top: 20px;
}

.sub-title::after {
    content: "";
    width: 90px;
    height: 2px;
    background: #f4b223;
    position: absolute;
    top: 50%;
    margin-left: 15px;
}

.hero-content h1 {
    font-size: 45px;
    line-height: 1.05;
    font-weight: 800;
    margin-bottom: 25px;
    padding-top:40px;
}

.hero-content h1 span {
    color: #f4b223;
}

.hero-content p {
    font-size: 16px;
    line-height: 1.3;
    color: rgba(255,255,255,0.85);
    margin-bottom: 40px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.theme-btn {
    background: #f4b223;
    color: #111;
    padding: 13px 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: .3s;
}

.theme-btn:hover {
    background: #fff;
    color: #111;
}

.border-btn {
    border: 2px solid rgba(255,255,255,0.4);
    color: #fff;
    padding: 13px 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: .3s;
}

.border-btn:hover {
    background: #fff;
    color: #111;
}

/* STATS BOX */
.hero-stats {
    position: absolute;
    left: 67%;
    bottom: 40px;
    transform: translateX(-50%);
    z-index: 10;
    width: 50%;
    background: rgb(5 16 40 / 22%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 18px 15px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    backdrop-filter: blur(2px);
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    color: #fff;
    border-right: 1px solid rgba(255,255,255,0.1);
    padding-right: 20px;
}

.stat-box:last-child {
    border-right: none;
}

.stat-icon i {
    font-size: 45px;
    color: #f4b223;
}

.stat-box h4 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-box p {
    margin: 0;
    color: rgba(255,255,255,0.75);
}

/* INDICATORS */
.custom-indicators {
    right: 30px;
    left: auto;
    bottom: 50%;
    transform: translateY(50%);
    flex-direction: column;
    gap: 15px;
    margin: 0;
}

.custom-indicators button {
    width: 14px !important;
    height: 14px !important;
    border-radius: 50%;
    border: 2px solid #fff !important;
    background: transparent !important;
    opacity: 1 !important;
}

.custom-indicators .active {
    background: #f4b223 !important;
    border-color: #f4b223 !important;
}

/* RESPONSIVE */
@media(max-width:991px){

    .hero-content h1 {
        font-size: 31px;
    }

    .hero-content p {
        font-size: 16px;
        
    }

    .hero-stats {
        position: relative;
        bottom: 0;
        transform: none;
        left: 0;
        width: 100%;
        margin-top: 50px;
        flex-direction: column;
    }

    .stat-box {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding-bottom: 20px;
    }

    .stat-box:last-child {
        border-bottom: none;
    }

    .custom-indicators {
        display: none;
    }

    .hero-slide {
        padding: 120px 0 60px;
    }
}
/* hero slider  */
/*=========================
    ABOUT US
=========================*/
.about-section {
    background: #fff;
    overflow: hidden;
}

.about-content {
    max-width: 520px;
}

.about-subtitle {
    color: #d9a122;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    padding-left: 55px;
    display: inline-block;
    margin-bottom: 20px;
}

.about-subtitle::before {
    content: "";
    width: 40px;
    height: 2px;
    background: #d9a122;
    position: absolute;
    left: 0;
    top: 50%;
}

.about-content h2 {
    font-size: clamp(1.7rem, 2.8vw, 2.3rem);
    line-height: 1.2;
    font-weight: 700;
    color: #111;
    margin-bottom: 25px;
}

.about-content p {
    color: #666;
    font-size: 0.97rem;
    line-height: 1.9;
    margin-bottom: 25px;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #d9a122;
    color: #111;
    text-decoration: none;
    padding: 16px 28px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    transition: .4s;
}

.about-btn:hover {
    background: #d9a122;
    color: #fff;
}
.experience-box{
    animation: floatBox 3s ease-in-out infinite;
    transition: all .3s ease;
}

@keyframes floatBox{
    0%{
        transform: translateY(0);
    }
    50%{
        transform: translateY(-15px);
    }
    100%{
        transform: translateY(0);
    }
}
.small-img1 img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
}
.my-boder{
    border-right: 1px solid #dfdbdb;
}

/* IMAGE GRID */
.about-images {
    position: relative;
    display: flex;
    gap: 20px;
}

.big-image {
    width: 65%;
}

.big-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 12px;
}

.small-images {
    width: 35%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.small-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
}
.big-image,
.small-img{
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
}

/* Image Transition */
.big-image img,
.small-img img{
    width: 100%;
    transition: transform 0.6s ease, filter 0.6s ease;
}

/* Hover Effect */
.big-image:hover img,
.small-img:hover img{
    transform: scale(1.08);
    filter: brightness(1.05);
}

/* Card Lift Effect */
.big-image,
.small-img{
    transition: transform 0.4s ease;
}

.big-image:hover,
.small-img:hover{
    transform: translateY(-8px);
}

/* EXPERIENCE BOX */
.experience-box {
    position: absolute;
    bottom: 35px;
    left: -40px;
    background: #fff;
    padding: 10px 15px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0 10px 40px rgba(0,0,0,.12);
}

.exp-icon i {
    font-size: 40px;
    color: #f4c403;
}

.experience-box h3 {
    font-size: 42px;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.experience-box span {
    color: #666;
    font-size: 15px;
}

/* RESPONSIVE */
@media(max-width:991px){

    .about-content h2 {
        font-size: 36px;
    }

    .about-images {
        flex-direction: column;
    }

    .big-image,
    .small-images {
        width: 100%;
    }

    .big-image img,
    .small-img img {
        height: auto;
    }

    .experience-box {
        position: relative;
        left: 0;
        bottom: 0;
        margin-top: 20px;
        width: fit-content;
    }
}

/* projects slider */
.projects-section{
    /* background:#04152d; */
}
.projects-section {
    background: rgb(4, 21, 45);
}



.section-tag{
    color:#fece0e;
    font-size:14px;
    font-weight:600;
}

.project-title{
    color:#fff;
    font-size:33px;
    font-weight:700;
}

.view-project-btn{
    border:1px solid rgba(255,255,255,.2);
    color:#fff;
    padding:14px 28px;
    text-decoration:none;
    border-radius:8px;
    transition:.3s;
}

.view-project-btn:hover{
    background:#fece0e;
    color:#fff;
}

.project-card{
    background:#071c39;
    border-radius:18px;
    overflow:hidden;
    transition:.4s;
}

.project-card:hover{
    transform:translateY(-8px);
}

.project-card img{
    width:100%;
    height:260px;
    object-fit:cover;
}

.project-content{
    padding:20px;
}

.project-content h4{
    color:#fff;
    font-size:22px;
    font-weight:700;
}

.project-content span{
    color:#fece0e;
    display:block;
    margin-bottom:10px;
}

.location{
    color:#d0d7e3;
    font-size:14px;
}

.location i{
    color:#fece0e;
}

/* dots */
.custom-indicators{
    bottom:-60px;
}

.custom-indicators button{
    width:10px !important;
    height:10px !important;
    border-radius:50%;
    background:#fff !important;
    border:none !important;
}

.custom-indicators .active{
    background:#fece0e !important;
}
.projects-section{
    background:#04152d;
}

.project-card{
    background:#071c39;
    border-radius:20px;
    overflow:hidden;
    transition:.4s;
}

.project-card img{
    width:100%;
    height:320px;
    object-fit:cover;
}

.project-content{
    padding:20px;
}

.project-content h4{
    color:#fff;
    font-size:22px;
    font-weight:700;
}

.project-content span{
    color:#fece0e;
    display:block;
    margin-bottom:10px;
}

.location{
    color:#cfd7e3;
}

.swiper-pagination-bullet{
    background:#fff;
    opacity:1;
}

.swiper-pagination-bullet-active{
    background:#fece0e !important;
}
/* projects slider */

/* service detail */
.services-section{
    background:#fff;
}

.section-subtitle{
    color:#fece0e;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
}

.section-title{
    font-size:36px;
    font-weight:700;
    color:#0d1325;
    line-height:1.2;
    margin-top:10px;
}

.service-desc{
    font-size:16px;
    color:#7b8391;
    line-height:1.8;
    margin:0;
}

.service-card{
    background:#fff;
    border:1px solid #f1f1f1;
    border-radius:18px;
    padding:35px 25px;
    text-align:center;
    height:100%;
    transition:.4s ease;
    box-shadow:0 5px 30px rgba(0,0,0,.03);
}

.service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.service-icon{
    width:75px;
    height:75px;
    background:#fff8ea;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 20px;
    border:1px solid #f7e0a8;
}

.service-icon i{
    font-size:32px;
    color:#fece0e;
}

.service-card h4{
    font-size:22px;
    font-weight:700;
    color:#101828;
    margin-bottom:15px;
}

.service-card p{
    color:#6b7280;
    font-size:15px;
    line-height:1.8;
    margin:0;
}

/* Responsive */
@media(max-width:991px){

    .section-title{
        font-size:34px;
    }

    .service-desc{
        margin-top:20px;
    }
}
/* service detail */
/* client section */
.client-section {
    background: #04152d;
    overflow: hidden;
    position: relative;
}

.section-heading span {
    color: #fece0e;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.section-heading h2 {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    margin-top: 10px;
}

/* Slider */
.logo-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.logo-track {
    display: flex;
    align-items: center;
    width: calc(250px * 12);
    animation: scroll 25s linear infinite;
}

.logo-slider:hover .logo-track {
    animation-play-state: paused;
}

.logo-box {
    width: 220px;
    min-width: 220px;
    height: 120px;
    background: #fff;
    border-radius: 14px;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: .4s;
}

.logo-box:hover {
    transform: translateY(-5px);
}

.logo-box img {
    max-width: 150px;
    max-height: 70px;
    object-fit: contain;
}

/* Infinite Animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-220px * 6));
    }
}

/* Responsive */
@media(max-width:991px) {
    .section-heading h2 {
        font-size: 32px;
    }

    .logo-box {
        width: 180px;
        min-width: 180px;
        height: 100px;
    }
}
/* client section */
/* footer  */
.footer-top-cta {
    background: linear-gradient(rgb(2 20 45 / 42%), rgba(2, 20, 45, 0.92)), url(../img/foot-bg.jpg);

    background-size: cover;
    background-position: center;
    padding: 19px 0;
    position: relative;
    overflow: hidden;
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.cta-line {
    width: 4px;
    height: 90px;
    background: #f4c403;
    flex-shrink: 0;
}

.cta-text h2 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}

.cta-text h2 span {
    color: #f4c403;
}

.cta-text p {
    color: #d8d8d8;
    font-size: 19px;
    margin-top: 12px;
    margin-bottom: 0;
    line-height: 1.6;
}

.cta-btn {
    background: #f4c403;
    color: #111;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 12px 15px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: 0.3s;
}

.cta-btn:hover {
    background: #fff;
    color: #000;
    text-decoration: none;
}

.cta-btn i {
    font-size: 18px;
}

/* Mobile Responsive */
@media (max-width: 991px) {

    .footer-top-cta {
        text-align: center;
        padding: 40px 20px;
    }

    .cta-content {
        flex-direction: column;
        gap: 20px;
    }

    .cta-line {
        width: 80px;
        height: 4px;
    }

    .cta-text h2 {
        font-size: 32px;
    }

    .cta-text p {
        font-size: 18px;
    }

    .text-right {
        text-align: center !important;
        margin-top: 25px;
    }
}

@media (max-width: 576px) {

    .cta-text h2 {
        font-size: 26px;
    }

    .cta-text p {
        font-size: 15px;
    }

    .cta-btn {
        padding: 15px 28px;
        font-size: 15px;
    }
}
.footer-section {
    background: #04152d;
    padding: 80px 0 25px;
    position: relative;
    overflow: hidden;
}

.footer-logo {
    width: 230px;
    margin-bottom: 20px;
}

.footer-logo-box p {
    color: #c7d1dd;
    line-height: 1.5;
    font-size: 16px;
    margin-bottom: 25px;
}

.footer-widget h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.footer-widget ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-widget ul li {
    margin-bottom: 14px;
}

.footer-widget ul li a {
    color: #c7d1dd;
    text-decoration: none;
    transition: .3s;
    font-size: 16px;
    font-weight: 500;
}

.footer-widget ul li a:hover {
    color: #fece0e;
    padding-left: 5px;
}

.footer-contact .contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
    color: #c7d1dd;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.7;
}

.footer-contact i {
    color: #fece0e;
    margin-top: 4px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: .3s;
}

.footer-social a:hover {
    background: #fece0e;
    color: #04152d;
    border-color: #fece0e;
}

.newsletter-text {
    color: #c7d1dd;
    font-size: 15px;
    line-height: 1.8;
}

.newsletter-form {
    position: relative;
    margin-top: 20px;
}

.newsletter-form input {
    width: 100%;
    height: 52px;
    border: 1px solid rgba(255,255,255,.1);
    background: rgba(255,255,255,.04);
    border-radius: 10px;
    color: #fff;
    padding: 0 60px 0 20px;
    outline: none;
}

.newsletter-form button {
    position: absolute;
    right: 6px;
    top: 6px;
    width: 40px;
    height: 40px;
    border: none;
    background: #fece0e;
    color: #04152d;
    border-radius: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    margin-top: 60px;
    padding-top: 20px;
}

.footer-bottom p,
.footer-bottom a,
.footer-bottom span {
    color: #c7d1dd;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.footer-bottom a:hover {
    color: #fece0e;
}

/* Responsive */
@media(max-width:991px){
    .footer-logo {
        width: 180px;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-bottom .text-md-end {
        text-align: center !important;
        margin-top: 10px;
    }
}
/* footer  */
.my-swiper{
        margin-bottom: 33px;
    padding-bottom: 57px;
}
.custom-indicators {
    position: absolute;
    top: 50%;
    right: 30px;
    left: auto !important;
    bottom: auto !important;
    transform: translateY(-50%);
    
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0;
    z-index: 10;
}

/* Dot Design */
.custom-indicators button {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50%;
    background-color: #fff !important;
    border: none;
    opacity: 0.5;
    margin: 0 !important;
}

.custom-indicators .active {
    background-color: #fece0e !important;
    opacity: 1;
}
.carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding: 0;
    margin-right: 2% !important;
    margin-bottom: 1rem;
    margin-left: 15%;
}
/* Loader */
#loader{
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

/* Logo */
.loader-logo{
    width: 180px;
    max-width: 70%;
    animation: zoomPulse 2s infinite ease-in-out;
}

/* Logo Animation */
@keyframes zoomPulse{
    0%{
        transform: scale(1);
        opacity: 0.8;
    }
    50%{
        transform: scale(1.08);
        opacity: 1;
    }
    100%{
        transform: scale(1);
        opacity: 0.8;
    }
}

/* Hide Loader */
#loader.hide{
    opacity: 0;
    visibility: hidden;
}

/* Responsive */
@media(max-width:768px){
    .loader-logo{
        width: 140px;
    }
}
/* breadcremb */
/* ── HERO SECTION ── */
.hero-banner {
    background: #02142d;
    min-height: 340px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: stretch;
}

/* diagonal line */
.hero-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) skewX(-8deg);
    width: 3px;
    height: 100%;
    z-index: 3;
    opacity: .85;
}

/* LEFT SIDE */
.hero-left {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 120px 50px 50px;
    position: relative;
    z-index: 4;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fece0e;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.about-label::after {
    content: '';
    width: 36px;
    height: 2px;
    background: #fece0e;
}

.hero-heading {
    font-size: clamp(2rem, 4vw, 2.3rem);
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 18px;
}

.hero-heading .highlight {
    color: #fece0e;
}

.hero-desc {
    font-size: 15px;
    color: #cfd8e3;
    line-height: 1.8;
    max-width: 420px;
}

.hero-breadcrumb {
    margin-top: 25px;
}

.hero-breadcrumb .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.hero-breadcrumb .breadcrumb-item a {
    color: #fece0e;
    text-decoration: none;
    font-weight: 600;
}

.hero-breadcrumb .breadcrumb-item.active {
    color: #fff;
}

.hero-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: #8899aa;
    content: "›";
}

/* RIGHT IMAGE */
.hero-right {
    flex: 0 0 50%;
    max-width: 50%;
    position: relative;
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: .9;
    filter: brightness(.85);
}

.hero-right::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(13,27,46,.55) 0%,
        transparent 60%
    );
    z-index: 1;
}

/* ===========================
   MOBILE RESPONSIVE
=========================== */
@media (max-width: 991px) {

    .hero-banner {
        flex-direction: column;
        min-height: auto;
    }

    .hero-banner::after {
        display: none;
    }

    .hero-left,
    .hero-right {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .hero-right {
        order: -1;
        height: 280px;
    }

    .hero-left {
        padding: 50px 25px;
        text-align: center;
        align-items: center;
    }

    .hero-heading {
        font-size: 32px;
    }

    .hero-desc {
        max-width: 100%;
        font-size: 14px;
    }

    .about-label {
        justify-content: center;
    }

    .hero-breadcrumb {
        justify-content: center;
    }

    .breadcrumb {
        justify-content: center;
    }
}

/* Small Mobile */
@media (max-width: 575px) {

    .hero-right {
        height: 220px;
    }

    .hero-heading {
        font-size: 26px;
        line-height: 1.3;
    }

    .hero-left {
        padding: 40px 20px;
    }

    .hero-desc {
        font-size: 13px;
    }
}

/* breadcremb */

 /* ── SECTION LABEL ── */
    .section-label {
      font-family: 'Poppins', sans-serif;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--gold);
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 14px;
    }
    .section-label::after {
      content: '';
      display: inline-block;
      width: 32px; height: 2px;
      background: var(--gold);
    }

    /* ══════════════════════════════
       SECTION 1 – WHO WE ARE
    ══════════════════════════════ */
    .who-we-are { padding: 80px 0; background: #fff; }

    .who-we-are h2 {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(1.8rem, 3vw, 2.4rem);
      font-weight: 800;
      line-height: 1.2;
      color: #111;
    }
    .who-we-are h2 span { color: var(--gold); }

    .who-we-are p {
      font-size: 0.9rem;
      color: var(--text-muted-custom);
      line-height: 1.8;
      margin-bottom: 14px;
    }

    .btn-story {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--dark-navy);
      color: #fff;
      font-family: 'Poppins', sans-serif;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: 12px 24px;
      border: none;
      text-decoration: none;
      transition: background .2s;
      margin-top: 10px;
    }
    .btn-story:hover { background: var(--gold); color: #fff; }

    /* image grid */
    .img-grid { position: relative; }
    .img-main {
      width: 100%; height: 380px;
      object-fit: cover;
      filter: grayscale(100%);
    }
    .img-side {
      width: 100%; height: 118px;
      object-fit: cover;
    }
    .img-side.color-img { filter: none; }
    .img-side.bw-img    { filter: grayscale(100%); }

    .badge-years {
      position: absolute;
      bottom: 18px; left: -10px;
      background: var(--dark-navy);
      color: #fff;
      padding: 18px 22px;
      text-align: center;
      max-width: 130px !important;
      z-index: 2;
    }
    .badge-years .icon { color: var(--gold); font-size: 1.8rem; margin-bottom: 4px; }
    .badge-years .num  { font-family: 'Poppins', sans-serif; font-size: 2rem; font-weight: 800; line-height: 1; }
    .badge-years .lbl  { font-size: 0.75rem; color: #a0b0c0; margin-top: 4px; line-height: 1.3; }

    /* dots decoration */
    .dots-deco {
      position: absolute;
      top: -10px; right: 20px;
      width: 80px; height: 80px;
      background-image: radial-gradient(circle, var(--gold) 1.5px, transparent 1.5px);
      background-size: 10px 10px;
      opacity: .5;
      z-index: 0;
    }

    /* ══════════════════════════════
       SECTION 2 – OUR STRENGTH
    ══════════════════════════════ */
    .our-strength {
      background: var(--dark-navy);
      padding: 40px 0;
      position: relative;
      overflow: hidden;
    }
    /* subtle grid texture */
    .our-strength::before {
      content: '';
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
      background-size: 40px 40px;
    }

    .our-strength .section-label { color: var(--gold); }
    .our-strength .section-label::after { background: var(--gold); }

    .our-strength h2 {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(1.7rem, 2.8vw, 2.3rem);
      font-weight: 700;
      color: #fff;
      line-height: 1.2;
      margin-bottom: 16px;
    }
    .our-strength h2 span { color: var(--gold); }

    .our-strength p {
      color: #8fa3b8;
      font-size: 0.97rem;
      line-height: 1.8;
    }

    .strength-card {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      padding: 10px 0;
    }
    .strength-card .icon-wrap {
      flex-shrink: 0;
      color: var(--gold);
      font-size: 1.8rem;
      margin-top: 2px;
    }
    .strength-card h6 {
      font-family: 'Poppins', sans-serif;
      font-size: 0.97rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 4px;
    }
    .strength-card p {
      font-size: 0.97rem;
      color: #7a92a8;
      margin: 0;
      line-height: 1.6;
    }

    /* ══════════════════════════════
       SECTION 3 – WHAT WE DO
    ══════════════════════════════ */
    .what-we-do { padding: 40px 0; background: #fff; }

    .what-we-do h2 {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(1.7rem, 2.8vw, 2.3rem);
      font-weight: 700;
      color: #111;
      line-height: 1.2;
      margin-bottom: 14px;
    }
    .what-we-do h2 span { color: var(--gold); }
    .what-we-do > .container > .row > .col-lg-5 p {
      font-size: 0.97rem;
      color: var(--text-muted-custom);
      line-height: 1.1;
    }

    .stat-card {
      border: 1px solid #e5e8ec;
      padding: 22px 16px;
      text-align: center;
    }
    .stat-card .stat-num {
      font-family: 'Poppins', sans-serif;
      font-size: 1.7rem;
      font-weight: 800;
      color: #111;
      line-height: 1;
    }
    .stat-card .stat-lbl {
      font-size: 0.75rem;
      color: #666;
      margin-top: 6px;
      line-height: 1.4;
    }
    .stat-card .stat-icon {
      color: var(--gold);
      font-size: 1.6rem;
      margin-bottom: 8px;
    }

    .what-img {
      width: 100%;
      height: 100%;
      max-height: 389px;
      border-radius: 12px;
      object-fit: cover;
    }

    /* ══════════════════════════════
       SECTION 4 – INDUSTRIES
    ══════════════════════════════ */
    .industries { padding: 40px 0; background: var(--light-bg); }

    .industries .section-label {
      justify-content: center;
    }
    .industries .section-label::after,
    .industries .section-label::before {
      content: '';
      display: inline-block;
      width: 32px; height: 2px;
      background: var(--gold);
    }
    .industries .section-label::before { order: -1; }

    .industries h2 {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(1.7rem, 2.8vw, 2.3rem);
      font-weight: 700;
      color: #111;
      text-align: center;
      margin-bottom: 48px;
    }
    .industries h2 span { color: var(--gold); }

    .industry-card {
      text-align: center;
      padding: 10px 8px;
    }
    .industry-card .ind-icon {
      color: var(--gold);
      font-size: 2.2rem;
      margin-bottom: 12px;
    }
    .industry-card h6 {
      font-family: 'Poppins', sans-serif;
      font-size: 0.97rem;
      font-weight: 700;
      color: #111;
      margin-bottom: 8px;
    }
    .industry-card p {
      font-size: 0.97rem;
      color: #666;
      line-height: 1.6;
      margin: 0;
    }

    /* ══ RESPONSIVE ══ */
    @media (max-width: 767.98px) {
      .who-we-are, .our-strength, .what-we-do, .industries { padding: 52px 0; }
      .img-main { height: 250px; }
      .badge-years { left: 50%; transform: translateX(-50%); bottom: -30px; }
      .what-img { min-height: 220px; }
    }
/* counting section */
.no-gutter {
    margin-right: 0;
    margin-left: 0;
}

.no-gutter > [class*='col-'] {
    padding-right: 0;
    padding-left: 0;
}

.counter-box {
    text-align: center;
    border: 1px solid #eee;
    padding: 14px 15px;
    background: #fff;
    min-height: 190px;
    transition: 0.3s;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.counter-box:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.counter-box .icon {
    margin-bottom: 15px;
}

.counter-box .icon i {
    font-size: 42px;
    color: #fece0e;
}

.counter-box h2 {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin: 0;
}

.counter-box h5 {
    font-size: 16px;
    font-weight: 600;
    color: #444;
    margin: 8px 0 0;
}

.counter-box p {
    font-size: 15px;
    color: #666;
    margin: 2px 0 0;
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .counter-box {
        min-height: 160px;
        padding: 25px 10px;
    }

    .counter-box .icon i {
        font-size: 32px;
    }

    .counter-box h2 {
        font-size: 24px;
    }

    .counter-box h5,
    .counter-box p {
        font-size: 14px;
    }
}
/* counting section */
/* ─── HERO SECTION ─── */
    .hero-section1 {
      background: var(--dark-bg);
      background-image:
        linear-gradient(135deg, rgb(2 20 45) 0%, rgb(21 32 47 / 0%) 100%), url(https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1400&q=80);
      background-size: cover;
      background-position: center;
      padding: 104px 0 70px;
      position: relative;
      overflow: hidden;
    }
 
    .hero-section1::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(13,17,23,0.95) 40%, transparent 100%);
      pointer-events: none;
    }
 
    .hero-label1 {
      font-family: 'Poppins', sans-serif;
      font-size: 13px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
      display: flex;
      align-items: center;
      gap: 10px;
      padding-top: 86px;
      margin-bottom: 18px;
    }
    .hero-label1::before {
      content: '';
      display: inline-block;
      width: 40px;
      height: 2px;
      background: var(--gold);
    }
 
    .hero-title1 {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(1.7rem, 2.8vw, 2.3rem);
      font-weight: 700;
      color: #fff;
      line-height: 1.1;
      margin-bottom: 6px;
    }
    .hero-title1 .accent1 {
      color: var(--gold);
      /* font-style: italic; */
    }
 
    .hero-desc1 {
      color: rgba(255,255,255,0.65);
      font-size: 14px;
      line-height: 1.7;
      max-width: 360px;
      margin-top: 16px;
    }
 
    /* Years badge */
    .years-badge1 {
      background: rgb(2 20 45 / 87%);
    border: 1px solid rgb(233 160 30);
    border-radius: 12px;
    padding: 17px 9px;
    text-align: center;
    backdrop-filter: blur(6px);
    position: relative;
    z-index: 1;
    }
    .years-badge1 .icon-wrap1 {
      width: 52px;
      height: 52px;
      background: var(--gold);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 14px;
    }
    .years-badge1 .icon-wrap1 i { color: #000; font-size: 22px; }
    .years-badge1 .num1 {
      font-family: 'Poppins', sans-serif;
      font-size: 40px;
      font-weight: 800;
      color: #fff;
      line-height: 1;
    }
    .years-badge1 .num1 sup { font-size: 26px; vertical-align: super; }
    .years-badge1 .label1 {
      color: rgb(255 255 255 / 98%);
      font-size: 13px;
      line-height: 1.5;
      margin-top: 4px;
    }
    .milestones-section{
    background:
    linear-gradient(rgba(3,15,32,.95),
    rgba(3,15,32,.95)),
    url('assets/img/bg-pattern.jpg');

    background-size:cover;
    background-position:center;
    padding:90px 0;
    overflow:hidden;
}

/* Heading */
.section-label{
    color:var(--gold);
    text-align:center;
    font-size:14px;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:12px;
}

.milestones-title{
    text-align:center;
    color:#fff;
    font-size:clamp(1.7rem, 2.8vw, 2.3rem);
    font-weight:700;
    margin-bottom:80px;
}

.milestones-title .accent{
    color:var(--gold);
}

/* Timeline Scroll */
.timeline-wrap{
    overflow-x:auto;
    overflow-y:hidden;
    padding-top:60px;
    padding-bottom:20px;
    -webkit-overflow-scrolling:touch;
}

.timeline-wrap::-webkit-scrollbar{
    height:6px;
}

.timeline-wrap::-webkit-scrollbar-thumb{
    background:var(--gold);
    border-radius:10px;
}

/* Row */
.timeline-track{
    min-width:1280px;
    display:flex;
    gap:20px;
    position:relative;
}

/* Golden line OUTSIDE card */
.timeline-track::before{
    content:'';
    position:absolute;
    top:-26px;
    left:70px;
    right:70px;
    height:2px;
    background:var(--gold);
    z-index:0;
}

/* Item */
.milestone-item{
    width:200px;
    position:relative;
    flex-shrink:0;
}

/* Year OUTSIDE card */
.milestone-year{
    position: absolute;
    top: -53px;
    left: 50%;
    transform: translateX(-50%);
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #192433;
    border: 2px solid var(--gold);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    font-weight: 700;
    z-index: 5;
}

/* Dot */
.milestone-dot{
    width:24px;
    height:24px;
    background:var(--gold);
    border-radius:50%;
    border:4px solid var(--dark);
    position:absolute;
    top: -37px;
    left: 100%;
    transform:translateX(-50%);
    z-index:4;
}

.active-dot{
    box-shadow:0 0 15px rgba(212,166,74,.8);
}

/* Card */
.milestone-card{
    background:#02142d;
    border:1px solid rgba(212,166,74,.3);
    border-radius:18px;
    overflow:hidden;
    min-height: 384px;
    padding: 38px 0px 0;
    transition:.3s;
    backdrop-filter:blur(6px);
}

.milestone-card:hover{
    transform:translateY(-8px);
    border-color:var(--gold);
}

/* Icon */
.m-icon{
    text-align:center;
    margin-bottom:18px;
}

.m-icon i{
    color:var(--gold);
    font-size:40px;
}

/* Text */
.m-title{
    color:#fff;
    text-align:center;
    font-size:17px;
    font-weight:700;
    margin-bottom:15px;
}

.m-desc{
    color:#cfd8e3;
    text-align:center;
    line-height:1.8;
    font-size:14px;
    min-height:120px;
}

/* Image */
.m-image{
    height:150px;
    overflow:hidden;
    margin-top:20px;
}

.m-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* Today Card */
.today-card{
    border-color:var(--gold);
    box-shadow:0 0 18px rgba(212,166,74,.15);
}

/* Responsive */
@media(max-width:991px){

    .milestones-title{
        font-size:34px;
    }
}

@media(max-width:767px){

    .milestones-section{
        padding:70px 0;
    }

    .milestones-title{
        font-size:28px;
        margin-bottom:60px;
    }

    /* left-right scroll */
    .timeline-wrap{
        overflow-x:auto;
    }

    .timeline-track{
        min-width:1250px;
    }
}
/* Desktop scrollbar hide */
.timeline-wrap{
    overflow-x: hidden;
    overflow-y: hidden;
    padding-top:60px;
    padding-bottom:20px;
}

/* Mobile me left-right scroll rahe */
@media(max-width:767px){

    .timeline-wrap{
        overflow-x:auto;
        -webkit-overflow-scrolling:touch;
    }

    .timeline-wrap::-webkit-scrollbar{
        display:none;
    }

    .timeline-track{
        min-width:1250px;
    }
}

.journey-values{
    background:#031327;
    padding:40px 0 80px;
}

.value-box{
    border:1px solid rgba(212,166,74,.35);
    border-radius:16px;
    background:rgba(255,255,255,.02);
    display:flex;
    align-items:center;
    overflow:hidden;
}

/* Each Item */
.value-item{
    display:flex;
    align-items:flex-start;
    gap:18px;
    padding:35px 30px;
    flex:1;
    border-right:1px solid rgba(255,255,255,.08);
    min-height:150px;
}

.no-border{
    border-right:none;
}

/* first item wider */
.intro-item{
    flex:1.5;
}

/* Icon */
.value-item .icon{
    min-width:60px;
}

.value-item .icon i{
    font-size:48px;
    color:#d4a64a;
}

/* Text */
.value-item h4{
    color:#fff;
    font-size:17px;
    font-weight:700;
    margin-bottom:10px;
}

.value-item p{
    color:#d1d7df;
    font-size: 15px;
    line-height: 1.4;
    margin:0;
}

/* Hover */
.value-item:hover{
    background:rgba(212,166,74,.04);
}

/* Tablet */
@media(max-width:991px){

    .value-box{
        flex-wrap:wrap;
    }

    .value-item{
        width:50%;
        flex:none;
    }

    .intro-item{
        width:100%;
    }
}

/* Mobile */
@media(max-width:767px){

    .journey-values{
        padding:30px 0 60px;
    }

    .value-box{
        flex-direction:column;
    }

    .value-item{
        width:100%;
        border-right:none;
        border-bottom:1px solid rgba(255,255,255,.08);
        min-height:auto;
        padding:25px 20px;
    }

    .no-border{
        border-bottom:none;
    }

    .value-item .icon i{
        font-size:38px;
    }

    .value-item h4{
        font-size:20px;
    }
}

 /* ── SECTION WRAPPER ── */
    .cert-section {
      background: #F7F4EE;
      background-image: radial-gradient(circle at 20% 50%, rgba(201,146,42,0.04) 0%, transparent 60%),
                        radial-gradient(circle at 80% 50%, rgba(201,146,42,0.04) 0%, transparent 60%);
      padding: 40px 0 0px;
    }
 
    /* ── HEADING ── */
    .section-label {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    /* text-align: center; */
    margin-bottom: 10px;

    /* Center Properly */
    display: flex;
    justify-content: center;
    align-items: center;
}
    .section-title {
      font-family: 'Barlow', sans-serif;
      font-size: clamp(26px, 3.5vw, 38px);
      font-weight: 700;
      color: var(--text-dark);
      /* text-align: center; */
      margin-bottom: 0;
    }
    .section-title .accent { color: var(--gold); }
 
    /* Decorative dot divider */
    .dot-divider {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      margin: 18px 0 48px;
    }
    .dot-divider span {
      display: inline-block;
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--gold);
    }
    .dot-divider span:first-child,
    .dot-divider span:last-child {
      width: 4px; height: 4px;
      background: rgba(201,146,42,0.4);
    }
 
    /* ── CERT CARD ── */
    .cert-card {
      background: #fff;
      border-radius: 4px;
      padding: 28px 28px 32px;
      box-shadow: 0 4px 32px rgba(0,0,0,0.07);
      height: 100%;
    }
 
    /* Tab badge */
    .cert-tab {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: #1a3560;
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.8px;
      text-transform: uppercase;
      padding: 7px 16px;
      border-radius: 3px;
      margin-bottom: 22px;
    }
    .cert-tab i { color: var(--gold-light); font-size: 12px; }
 
    /* Inner layout: frame + text side by side */
    .cert-inner {
      display: flex;
      gap: 24px;
      align-items: flex-start;
    }
 
    /* Picture frame */
    .cert-frame-wrap {
      flex-shrink: 0;
      width: 50%;
    }
    
 
    /* Text side */
    .cert-content { flex: 1; }
    .cert-name {
      font-family: 'Poppins', sans-serif;
      font-size: 22px;
      font-weight: 800;
      color: var(--text-dark);
      line-height: 1.15;
      margin-bottom: 6px;
    }
    .cert-sub {
      font-size: 13px;
      font-weight: 600;
      color: var(--gold);
      margin-bottom: 12px;
    }
    .cert-desc {
      font-size: 13.5px;
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 0;
    }
 
    /* Footer badge */
    .cert-footer {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: 20px;
      padding-top: 16px;
      border-top: 1px solid #EDE8DE;
    }
    .cert-footer-icon {
      width: 36px; height: 36px;
      background: rgba(201,146,42,0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .cert-footer-icon i { color: var(--gold); font-size: 15px; }
    .cert-footer-text {
      font-size: 13px;
      font-weight: 600;
      color: var(--text-dark);
      line-height: 1.4;
    }
 
    /* Vertical separator on desktop */
    .col-separator {
      display: flex;
      align-items: stretch;
    }
    .v-sep {
      width: 1px;
      background: linear-gradient(to bottom, transparent, #D0C4A8 30%, #D0C4A8 70%, transparent);
      margin: 0 auto;
    }
 
    @media (max-width: 991px) {
      .cert-inner { flex-direction: column; }
      .cert-frame-wrap { width: 130px; }
      .col-separator { display: none; }
    }
    @media (max-width: 576px) {
      .cert-frame-wrap { width: 100px; }
      .cert-name { font-size: 18px; }
    }

    /* ── BANNER ── */
    .cert-banner {
      background: linear-gradient(135deg, #0B1622 0%, #112030 50%, #0D1B2A 100%);
      border-radius: 10px;
      padding: 36px 40px;
      margin: 40px auto;
      max-width: 1200px;
      position: relative;
      overflow: hidden;
      box-shadow: 0 12px 50px rgba(0,0,0,0.35);
    }
 
    /* subtle glow top-left */
    .cert-banner::before {
      content: '';
      position: absolute;
      top: -60px; left: -60px;
      width: 260px; height: 260px;
      background: radial-gradient(circle, rgba(232,160,32,0.08) 0%, transparent 70%);
      pointer-events: none;
    }
 
    /* ── LEFT HEADING BLOCK ── */
    .cert-heading-block {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding-right: 32px;
      border-right: 1px solid var(--border);
      height: 100%;
    }
    .shield-icon {
      width: 48px; height: 48px;
      background: var(--gold-dim);
      border: 1.5px solid var(--border);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 3px;
    }
    .shield-icon i { color: var(--gold); font-size: 22px; }
 
    .cert-heading {
      font-family: 'Poppins', sans-serif;
      font-size: 22px;
      font-weight: 800;
      color: #fff;
      line-height: 1.2;
    }
    .cert-heading .accent { color: var(--gold); }
 
    /* ── FEATURE ITEM ── */
    .feat-item {
      padding: 0 20px;
      border-right: 1px solid var(--border);
      height: 100%;
    }
    .feat-item:last-child { border-right: none; }
 
    .feat-icon {
      width: 44px; height: 44px;
      background: var(--gold-dim);
      border: 1.5px solid var(--border);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 12px;
      transition: background .25s;
    }
    .feat-icon i { color: var(--gold); font-size: 18px; }
 
    .feat-title {
      font-family: 'Poppins', sans-serif;
      font-size: 16px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 6px;
      line-height: 1.2;
    }
    .feat-desc {
      font-size: 12.5px;
      color: rgba(255,255,255,0.5);
      line-height: 1.6;
      margin: 0;
    }
 
    /* Responsive */
    @media (max-width: 991px) {
      .cert-banner { padding: 30px 24px; margin: 20px 16px; }
      .cert-heading-block { border-right: none; border-bottom: 1px solid var(--border); padding-right: 0; padding-bottom: 20px; margin-bottom: 24px; }
      .feat-item { border-right: none; border-bottom: 1px solid var(--border); padding: 16px 0; }
      .feat-item:last-child { border-bottom: none; }
    }
 
    @media (min-width: 992px) {
      .cert-banner { padding: 38px 44px; }
    }

    .direction-section{
      position:relative;
      overflow:hidden;
    }

    

    .main-heading{
      text-align:center;
      font-size:40px;
      font-weight:700;
      margin-bottom:50px;
      color:#111827;
    }

    .main-heading .highlight{
      color:#d89b2b;
    }

    .info-card{
    position:relative;
    background:#07182d;
    border-radius:14px;
    min-height:320px;
    display:flex;
    align-items:center;
    padding:40px;
    color:#fff;

    overflow:visible; /* IMPORTANT */
}

.info-card img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    opacity:0.45;
    border-radius:14px;
}

.icon-circle1{
    position:absolute;
    top:-32px;
    left:50%;
    transform:translateX(-50%);

    width:65px;
    height:65px;
    border-radius:50%;

    background:#07182d;
    border:2px solid #d89b2b;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#d89b2b;
    font-size:24px;

    z-index:20;
}

    .info-card::before{
      content:'';
      position:absolute;
      inset:0;
      background:linear-gradient(
        90deg,
        rgba(4,15,31,0.95) 0%,
        rgba(4,15,31,0.88) 35%,
        rgba(4,15,31,0.15) 100%
      );
      z-index:1;
    }

    .card-content{
      position:relative;
      z-index:2;
      max-width:305px;
    }

    .card-title{
      font-size:23px;
      font-weight:700;
      color:#d89b2b;
      text-transform:uppercase;
      margin-bottom:18px;
    }

    .card-text{
      font-size:14px;
      line-height:1.9;
      color:#d8dde7;
    }

    .bottom-line{
      width:45px;
      height:3px;
      background:#d89b2b;
      margin-top:20px;
      border-radius:20px;
    }

    .icon-circle1{
    position:absolute;
    top:-30px;
    left:50%;
    transform:translateX(-50%);
    
    width:58px;
    height:58px;
    border-radius:50%;
    
    background:#07182d;
    border:2px solid #d89b2b;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#d89b2b;
    font-size:22px;

    z-index:5;
}

    .middle-dots{
      position:absolute;
      top:50%;
      left:50%;
      transform:translate(-50%, -50%);
      display:flex;
      flex-direction:column;
      gap:8px;
      z-index:10;
    }

    .middle-dots span{
      width:4px;
      height:4px;
      background:#d89b2b;
      border-radius:50%;
    }

    @media(max-width:991px){

      .main-heading{
        font-size:30px;
      }

      .info-card{
        margin-bottom:40px;
      }

      .middle-dots{
        display:none;
      }
    }
 
    /* ════════════════════════════
       WRAPPER — handles overflow
    ════════════════════════════ */
    .section-wrapper {
      position: relative;
      /* extra bottom padding = half the stats card height */
      padding-bottom: 70px;
    }
 
    /* ════════════════════════════
       VALUES DARK SECTION
    ════════════════════════════ */
    .values-section {
      background: linear-gradient(160deg, #0A1825 0%, #0E2035 55%, #0C1A28 100%);
      padding: 64px 0 110px; /* extra bottom for overlay space */
      position: relative;
      overflow: visible;
    }
    .values-section::before {
      content: '';
      position: absolute;
      top: -60px; left: 50%;
      transform: translateX(-50%);
      width: 800px; height: 400px;
      background: radial-gradient(ellipse, rgba(232,160,32,0.05) 0%, transparent 70%);
      pointer-events: none;
    }
 
    /* Label */
    .val-label {
      font-size: 12px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-bottom: 10px;
    }
    .val-label::before, .val-label::after {
      content: '';
      width: 34px; height: 1px;
      background: var(--gold);
      display: inline-block;
    }
 
    /* Title */
    .val-title {
      font-family: 'Barlow', sans-serif;
      font-size: clamp(24px, 3.2vw, 36px);
      font-weight: 700;
      color: #fff;
      text-align: center;
      margin-bottom: 50px;
    }
    .val-title .accent { color: var(--gold); }
 
    /* Value card */
    .val-card { text-align: center; padding: 0 10px; }
 
    .val-icon {
      width: 60px; height: 60px;
      margin: 0 auto 14px;
      border-radius: 50%;
      background: var(--gold-dim);
      border: 1.5px solid var(--border-gold);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background .3s, border-color .3s;
    }
    .val-icon i { color: var(--gold); font-size: 22px; }
    .val-card:hover .val-icon { background: rgba(232,160,32,0.24); border-color: var(--gold); }
 
    .val-name {
      font-family: 'Poppins', sans-serif;
      font-size: 17px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 8px;
    }
    .val-divider {
      width: 28px;
      border: none;
      border-top: 1.5px dashed rgba(232,160,32,0.45);
      margin: 0 auto 10px;
    }
    .val-desc {
      font-size: 12.5px;
      color: rgb(255 255 255 / 71%);
      line-height: 1.65;
    }
 
    /* col separator */
    .val-col { border-right: 1px solid rgba(255,255,255,0.05); }
    .val-col:last-child { border-right: none; }
 
    /* ════════════════════════════
       STATS CARD — OVERLAPPING
    ════════════════════════════ */
    .stats-card {
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 8px 48px rgba(0,0,0,0.18);
      padding: 28px 32px;
 
      /* KEY: absolute position to overlap */
      position: absolute;
      bottom: -70px;      /* hangs 70px below dark section */
      left: 50%;
      transform: translateX(-50%);
      width: calc(100% - 48px);
      max-width: 1100px;
      z-index: 10;
    }
 
    .stat-item {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 4px 16px;
      border-right: 1px solid #e8e3da;
    }
    .stat-item:last-child { border-right: none; }
 
    .stat-icon {
      width: 48px; height: 48px;
      background: rgba(232,160,32,0.10);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .stat-icon i { color: var(--gold); font-size: 20px; }
 
    .stat-num {
      font-family: 'Poppins', sans-serif;
      font-size: 23px;
      font-weight: 800;
      color: #111;
      line-height: 1;
    }
    .stat-num .plus { color: #0d0a00; }
 
    .stat-label {
      font-size: 14px;
      color: #888;
      line-height: 1.45;
      margin-top: 3px;
    }
 
    /* Space below entire section to compensate for overlay */
    .after-section {
      height: 40px;
    background: #ffffff; /* whatever your next section bg is */
    }
 
    /* ── Responsive ── */
    @media (max-width: 991px) {
      .stats-card {
        position: relative;
        bottom: auto; left: auto; transform: none;
        width: 100%; max-width: 100%;
        border-radius: 0;
        box-shadow: 0 4px 24px rgba(0,0,0,0.12);
        margin-top: -30px;
      }
      .section-wrapper { padding-bottom: 0; }
      .values-section { padding-bottom: 60px; }
      .stat-item { border-right: none; border-bottom: 1px solid #ede9e0; padding: 12px 0; }
      .stat-item:last-child { border-bottom: none; }
      .val-col { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 24px; margin-bottom: 24px; }
      .val-col:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
      .after-section { height: 0; }
    }

    /* conatct css */
    .info-card1 {
      background: #02142d;
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 28px 24px;
      height: 100%;
      transition: border-color 0.3s, transform 0.3s;
    }
    .info-card1:hover {
      border-color: var(--gold);
      transform: translateY(-4px);
    }
    .icon-wrap1 {
      width: 50px;
      height: 50px;
      border: 1.5px solid var(--gold);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      font-size: 20px;
      margin-bottom: 18px;
      background: rgba(245,166,35,0.06);
      transition: background 0.3s;
    }
    .info-card1:hover .icon-wrap1 { background: rgba(245,166,35,0.15); }
    .info-card1 h5 {
      font-family: 'Poppins', sans-serif;
      font-size: 18px;
      font-weight: 700;
      letter-spacing: 0.5px;
      color: #fff;
      margin-bottom: 10px;
    }
    .info-card1 p, .info-card1 a {
      font-size: 14px;
      color: #ffffff;
      line-height: 1.7;
      margin: 0;
      text-decoration: none;
    }
    .info-card1 a:hover { color: var(--gold); }
 
    /* ── CONTACT FORM SECTION ── */
    .contact-box1 {
      background: #02142d;
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 36px 32px;
      height: 100%;
    }
    .contact-box1 h3 {
      font-family: 'Poppins', sans-serif;
      font-size: 26px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 6px;
    }
    .gold-line1 {
      width: 48px;
      height: 3px;
      background: var(--gold);
      border-radius: 2px;
      margin-bottom: 24px;
    }
    .form-control1, .form-select1 {
      background: var(--dark3) !important;
      border: 1px solid rgba(255,255,255,0.1) !important;
      width: 100%;
      color: #E8EDF5 !important;
      border-radius: 8px !important;
      padding: 12px 16px !important;
      font-size: 14px !important;
      transition: border-color 0.25s !important;
    }
    .form-control1::placeholder { color: var(--text-muted) !important; }
    .form-control1:focus, .form-select1:focus {
      border-color: var(--gold) !important;
      box-shadow: 0 0 0 3px rgba(245,166,35,0.12) !important;
    }
    .form-select1 option { background: var(--dark3); color: #E8EDF5; }
    textarea.form-control1 { resize: none; }
    .btn-send1 {
      background: var(--gold);
      color: #0D1117;
      border: none;
      border-radius: 8px;
      padding: 14px 28px;
      font-family: 'Poppins', sans-serif;
      font-size: 15px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      transition: background 0.25s, transform 0.2s;
    }
    .btn-send1:hover { background: var(--gold-light); transform: translateY(-2px); }
    .btn-send1:active { transform: translateY(0); }
 
    /* ── MAP & RESPONSE BOX ── */
    .map-wrap1 {
      background: var(--dark2);
      border: 1px solid var(--border);
      border-radius: 14px;
      overflow: hidden;
      height: 100%;
      display: flex;
      flex-direction: column;
    }
    .map-wrap1 iframe {
      width: 100%;
      flex: 1;
      min-height: 300px;
      border: none;
      display: block;
    }
    .response-bar1 {
      background: var(--dark3);
      border-top: 1px solid var(--border);
      padding: 18px 24px;
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .response-icon1 {
      width: 48px;
      height: 48px;
      min-width: 48px;
      border: 1.5px solid var(--gold);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      font-size: 18px;
    }
    .response-bar1 h6 { font-weight: 700; color: #fff; margin: 0 0 2px; font-size: 15px; }
    .response-bar1 p { color: var(--text-muted); font-size: 13px; margin: 0; }
 
    /* ── WHY US SECTION ── */
    .why-section1 { padding: 70px 0; }
    .why-label1 {
      font-size: 13px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 10px;
      justify-content: center;
    }
    .why-label1::before, .why-label1::after {
      content: '';
      width: 32px;
      height: 2px;
      background: var(--gold);
      border-radius: 1px;
    }
    .why-title1 {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(1.7rem, 2.8vw, 2.3rem);
      font-weight: 700;
      color: #fff;
      line-height: 1.15;
      margin: 10px 0 50px;
    }
    .why-title1 span { color: var(--gold); }
    .why-card1 {
      display: flex;
      align-items: flex-start;
      gap: 20px;
      padding: 12px 8px;
    }
    .why-icon-wrap1 {
      width: 68px;
      height: 68px;
      min-width: 68px;
      border: 1.5px solid var(--border);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      font-size: 26px;
      background: rgba(245,166,35,0.05);
      transition: background 0.3s, border-color 0.3s;
    }
    .why-card1:hover .why-icon-wrap1 {
      background: rgba(245,166,35,0.14);
      border-color: var(--gold);
    }
    .why-card1 h5 {
      font-weight: 700;
      font-size: 16px;
      color: #fff;
      margin-bottom: 8px;
    }
    .why-card1 p {
      font-size: 13.5px;
      color: var(--text-muted);
      line-height: 1.7;
      margin: 0;
    }
 
    /* stagger fade-in */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .fade-up { animation: fadeUp 0.6s ease both; }
    .delay-1 { animation-delay: 0.1s; }
    .delay-2 { animation-delay: 0.2s; }
    .delay-3 { animation-delay: 0.3s; }
    .delay-4 { animation-delay: 0.4s; }
    /* conatct css */
    /* gallery */
     .space { padding: 90px 0 80px; }
 
    /* ── TITLE AREA ── */
    .sub-title {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 12px;
    }
    .sub-title::before, .sub-title::after {
      content: '';
      width: 30px;
      height: 2px;
      background: var(--gold);
      border-radius: 1px;
    }
    .sec-title {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(1.7rem, 2.8vw, 2.3rem);
      font-weight: 700;
      color: #fece0e;
      line-height: 1.15;
      margin: 0;
    }
    .mb-40 { margin-bottom: 40px; }
    .mt-80 { margin-top: 70px; }
    .mb-0  { margin-bottom: 0; }
 
    /* ── FILTER MENU ── */
    .filter-menu {
      display: flex;
      flex-wrap: wrap;
      gap: 0;
      justify-content: center;
      margin-bottom: 44px;
      border-bottom: 1px solid #e5e5e5;
      padding-bottom: 0;
    }
    .tab-btn {
      background: none;
      border: none;
      font-family: 'Barlow', sans-serif;
      font-size: 15px;
      font-weight: 600;
      color: #fbf3f3;
      padding: 12px 22px 14px;
      cursor: pointer;
      position: relative;
      transition: color 0.25s;
    }
    .tab-btn::after {
      content: '';
      position: absolute;
      bottom: -1px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--gold);
      transition: width 0.3s;
    }
    .tab-btn:hover { color: #dae0e7; }
    .tab-btn.active { color: var(--gold); }
    .tab-btn.active::after { width: 100%; }
 
    /* ── GALLERY ROW ── */
    .gallery-row { --bs-gutter-x: 18px; --bs-gutter-y: 18px; }
 
    /* ── PROJECT BOX ── */
    .project-box {
      position: relative;
      overflow: hidden;
      border-radius: 4px;
    }
    .project-box-img {
      overflow: hidden;
      line-height: 0;
    }
    .project-box-img img {
      width: 100%;
      height: 280px;
      object-fit: cover;
      display: block;
      transition: transform 0.55s ease;
    }
    .project-box:hover .project-box-img img {
      transform: scale(1.08);
    }
 
    /* Content overlay — hidden by default, slides up on hover */
    .project-box-content {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(to top, rgba(26,26,26,0.93) 0%, rgba(26,26,26,0.6) 60%, transparent 100%);
      padding: 28px 22px 20px;
      transform: translateY(60px);
      opacity: 0;
      transition: transform 0.4s ease, opacity 0.4s ease;
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
    }
    .project-box:hover .project-box-content {
      transform: translateY(0);
      opacity: 1;
    }
    .project-subtitle {
      font-size: 12px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 600;
      margin-bottom: 5px;
    }
    .box-title {
      font-family: 'Poppins', sans-serif;
      font-size: 20px;
      font-weight: 700;
      color: #fff;
      margin: 0;
      line-height: 1.2;
    }
    .box-title a { color: inherit; text-decoration: none; }
    .box-title a:hover { color: var(--gold); }
 
    /* Plus button */
    .gallery-btn {
      width: 44px;
      height: 44px;
      min-width: 44px;
      background: var(--gold);
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 18px;
      text-decoration: none;
      transition: background 0.25s, transform 0.25s;
      margin-left: 14px;
    }
    .gallery-btn:hover { background: var(--dark); transform: rotate(90deg); color: #fff; }
 
    /* filter-item hidden state */
    .filter-item { transition: opacity 0.35s, transform 0.35s; }
    .filter-item.hide {
      display: none;
    }
 
    
    
 
    /* ── LIGHTBOX ── */
    .lightbox-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.9);
      z-index: 9999;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }
    .lightbox-overlay.show { display: flex; }
    .lb-box {
      max-width: 900px;
      width: 100%;
      position: relative;
      animation: lbIn 0.3s ease;
    }
    @keyframes lbIn {
      from { opacity: 0; transform: scale(0.93); }
      to   { opacity: 1; transform: scale(1); }
    }
    .lb-box img {
      width: 100%;
      max-height: 80vh;
      object-fit: cover;
      border-radius: 6px;
      display: block;
    }
    .lb-close-btn {
      position: absolute;
      top: -16px;
      right: -16px;
      width: 40px;
      height: 40px;
      background: var(--gold);
      border: none;
      border-radius: 50%;
      color: #fff;
      font-size: 16px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s, transform 0.25s;
    }
    .lb-close-btn:hover { background: var(--dark); transform: rotate(90deg); }
 
    @media (max-width: 576px) {
      .sec-title { font-size: 30px; }
      .tab-btn { font-size: 13px; padding: 10px 12px 12px; }
      .project-box-img img { height: 220px; }
    }
    /* gallery */
    /* epc construction */
    .shristy-epc-overview{
    background: #fff;
}

.shristy-epc-subtitle{
    color: #f4b400;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 12px;
}

.shristy-epc-title{
    font-size: clamp(1.7rem, 2.8vw, 2.3rem);
    font-weight: 700;
    color: #02142d;
    margin-bottom: 20px;
    line-height: 1.3;
}

.shristy-epc-text{
    font-size: 16px;
    color: #666;
    line-height: 1.9;
    margin-bottom: 25px;
}

.shristy-epc-signature img{
    width: 130px;
    margin-bottom: 10px;
}

.shristy-epc-team{
    font-size: 18px;
    color: #02142d;
    font-weight: 600;
}

/* Card */

.shristy-service-card{
    background: #fff;
    border: 1px solid #fece0e;
    border-radius: 10px;
    padding: 35px 25px;
    text-align: center;
    transition: 0.4s;
    height: 100%;
}

.shristy-service-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.shristy-service-icon{
    margin-bottom: 20px;
}

.shristy-service-icon i{
    font-size: 45px;
    color: #02142d;
}

.shristy-service-card h4{
    font-size: 20px;
    font-weight: 700;
    color: #02142d;
    margin-bottom: 12px;
}

.shristy-service-card p{
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* Responsive */

@media(max-width:991px){

    .shristy-epc-title{
        font-size: 30px;
    }

    .shristy-epc-left{
        text-align: center;
    }
}

.shristy-epc-sections{
    background: #fff;
    overflow: hidden;
}

.shristy-section-title{
    font-size: clamp(1.7rem, 2.8vw, 2.3rem);
    font-weight: 700;
    color: #f4c403;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/*======================
 WHY CHOOSE SECTION
=======================*/

.shristy-why-box{
    text-align: center;
    padding: 15px 10px;
    transition: .3s;
    height: 100%;
}

.shristy-why-box:hover{
    transform: translateY(-5px);
}

.shristy-why-icon{
    width: 65px;
    height: 65px;
    border: 2px solid #ffcf0e !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    background: #fff;
}

.shristy-why-icon i{
    font-size: 24px;
    color: #02142d;
}

.shristy-why-box h5{
    font-size: 14px;
    line-height: 1.6;
    font-weight: 600;
    color: #fece0e;
    margin: 0;
}

/*======================
 INDUSTRY SECTION
=======================*/

.shristy-industry-card{
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition: .3s;
}

.shristy-industry-card:hover{
    transform: translateY(-5px);
}

.shristy-industry-card img{
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

.shristy-industry-card span{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgb(2 20 45);
    color: #fff;
    padding: 10px 8px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
}

/*======================
 PROCESS SECTION
=======================*/

.shristy-process-section{
    position: relative;
}

.shristy-process-wrapper{
    position: relative;
}

.shristy-process-line{
    position: absolute;
    top: 39px;
    left: 8%;
    width: 84%!important;
    height: 2px;
    background: #f4b400;
    z-index: 0;
}

.shristy-process-box{
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 10px;
    margin-bottom: 25px;
}

.shristy-process-number{
    width: 60px;
    height: 60px;
    background: #02142d;
    color: #fff;
    border: 4px solid #f4b400;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 18px;
    font-weight: 700;
}

.shristy-process-box i{
    font-size: 26px;
    color: #02142d;
    margin-bottom: 10px;
}

.shristy-process-box h6{
    font-size: 14px;
    line-height: 1.5;
    font-weight: 600;
    color: #02142d;
    margin: 0;
}

/*======================
 RESPONSIVE
=======================*/

@media (max-width: 1199px){

    .shristy-industry-card img{
        height: 140px;
    }

    .shristy-process-line{
        left: 6%;
        width: 88%;
    }
}

@media (max-width: 991px){

    .shristy-section-title{
        font-size: 24px;
    }

    .shristy-process-line{
        display: none;
    }

    .shristy-process-box{
        margin-bottom: 30px;
    }

    .shristy-industry-card img{
        height: 180px;
    }
}

@media (max-width: 767px){

    .shristy-section-title{
        font-size: 20px;
    }

    .shristy-why-box{
        margin-bottom: 20px;
    }

    .shristy-why-icon{
        width: 55px;
        height: 55px;
    }

    .shristy-why-icon i{
        font-size: 20px;
    }

    .shristy-industry-card img{
        height: 150px;
    }

    .shristy-process-number{
        width: 55px;
        height: 55px;
        font-size: 16px;
    }

    .shristy-process-box i{
        font-size: 22px;
    }

    .shristy-process-box h6{
        font-size: 13px;
    }
}

@media (max-width: 575px){

    .shristy-industry-card img{
        height: 130px;
    }

    .shristy-section-title{
        font-size: 18px;
    }
}

.shristy-counter-section{
    background: #02142d;
}

.shristy-counter-box{
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 30px;
    border-right: 1px solid rgba(255,255,255,.2);
}

.shristy-counter-icon i{
    font-size: 38px;
    color: #f4b400;
}

.shristy-counter-content h3{
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
}

.shristy-counter-content p{
    color: #fff;
    margin: 0;
    font-size: 14px;
}

/* Project */

.shristy-project-card img{
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
}

.shristy-project-card h5{
    font-size: 15px;
    margin-top: 12px;
    color: #02142d;
    font-weight: 700;
}

.shristy-project-card p{
    font-size: 13px;
    color: #666;
}

.shristy-slider-dots span{
    width: 10px;
    height: 10px;
    background: #d1d1d1;
    display: inline-block;
    border-radius: 50%;
    margin: 0 5px;
}

.shristy-slider-dots .active{
    background: #02142d;
}

/* FAQ */

.shristy-accordion-item{
    margin-bottom: 12px;
    border: 1px solid #e8e8e8;
    border-radius: 6px !important;
    overflow: hidden;
}

.accordion-button{
    font-weight: 600;
}

/* Form */

.shristy-consultation-box{
    background: #fff;
    box-shadow: 0 0 25px rgba(0,0,0,.08);
    padding: 35px;
    border-radius: 10px;
}

.shristy-consultation-box h3{
    color: #02142d;
    font-size: 22px;
    margin-bottom: 25px;
    font-weight: 700;
}

.shristy-form-control{
    height: 50px;
    border-radius: 5px;
}

textarea.shristy-form-control{
    height: auto;
}

.shristy-consult-btn{
    width: 100%;
    border: none;
    background: #f4b400;
    padding: 16px;
    font-weight: 700;
    border-radius: 5px;
}

.shristy-consult-btn i{
    margin-left: 8px;
}

/* Responsive */

@media(max-width:991px){

    .shristy-counter-box{
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.2);
    }

    .shristy-consultation-box{
        margin-top: 40px;
    }
}

@media(max-width:767px){

    .shristy-counter-box{
        padding: 20px;
    }

    .shristy-counter-content h3{
        font-size: 24px;
    }

    .shristy-project-card img{
        height: 160px;
    }
}

.my-bg-dark{
    background: #02142d;
}
    /* epc construction */
.hero-section2 {
      background: var(--dark-bg);
      background-image:
        linear-gradient(135deg, rgb(2 20 45) 0%, rgb(21 32 47 / 0%) 100%), url(../img/sv.jpg);
      background-size: cover;
      background-position: center;
      padding: 80px 0 70px;
      position: relative;
      overflow: hidden;
    }
 
    .hero-section2::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(13,17,23,0.95) 40%, transparent 100%);
      pointer-events: none;
    }
 
    .hero-label2 {
      font-family: 'Poppins', sans-serif;
      font-size: 13px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
      display: flex;
      align-items: center;
      gap: 10px;
      padding-top: 86px;
      margin-bottom: 18px;
    }
    .hero-label2::before {
      content: '';
      display: inline-block;
      width: 40px;
      height: 2px;
      background: var(--gold);
    }
 
    .hero-title2 {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(1.7rem, 2.8vw, 2.3rem);
      font-weight: 700;
      color: #fff;
      line-height: 1.1;
      margin-bottom: 6px;
    }
    .hero-title2 .accent2 {
      color: var(--gold);
      /* font-style: italic; */
    }
 
    .hero-desc2 {
      color: rgba(255,255,255,0.65);
      font-size: 14px;
      line-height: 1.7;
      max-width: 360px;
      margin-top: 16px;
    }
    /* residential  */
    .srishty-project-section{
        background:#02142d;
    }

    /* IMAGE */

    .srishty-project-image{
        position:relative;
        overflow:hidden;
        border-radius:24px;
        cursor:pointer;
        border:2px solid rgba(244,196,3,0.15);
    }

    .srishty-project-image img{
        width:100%;
        height:550px;
        object-fit:cover;
        transition:0.6s ease;
    }

    .srishty-project-image:hover img{
        transform:scale(1.08);
    }

    .srishty-image-overlay{
        position:absolute;
        inset:0;
        background:linear-gradient(to top, rgb(2 20 45 / 20%), rgba(2, 20, 45, 0.15));
        display:flex;
        align-items:flex-end;
        padding:30px;
    }

    .srishty-image-overlay h5{
        color:#fff;
        font-size:28px;
        font-weight:700;
        margin:0;
    }

    /* CONTENT */

    .srishty-project-content{
        padding-left:20px;
    }

    .srishty-tag{
        display:inline-block;
        color:#f4c403;
        font-size:17px;
        font-weight:600;
        letter-spacing:2px;
        margin-bottom:15px;
        position:relative;
    }

    .srishty-tag::after{
        content:'';
        width:60px;
        height:2px;
        background:#f4c403;
        position:absolute;
        top:50%;
        right:-75px;
    }

    .srishty-project-title{
        color:#fff;
        font-size:clamp(1.7rem, 2.8vw, 2.1rem);
        font-weight:700;
        line-height:1.2;
        margin-bottom:30px;
    }

    .srishty-project-info{
        display:flex;
        flex-wrap:wrap;
        gap:20px;
        margin-bottom:30px;
    }

    .srishty-info-box{
        display:flex;
        align-items:center;
        gap:15px;
        background:rgba(255,255,255,0.03);
        border:1px solid rgba(244,196,3,0.2);
        padding:9px 11px;
        border-radius:16px;
        transition:0.4s;
    }

    .srishty-info-box:hover{
        transform:translateY(-5px);
        border-color:#f4c403;
        box-shadow:0 10px 25px rgba(244,196,3,0.12);
    }

    .srishty-info-box i{
        width:55px;
        height:55px;
        border-radius:50%;
        background:rgba(244,196,3,0.12);
        color:#f4c403;
        display:flex;
        align-items:center;
        justify-content:center;
        font-size:22px;
    }

    .srishty-info-box h6{
        color:#f4c403;
        margin-bottom:4px;
        font-size:15px;
        font-weight:600;
    }

    .srishty-info-box p{
        color:#fff;
        margin:0;
        font-size:16px;
    }

    .srishty-project-text{
        color:#c7d1df;
        font-size:17px;
        line-height:1.9;
        margin-bottom:35px;
    }

    /* BUTTON */

    .srishty-btn{
        display:inline-flex;
        align-items:center;
        gap:12px;
        background:#f4c403;
        color:#02142d;
        text-decoration:none;
        padding:16px 34px;
        border-radius:12px;
        font-weight:700;
        transition:0.4s ease;
    }

    .srishty-btn:hover{
        background:#fff;
        color:#02142d;
        transform:translateY(-4px);
    }

    /* RESPONSIVE */

    @media(max-width:991px){

        .srishty-project-content{
            padding-left:0;
        }

        .srishty-project-title{
            font-size:38px;
        }

        .srishty-project-image img{
            height:420px;
        }
    }

    @media(max-width:576px){

        .srishty-project-title{
            font-size:30px;
        }

        .srishty-project-info{
            flex-direction:column;
        }

        .srishty-image-overlay h5{
            font-size:22px;
        }
    }

    .stick-bg {
        background: #f4c403;
    }
    /* residential  */
    

/* CSS */
.button-24 {
  background: #f4c403;
  border: 1px solid #f4c403;
  border-radius: 6px;
  box-shadow: rgba(0, 0, 0, 0.1) 1px 2px 4px;
  box-sizing: border-box;
  color: #FFFFFF;
  cursor: pointer;
  display: inline-block;
  font-family: nunito,roboto,proxima-nova,"proxima nova",sans-serif;
  font-size: 16px;
  font-weight: 800;
  line-height: 16px;
  min-height: 40px;
  outline: 0;
  padding: 12px 14px;
  text-align: center;
  text-rendering: geometricprecision;
  text-transform: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: middle;
}

.button-24:hover,
.button-24:active {
  background-color: initial;
  background-position: 0 0;
  color: #f4c403;
}

.button-24:active {
  opacity: .5;
}