:root {
    /* Precise color codes from the Ashardeep branding */
    --brand-navy: #002347;    /* Primary Text & Overlay */
    --brand-orange: #f28c00;  /* Main CTA & Highlight */
    --brand-green: #70ad47;   /* Success & Support Badge */
    --white: #ffffff;
    --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* SLIDER CONTAINER */
.hero-slider {
    width: 100%;
    height: 650px; /* Increased height for a more "Hero" feel */
    position: relative;
    overflow: hidden;
}

.swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    transition: var(--transition-smooth);
}

/* GRADIENT OVERLAY (Matching Navy Brand) */
.swiper-slide::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Gradient shifts from Brand Navy to Transparent */
    background: linear-gradient(105deg, rgba(0, 35, 71, 0.85) 0%, rgba(0, 35, 71, 0.4) 60%, transparent 100%);
    z-index: 1;
}

/* CONTENT BOX */
.slider-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    color: var(--white);
}

/* ANIMATED BADGE */
.badge {
    background: var(--brand-green);
    color: var(--white);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(112, 173, 71, 0.3);
    animation: fadeInUp 0.8s ease-out;
}

.slider-content h1 {
    font-size: 65px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    text-transform: uppercase;
    max-width: 750px;
    letter-spacing: -1px;
    animation: fadeInUp 1s ease-out;
}

.slider-content p {
    font-size: 19px;
    max-width: 550px;
    margin-bottom: 35px;
    line-height: 1.6;
    opacity: 0.95;
    animation: fadeInUp 1.2s ease-out;
}

/* INTERACTIVE BUTTONS */
.btn-group {
    display: flex;
    gap: 20px;
    animation: fadeInUp 1.4s ease-out;
}

.btn-main {
    background: var(--brand-orange);
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 20px rgba(242, 140, 0, 0.25);
}

.btn-main:hover { 
    background: var(--brand-navy); 
    transform: translateY(-5px); 
    box-shadow: 0 15px 30px rgba(0, 35, 71, 0.3);
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
    padding: 14px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    transition: var(--transition-smooth);
}

.btn-outline:hover { 
    background: var(--white); 
    color: var(--brand-navy); 
    transform: translateY(-5px);
}

/* GLASSMORPHISM NAVIGATION */
.swiper-button-next, .swiper-button-prev {
    color: white !important;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    width: 60px; height: 60px;
    border-radius: 50%;
    transition: 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background: var(--brand-orange);
    border-color: var(--brand-orange);
}

.swiper-pagination-bullet-active {
    background: var(--brand-orange) !important;
    width: 40px; 
    border-radius: 10px;
    transition: width 0.3s ease;
}

/* ENTRANCE ANIMATIONS */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .hero-slider { height: 500px; }
    .slider-content h1 { font-size: 45px; }
    .slider-content p { font-size: 16px; }
}

@media (max-width: 576px) {
    .hero-slider { height: 550px; }
    .slider-content h1 { font-size: 32px; text-align: center; }
    .slider-content p { text-align: center; }
    .btn-group { flex-direction: column; align-items: center; }
    .btn-main, .btn-outline { width: 100%; text-align: center; }
    .swiper-button-next, .swiper-button-prev { display: none; } /* Hide arrows on small mobile */
}


