:root {
  --primary-navy: #002D62;
  --dark-blue: #1f4e8c;
  --eva-cyan: #00d4ff; 
  --heading-dark: #1A1A1A;
  --text-muted: #2e2e2e;
  --bg-cream: #ffffff;
  --white: #ffffff;
  --font-main: 'Cambria';
  --font-serif: 'Cambria';
  --transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  --section-padding: 2rem 6%;
}
body{
    font-family: Cambria !important;
}
/* ===== RESET ===== */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body { 
    font-family: var(--font-main); 
    color: var(--text-muted); 
    overflow-x: hidden; 
    line-height: 1.6;
}

/* ===== BRAND TAG (FIXED) ===== */
.brand-tag {
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

.brand-tag::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 40%;
    height: 2px;
    background: var(--dark-blue);
}

/* ===== TEXT ===== */

.testimonial-section reveal h2{color: white;}
p { 
    color: var(--text-muted); 
    line-height: 1.8; 
    text-align: justify;
    margin-bottom: 1rem;
    hyphens: auto;
}

li { 
    margin-top: 0.625rem; 
    color: var(--text-muted); 
    line-height: 1.6rem; 
    text-align: justify;
}

/* ===== SCROLL ANIMATION ===== */
.reveal { 
    opacity: 0; 
    transform: translateY(40px); 
    transition: var(--transition); 
}

.reveal.active { 
    opacity: 1; 
    transform: translateY(0); 
}


/* ===== SPLIT SECTION ===== */
.split-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--section-padding);
    gap: 5rem;
}

.split-section.reverse {
    flex-direction: row-reverse;
}

.split-text {
    flex: 1;
    max-width: 500px;
}

h1 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--heading-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
    position: relative;
}

.split-text p {
    font-size: 1.05rem;
}

.split-image {
    flex: 1;
    position: relative;
}

.split-image img {
    width: 100%;
    
    max-width: 650px; 
    
 
    height: 400px; 
    
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}


.btn-outline {
  display: inline-block;
  padding: 12px 26px;
  font-size: 15px;
  font-weight: 600;

  color: var(--primary-navy);
  border: 1.5px solid var(--primary-navy);
  border-radius: 4px;

  text-decoration: none;
  background: transparent;

  transition: 0.3s ease;
}

/* Hover Effect (Very Clean) */
.btn-outline:hover {
  background: var(--primary-navy);
  color: var(--white);
  border-color: var(--primary-navy);
}

/* Subtle Arrow */
.btn-outline::after {
  content: " →";
  font-size: 14px;
  transition: 0.3s;
}

.btn-outline:hover::after {
  margin-left: 6px;
}

.btn-outline1 {
  display: inline-block;
  padding: 14px 36px;
  font-size: 16px;
  font-weight: 600;
  color: #0a0065;
  background: linear-gradient(135deg, #ffffff, #ffffff);
  border: none;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.35s ease;
  box-shadow: 0 8px 25px rgba(0, 114, 255, 0.4);
}

/* 🔥 Hover */
.btn-outline1:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 35px rgba(0, 114, 255, 0.6);
  background: linear-gradient(135deg, #ffffff, #a6a6a6);
}

/* ✨ Click */
.btn-outline1:active {
  transform: scale(0.96);
}

/* ===== TABS ===== */
.tab-section {
    background: var(--bg-cream);
    padding: var(--section-padding);
}
.tab-nav {
    display: flex;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05); /* Soft border */
    margin-bottom: 40px;
    gap: 35px;
    font-family: var(--font-main);
}

.tab-link {
    padding: 15px 5px;
    cursor: pointer;
    color: var(--text-muted);
    position: relative;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase; /* Professional touch */
    transition: var(--transition);
    opacity: 0.7;
}

.tab-link:hover {
    color: var(--dark-blue);
    opacity: 1;
}

.tab-link.active {
    color: var(--primary-navy); 
    font-weight: 700;
    opacity: 1;
}

/* Bottom line animation */
.tab-link::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--eva-cyan); 
    transition: var(--transition);
    transform: translateX(-50%);
}

.tab-link.active::after {
    width: 100%;
    background: var(--primary-navy); 
}


.tab-link:hover::after {
    width: 60%;
    background: var(--dark-blue);
}
.tab-content { display: none; }
.tab-content.active { display: block; }

.tab-grid {
    display: flex;
    align-items: stretch; 
    gap: 60px;
    animation: fadeIn 0.8s var(--transition);
}

.tab-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center; 
}

.tab-image {
    flex: 1;
}

.tab-image img {
    width: 100%;
    height: 100%; 
    min-height: 50px; 
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 20px 20px 0px var(--bg-cream), 0 10px 30px rgba(0,0,0,0.1); 
}

.tab-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    /* Isse text upar se align hoga */
    justify-content: flex-start; 
    padding-top: 0;
}

.tab-text h3 {
   
    margin-top: 0; 
    font-family: var(--font-main);
    font-size: 1.8rem;
    color: var(--primary-navy);
    line-height: 1.2;
    margin-bottom: 15px;
    padding-top: 0;
}

.tab-text p {
    margin-top: 0;
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.eva-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.eva-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    line-height: 1.5;
}


.eva-list li::before {
    content: "•";
    color: var(--heading-dark);
    font-weight: bold;
    display: inline-block; 
    width: 1em;
    margin-left: -1em;
}

.impact-section {
   padding: var(--section-padding);
    background:white;
}

.impact-section2{
    background: var(--bg-cream);
}

.section-title2{padding: var(--section-padding)}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px; 
   
}

