/* GLOBAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #fff;
    overflow-x: hidden;
}

/* Base responsive typography */
html {
  font-size: 16px;
}
@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
}

/* Global container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Utility: text-center */
.text-center {
  text-align: center;
}

/* Utility: margin */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* Utility: padding */
.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }

/* Utility: display */
.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

/* Utility: flex */
.justify-center { justify-content: center; }
.items-center { align-items: center; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }

/* Utility: grid */
.grid-cols-1 { grid-template-columns: 1fr; }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
.gap-2 { gap: 1rem; }
.gap-4 { gap: 2rem; }

/* Utility: border */
.rounded { border-radius: 0.5rem; }
.rounded-lg { border-radius: 1rem; }

/* Utility: shadow */
.shadow { box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); }
.shadow-lg { box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1); }

/* Utility: width */
.w-full { width: 100%; }
.max-w-md { max-width: 28rem; }
.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }

/* Responsive breakpoints */
@media (min-width: 640px) {
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .sm\:flex-row { flex-direction: row; }
}

@media (min-width: 768px) {
  .md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .md\:flex-row { flex-direction: row; }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ENHANCED NAVBAR */
.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background: #0f172a;
    box-shadow: 0 14px 30px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
}

/* Light header variant for main homepage */
.header-light { background:#ffffff; }
.header-light .nav-logo { color:#111827; }
.header-light .nav-menu li a { color:#111827; }
.header-light .nav-menu li a:hover,
.header-light .nav-menu li a.active { color:#111827; border-bottom:2px solid #111827; }
.header-light .nav-menu .has-dd > a{ color:#111827; }
.header-light .nav-menu .dd{ background:#ffffff; border:1px solid #e5e7eb; box-shadow:0 24px 50px rgba(0,0,0,0.12); }
.header-light .nav-menu .dd a{ color:#111827; }
.header-light .nav-menu .dd a:hover,
.header-light .nav-menu .dd a.active{ background:#f3f4f6; color:#111827; }

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo img {
    height: 50px;      /* Adjust size (increase or decrease) */
    width: auto;
    object-fit: contain;
}


/* LOGO */
.nav-logo {
    font-size: 30px;
    font-weight: 800;
    color: #222;
    text-transform: uppercase;
}

.nav-logo span {
    color: #00c06d;
}

/* NAV MENU */
.nav-menu {
    list-style: none;
    display: flex;
    gap: 35px;
    align-items: center;
}

/* Desktop responsive spacing to keep all items visible */
@media (max-width: 1200px) {
  .nav-menu { gap: 24px; }
  .nav-menu li a { font-size: 16px; }
}

@media (max-width: 992px) and (min-width: 769px) {
  .nav-menu { gap: 16px; flex-wrap: wrap; }
  .nav-menu li a { font-size: 15px; }
}

.nav-menu li a {
    text-decoration: none;
    font-size: 17px;
    color: #cbd5e1;
    font-weight: 600;
    padding: 8px 10px;
    transition: 0.3s;
    border-bottom: 2px solid transparent;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #d6a85b;
    border-bottom: 2px solid #d6a85b;
}

/* Main nav dropdown */
.nav-menu .has-dd{ position: relative; }
.nav-menu .has-dd > a{ color:#cbd5e1; text-decoration:none; padding:8px 12px; border-radius:12px; }
.nav-menu .dd{ position: absolute; top: 38px; left: 0; background: #0f172a; border: none; border-radius: 14px; box-shadow: 0 24px 50px rgba(0,0,0,0.5); padding: 10px; display: none; min-width: 180px; }
.nav-menu .has-dd:hover .dd{ display: block; }
.nav-menu .has-dd.open .dd{ display: block; }
.nav-menu .dd a{ display: block; color: #cbd5e1; padding: 10px 12px; border-radius: 10px; text-decoration: none; }
.nav-menu .dd a:hover, .nav-menu .dd a.active{ background: #d6a85b; color: #0f172a; }
.nav-close{ display:none; }

/* ENHANCED HAMBURGER BUTTON */
.nav-toggle {
    display: none;
    font-size: 32px;
    cursor: pointer;
    color: #333333;
    user-select: none;
    background: rgba(255, 255, 255, 0.85);
    border: 2px solid rgba(0, 0, 0, 0.1);
    padding: 14px;
    border-radius: 14px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1001;
    position: relative;
    backdrop-filter: blur(8px);
    margin-left: auto;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    font-weight: bold;
}

.nav-toggle:hover {
    background: rgba(255, 123, 0, 0.25);
    color: #ff7b00;
    transform: scale(1.15) rotate(5deg);
    border-color: rgba(255, 123, 0, 0.6);
    box-shadow: 0 12px 35px rgba(255, 123, 0, 0.25);
}

/* MOBILE NAV FIXES - Consolidated below */

/* Enhanced Mobile Navigation */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
        font-size: 28px;
        cursor: pointer;
        color: #333333;
        user-select: none;
        background: rgba(255, 255, 255, 0.9);
        border: 1px solid rgba(0, 0, 0, 0.1);
        padding: 10px 12px;
        border-radius: 12px;
        transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 10001;
        position: relative;
        margin-left: auto;
        margin-right: 10px;
        backdrop-filter: blur(6px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.08);
        font-weight: 700;
    }
    
    .nav-toggle:hover {
        background: rgba(255, 255, 255, 1);
        color: #111827;
        transform: scale(1.06);
        border-color: rgba(0, 0, 0, 0.15);
    }
    
    .nav-toggle.active {
        color: #ff7b00;
        transform: rotate(180deg);
        background: rgba(255, 123, 0, 0.2);
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 400px;
        height: 100vh;
        background: #ffffff;
        flex-direction: column;
        gap: 8px;
        padding: 76px 24px 24px;
        box-shadow: -10px 0 32px rgba(0,0,0,0.12);
        transition: right 0.3s ease;
        border-radius: 24px 0 0 24px;
        border-left: 1px solid rgba(0,0,0,0.06);
        z-index: 100000;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-menu.active {
        right: 0 !important;
        display: flex;
    }
    .nav-close {
        display: none;
        position: fixed;
        top: 12px;
        right: 12px;
        z-index: 100001;
        background: #ffffff;
        border: 1px solid rgba(0,0,0,0.1);
        border-radius: 12px;
        padding: 8px 10px;
        line-height: 1;
        font-size: 20px;
        color: #111827;
        cursor: pointer;
        box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    }
    .nav-menu.active ~ .nav-close {
        display: block;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        display: block;
        padding: 12px 16px;
        border-radius: 12px;
        font-weight: 600;
        font-size: 16px;
        line-height: 1.2;
        transition: all 0.25s ease;
        color: #111827;
        background: transparent;
        border: 1px solid transparent;
    }
    
    .nav-menu a:hover {
        background: #f3f4f6;
        color: #111827;
        transform: translateX(4px);
        border-color: #e5e7eb;
        box-shadow: none;
    }
    
    .nav-menu a.active {
        background: #f3f4f6;
        color: #111827;
        border-color: #e5e7eb;
        box-shadow: none;
    }
    .nav-menu .dd{ position: static; width: 100%; height: auto; background: #ffffff; border: 1px solid #e5e7eb; border-radius: 12px; box-shadow: none; padding: 8px; display: none; }
    .nav-menu .has-dd:hover .dd{ display: block; }
    .nav-menu .has-dd.open .dd{ display: block; }
    .nav-menu .dd a{ color: #111827; }
    
    .nav-menu li {
        width: 100%;
        text-align: left;
        opacity: 0;
        transform: translateX(20px);
        animation: slideInRight 0.3s ease forwards;
    }
    
    .nav-menu li:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu li:nth-child(2) { animation-delay: 0.2s; }
    .nav-menu li:nth-child(3) { animation-delay: 0.3s; }
    .nav-menu li:nth-child(4) { animation-delay: 0.4s; }
    .nav-menu li:nth-child(5) { animation-delay: 0.5s; }
    .nav-menu li:nth-child(6) { animation-delay: 0.6s; }
    .nav-menu li:nth-child(7) { animation-delay: 0.7s; }
    
    @keyframes slideInRight {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    .nav-menu li a {
        display: block;
        padding: 12px 16px;
        font-size: 16px;
        color: #111827;
        text-decoration: none;
        border-radius: 12px;
        transition: all 0.25s ease;
        border: 1px solid transparent;
        background: transparent;
        margin-bottom: 2px;
        font-weight: 500;
        position: relative;
        overflow: hidden;
    }
    
    .nav-menu li a::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(0, 192, 109, 0.1), transparent);
        transition: left 0.5s ease;
    }
    
    .nav-menu li a:hover::before {
        left: 100%;
    }
    
    .nav-menu li a:hover,
    .nav-menu li a.active {
        background: #f3f4f6;
        color: #111827;
        border-color: #e5e7eb;
        transform: translateX(4px);
        box-shadow: none;
    }

    /* Auth item layout in mobile menu */
    #navAuthItem { display: flex; gap: 10px; align-items: center; }
}

/* Desktop: allow wrapping so all items are visible */
@media (min-width: 769px) {
  .nav { flex-wrap: wrap; }
  .nav-menu { flex-wrap: wrap; gap: 18px; }
}

/* Tighter spacing for mid-width desktops */
@media (min-width: 769px) and (max-width: 1350px) {
  .nav-menu li a { font-size: 15px; }
}

/* Global responsive fixes */
@media (max-width: 768px) {
    .slide {
        flex-direction: column;
        text-align: center;
        padding: 50px 20px;
    }

    .hero-text {
        width: 100%;
    }

    .hero-image-container {
        width: 80%;
        margin-top: 20px;
    }

    .hex-bg {
        width: 50%;
        top: -10px;
        right: -10px;
    }

    .section-content,
    .reverse {
        flex-direction: column;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Career page responsive */
    .career-grid {
        grid-template-columns: 1fr;
    }

    /* HR page responsive */
    .hr-team .governors-grid {
        grid-template-columns: 1fr;
    }

    /* Contact page responsive */
    .contact-info-section {
        padding: 60px 0;
    }
    
    .contact-main-title {
        font-size: 36px;
    }
    
    .contact-main-subtitle {
        font-size: 18px;
        margin-bottom: 40px;
    }
    
    .contact-cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        padding: 0 15px;
    }
    
    .contact-info-card {
        padding: 30px 20px;
    }
    
    .contact-form-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 15px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-form-info {
        padding: 30px 20px;
    }
    
    .get-in-touch-section {
        padding: 60px 0;
    }

    /* Footer responsive */
    .footer-container {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-section {
        width: 100%;
        text-align: center;
    }
}


/* ENHANCED PROFESSIONAL SLIDER */
.slider {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

@media (max-width: 768px) {
    .slider {
        height: auto;
        min-height: 90vh;
    }
}

.slides {
    height: 100%;
    display: flex;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide {
    min-width: 100%;
    height: 100%;
    padding: 120px 80px 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    position: relative;
}

/* PROFESSIONAL HERO TEXT */
.hero-text {
    width: 50%;
    max-width: 600px;
    text-align: left;
    z-index: 2;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.highlight {
    background: linear-gradient(90deg, #ff7b00, #ffa500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.hero-text p {
    margin-top: 1.5rem;
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.btn-outline,
.btn-filled {
    padding: 1rem 2rem;
    cursor: pointer;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    border: none;
    min-width: 180px;
    text-align: center;
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.btn-filled {
    background: linear-gradient(90deg, #ff7b00, #ffa500);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255,123,0,0.4);
}

.btn-filled:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,123,0,0.6);
    background: linear-gradient(90deg, #ffa500, #ff7b00);
}

/* PROFESSIONAL HERO IMAGES */
.hero-image-container {
    width: 45%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.team-img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    z-index: 1;
}

.team-img:hover {
    transform: scale(1.05);
}

.hex-bg {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 80%;
    opacity: 0.2;
    pointer-events: none;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* PROFESSIONAL DOTS */
.dots {
    position: absolute;
    left: 50px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 10;
}

.dot {
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: linear-gradient(90deg, #ff7b00, #ffa500);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.dot:hover {
    transform: scale(1.3);
    background: rgba(255, 255, 255, 0.6);
}

.dot.active {
    background: linear-gradient(90deg, #ff7b00, #ffa500);
    border-color: #ffffff;
    transform: scale(1.2);
    box-shadow: 0 6px 20px rgba(255, 123, 0, 0.6);
}

.dot.active::before {
    width: 100%;
    height: 100%;
}

/* Mobile Responsive Dots */
@media (max-width: 768px) {
    .dots {
        left: 50%;
        top: auto;
        bottom: 40px;
        transform: translateX(-50%);
        flex-direction: row;
        gap: 20px;
        background: rgba(0, 0, 0, 0.4);
        padding: 15px 25px;
        border-radius: 30px;
        backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .dot {
        width: 16px;
        height: 16px;
    }
    
    .dot.active {
        width: 18px;
        height: 18px;
    }
}

/* Responsive Slider Styles */
@media (max-width: 1200px) {
    .slide {
        padding: 100px 60px 60px;
        gap: 40px;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .slide {
        flex-direction: column;
        text-align: center;
        padding: 120px 30px 60px;
        gap: 30px;
    }
    
    .hero-text {
        width: 100%;
        max-width: 100%;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-image-container {
        width: 80%;
        max-width: 400px;
    }
    
    .dots {
        bottom: 30px;
    }
}

@media (max-width: 480px) {
    .slider { min-height: 100vh; }
    .slide {
        padding: 120px 20px 60px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .btn-outline,
    .btn-filled {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        min-width: 150px;
    }
    
    .hero-image-container {
        width: 90%;
    }
    
    .hex-bg {
        width: 60%;
        top: -30px;
        right: -30px;
    }
}

/* SECTIONS */
.section {
    padding: 70px 10%;
}

.section-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.section img {
    width: 100%;
    border-radius: 16px;
}

.section-light {
    background: #f8fafc;
}

.section-yellow {
    background: linear-gradient(90deg, #fff1d8, #ffe7bb);
}

.reverse {
    flex-direction: row-reverse;
}

/* Mobile section alignment improvements */
@media (max-width: 768px) {
  .section { padding: 40px 20px; }
  .section-content { flex-direction: column; align-items: center; text-align: center; gap: 20px; }
  .section-content.reverse { flex-direction: column; }
  .section-content .text { width: 100%; text-align: center; }
  .section-content .image { width: 100%; margin-top: 14px; display:flex; justify-content:center; align-items:center; }
  .section-content .image img { width: 92%; max-width: 520px; height: auto; display:block; margin: 0 auto 16px; border-radius: 16px; object-fit: contain; }
  .section .text p { margin-bottom: 10px; }
  .section .btn-filled { display: inline-block; margin: 12px auto 0; }
}

/* Desktop polish for Section 1 and 2 (non-mobile only) */
@media (min-width: 769px) {
  .section-light .section-content,
  .section-yellow .section-content {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    padding: 40px;
  }

  .section .image img { border-radius: 18px; box-shadow: 0 14px 30px rgba(0,0,0,0.12); }
  .section .text h2 { font-size: 34px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 10px; }
  .section .text p { color: #4b5563; }
  .section .btn-filled { border-radius: 14px; }
}

/* ------------------------------------------
   PROFESSIONAL SERVICES SECTION
------------------------------------------- */

.services-section {
    padding: 80px 50px;
    background: #fafafa;
    text-align: center;
}

.services-section h2 {
    font-size: 34px;
    margin-bottom: 50px;
    font-weight: 700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 35px;
}

/* NEW LARGE PROFESSIONAL CARD */
.service-card.pro {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 15px 25px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    text-align: left;
}

.service-card.pro:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 35px rgba(0,0,0,0.12);
}

/* BIG IMAGE BOX */
.service-img-box {
    width: 100%;
    height: 240px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 18px;
}

.service-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content */
.service-card.pro h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #111;
}

.service-card.pro p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-btn {
    font-size: 15px;
    color: #1a73e8;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s;
}

.read-btn:hover {
    color: #0b4bc9;
}

/* RESPONSIVE FIX */
@media (max-width: 480px) {
    .services-section {
        padding: 50px 20px;
    }
    
    .service-img-box {
        height: 200px;
    }
}


/* RESPONSIVE */
@media (max-width: 950px) {

    .nav-links {
        position: absolute;
        top: 80px;
        right: -100%;
        width: 250px;
        background: white;
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        transition: 0.4s;
        box-shadow: 0 0 15px rgba(0,0,0,0.1);
    }

    .nav-links.show {
        right: 0;
    }

    .menu-btn {
        display: block;
    }

    .slide {
        flex-direction: column;
        text-align: center;
        padding: 50px 20px;
    }

    .hero-text {
        width: 100%;
    }

    .hero-image-container {
        width: 80%;
        margin-top: 20px;
    }

    .hex-bg {
        width: 50%;
        top: -10px;
        right: -10px;
    }

    .section-content,
    .reverse {
        flex-direction: column;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 32px;
    }
}



/*about*/

.about-hero {
    padding: 120px 60px;
    background: linear-gradient(to right, #f8fdfa, #e9fff3);
}

.about-text h1 {
    font-size: 48px;
    font-weight: 700;
}

.about-content {
    padding: 60px 60px;
}

.about-content h2 {
    margin-top: 40px;
    font-size: 28px;
    color: #00c06d;
}

.about-content p {
    margin-top: 10px;
    color: #555;
    font-size: 18px;
}

.page-down-btn {
    position: absolute;
    right: 24px;
    bottom: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: #00c06d;
    font-size: 22px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    cursor: pointer;
}

/* Embedded video section */
.video-section {
    padding: 60px 24px;
    background: #f9fafb;
}
.video-content { max-width: 1100px; margin: 0 auto; text-align: center; }
.video-content h2 { font-size: 36px; margin-bottom: 10px; font-weight: 800; letter-spacing: -0.02em; }
.video-content h2::after { content: ""; display: block; width: 80px; height: 3px; background: #00c853; margin: 10px auto 0; border-radius: 2px; }
.video-content p { color: #555; margin-bottom: 18px; }
.responsive-iframe { position: relative; padding-top: 56.25%; border-radius: 12px; overflow: hidden; box-shadow: 0 10px 24px rgba(0,0,0,0.08); }
.responsive-iframe iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

/* Footer */
.footer { background: #0f172a; color: #cbd5e1; margin-top: 50px; }
.footer-inner { max-width: 1100px; margin: 0 auto; padding: 40px 24px; display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 22px; }
.footer-container { max-width: 1200px; margin: 0 auto; padding: 40px 24px; display: grid; grid-template-columns: repeat(4,minmax(220px,1fr)); gap: 24px; align-items: start; }
.footer-section { text-align: left; }
.footer-section.links ul { list-style: none; padding: 0; margin: 0; display: grid; row-gap: 8px; }
.footer-section.about .footer-btn { display: inline-block; margin-right: 8px; margin-top: 8px; }
.footer .logo { font-size: 28px; font-weight: 700; }
.footer h4 { color: #fff; margin-bottom: 10px; }
.footer-links ul { list-style: none; display: grid; gap: 8px; }
.footer a { color: #cbd5e1; text-decoration: none; }
.footer a:hover { color: #fff; }
.newsletter-form { display: flex; gap: 10px; }
.newsletter-form input { flex: 1; padding: 10px; border-radius: 8px; border: 1px solid #334155; background: #111827; color: #e5e7eb; }
.footer-bottom { border-top: 1px solid #334155; padding: 16px 24px; text-align: center; }

/* Scroll-down button inside hero */


@media (max-width: 1024px) {
  .footer-container { grid-template-columns: repeat(3,minmax(220px,1fr)); }
}
@media (max-width: 768px) {
  .footer-container { grid-template-columns: 1fr; gap: 20px; padding: 30px 16px; }
  .footer-section { text-align: center; }
}

/* ===== About page layout & styling ===== */
.about-block{
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 24px;
  border-radius: 20px;
}

/* ===== Global Professional Centering and Alignment ===== */
.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page.container {
  text-align: center;
  margin-bottom: 40px;
}

/* Enhanced section containers */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.section {
  padding: 60px 0;
  margin: 0 auto;
  max-width: 1200px;
}

/* Professional centering utilities */
.center-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.text-center {
  text-align: center !important;
}

.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Enhanced headings with consistent spacing */
.section-heading {
  text-align: center;
  margin-bottom: 24px;
  font-weight: 700;
  line-height: 1.3;
}

.section-subheading {
  text-align: center;
  margin-bottom: 28px;
  color: #6b7280;
  font-size: 18px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Professional card containers */
.card-container {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  margin: 0 auto 40px;
  max-width: 1000px;
  border: 1px solid rgba(0,0,0,0.05);
}

/* Responsive centering */
@media (max-width: 768px) {
  .page {
    padding: 0 15px;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .card-container {
    padding: 30px 20px;
    margin: 0 auto 30px;
  }
  
  .section-subheading {
    font-size: 16px;
    margin-bottom: 36px;
  }
}

/* ===== Professional Section Enhancements ===== */
/* Enhanced gradient backgrounds for sections */
.section-gradient {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 100px 0;
  margin: 60px 0;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
}

.section-gradient::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.section-gradient .section-heading {
  color: white;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.section-gradient .section-subheading {
  color: rgba(255,255,255,0.9);
}

/* Professional spacing utilities */
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mt-60 { margin-top: 60px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.mb-60 { margin-bottom: 60px; }

/* Enhanced text styling */
.text-gradient {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

/* Professional shadow effects */
.shadow-soft {
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.shadow-strong {
  box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}

/* Smooth transitions for interactive elements */
button, .btn, .card, .governor-card, .feature-item, .nav-toggle, .nav-menu a {
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== Mobile Alignment & Contact Page Improvements ===== */
@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .section { padding: 50px 0; }
}

.get-in-touch-section .contact-form-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
}

.get-in-touch-section .contact-form {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.get-in-touch-section .contact-form input,
.get-in-touch-section .contact-form select,
.get-in-touch-section .contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    margin-bottom: 12px;
}

.get-in-touch-section .contact-form .btn-filled { width: 100%; }

.get-in-touch-section .contact-form-info {
  background: linear-gradient(180deg, #f8fafc, #ffffff);
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}

@media (max-width: 768px) {
    .get-in-touch-section .contact-form-container { grid-template-columns: 1fr; gap: 24px; }
}

/* About page mobile alignment */
@media (max-width: 768px) {
  .about-hero { padding: 90px 24px; }
  .about-hero > div { flex-direction: column !important; text-align: center; }
  .about-text h1 { text-align: center; }
  .stats { justify-content: center; }
}

/* Slider mobile top padding to avoid header overlap */
@media (max-width: 768px) {
  .slide { padding-top: 100px; }
}

.hr-team {
  margin: 24px auto;
  padding: 40px 24px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.hr-team .section-head {
  margin-bottom: 20px;
}

.hr-team .governors-grid {
  max-width: 1000px;
  margin: 0 auto;
}

/* Enhanced section headings for HR page */
.section-head--green {
  background: linear-gradient(90deg, #e6fff4 0%, #f5fffb 100%);
  padding: 16px 24px;
  border-radius: 20px;
  margin-bottom: 24px;
  border: 2px solid rgba(15, 118, 110, 0.1);
}

.section-head--rose {
  background: linear-gradient(90deg, #fff4f7 0%, #fff7ff 100%);
  padding: 16px 24px;
  border-radius: 20px;
  margin-bottom: 24px;
  border: 2px solid rgba(124, 58, 237, 0.1);
}
.bg-light{ background: #f8fafc; }
.bg-tint{ background: linear-gradient(180deg,#f7f9ff 0%, #ffffff 100%); }
.bg-soft{ background: linear-gradient(180deg,#fff7f7 0%, #ffffff 100%); }

.section-title{
  text-align: center;
  font-size: 36px;
  line-height: 1.2;
  margin: 0 0 28px 0;
  color: #0d47a1;
  letter-spacing: 0.5px;
}

.section-head{ display:flex; justify-content:center; }
.section-head--green{ background: linear-gradient(90deg,#e6fff4 0%, #f5fffb 100%); padding: 12px 18px; border-radius: 14px; margin-bottom: 18px; }
.section-head--green .section-title{ color:#0f766e; margin:0; }
.section-head--rose{ background: linear-gradient(90deg,#fff4f7 0%, #fff7ff 100%); padding: 12px 18px; border-radius: 14px; margin-bottom: 18px; }
.section-head--rose .section-title{ color:#7c3aed; margin:0; }

/* Heading theme: navy */
.section-head--navy{ background: linear-gradient(90deg,#eef2ff 0%, #f8fafc 100%); padding: 12px 18px; border-radius: 14px; margin-bottom: 18px; }
.section-head--navy .section-title{ color:#0d47a1; margin:0; }
.section-head--green .section-heading{ color:#0f766e; margin:0; }
.section-head--rose .section-heading{ color:#7c3aed; margin:0; }
.section-head--navy .section-heading{ color:#0d47a1; margin:0; }

/* Who We Are two-column */
.who-grid{
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: center;
}
.who-text p{ margin: 0 0 16px 0; color:#333; }
.who-media{ display:flex; justify-content:center; }
.who-image{
  width: 100%;
  max-width: 480px;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
  border: 1px solid rgba(0,0,0,0.06);
}

/* NEW VALUES SECTION */
.values-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.value-card-new {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.value-card-new img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 12px;
}

.value-card-new h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #222;
}

.value-card-new p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.value-card-new:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* Enhanced Governors section */
.governors-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.governor-card{
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: 2px solid transparent;
  border-radius: 20px;
  padding: 30px 25px;
  text-align:center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.governor-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #00c06d, #00b894);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.governor-card:hover::before {
  transform: scaleX(1);
}

.governor-card img{
  width: 130px; 
  height: 130px; 
  border-radius: 50%; 
  object-fit: cover; 
  margin-bottom: 20px;
  border: 4px solid #e5e7eb;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.governor-card h3{ 
  font-size: 20px; 
  font-weight: 700;
  margin: 0 0 8px 0; 
  color: #1f2937;
  transition: color 0.3s ease;
}

.governor-card p{ 
  font-weight: 600; 
  color: #6b7280;
  font-size: 16px;
  transition: all 0.3s ease;
}

.governor-card:hover{
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  border-color: #00c06d;
  background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
}

.governor-card:hover img {
  border-color: #00c06d;
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 192, 109, 0.3);
}

.governor-card:hover h3 {
  color: #00c06d;
}

.governor-card:hover p {
  color: #059669;
}

/* Responsive Governor Cards */
@media (max-width: 768px) {
  .governors-grid{
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }
  
  .governor-card{
    padding: 25px 20px;
  }
  
  .governor-card img{
    width: 110px; 
    height: 110px; 
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .governors-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

/* Enhanced Section Headings */
.section-head {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: block;
    text-align: center;
    margin: 0 auto 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #00c06d, #00b894);
    border-radius: 2px;
}

.section-head p {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-head {
        margin-bottom: 2rem;
    }
}

/* Professional Footer Design - Enhanced */
.footer {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: #d1d5db;
    padding: 80px 0 30px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00c06d, transparent);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 40px;
    row-gap: 12px;
    align-items: start;
    position: relative;
    z-index: 1;
}
.footer-section.newsletter{ order: 4; }
.footer-section.map{ order: 5; }
@media (min-width: 1025px){
  .footer-section.newsletter{ grid-column: 4; grid-row: 1; }
  .footer-section.map{ grid-column: 4; grid-row: 2; }
}
@media (max-width: 1024px){
  .footer-section.newsletter{ grid-column: 2; grid-row: 1; }
  .footer-section.map{ grid-column: 2; grid-row: 2; }
}
@media (max-width: 768px){
  .footer-section.newsletter{ grid-column: 1; grid-row: auto; }
  .footer-section.map{ grid-column: 1; grid-row: auto; }
}

/* Brand Section */
.footer-section.brand {
    padding-right: 20px;
}

.footer-logo-img {
    width: 60px;
    height: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.footer-logo-img:hover {
    transform: scale(1.05);
}

.footer-section h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #00c06d, #00b894);
    border-radius: 1px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #9ca3af;
}

/* About Section */
.footer-section.about p {
    margin-bottom: 20px;
    font-style: italic;
    color: #d1d5db;
}

.footer-btn {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid #374151;
    border-radius: 25px;
    font-size: 13px;
    color: #d1d5db;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-right: 10px;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.footer-btn:hover {
    background: linear-gradient(90deg, #00c06d, #00b894);
    border-color: #00c06d;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 192, 109, 0.3);
}

/* Links Section */
.footer-section { display: grid; gap: 10px; }
.footer-section h3 { margin-top: 0; }
.footer .social-icons { justify-content: flex-start; align-items: center; }
.footer-section.links ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 8px;
}
.footer-section.links a { padding-left: 0; }

@media (max-width: 1024px) {
  .footer-container { grid-template-columns: repeat(2, 1fr); column-gap: 32px; }
}
@media (max-width: 768px) {
  .footer-container { grid-template-columns: 1fr; row-gap: 20px; }
  .footer-section { text-align: center; }
  .footer .social-icons { justify-content: center; }
  .footer-section.brand { padding-right: 0; justify-items: center; }
  .footer-logo-img { display: block; margin: 0 auto 16px; }
  .footer-section h3::after { left: 50%; transform: translateX(-50%); }
  .footer-section.about .footer-btn { display: inline-block; margin-left: auto; margin-right: auto; }
}

.footer-section.links li {
    position: relative;
}

.footer-section.links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
    position: relative;
}

.footer-section.links a::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #00c06d;
}

.footer-section.links a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.footer-section.links a:hover::before {
    opacity: 1;
    left: -10px;
}

/* Newsletter Section */
.social-icons {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #374151 0%, #4b5563 100%);
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icons a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, #00c06d, #00b894);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-icons a:hover::before {
    opacity: 1;
}

.social-icons img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
    animation: iconPulse 3.2s ease-in-out infinite;
}

.social-icons a:hover img {
    transform: scale(1.1);
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

.search-bar {
    display: flex;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.search-bar input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    background: #374151;
    color: #ffffff;
    font-size: 14px;
    outline: none;
}

.search-bar input::placeholder {
    color: #9ca3af;
}

.search-bar input:focus {
    background: #4b5563;
}

.search-bar button {
    padding: 12px 20px;
    border: none;
    background: linear-gradient(90deg, #00c06d, #00b894);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-bar button:hover {
    background: linear-gradient(90deg, #00a85d, #059669);
    transform: scale(1.05);
}

.note {
    font-size: 12px;
    color: #6b7280;
    font-style: italic;
    line-height: 1.4;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #374151;
    padding: 25px 24px;
    text-align: center;
    color: #9ca3af;
    font-size: 13px;
    margin-top: 40px;
    background: rgba(0, 0, 0, 0.2);
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
    
    .footer-section.brand {
        grid-column: 1 / -1;
        text-align: center;
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 20px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 16px;
        text-align: center;
    }
    
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-section.links ul {
        grid-template-columns: 1fr;
        text-align: left;
        max-width: 200px;
        margin: 0 auto;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .search-bar {
        max-width: 300px;
        margin: 0 auto 15px;
    }
    
    .footer-btn {
        margin: 5px;
    }
}

/* Responsive tweaks for About page */
@media (max-width: 900px){
  .who-grid{ grid-template-columns: 1fr; }
  .section-title{ font-size: 30px; }
  .values-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px){
  .values-grid{ grid-template-columns: 1fr; }
}

/* Toast message */
#toast{
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #16a34a;
  color: #fff;
  padding: 12px 16px;
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.25s ease;
  pointer-events: none;
  z-index: 9999;
}
#toast.show{ opacity: 1; transform: translateY(0); }
@media (max-width: 600px){
  #toast{ left: 50%; right: auto; transform: translate(-50%, 10px); }
  #toast.show{ transform: translate(-50%, 0); }
}

/* ===== Services page (new layout) ===== */
.services-page{ max-width: 1200px; margin: 0 auto; }

/* Enhanced Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    margin: 5% auto;
    padding: 30px;
    border: none;
    width: 90%;
    max-width: 650px;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: black;
}

/* Modal content styling */
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #eee;
}

.modal-header h2 {
    margin: 0;
    color: #333;
    font-size: 24px;
}

.modal-content .job-details {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.modal-content .job-details p {
    margin: 8px 0;
    font-size: 16px;
}

.modal-content .job-description {
    margin-bottom: 25px;
}

.modal-content .job-description h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 20px;
}

.modal-content .job-description p {
    line-height: 1.6;
    color: #555;
    font-size: 16px;
}

.modal-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 20px;
}

.btn-primary, .btn-secondary {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #00c06d;
    color: white;
}

.btn-primary:hover {
    background: #00a85d;
    transform: translateY(-1px);
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-1px);
}

/* Enhanced Responsive Modals */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 10% auto;
        padding: 20px;
        border-radius: 16px;
    }
    
    .modal-header h2 {
        font-size: 20px;
    }
    
    .modal-header {
        margin-bottom: 15px;
        padding-bottom: 10px;
    }
    
    .modal-actions {
        flex-direction: column;
        gap: 10px;
        margin-top: 15px;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .modal-content .job-details {
        padding: 12px;
        margin-bottom: 15px;
    }
    
    .modal-content .job-description {
        margin-bottom: 20px;
    }
    
    .modal-content .job-description h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .modal-content .job-description p {
        font-size: 14px;
    }
}

/* Enhanced Contact Page Styles */
.contact-page {
    margin-top: 90px;
    min-height: calc(100vh - 90px);
}

/* Contact Info Section */
.contact-info-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.contact-main-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.contact-main-subtitle {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-info-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.contact-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.contact-info-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 600;
}

.contact-info-card p {
    font-size: 16px;
    opacity: 0.9;
    line-height: 1.6;
}

/* Get in Touch Section */
 
 .scroll-cue{ position:absolute; left:50%; bottom:40px; transform:translateX(-50%); width:56px; height:56px; border-radius:9999px; background:linear-gradient(135deg,#667eea,#764ba2); color:#fff; display:flex; align-items:center; justify-content:center; box-shadow:0 14px 40px rgba(0,0,0,0.25); text-decoration:none; border:none; z-index:1000; }
 .scroll-cue.dark{ background:#0f172a; border:1px solid rgba(255,255,255,0.15); box-shadow:0 20px 50px rgba(0,0,0,0.45); }
 .scroll-cue::after{ content:""; position:absolute; width:56px; height:56px; border-radius:9999px; box-shadow:0 0 0 0 rgba(102,126,234,0.6); animation:pulse 1.8s ease-out infinite; }
 .scroll-cue.dark::after{ box-shadow:0 0 0 0 rgba(134,227,255,0.45); }
 .scroll-cue .chev{ font-size:22px; line-height:1; animation:bounce 1.6s ease-in-out infinite; }
 @keyframes pulse{ 0%{ box-shadow:0 0 0 0 rgba(102,126,234,0.6);} 70%{ box-shadow:0 0 0 16px rgba(102,126,234,0);} 100%{ box-shadow:0 0 0 0 rgba(102,126,234,0);} }
 @keyframes bounce{ 0%,100%{ transform:translateY(0);} 50%{ transform:translateY(4px);} }
.get-in-touch-section {
    padding: 100px 0;
    background: #f8fafc;
}

.contact-form-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    padding: 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    outline: none;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #667eea;
}

.form-checkbox label {
    font-size: 14px;
    color: #6b7280;
}

/* Contact Form Info Sidebar */
.contact-form-info {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.contact-form-info h3 {
    font-size: 24px;
    margin-bottom: 24px;
    color: #1f2937;
    font-weight: 700;
}

.contact-form-info ul {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
}

.contact-form-info li {
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
    font-size: 16px;
    color: #374151;
}

.contact-form-info li:last-child {
    border-bottom: none;
}

.response-time {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    padding: 24px;
    border-radius: 16px;
    margin-top: 24px;
}

.response-time h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #1f2937;
    font-weight: 600;
}

.response-time p {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 8px;
}

/* Enhanced Button */
.contact-form .btn-filled {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 16px 40px;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.contact-form .btn-filled:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

/* Popup */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.popup.show {
    display: flex;
}

.popup-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    max-width: 400px;
    width: 90%;
}

.popup-btn {
    margin-top: 1rem;
    padding: 8px 24px;
    background: #00c06d;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.popup-btn:hover {
    background: #00a85d;
}

/* Hero */
.srv-hero{ padding: 40px 24px 10px; }
.srv-hero-inner{ display:grid; grid-template-columns: 1fr 1fr; align-items:center; gap:32px; }
.srv-hero-text{ text-align:center; }
.srv-hero-kicker{ font-weight:700; color:#64748b; margin-bottom:6px; }
.srv-hero-title{ font-size:40px; line-height:1.2; }
.srv-hero-title .accent{ color:#ff7b00; }
.srv-hero-sub{ color:#475569; margin-top:8px; }
.srv-hero-media img{ width:100%; max-width:520px; border-radius:16px; box-shadow:0 10px 24px rgba(0,0,0,0.08); }

/* Section heading */
.section-heading{ font-size:28px; margin: 32px 24px 12px; color:#0f172a; text-align:center; }
.container{ padding: 0 24px; }

/* Tabs */
.srv-tabs{ display:flex; gap:24px; border-bottom:1px solid #e5e7eb; margin: 0 24px 18px; overflow:auto; }
.srv-tab{ background:none; border:none; font-weight:700; color:#64748b; padding:12px 0; cursor:pointer; position:relative; }
.srv-tab.active{ color:#00c06d; }
.srv-tab.active::after{ content:""; position:absolute; left:0; bottom:-1px; width:100%; height:3px; background:#00c06d; border-radius:3px; }

.srv-tabpanels{ margin:0 24px; }
.srv-panel{ display:none; }
.srv-panel.show{ display:block; }
.srv-panel-inner{ display:grid; grid-template-columns: 1fr 1fr; gap:24px; align-items:center; background:#ffffff; border:1px solid #e5e7eb; border-radius:18px; padding:18px; box-shadow:0 8px 18px rgba(0,0,0,0.06); }
.srv-panel-image{ width:100%; border-radius:12px; box-shadow:0 10px 24px rgba(0,0,0,0.08); }
.srv-panel-text h3{ margin:0 0 8px 0; color:#0f172a; }
.srv-panel-text p{ color:#475569; }
.srv-readmore{ display:inline-block; margin-top:12px; color:#00c06d; font-weight:700; text-decoration:none; }

/* Carousel */
.srv-domains{ margin-top:24px; }
.srv-carousel{ position:relative; overflow:hidden; padding:0 24px; }
.srv-track{ display:flex; transition: transform 0.6s ease; gap:24px; }
.srv-card{ min-width: calc(100% - 48px); background:#fff; border:1px solid #e5e7eb; border-radius:18px; box-shadow:0 8px 18px rgba(0,0,0,0.08); overflow:hidden; }
.srv-card img{ width:100%; height:240px; object-fit:cover; }
.srv-card-body{ padding:16px; }
.srv-card-body h3{ margin-bottom:6px; }
.srv-dots{ display:flex; justify-content:center; gap:8px; padding:10px 0 0; }
.srv-dot{ width:10px; height:10px; border-radius:50%; background:#cbd5e1; border:none; cursor:pointer; }
.srv-dot.active{ background:#00c06d; }

/* Gallery */
.srv-gallery{ display:grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap:16px; margin: 0 24px; }
.srv-gallery-item{ position:relative; overflow:hidden; border-radius:14px; }
.srv-gallery-item img{ width:100%; height:220px; object-fit:cover; display:block; }
.srv-gallery-item figcaption{ position:absolute; left:0; bottom:0; right:0; padding:10px 12px; color:#fff; font-weight:600; background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.55) 100%); }

/* Professional Services Overview Section */
.services-overview {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 40px 0;
    margin: 24px 0;
}

.services-overview .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.services-overview .section-title {
    color: #1f2937;
    text-align: center;
    font-weight: 700;
    letter-spacing: -0.02em;
    font-size: clamp(28px, 4vw, 42px);
    margin: 0 0 24px;
    position: relative;
}

.services-overview .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.service-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255,255,255,0.8);
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

.service-item:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.service-item h3 {
    color: #1f2937;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 12px;
    line-height: 1.4;
}

.service-item p {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .services-overview {
        padding: 30px 0;
        margin: 16px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .service-item {
        padding: 20px 16px;
    }
    
    .service-icon {
        font-size: 40px;
    }
}

@media (min-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Features */
.srv-how{ margin-top:24px; }
.features-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap:24px; padding: 0 24px 24px; }
.feature-item{ 
  display:flex; 
  gap:16px; 
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: 2px solid transparent;
  border-radius:20px; 
  padding:24px; 
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-item:hover::before {
  transform: scaleX(1);
}

.feature-icon{ 
  width:80px; 
  height:80px; 
  border-radius:16px; 
  object-fit:cover; 
  border: 3px solid #e5e7eb;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.feature-text h3{ 
  margin:0 0 8px 0; 
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
  transition: color 0.3s ease;
}

.feature-text p{ 
  color:#6b7280;
  font-size: 15px;
  line-height: 1.5;
  transition: color 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
  border-color: #667eea;
  background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
}

.feature-item:hover .feature-icon {
  border-color: #667eea;
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.feature-item:hover .feature-text h3 {
  color: #667eea;
}

.feature-item:hover .feature-text p {
  color: #4b5563;
}

/* Responsive */
@media (max-width: 900px){
  .srv-hero-inner{ grid-template-columns: 1fr; }
  .srv-panel-inner{ grid-template-columns: 1fr; }
  .srv-card{ min-width: calc(100% - 48px); }
  .features-grid{ grid-template-columns: 1fr 1fr; }
  
  /* HR Employers page responsive */
  .hr-team {
    padding: 60px 20px;
    margin: 40px auto;
  }
  
  .page {
    padding: 0 15px;
  }
  
  .section-head--green,
  .section-head--rose {
    padding: 12px 16px;
    margin: 0 auto 20px;
    max-width: 90%;
  }
}

@media (max-width: 768px){
  .features-grid{ 
    grid-template-columns: 1fr; 
    gap: 16px;
    padding: 0;
    margin: 0 auto;
  }
  
  .feature-item {
    padding: 20px;
    gap: 12px;
  }
  
  .feature-icon {
    width: 70px;
    height: 70px;
  }
  
  .hr-team .governors-grid {
    gap: 20px;
    padding: 0 10px;
  }
  
  .section-head--green,
  .section-head--rose {
    max-width: 95%;
  }
}

@media (max-width: 600px){
  .section-heading{ font-size:24px; }
  .features-grid{ grid-template-columns: 1fr; }
}
.section-head--green .section-heading{ color:#0f766e; margin:0; }
.section-head--rose .section-heading{ color:#7c3aed; margin:0; }




/* ===== Career page ===== */
/* Light Background for Whole Career Page */
.career-page {
    background: #f5f7fb;
}

/* Beautiful Section Title */
.career-heading {
    font-size: 32px;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 700;
    color: #2a2a2a;
    position: relative;
    
}

.career-heading::after {
    content: "";
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #00b894, #55efc4);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 20px;
}

/* Job Grid Layout - Enhanced Responsive */
.career-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .career-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .career-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (min-width: 1025px) {
    .career-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

/* Career Card Style - Enhanced */
.career-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 30px 25px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.career-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00c06d, #00b894);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.career-card:hover::before {
    transform: scaleX(1);
}

/* Hover Animation - Enhanced */
.career-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: #00c06d;
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
}

/* Job Image - Enhanced */
.career-img {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e5e7eb;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.career-card:hover .career-img {
    border-color: #00c06d;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 192, 109, 0.3);
}

/* Job title - Enhanced */
.career-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.career-card:hover h3 {
    color: #00c06d;
}

/* Location text - Enhanced */
.career-card .location {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
    background: rgba(0, 192, 109, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    display: inline-block;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.career-card:hover .location {
    background: rgba(0, 192, 109, 0.2);
    color: #059669;
}
/* ---------- CAREER PAGE DESIGN - Enhanced ---------- */
.career-section {
    margin: 80px auto;
    padding: 40px 0;
    max-width: 1200px;
}

.career-heading {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.career-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #00c06d, #00b894);
    border-radius: 2px;
}

@media (max-width: 768px) {
    .career-heading {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .career-section {
        margin: 60px 0;
        padding: 20px 0;
    }
{
    text-align: center;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.career-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.career-card {
    background: #ffffff;
    padding: 15px;
    border-radius: 16px;
    box-shadow: 0px 4px 20px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.career-card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 8px 25px rgba(0,0,0,0.15);
}

.career-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 12px;
}

.career-card h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: #0b6b3a;
}

.location {
    color: #555;
    font-size: 15px;
}



/* Meta Info */
.location {
    font-size: 14px;
    color: #555;
}


@media (max-width: 900px){ .job-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px){ .job-grid{ grid-template-columns: 1fr; } }




/* CONTACT PAGE - Enhanced Professional Version */
.contact-container {
    margin-top: 110px;
    text-align: center;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
}

.contact-title {
    font-size: 38px;
    margin-bottom: 10px;
    color: #111;
    font-weight: 800;
}

.contact-subtitle {
    color: #555;
    margin-bottom: 30px;
    font-size: 18px;
}

.contact-form {
    display: grid;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 16px;
    width: 100%;
    outline: none;
    transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #00c16e;
    box-shadow: 0 0 5px #00c16e55;
}

.btn-filled {
    background: #00c16e;
    padding: 12px 22px;
    border-radius: 8px;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-filled:hover {
    background: #009e5c;
}

/* POPUP */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000066;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999999;
}

.popup-content {
    background: white;
    width: 90%;
    max-width: 380px;
    text-align: center;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 0 25px #00000030;
    animation: popupShow 0.3s ease;
}

@keyframes popupShow {
    from { transform: scale(0.7); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.popup-content h2 {
    color: #00c16e;
    margin-bottom: 10px;
}

.popup-btn {
    background: #00c16e;
    border: none;
    padding: 10px 22px;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    margin-top: 10px;
}


/* Beautiful Heading */
.nice-heading {
    font-size: 34px;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    color: #222;
    position: relative;
}

.nice-heading span {
    color: #ff7a00;
}

.nice-heading::after {
    content: "";
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #ff7a00, #ffb84d);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
}

/* New Culture Grid */
.better-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

/* Professional Responsive Culture Gallery - Fixed PC View */
.srv-gallery.better-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 60px auto;
    max-width: 1200px;
    padding: 0 24px;
}

/* PROFESSIONAL CULTURE CARD STYLE - Enhanced */
.culture-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 30px 25px;
    text-align: center;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 350px;
    margin: 0 auto;
}

.culture-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.culture-card:hover::before {
    transform: scaleX(1);
}

.culture-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    border-color: #667eea;
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
}

/* Professional Image Style - Fixed Sizing */
.culture-card img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
    border: none;
    margin: 0;
}

.culture-card:hover img {
    border-color: #667eea;
    transform: scale(1.08);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
}

/* Professional Title text - Fixed Sizing */
.culture-card h4 {
    margin: 0;
    padding: 14px 16px 18px;
    text-align: center;
    color: #1f2937;
    font-weight: 600;
    font-size: clamp(14px, 1.6vw, 18px);
    line-height: 1.35;
}

.culture-card:hover h4 {
    color: #667eea;
}

/* Professional Culture Card - Fixed Sizing */
.culture-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transition: transform 160ms ease, box-shadow 160ms ease;
    cursor: pointer;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.culture-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

/* Desktop Large Screens - Professional 4 columns */
@media (min-width: 1200px) {
    .srv-gallery.better-gallery {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        max-width: 1200px;
    }
    
    .culture-card {
        padding: 0;
    }
    
    .culture-card img {
        aspect-ratio: 16/9;
    }
}

/* Medium Screens - 3 columns */
@media (min-width: 992px) and (max-width: 1199px) {
    .srv-gallery.better-gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        max-width: 1100px;
    }
}

/* Tablet Screens - 2 columns */
@media (min-width: 768px) and (max-width: 991px) {
    .srv-gallery.better-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 800px;
    }
}

/* Mobile Screens - 1 column */
@media (max-width: 767px) {
    .srv-gallery.better-gallery {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 16px;
        margin: 30px auto;
        max-width: 400px;
    }
}

/* Small Mobile Screens */
@media (max-width: 480px) {
    .srv-gallery.better-gallery {
        max-width: 320px;
        gap: 12px;
    }
}



/* Section Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px;
}

/* Section Heading - Professional Enhancement */
.section-heading {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #1f2937;
    position: relative;
    line-height: 1.3;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

/* Services Culture Section Enhancement - Professional */
.srv-culture {
    background: #f8fafc;
    padding: clamp(40px, 5vw, 80px) 0;
    margin: 40px 0;
}

/* Professional Services Overview Section */
.services-overview {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 40px 0;
    margin: 24px 0;
}

.services-overview .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.services-overview .section-title {
    color: #1f2937;
    text-align: center;
    font-weight: 700;
    letter-spacing: -0.02em;
    font-size: clamp(28px, 4vw, 42px);
    margin: 0 0 24px;
    position: relative;
}

.services-overview .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.service-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255,255,255,0.8);
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

.service-item:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.service-item h3 {
    color: #1f2937;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 12px;
    line-height: 1.4;
}

.service-item p {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .services-overview {
        padding: 30px 0;
        margin: 16px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .service-item {
        padding: 20px 16px;
    }
    
    .service-icon {
        font-size: 40px;
    }
}

@media (min-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.srv-culture::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.srv-culture .section-heading {
    color: #1f2937;
    text-align: center;
    font-weight: 700;
    letter-spacing: -0.02em;
    font-size: clamp(22px, 2.8vw, 36px);
    margin: 0 0 clamp(16px, 2.5vw, 32px);
}

.srv-culture .section-heading span {
    color: #ff7a00;
    font-weight: 800;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}

/* Feature Card */
.feature-item {
    background: #ffffff;
    padding: 20px;
    border-radius: 18px;
    box-shadow: 0px 8px 22px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: 0.3s ease;
}

/* Hover Effect */
.feature-item:hover {
    transform: translateY(-20px);
    box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.12);
}

/* Icon - Medium Size */
.feature-icon {
    width: 90px;        /* increased size */
    height: 90px;
    margin-bottom: 18px;
}

/* Text Styling */
.feature-text h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-text p {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
}



.footer {
    background: #262626;
    color: white;
    padding: 60px 0 20px;
    font-family: "Poppins", sans-serif;
}

.footer-container {
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.footer-section h3 {
    margin-bottom: 15px;
    position: relative;
}

.footer-logo {
    font-size: 32px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.footer-logo span {
    color: #00c853;
    font-weight: bold;
}

.footer-section p {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 12px;
}

.footer-btn {
    display: inline-block;
    margin-top: 8px;
    padding: 6px 16px;
    border: 1px solid #bbb;
    border-radius: 4px;
    font-size: 14px;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.footer-btn:hover {
    background: #00c853;
    border-color: #00c853;
}

.links ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 6px;
}

.links ul li {
    margin-bottom: 6px;
}

.links ul li a {
    color: #bbb;
    text-decoration: none;
    font-size: 14px;
}

.links ul li a:hover {
    color: #00c853;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}

.social-icons img {
    width: 28px;
    height: 28px;
    cursor: pointer;
    filter: brightness(90%);
    transition: 0.3s;
}

.social-icons img:hover {
    filter: brightness(120%);
}

.search-bar {
    display: flex;
    width: 100%;
}

.search-bar input {
    width: 100%;
    padding: 8px;
    border: none;
    border-radius: 4px 0 0 4px;
}

.search-bar button {
    padding: 8px 15px;
    border: none;
    background: #00c853;
    color: white;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.note {
    font-size: 12px;
    margin-top: 10px;
    color: #aaa;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    font-size: 14px;
    color: #888;
    border-top: 1px solid #444;
    margin-top: 40px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
    .links ul { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .footer-section h3 { margin-bottom: 10px; }
    .links ul { grid-template-columns: 1fr; row-gap: 6px; }
}
/* Footer Logo Image */
.footer-logo-img {
    width: 160px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

/* Governor and Leader Modal Styles */
.modal-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #eee;
}

.modal-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #00c06d;
}

.modal-title-section h2 {
    margin: 0 0 5px 0;
    color: #333;
    font-size: 24px;
    font-weight: 700;
}

.modal-title-section h3 {
    margin: 0;
    color: #00c06d;
    font-size: 18px;
    font-weight: 500;
}

.governor-card, .leader-card {
    cursor: pointer;
    transition: all 0.3s ease;
}

.governor-card:hover, .leader-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Responsive modal styles */
@media (max-width: 768px) {
    .modal-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .modal-image {
        width: 60px;
        height: 60px;
    }
    
    .modal-title-section h2 {
        font-size: 20px;
    }
    
    .modal-title-section h3 {
        font-size: 16px;
    }
}

/* General Animations for All Pages */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Apply animations to elements */
.animate-fadeInUp {
    animation: fadeInUp 0.6s ease-out forwards;
}

.animate-fadeInLeft {
    animation: fadeInLeft 0.6s ease-out forwards;
}

.animate-fadeInRight {
    animation: fadeInRight 0.6s ease-out forwards;
}

.animate-scaleIn {
    animation: scaleIn 0.5s ease-out forwards;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

/* Stagger animation delays */
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
.animate-delay-5 { animation-delay: 0.5s; }

/* Hover animations */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

.hover-rotate {
    transition: transform 0.3s ease;
}

.hover-rotate:hover {
    transform: rotate(5deg) scale(1.1);
}

/* Smooth scrolling for the entire page */
html {
    scroll-behavior: smooth;
}

/* Loading animation for images */
img {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

img:hover {
    opacity: 0.9;
}

/* Button animations */
.btn-animate {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.btn-animate::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-animate:hover::before {
    left: 100%;
}

.btn-animate:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}



/* Light variant mobile menu overrides */
@media (max-width: 768px) {
  .header-light .nav-menu{ background:#ffffff; }
  .header-light .nav-menu a{ color:#111827; }
  .header-light .nav-menu a.active{ background:#f3f4f6; color:#111827; border-color:#e5e7eb; box-shadow:none; }
  .header-light .nav-menu .dd{ background:#ffffff; border:1px solid #e5e7eb; }
  .header-light .nav-menu .dd a{ color:#111827; }
}

@media (max-width: 768px) {
  .hr-team {
    margin: 16px auto;
    padding: 24px 16px;
    border-radius: 24px;
  }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}



