 :root {
                --primary: #1f4d2c;
                --secondary: #ffd700;
                --dark: #111;
                --light: #fff;
                --shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
            }

            /* ================== RESET ================== */
            a {
                text-decoration: none !important;
            }

            /* ================== TOP BAR ================== */
            .topbar {
                background: var(--primary);
                color: var(--light);
                font-size: 14px;
            }

            .topbar-inner {
                display: flex;
                align-items: center;
                justify-content: space-between;
                flex-wrap: wrap;
                padding: 8px 0;
            }

            /* LEFT */
            .topbar-left a {
                color: var(--light);
                margin-right: 18px; 
                font-weight: 500;
            }

            .topbar-left i {
                color: #ffd700;
                margin-right: 6px;
            }

            /* CENTER */
            .topbar-center a {
                background: var(--secondary);
                color: var(--dark);
                padding: 6px 16px;
                border-radius: 6px;
                font-weight: 600;
                margin: 0 5px;
                transition: 0.3s;
            }

            .topbar-center a:hover {
                background: #fff;
                box-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
                transform: translateY(-2px);
            }

            /* RIGHT */
            .topbar-right a {
                color: #fff;
                width: 34px;
                height: 34px;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                border-radius: 50%;
                margin-left: 6px;
                transition: 0.3s;
            }

            .topbar-right a:hover {
                background: #ffd700;
                color: #000;
                transform: scale(1.1);
            }

            /* ================== NAVBAR ================== */
            .main-nav {
                background: var(--light);
                transition: 0.3s;
                box-shadow: var(--shadow);
            }



            .main-nav.scrolled {
                box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
            }

            /* LOGO */
            .brand {
                font-size: 24px;
                font-weight: 900;
                color: #1f4d2c;
                line-height: 1.1;
            }

            .brand span {
                display: block;
                font-size: 12px;
                letter-spacing: 2px;
                color: #ffd700;
            }

            /* LINKS */
            .nav-link {
                font-weight: 600;
                color: #1f4d2c !important;
                position: relative;
            }

            .nav-link::after {
                content: "";
                position: absolute;
                left: 0;
                bottom: -6px;
                width: 0;
                height: 3px;
                background: #ffd700;
                transition: 0.3s;
            }

            .nav-link:hover::after,
            .nav-link.active::after {
                width: 100%;
            }

           
            /* CTA */
            .nav-cta {
                background: #1f4d2c;
                color: #fff;
                padding: 10px 22px;
                border-radius: 30px;
                font-weight: 600;
                transition: 0.3s;
            }

            .nav-cta:hover {
                background: #ffd700;
                color: #000;
                box-shadow: 0 0 20px rgba(255, 215, 0, 0.7);
            }

            /* ================== MOBILE ================== */
            @media(max-width:768px) {
                .topbar-inner {
                    justify-content: center;
                    text-align: center;
                    gap: 6px;
                }
            }


            /* crousel  */

            .awards-carousel-section {
                background: var(--primary);
                padding: 0;
                position: relative;
            }

            .awards-carousel-section .carousel-item img {
                max-height: 90vh;
                object-fit: cover;
            }

            /* SMALL NAV BUTTONS */
            .custom-nav {
                width: auto;
                opacity: 1;
            }

            .custom-nav span {
                background: rgba(0, 0, 0, 0.5);
                color: var(--secondary);
                width: 42px;
                height: 42px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                transition: 0.3s;
            }

            .custom-nav span:hover {
                background: var(--secondary);
                color: var(--dark);
                transform: scale(1.1);
            }

            /* MOBILE */
            @media(max-width:768px) {
                .awards-carousel-section .carousel-item img {
                    max-height: 300px;
                }
            }


            /* ================= NDA SECTION ================= */
            /* ================= NDA SECTION ================= */
            .nda-highlight-section {
                padding: 90px 0;
                background: linear-gradient(180deg, #f4f7f4, #ffffff);
            }

            /* CARD */
            .nda-card {
                background: #fff;
                border-radius: 22px;
                padding: 55px 45px;
                box-shadow: 0 30px 80px rgba(0, 0, 0, 0.1);
            }

            /* HEADING */
            .nda-head h2 {
                font-size: 40px;
                font-weight: 900;
                color: var(--primary);
                margin-bottom: 18px;
            }

            .nda-head h2 span {
                color: var(--secondary);
            }

            .nda-head h2 .highlight {
                color: #000;
                position: relative;
            }

            .nda-head h2 .highlight::after {
                content: "";
                position: absolute;
                left: 0;
                bottom: -6px;
                width: 100%;
                height: 4px;
                background: var(--secondary);
                border-radius: 4px;
            }

            /* BUTTON */
            .nda-btn {
                display: inline-flex;
                align-items: center;
                gap: 12px;
                padding: 12px 34px;
                border-radius: 40px;
                font-weight: 700;
                color: #fff;
                background: linear-gradient(135deg, var(--primary), #0b2e1c);
                transition: 0.4s;
                position: relative;
                overflow: hidden;
            }

            .nda-btn i {
                transition: 0.4s;
            }

            .nda-btn::before {
                content: "";
                position: absolute;
                inset: 0;
                background: linear-gradient(135deg, var(--secondary), #ffb800);
                opacity: 0;
                transition: 0.4s;
            }

            .nda-btn span,
            .nda-btn i {
                position: relative;
                z-index: 2;
            }

            .nda-btn:hover::before {
                opacity: 1;
            }

            .nda-btn:hover {
                color: #000;
                transform: translateY(-4px);
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
            }

            .nda-btn:hover i {
                transform: translateX(6px);
            }

            /* MEDIA */
            .nda-media {
                position: relative;
                border-radius: 20px;
                overflow: hidden;
                cursor: pointer;
                box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
            }

            .nda-media img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: 0.6s;
            }

            .nda-media:hover img {
                transform: scale(1.08);
            }

            /* PLAY BUTTON */
            .play-btn {
                position: absolute;
                inset: 0;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .play-btn i {
                width: 80px;
                height: 80px;
                background: var(--secondary);
                color: #000;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 24px;
                animation: pulse 1.8s infinite;
            }

            @keyframes pulse {
                0% {
                    box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.6);
                }

                70% {
                    box-shadow: 0 0 0 25px rgba(255, 215, 0, 0);
                }

                100% {
                    box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
                }
            }

            /* CONTENT */
            .nda-content p {
                font-size: 16.5px;
                line-height: 1.85;
                color: #333;
                margin-bottom: 20px;
            }

            .nda-content strong {
                color: var(--primary);
            }

            /* MODAL */
            .nda-video-modal .modal-content {
                background: #000;
                border-radius: 14px;
                overflow: hidden;
            }

            .custom-close {
                position: absolute;
                right: 15px;
                top: 15px;
                z-index: 10;
                filter: invert(1);
            }

            /* MOBILE */
            @media(max-width:768px) {
                .nda-head h2 {
                    font-size: 30px;
                }

                .nda-card {
                    padding: 35px 24px;
                }
            }



            /* ceo message  */
            /* ================= CEO MESSAGE ================= */
            .ceo-message-section {
                padding: 90px 0;
                background: linear-gradient(180deg, #ffffff, #f3f7f4);
            }

            /* TITLE */
            .section-title {
                font-size: 40px;
                font-weight: 900;
                color: var(--primary);
                margin-bottom: 10px;
            }

            .section-title span {
                color: var(--secondary);
            }

            .ceo-subtitle {
                font-size: 18px;
                font-weight: 600;
                color: #333;
                margin-bottom: 25px;
            }

            .ceo-subtitle span {
                color: var(--primary);
            }

            /* CONTENT */
            .ceo-content p {
                font-size: 16.5px;
                line-height: 1.9;
                color: #333;
                margin-bottom: 18px;
            }

            .ceo-content strong {
                color: var(--primary);
            }

            /* SIGNATURE + CTA */
            .ceo-signature {
                margin-top: 30px;
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 20px;
                flex-wrap: wrap;
            }

            .ceo-signature span {
                color: var(--primary);
                font-weight: 600;
            }

            /* BUTTON */
            .ceo-btn {
                position: relative;
                display: inline-flex;
                align-items: center;
                gap: 10px;
                padding: 14px 36px;
                border-radius: 40px;
                font-weight: 700;

                background: var(--secondary);
                color: #000;

                overflow: hidden;
                transition: transform .3s ease, box-shadow .3s ease;
            }

            /* OVERLAY — TEXT KE NICHE */
            .ceo-btn::before {
                content: "";
                position: absolute;
                inset: 0;
                background: linear-gradient(135deg, var(--primary), #0b2e1c);
                transform: translateX(-100%);
                transition: transform .35s ease;
                z-index: 1;
                /* 👈 LOW */
            }

            /* TEXT + ICON — HAMESHA UPAR */
            .ceo-btn span,
            .ceo-btn i {
                position: relative;
                z-index: 2;
                /* 👈 HIGH */
                color: #000;
                transition: color .35s ease, transform .35s ease;
            }

            /* HOVER OVERLAY */
            .ceo-btn:hover::before {
                transform: translateX(0);
            }

            /* HOVER TEXT COLOR — AB DIKHEGA */
            .ceo-btn:hover span,
            .ceo-btn:hover i {
                color: #fff;
                /* 👈 GUARANTEED */
            }

            /* MOTION */
            .ceo-btn:hover {
                transform: translateY(-3px);
                box-shadow: 0 18px 40px rgba(0, 0, 0, .25);
            }

            .ceo-btn:hover i {
                transform: translateX(6px);
            }



            /* IMAGE */
            .ceo-image-wrapper {
                position: relative;
                border-radius: 22px;
                overflow: hidden;
                box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
            }

            .ceo-image-wrapper img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: 0.6s;
            }

            .ceo-image-wrapper::after {
                content: "";
                position: absolute;
                inset: 0;
                background: linear-gradient(135deg, rgba(31, 77, 44, 0.3), rgba(255, 215, 0, 0.15));
            }

            .ceo-image-wrapper:hover img {
                transform: scale(1.06);
            }

            /* MOBILE */
            @media(max-width:768px) {
                .section-title {
                    font-size: 30px;
                }

                .ceo-message-section {
                    padding: 65px 0;
                }
            }



   

            /* ================= COURSES ================= */
          .courses-section{
  padding:90px 0;
  background:#f6f8f6;
}

.section-head h2{
  font-size:42px;
  font-weight:900;
  color:var(--primary);
}
.section-head h2 span{ color:var(--secondary); }


/* CARD */
.course-card{
  background:#fff;
  border-radius:12px; /* tighter, disciplined */
  overflow:hidden;
  border:1px solid #e6ece8;
  transition:0.25s ease;
  height:100%;
}

/* HOVER – very subtle */
.course-card:hover{
  border-color:var(--primary);
  box-shadow:0 10px 25px rgba(0,0,0,0.12);
}

/* IMAGE */
.course-img{
  position:relative;
  overflow:hidden;
}

.course-img img{
  width:100%;
  height:230px;
  object-fit:cover;
  transition:0.3s ease;
}

/* VERY LIGHT zoom only */
.course-card:hover .course-img img{
  transform:scale(1.03);
}

/* BADGE */
.course-badge{
  position:absolute;
  bottom:12px;
  left:12px;
  background:var(--secondary);
  color:#000;
  padding:5px 12px;
  font-weight:700;
  border-radius:6px;
  font-size:12px;
}

/* BODY */
.course-body{
  padding:22px;
}

.course-body h4{
  font-weight:800;
  color:var(--primary);
  margin-bottom:10px;
  font-size:18px;
}

/* POINTS */
.course-points{
  list-style:none;
  padding:0;
  margin:0 0 18px;
}

.course-points li{
  font-size:14px;
  margin-bottom:6px;
  color:#333;
}

.course-points i{
  color:var(--primary);
  margin-right:6px;
}

/* ACTIONS */
.course-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

/* PRIMARY BTN – calm */
.btn-primary{
  background:var(--primary);
  color:#fff;
  padding:9px 18px;
  border-radius:6px;
  font-weight:700;
  font-size:14px;
  transition:0.25s ease;
}

.btn-primary:hover{
  background:var(--secondary);
  color:#000;
}

/* OUTLINE BTN */
.btn-outline{
  border:1.5px solid var(--primary);
  color:var(--primary);
  padding:8px 16px;
  border-radius:6px;
  font-weight:700;
  font-size:14px;
  transition:0.25s ease;
}

.btn-outline:hover{
  background:var(--primary);
  color:#fff;
}




/* achievments  */
/* ================= ACHIEVEMENTS ================= */
.achievements-section{
  padding:90px 0;
  background:#ffffff;
}

/* HEAD */
.ach-head h2{
  font-size:40px;
  font-weight:900;
  color:var(--primary);
}

.ach-head h2 span{
  color:var(--secondary);
}

.ach-head p{
  margin-top:10px;
  font-size:16px;
  color:#444;
}

/* STATS */
.ach-card{
  background:#f6f8f6;
  border-radius:10px;
  padding:28px;
  text-align:center;
  border:1px solid #e4e9e6;
}

.ach-card h3{
  font-size:36px;
  font-weight:900;
  color:var(--primary);
  margin-bottom:6px;
}

.ach-card p{
  font-size:14px;
  font-weight:600;
  color:#333;
}

/* IMAGE */
.ach-image{
  border-radius:12px;
  overflow:hidden;
  border:1px solid #e6ece8;
}

.ach-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* CONTENT */
.ach-content ul{
  padding-left:18px;
}

.ach-content li{
  font-size:15px;
  margin-bottom:12px;
  color:#333;
  font-weight:500;
}

/* MOBILE */
@media(max-width:768px){
  .ach-head h2{
    font-size:28px;
  }
}



/* mission */
.mission-air-section{
  padding:90px 0;
  background:#f4f9ef;
}

.mission-card{
  background:#f7fbf1;
  border-radius:18px;
  padding:60px;
}

/* LEFT */
.mission-tag{
  font-size:14px;
}

.mission-title{
  font-size:40px;
  font-weight:900;
  color:var(--primary);
  margin:12px 0 25px;
}
.mission-title span{ color:var(--secondary); }

/* FORM */
.mission-form .form-control{
  margin-bottom:14px;
  border-radius:8px;
  padding:10px 14px;
}

.btn-submit{
  width:100%;
  background:var(--secondary);
  border:none;
  padding:12px;
  font-weight:800;
  border-radius:8px;
}

.btn-call{
  display:block;
  text-align:center;
  background:var(--primary);
  color:#fff;
  padding:12px;
  border-radius:8px;
  font-weight:700;
}

/* RIGHT VISUAL */
.mission-visual{
  position:relative;
  text-align:center;
}

.chakra-circle{
  width:260px;
  height:260px;
  border:12px solid #4aa3df;
  border-radius:50%;
  margin:0 auto 20px;
  position:relative;
}
.chakra-circle::after{
  content:"";
  position:absolute;
  inset:30px;
  border:8px dashed #4aa3df;
  border-radius:50%;
}

/* STUDENTS */
.student-strip{
  display:flex;
  justify-content:center;
  gap:10px;
  margin-top:-120px;
}
.student-strip img{
  width:70px;
  height:90px;
  object-fit:cover;
  border-radius:8px;
  border:2px solid #fff;
}

/* ADDRESS */
.mission-address{
  background:#f2f7ec;
  padding:20px;
  border-radius:12px;
  margin-top:20px;
  font-size:14px;
}

.map-btn{
  display:block;
  margin:10px 0;
  font-weight:700;
  color:var(--primary);
}



/* students  */
/* ================= SELECTED STUDENTS ================= */
.selected-students-section{
  padding:90px 0;
  background:#ffffff;
}

/* HEAD */
.selected-head h2{
  font-size:42px;
  font-weight:900;
  color:var(--primary);
}
.selected-head h2 span{ color:var(--secondary); }

.selected-head p{
  max-width:750px;
  margin:12px auto 35px;
  font-size:16px;
  color:#444;
}

/* STATS */
.selection-stats{
  display:flex;
  justify-content:center;
  gap:40px;
  flex-wrap:wrap;
  background:#f6f8f6;
  border:1px solid #e4e9e6;
  padding:22px;
  border-radius:12px;
}
.selection-stats div{
  text-align:center;
}
.selection-stats strong{
  display:block;
  font-size:28px;
  color:var(--primary);
}
.selection-stats span{
  font-size:13px;
  font-weight:600;
}

/* CARD */
.student-card{
  background:#fff;
  border:1px solid #e6ece8;
  border-radius:12px;
  overflow:hidden;
  transition:.25s ease;
}
.student-card:hover{
  box-shadow:0 12px 28px rgba(0,0,0,.15);
}

/* IMAGE */
.student-img{
  position:relative;
}
.student-img img{
  width:100%;
  height:240px;
  object-fit:cover;
}

/* RANK */
.rank-badge{
  position:absolute;
  top:12px;
  left:12px;
  background:var(--secondary);
  padding:4px 10px;
  font-weight:800;
  font-size:12px;
  border-radius:6px;
}

/* INFO */
.student-info{
  padding:16px;
  text-align:center;
}
.student-info h5{
  font-weight:800;
  color:var(--primary);
  margin-bottom:2px;
}
.student-info p{
  font-size:13px;
  margin-bottom:8px;
}

/* TAGS */
.exam-tag{
  display:inline-block;
  padding:4px 10px;
  font-size:12px;
  border-radius:20px;
  font-weight:700;
}
.exam-tag.nda{ background:#e7f3ea; color:#1f4d2c; }
.exam-tag.cds{ background:#eaf0f8; color:#123d7a; }
.exam-tag.ssb{ background:#fff3e6; color:#8a4b00; }

/* CTA */
.selected-cta{
  display:inline-block;
  background:var(--primary);
  color:#fff;
  padding:12px 28px;
  border-radius:30px;
  font-weight:800;
}
.selected-cta:hover{
  background:var(--secondary);
  color:#000;
}

/* MOBILE */
@media(max-width:768px){
  .selected-head h2{ font-size:30px; }
}
/* SWIPER FIX */
.selectedSwiper{
  padding-bottom:60px;
}

.swiper-slide{
  height:auto;
}

/* ARROWS */
.swiper-button-next,
.swiper-button-prev{
  color:var(--primary);
}

.swiper-button-next:hover,
.swiper-button-prev:hover{
  color:var(--secondary);
}

/* DOTS */
.swiper-pagination-bullet{
  background:#cbd5cd;
  opacity:1;
}
.swiper-pagination-bullet-active{
  background:var(--primary);
}



/* gallery  */
/* ================= GALLERY ================= */
.events-gallery-section{
  padding:90px 0;
  background:#f6f8f6;
}

/* HEAD */
.gallery-head h2{
  font-size:42px;
  font-weight:900;
  color:var(--primary);
}
.gallery-head h2 span{ color:var(--secondary); }

.gallery-head p{
  max-width:850px;
  margin:12px auto 30px;
  font-size:16px;
  color:#444;
}

/* CARD */
.gallery-card{
  position:relative;
  border-radius:14px;
  overflow:hidden;
  cursor:pointer;
  box-shadow:0 12px 30px rgba(0,0,0,.15);
}

.gallery-card img{
  width:100%;
  height:260px;
  object-fit:cover;
  transition:.4s ease;
}

.gallery-card:hover img{
  transform:scale(1.08);
}

/* OVERLAY */
.gallery-overlay{
  position:absolute;
  inset:0;
  background:rgba(31,77,44,.65);
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  transition:.35s ease;
}

.gallery-overlay span{
  color:#fff;
  font-weight:800;
  font-size:18px;
  letter-spacing:1px;
}

.gallery-card:hover .gallery-overlay{
  opacity:1;
}

/* MODAL */
.gallery-modal .modal-content{
  background:#000;
  border-radius:12px;
  position:relative;
  padding:0;
}

.gallery-modal img{
  width:100%;
  max-height:80vh;
  object-fit:contain;
}

/* CLOSE */
.gallery-close{
  position:absolute;
  top:15px;
  right:20px;
  font-size:34px;
  color:#fff;
  background:none;
  border:none;
  z-index:10;
}

/* NAV */
.gallery-nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  font-size:40px;
  color:#fff;
  cursor:pointer;
  padding:10px 18px;
  z-index:10;
  background:rgba(0,0,0,.4);
  border-radius:50%;
}

.gallery-nav.left{ left:15px; }
.gallery-nav.right{ right:15px; }

/* MOBILE */
@media(max-width:768px){
  .gallery-head h2{ font-size:30px; }
  .gallery-card img{ height:220px; }
}



/* footer  */
/* ================= FOOTER ================= */
.udaan-footer{
  background:#0f2f1f;
  color:#cfd8d3;
  padding:70px 0 25px;
}

/* LOGO */
.footer-logo{
  font-size:26px;
  font-weight:900;
  color:#fff;
}
.footer-logo span{
  color:var(--secondary);
}

/* TITLES */
.footer-title{
  font-size:18px;
  font-weight:800;
  color:#fff;
  margin-bottom:15px;
}

/* TEXT */
.footer-about p{
  font-size:14.5px;
  line-height:1.8;
  margin:15px 0 20px;
}

/* SOCIAL */
.footer-social a{
  display:inline-flex;
  width:38px;
  height:38px;
  border-radius:50%;
  align-items:center;
  justify-content:center;
  background:#173d2b;
  color:#fff;
  margin-right:8px;
  transition:.3s;
}
.footer-social a:hover{
  background:var(--secondary);
  color:#000;
}

/* LINKS */
.footer-links{
  list-style:none;
  padding:0;
  margin:0;
}
.footer-links li{
  margin-bottom:10px;
}
.footer-links a{
  color:#cfd8d3;
  font-size:14.5px;
  transition:.25s;
}
.footer-links a:hover{
  color:var(--secondary);
  padding-left:4px;
}

/* CONTACT */
.footer-contact p{
  font-size:14.5px;
  line-height:1.7;
  margin-bottom:12px;
}
.footer-contact i{
  color:var(--secondary);
  margin-right:6px;
}
.footer-contact a{
  color:#cfd8d3;
}

/* BOTTOM */
.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.1);
  margin-top:40px;
  padding-top:18px;
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  font-size:14px;
  color:#bfc9c3;
}

/* MOBILE */
@media(max-width:768px){
  .footer-bottom{
    text-align:center;
    gap:8px;
  }
}



/* whatsapp btn  */
/* ================= WHATSAPP FLOAT ================= */
.whatsapp-float{
  position:fixed;
  right:22px;
  bottom:22px;
  width:56px;
  height:56px;
  background:#0caa46;
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  z-index:9999;
  box-shadow:0 8px 25px rgba(0,0,0,0.3);
  opacity:0;
  visibility:hidden;
  transform:translateY(20px);
  transition:0.35s ease;
}

.whatsapp-float:hover{
  background:#0a7a00;
  color:#fff;
  transform:scale(1.08);
}

/* show state */
.whatsapp-float.show{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

/* mobile safe spacing */
@media(max-width:768px){
  .whatsapp-float{
    right:16px;
    bottom:16px;
    width:52px;
    height:52px;
    font-size:26px;
  }
}




/* galler page  */
      /* ================= GALLERY HERO – PRO ================= */

        .gallery-hero-pro {
            position: relative;
            min-height: 50vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background:
                radial-gradient(circle at center,
                    rgba(255, 255, 255, 0.08),
                    rgba(31, 77, 44, 0.85)),
                url('https://images.unsplash.com/photo-1596495577886-d920f1fb7238') center/cover no-repeat;
        }

        /* OVERLAY for depth */
        .gallery-hero-pro__overlay {
            position: absolute;
            inset: 0;
            background:
                linear-gradient(180deg,
                    rgba(31, 77, 44, 0.85),
                    rgba(31, 77, 44, 0.95));
        }

        /* CENTER CARD */
        .gallery-hero-pro__wrap {
            position: relative;
            z-index: 2;
            max-width: 900px;
            margin: auto;
            text-align: center;
            padding: 60px 50px;
            border-radius: 18px;
            background: rgba(0, 0, 0, 0.25);
            backdrop-filter: blur(4px);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
        }

        /* TAG */
        .gallery-hero-pro__tag {
            display: inline-block;
            margin-bottom: 16px;
            padding: 6px 16px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            background: var(--secondary);
            color: #000;
        }

        /* TITLE */
        .gallery-hero-pro__title {
            font-size: 56px;
            font-weight: 900;
            color: #fff;
            margin-bottom: 18px;
        }

        .gallery-hero-pro__title span {
            color: var(--secondary);
        }

        /* DESC */
        .gallery-hero-pro__desc {
            font-size: 18px;
            line-height: 1.9;
            color: #e7eee9;
            max-width: 720px;
            margin: 0 auto 26px;
        }

        /* BREADCRUMB */
        .gallery-hero-pro__breadcrumb {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            color: #cfd8d3;
        }

        .gallery-hero-pro__breadcrumb a {
            color: var(--secondary);
            font-weight: 700;
        }

        .gallery-hero-pro__breadcrumb span {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--secondary);
        }

        /* MOBILE */
        @media(max-width:768px) {
            .gallery-hero-pro {
                min-height: 60vh;
            }

            .gallery-hero-pro__wrap {
                padding: 40px 26px;
            }

            .gallery-hero-pro__title {
                font-size: 34px;
            }

            .gallery-hero-pro__desc {
                font-size: 15px;
            }
        }



        /* contact page  */
            /* ================= CONTACT PRO ================= */
.contact-pro-section{
  padding:90px 0;
  background:#ffffff;
}

/* LEFT */
.contact-pro-title{
  font-size:42px;
  font-weight:900;
  color:var(--primary);
}
.contact-pro-title span{ color:var(--secondary); }

.contact-pro-desc{
  font-size:16.5px;
  line-height:1.8;
  margin:15px 0 35px;
  color:#333;
}

.contact-pro-box{
  background:#f6f8f6;
  padding:22px;
  border-radius:12px;
  border:1px solid #e4e9e6;
  margin-bottom:22px;
}

.contact-pro-box h5{
  font-weight:800;
  color:var(--primary);
  margin-bottom:12px;
}

.contact-pro-box p{
  font-size:14.5px;
  margin-bottom:8px;
}

.contact-pro-box i{
  color:var(--primary);
  margin-right:6px;
}

.contact-pro-box a{
  color:#000;
  font-weight:600;
}

/* MAP BUTTON */
.contact-map-btn{
  display:inline-flex;
  align-items:center;
  gap:6px;
  margin-top:10px;
  color:var(--primary);
  font-weight:700;
}

/* FORM */
.contact-pro-form{
  background:linear-gradient(180deg, #1f4d2c, #163a26);
  padding:45px;
  border-radius:18px;
  box-shadow:0 25px 60px rgba(0,0,0,.25);
  color:#fff;
}

.contact-pro-form h3{
  font-size:32px;
  font-weight:900;
}
.contact-pro-form h3 span{ color:var(--secondary); }

.contact-pro-form p{
  font-size:14px;
  margin-bottom:22px;
  color:#e5ece9;
}

.contact-pro-form .form-control{
  margin-bottom:14px;
  border-radius:8px;
  padding:10px 14px;
  font-size:14px;
}

/* CAPTCHA PLACEHOLDER */
.recaptcha-box{
  background:#fff;
  color:#000;
  padding:12px;
  border-radius:6px;
  font-size:13px;
  margin:10px 0 18px;
}

/* SUBMIT */
.contact-submit-btn{
  width:100%;
  background:var(--secondary);
  color:#000;
  border:none;
  padding:12px;
  font-weight:800;
  border-radius:8px;
  transition:.25s ease;
}

.contact-submit-btn:hover{
  background:#ffcf00;
}

/* MOBILE */
@media(max-width:768px){
  .contact-pro-title{
    font-size:30px;
  }
  .contact-pro-form{
    padding:30px 22px;
  }
}



/* career page  */
/* ================= CAREER ================= */
.career-section{
  padding:90px 0;
  background:#f6f8f6;
}

/* HEAD */
.career-head{
  max-width:800px;
  margin:0 auto 60px;
}

.career-tag{
  display:inline-block;
  background:#e7f3ea;
  color:var(--primary);
  padding:6px 16px;
  border-radius:30px;
  font-weight:700;
  margin-bottom:14px;
}

.career-head h2{
  font-size:42px;
  font-weight:900;
  color:var(--primary);
  margin-bottom:12px;
}

.career-head h2 span{
  color:var(--secondary);
}

.career-head p{
  font-size:16px;
  color:#444;
  line-height:1.7;
}

/* CARD */
.career-card{
  background:#fff;
  border:1px solid #e6ece8;
  border-radius:14px;
  padding:26px;
  height:100%;
  transition:.3s ease;
}

.career-card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 40px rgba(0,0,0,.15);
}

/* BODY */
.career-card-body h4{
  font-weight:800;
  color:var(--primary);
  margin-bottom:10px;
}

.career-card-body p{
  font-size:14.5px;
  color:#333;
  margin-bottom:14px;
  line-height:1.6;
}

.career-card-body ul{
  padding-left:18px;
  margin:0;
}

.career-card-body li{
  font-size:14px;
  margin-bottom:6px;
  color:#444;
}

/* FOOTER – BUTTON ALWAYS SAME LINE */
.career-card-footer{
  margin-top:22px;
}

/* BUTTON */
.career-btn{
  background:var(--primary);
  color:#fff;
  border:none;
  padding:10px 26px;
  border-radius:30px;
  font-weight:800;
  transition:.25s ease;
}

.career-btn:hover{
  background:var(--secondary);
  color:#000;
}

/* MOBILE */
@media(max-width:768px){
  .career-head h2{
    font-size:30px;
  }
}