.impact-card {
    background: var(--white);
    border-radius: 8px; 
    overflow: hidden; 
    transition: var(--transition);
    border-bottom: 3px solid transparent;
     border: 0.1px solid var(--heading-dark);
    
}

.impact-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 45, 98, 0.12);
    border-bottom: 3px solid var(--dark-blue); 
}

.card-image-wrapper {
    overflow: hidden;
}

.card-image-wrapper {
    width: 100%;
    overflow: hidden;
    border-bottom: 1px solid rgba(0,0,0,0.05); 
}

.card-image-wrapper img {
    width: 100%;

    height: 200px; 
    object-fit: cover;
    display: block; 
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.impact-card:hover .card-image-wrapper img {
    transform: scale(1.1);
}


.impact-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-text-content {
    padding: 25px;
}

.card-text-content h3 {
    font-family: var(--font-main);
    font-size: 1.2rem;
    color: var(--primary-navy);
    margin-bottom: 12px;
    line-height: 1.3;
}

.card-text-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
    opacity: 0.85;
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-navy); 
    padding: 5px 0;
    position: relative;
    transition: var(--transition);
    margin-top: auto; 
}


.btn-read-more::after {
    content: '→'; 
    margin-left: 8px;
    font-size: 1.1rem;
    transition: transform 0.4s ease;
}

/* Hover effects */
.btn-read-more:hover {
    color: var(--dark-blue); 
}

.btn-read-more:hover::after {
    transform: translateX(5px); 
}


.btn-read-more::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--dark-blue);
    transition: width 0.4s ease;
}

.btn-read-more:hover::before {
    width: 100%;
}



.impact-slider-container {
    width: 100%;
    overflow: hidden;
    padding: 5px 0;
    margin-bottom: 20px;
}

.impact-track {
    display: flex;
    overflow-x: hidden; /* Auto-scroll ke liye hidden rakhein */
    white-space: nowrap;
    cursor: grab;
}


.impact-card2{
    width: 320px;
    margin-right: 30px;
    flex-shrink: 0;
    background: #fff;
    border-radius: 8px;
    /* Aapka manga hua border */
    border: 1px solid rgba(0,0,0,0.1); 
    border-bottom: 3px solid rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    white-space: normal;
}

.impact-card2:hover {
    transform: translateY(-10px);
    border-bottom: 3px solid #1f4e8c;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.impact-slider-container:hover .impact-track {
    animation-play-state: paused;
}



.career-page .impact-grid {
    display: flex;            
    flex-wrap: wrap;        
    justify-content: center;   
    gap: 30px;                 
    max-width: 1200px;    
    margin: 0 auto;          
}

.career-page .impact-card {
    flex: 0 1 350px;          
    margin: 0;                
}


.career-page .section-title {
    text-align: center;
    margin-bottom: 50px;
}

@keyframes scrollInfinite {
    0% { transform: translateX(0); }
    /* Ye value JavaScript handle kar lega */
    100% { transform: translateX(-50%); } 
}


/* ===== TESTIMONIAL ===== */
.testimonial-section {
    background: var(--primary-navy);
    color: white;
    padding: var(--section-padding);
    text-align: center;
}

.testimonial-text {
    font-size: 1.6rem;
    font-style: italic;
    color: white;
}

.testimonial-author{color: white;}
/* ===== PRE FOOTER FIXED ===== */


/* ===== ANIMATION ===== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ===== RESPONSIVE DESIGN ===== */


@media (max-width: 1024px) {
    :root {
        --section-padding: 3rem 5%;
    }

    /* Split Sections: Image upar, Text niche */
    .split-section, 
    .split-section.reverse {
        flex-direction: column !important;
        text-align: center;
        gap: 2.5rem;
    }

    .split-text {
        max-width: 100%;
        order: 2; /* Text hamesha niche */
    }

    .split-image {
        width: 100%;
        max-width: 600px;
        order: 1; /* Image hamesha upar */
    }

    .split-image img {
        height: auto;
        max-height: 350px;
        width: 100%;
    }

    
    .impact-track {
        display: flex !important;
        flex-direction: row !important;
        overflow-x: auto !important; 
        -webkit-overflow-scrolling: touch;
    }

    .impact-card2 {
        width: 300px !important;
        min-width: 300px;
        margin-right: 20px;
    }

    /* Tabs Layout */
    .tab-grid {
        flex-direction: column !important;
        gap: 2rem;
    }
}

@media (max-width: 1024px) {
    /* Mobile par hover animation band karne ke liye */
    .impact-card2:hover {
        transform: none !important;
        box-shadow: none !important;
        border-bottom: 3px solid rgba(0,0,0,0.1) !important;
    }
}

/* 2. Mobile Screens (max-width: 768px) */
@media (max-width: 768px) {
    h1 {
        font-size: 1.8rem !important;
    }

    .tab-nav {
        gap: 15px;
        padding-bottom: 10px;
    }

    .tab-link {
        font-size: 0.85rem;
        padding: 10px 5px;
    }


    .btn-outline, .btn-outline1 {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }

    .reveal {
        transform: translateY(20px);
    }
}

/* 3. Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    p, li {
        text-align: left; 
        font-size: 0.95rem;
    }

    .section-title2 {
        padding: 1.5rem 5% !important;
        font-size: 1.5rem;
        text-align: center;
    }

    .impact-card2 {
        width: 260px !important;
        min-width: 260px;
    }

    .card-text-content {
        padding: 15px;
    }
}

/* 4. Ultra Wide Screens (min-width: 1600px) */
@media (min-width: 1600px) {
    .split-section, 
    .tab-section, 
    .impact-container {
        max-width: 1440px;
        margin: 0 auto;
    }
    
    h1 {
        font-size: 3.2rem !important;
    }
}