.about-section {
    padding: 100px 0;
    background: var(--bg-light);
    overflow: hidden;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-flex {
    display: flex;
    align-items: center;
    gap: 80px; /* Increased gap for better breathing space */
    flex-wrap: wrap;
}

/* IMAGE BOX WITH INTERACTIVE ELEMENTS */
.about-image {
    flex: 1;
    position: relative;
    min-width: 320px;
}

.about-image img {
    width: 100%;
    border-radius: 30px; /* Softer rounded corners */
    box-shadow: 25px 25px 0px var(--brand-green); /* Ashardeep Green */
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.about-image:hover img {
    transform: scale(1.03) translateY(-10px);
    box-shadow: 15px 15px 30px rgba(0,0,0,0.15);
}

/* FLOATING EXPERIENCE BADGE */
.experience-badge {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: var(--brand-orange);
    color: white;
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(242, 140, 0, 0.3);
    animation: floatBadge 3s ease-in-out infinite;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.experience-badge h2 { margin: 0; font-size: 36px; font-weight: 800; }
.experience-badge p { margin: 0; font-size: 13px; font-weight: 700; text-transform: uppercase; }

/* CONTENT BOX */
.about-content {
    flex: 1.3;
    min-width: 320px;
}

.sub-heading {
    color: var(--brand-orange);
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
    font-size: 14px;
}

.about-content h1 {
    font-size: 48px;
    color: var(--brand-navy);
    margin-bottom: 25px;
    line-height: 1.1;
    font-weight: 700;
}

.about-content p {
    color: var(--text-main);
    line-height: 1.9;
    font-size: 17px;
    margin-bottom: 35px;
}

/* INTERACTIVE FEATURES LIST (Glass-morphism style) */
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 45px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 18px;
    background: var(--white);
    padding: 15px;
    border-radius: 15px;
    transition: 0.4s;
    border: 1px solid transparent;
}

.feature-item:hover {
    transform: translateX(10px);
    border-color: var(--brand-green);
    box-shadow: 0 10px 20px rgba(112, 173, 71, 0.1);
}

.feature-item i {
    background: rgba(112, 173, 71, 0.1);
    color: var(--brand-green);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 20px;
    transition: 0.4s;
}

.feature-item:hover i {
    background: var(--brand-green);
    color: white;
    transform: rotateY(180deg);
}

.feature-item span {
    font-weight: 700;
    color: var(--brand-navy);
    font-size: 15px;
}

/* MODERN CTA BUTTON */
.btn-about {
    background: var(--brand-navy);
    color: white;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s;
    box-shadow: 0 10px 20px rgba(0, 35, 71, 0.2);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.btn-about:hover {
    background: var(--brand-orange);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(242, 140, 0, 0.3);
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .about-flex { gap: 60px; }
    .about-content h1 { font-size: 38px; }
}

@media (max-width: 768px) {
    .about-section { padding: 60px 0 100px; }
    .about-flex { flex-direction: column-reverse; text-align: center; }
    .about-content h1 { font-size: 32px; }
    .about-image img { box-shadow: 15px 15px 0px var(--brand-green); }
    .feature-item { justify-content: flex-start; text-align: left; }
    .about-features { grid-template-columns: 1fr; }
    .experience-badge { right: 50%; transform: translateX(50%); bottom: -40px; }
    @keyframes floatBadge {
        0%, 100% { transform: translateX(50%) translateY(0); }
        50% { transform: translateX(50%) translateY(-10px); }
    }
}

:root {
    --brand-navy: #002347;
    --brand-orange: #f28c00;
    --brand-green: #70ad47;
    --brand-yellow: #ffca28; /* The inner flame color */
    --bg-light: #f8fafd;
    --white: #ffffff;
    --transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.objectives-section {
    padding: 100px 0;
    background-color: var(--bg-light);
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* SECTION TITLE WITH LEAF DECORATION */
.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title h2 {
    font-size: 42px;
    color: var(--brand-navy);
    font-weight: 800;
    text-transform: uppercase;
    display: inline-block;
    position: relative;
}

/* Leaf accents matching the logo laurel */
.section-title h2::before, .section-title h2::after {
    content: '🌿'; /* You can replace with an SVG for exact logo match */
    font-size: 24px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.3;
}

.section-title h2::before { left: -50px; transform: translateY(-50%) scaleX(-1); }
.section-title h2::after { right: -50px; }

/* OBJECTIVE GRID */
.objectives-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* THE DIYA CARD: Interactive & Glowing */
.objective-card {
    background: var(--white);
    padding: 50px 35px;
    border-radius: 24px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(0, 35, 71, 0.08);
    box-shadow: 0 10px 30px rgba(0, 35, 71, 0.05);
    transition: var(--transition);
    z-index: 1;
}

/* Top Border Beam (Orange to Green Gradient) */
.objective-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 6px;
    background: linear-gradient(90deg, var(--brand-orange), var(--brand-green));
    border-radius: 24px 24px 0 0;
    transition: var(--transition);
}

.objective-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 35, 71, 0.12);
    border-color: var(--brand-orange);
}

/* THE ICON: Mimicking the Diya Flame */
.obj-icon {
    width: 90px;
    height: 90px;
    background: var(--white);
    color: var(--brand-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 30px;
    border-radius: 50% 50% 20% 50%; /* Flame-like teardrop shape */
    transform: rotate(-45deg); /* Points upwards */
    box-shadow: 0 10px 20px rgba(242, 140, 0, 0.1);
    transition: var(--transition);
    border: 2px solid rgba(112, 173, 71, 0.2);
}

/* Adjusting the icon inside the teardrop */
.obj-icon i {
    transform: rotate(45deg);
}

.objective-card:hover .obj-icon {
    background: var(--brand-orange);
    color: var(--white);
    transform: rotate(-45deg) scale(1.1);
    box-shadow: 0 0 30px rgba(242, 140, 0, 0.4); /* Flame Glow */
}

/* TEXT CONTENT */
.objective-card h4 {
    color: var(--brand-navy);
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
}

.objective-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    transition: var(--transition);
}

/* Hover "People Loop" Effect - Subtle background circle */
.objective-card::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 0; height: 0;
    background: radial-gradient(circle, rgba(112, 173, 71, 0.05) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: var(--transition);
    z-index: -1;
    border-radius: 50%;
}

.objective-card:hover::after {
    width: 300px;
    height: 300px;
}

/* RESPONSIVENESS */
@media (max-width: 1024px) {
    .objectives-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .section-title h2 { font-size: 32px; }
    .section-title h2::before, .section-title h2::after { display: none; }
    .objectives-grid { grid-template-columns: 1fr; }
    .objective-card { padding: 40px 25px; }
}



.impact-areas-section{
    padding:80px 0;
    background:linear-gradient(to bottom,#f9fbff,#ffffff);
    overflow:hidden;
}

.container{
    width:100%;
    max-width:1300px;
    margin:auto;
    padding:0 20px;
}

/* TITLE */

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title .tagline{
    display:inline-block;
    background:rgba(112,173,71,0.12);
    color:var(--green);
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:700;
    margin-bottom:18px;
}

.section-title h2{
    font-size:42px;
    color:var(--primary);
    margin-bottom:15px;
    font-weight:800;
}

.section-title p{
    max-width:700px;
    margin:auto;
    color:#666;
    line-height:1.8;
    font-size:16px;
}

/* GRID */

.impact-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

/* CARD */

.impact-card{
    position:relative;
    background:#fff;
    padding:35px 25px;
    border-radius:25px;
    overflow:hidden;
    transition:0.4s ease;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
    border:1px solid rgba(0,0,0,0.04);
    min-height:350px;

    display:flex;
    flex-direction:column;
    justify-content:space-between;
}

/* HOVER */

.impact-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 40px rgba(0,0,0,0.12);
}

/* ICON */

.impact-icon{
    width:75px;
    height:75px;
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin-bottom:25px;
    color:#fff;
}

/* CARD COLORS */

.education .impact-icon{
    background:linear-gradient(135deg,#4e73df,#224abe);
}

.healthcare .impact-icon{
    background:linear-gradient(135deg,#e74a3b,#c0392b);
}

.empowerment .impact-icon{
    background:linear-gradient(135deg,#f6c23e,#d4a017);
}

.environment .impact-icon{
    background:linear-gradient(135deg,#1cc88a,#13855c);
}

/* TITLE */

.impact-card h3{
    font-size:24px;
    margin-bottom:15px;
    color:var(--primary);
    font-weight:700;
}

/* DESCRIPTION */

.impact-card p{
    color:#666;
    line-height:1.8;
    margin-bottom:25px;
    font-size:15px;
}

/* STATS */

.impact-stats{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
}

.impact-stats span{
    color:#333;
    font-size:15px;
}

.impact-stats strong{
    color:var(--orange);
    font-size:18px;
}

/* BUTTON */

.impact-link{
    text-decoration:none;
    background:var(--primary);
    color:#fff;
    padding:10px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    transition:0.3s;
}

.impact-link:hover{
    background:var(--orange);
    transform:translateY(-2px);
}

/* BG ICON */

.card-bg-icon{
    position:absolute;
    bottom:-15px;
    right:-10px;
    font-size:90px;
    color:rgba(0,0,0,0.04);
    pointer-events:none;
}

/* =========================
   TABLET
========================= */

@media(max-width:1100px){

    .impact-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .impact-areas-section{
        padding:60px 0;
    }

    .section-title h2{
        font-size:32px;
    }

    .impact-grid{
        grid-template-columns:1fr;
    }

    .impact-card{
        min-height:auto;
        padding:30px 20px;
    }

    .impact-stats{
        flex-direction:column;
        align-items:flex-start;
    }

    .impact-link{
        width:100%;
        text-align:center;
    }

}




.gallery-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* SECTION HEADER */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 38px;
    color: var(--brand-navy);
    font-weight: 800;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 20px;
    letter-spacing: 1px;
}

/* Dynamic Underline */
.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0; 
    left: 50%; 
    transform: translateX(-50%);
    width: 80px; 
    height: 4px;
    background: var(--brand-orange);
    border-radius: 10px;
    transition: width 0.3s ease;
}

.section-header:hover h2::after {
    width: 150px;
}

/* MASONRY-STYLE GRID */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

/* INTERACTIVE ITEM */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px; /* Softer rounded corners */
    display: block;
    box-shadow: 0 10px 20px rgba(0, 35, 71, 0.08);
    aspect-ratio: 1 / 1;
    background: var(--brand-navy); /* Dark base for transition */
    border: 2px solid transparent;
    transition: var(--transition-main);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-main);
    opacity: 1;
}

/* HOVER EFFECT: Image Blur & Scale */
.gallery-item:hover {
    transform: translateY(-10px);
    border-color: var(--brand-green);
    box-shadow: 0 20px 40px rgba(0, 35, 71, 0.15);
}

.gallery-item:hover img {
    transform: scale(1.15);
    filter: blur(2px) brightness(0.6);
}

/* SEARCH/PLUS OVERLAY (Glassmorphism) */
.gallery-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 35, 71, 0.4); /* Navy Tint */
    backdrop-filter: blur(2px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-main);
    z-index: 2;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 28px;
    color: var(--white);
    background: var(--brand-orange);
    width: 60px; height: 60px;
    display: flex; 
    align-items: center; 
    justify-content: center;
    border-radius: 50%;
    transform: translateY(20px);
    transition: var(--transition-main);
    box-shadow: 0 0 15px rgba(242, 140, 0, 0.5);
}

.read-more-btn{
    background:linear-gradient(135deg,#0a2540,#163d63);
    color:#fff;
    border:none;
    padding:14px 35px;
    border-radius:50px;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    transition:0.4s ease;
    box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

.read-more-btn:hover{
    background:linear-gradient(135deg,#c59d5f,#d8ab62);
    color:#0a2540;
    transform:translateY(-4px);
}

/* MOBILE */
@media(max-width:768px){

    .section-header h2{
        font-size:28px;
    }

    .gallery-item img{


.gallery-item:hover .gallery-overlay i {
    transform: translateY(0);
}

/* Subtle Label (Optional - shown on hover) */
.gallery-overlay span {
    color: var(--white);
    margin-top: 15px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    opacity: 0;
    transition: 0.4s 0.1s ease;
}

.gallery-item:hover .gallery-overlay span {
    opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .section-header h2 { font-size: 32px; }
}

@media (max-width: 576px) {
    .gallery-grid { grid-template-columns: 1fr; gap: 20px; }
    .gallery-item:hover { transform: translateY(-5px); }
    .gallery-overlay { display: none; } /* Hide overlay on small mobile for UX */
}

