/* General Styles */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --success-color: #27ae60;
    --warning-color: #f39c12;
    --danger-color: #e74c3c;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

.btn {
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-primary:hover {
    background-color: #2980b9;
    border-color: #2980b9;
}

.btn-outline-light:hover {
    color: var(--dark-color);
}

.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
}

/* Navigation */
.navbar {
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    background-color: rgba(44, 62, 80, 0.9) !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.navbar-brand i {
    margin-right: 5px;
}

.nav-link {
    font-weight: 600;
    padding: 8px 15px !important;
}
/* Replace video background styles with these */
.image-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 62, 80, 0.7); /* Same overlay as video */
}
.logo{
	height:60px;
}
/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Mission Section Styling */
.mission-section {
    background: #f7f9fc;
    padding: 60px 20px;
    text-align: center;
}

.mission-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

.mission-subtitle {
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
}

.mission-box {
    display: inline-block;
    width: 220px;
    background: #fff;
    padding: 20px;
    margin: 15px;
    border-radius: 12px;
    box-shadow: 0px 3px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease-in-out;
}

.mission-box img {
    width: 70px;
    height: 70px;
    margin-bottom: 15px;
}

.mission-box h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #0d47a1;
}

.mission-box p {
    font-size: 14px;
    color: #666;
}

.mission-box:hover {
    transform: translateY(-5px);
    box-shadow: 0px 5px 15px rgba(0,0,0,0.15);
}



/* About Section */
.about-section {
    background-color: #f8f9fa;
    position: relative;
}

.section-title {
    position: relative;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.about-image img {
    transition: transform 0.5s ease;
	width: 100%;
}


.about-image:hover img {
    transform: scale(1.03);
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.feature-item {
    flex: 1 1 200px;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.feature-item h5 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.feature-item p {
    color: #666;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .about-content {
        text-align: center;
    }
    
    .section-title:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .about-features {
        justify-content: center;
    }
}

/* Stats Section */
.stats {
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
}

.counter {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

/* Testimonials */
.testimonial-slider .owl-item {
    padding: 0 15px;
}

.testimonial-item {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.testimonial-item img {
    border: 3px solid var(--secondary-color);
}

/* Emergency Banner */
.emergency-banner {
    position: relative;
    z-index: 10;
}

/* Page Header */
.page-header {
    background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), url('../images/page-header-bg.jpg') center/cover no-repeat;
    color: white;
    padding: 100px 0;
    margin-top: 70px;
}

/* About Content */
.about-content img {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.mission-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.mission-card .icon {
    color: var(--secondary-color);
}

/* About Hero */
.about-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/about-hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 150px 0 100px;
    text-align: center;
}

/* Mission Quote */
.mission-quote {
    font-size: 1.5rem;
    line-height: 1.6;
    font-style: italic;
    color: var(--primary-color);
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
}

.mission-quote:before, .mission-quote:after {
    content: '"';
    font-size: 3rem;
    color: var(--secondary-color);
    opacity: 0.3;
}

/* Program Cards */
.program-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.program-number {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(52, 152, 219, 0.1);
}

/* Promise Section */
.promise-lead {
    font-size: 1.3rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.promise-lead:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--secondary-color);
}

/* Connect Cards */
.connect-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.connect-card h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.connect-card h4 i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    padding: 8px 15px;
    background: #f8f9fa;
    border-radius: 30px;
    color: #333;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary-color);
    color: white;
}

.social-links a i {
    margin-right: 8px;
}

/* Team Section */
.team-card img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 5px solid var(--secondary-color);
}

.social-links a {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background: var(--light-color);
    color: var(--dark-color);
    border-radius: 50%;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary-color);
    color: white;
}

/* Services Section */
.service-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-card .icon {
    color: var(--secondary-color);
}

.service-features li {
    margin-bottom: 10px;
}

.service-features i {
    color: var(--success-color);
    margin-right: 5px;
}

/* Process Section */
.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.process-steps:before {
    content: '';
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--secondary-color);
    z-index: 1;
}

.step {
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
    padding: 0 15px;
}

.step-number {
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Gallery Section */
.gallery-item {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 10px;
}

.gallery-item img {
    transition: all 0.5s ease;
    width: 100%;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(52, 152, 219, 0.8);
    opacity: 0;
    transition: all 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-caption {
    text-align: center;
    color: white;
    padding: 20px;
}

.gallery-caption h5 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* Video Gallery */
.video-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 1.5rem;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.video-card:hover .play-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
}

/* Contact Section */
.contact-method {
    display: flex;
    margin-bottom: 20px;
}

.contact-method .icon {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-form {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-control, .form-select {
    padding: 12px 15px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.form-control:focus, .form-select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.25);
}

/* Footer */
.footer {
    background: var(--dark-color);
}

.footer h5 {
    color: white;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer h5:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--secondary-color);
}

.footer a {
    color: #bbb;
    display: block;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.footer a:hover {
    color: white;
    padding-left: 5px;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .process-steps {
        flex-direction: column;
    }
    
    .process-steps:before {
        display: none;
    }
    
    .step {
        margin-bottom: 30px;
    }
    
    .step-number {
        margin-bottom: 10px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .counter {
        font-size: 2rem;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-method .icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
    
    .hero .btn:last-child {
        margin-bottom: 0;
    }
}

/* Background */
  .our-team-values { overflow: hidden; }
  .chs-bg-gradient {
    z-index: 0;
    background: radial-gradient(1200px 500px at 10% -10%, #eaf1ff 0%, rgba(234,241,255,0) 60%),
                radial-gradient(1200px 500px at 90% 110%, #eef7ff 0%, rgba(238,247,255,0) 60%),
                linear-gradient(180deg, #f7faff 0%, #ffffff 100%);
  }

  /* Badge + chips */
  .chs-badge {
    background: #e9f0ff;
    color: #0d47a1;
    border: 1px solid #cfe0ff;
    padding: .5rem .9rem;
    font-weight: 600;
  }
  .chs-chip {
    background: #fff;
    border: 1px solid #e6edff;
    border-radius: 999px;
    padding: .5rem .9rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(13,71,161,0.06);
    display: inline-flex;
    align-items: center;
  }

  /* Image stack */
  .chs-image-stack { position: relative; max-width: 480px; }
  .chs-float-badge {
    position: absolute;
    right: -8px; bottom: -12px;
    background: #0d47a1;
    color: #fff;
    font-weight: 600;
    padding: .55rem .85rem;
    border-radius: 999px;
    box-shadow: 0 10px 18px rgba(13,71,161,.25);
  }
  .chs-float-badge--alt {
    right: auto; left: -8px; bottom: auto; top: -12px;
    background: #fff;
    color: #0d47a1;
    border: 1px solid #cfe0ff;
    box-shadow: 0 10px 18px rgba(13,71,161,.08);
  }

  /* Role cards (glass) */
  .chs-role-card {
    position: relative;
    background: rgba(255,255,255,.75);
    border: 1px solid rgba(13,71,161,.08);
    border-radius: 20px;
    backdrop-filter: saturate(140%) blur(6px);
    box-shadow: 0 10px 24px rgba(13,71,161,.06);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  }
  .chs-role-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 34px rgba(13,71,161,.12);
    border-color: rgba(13,71,161,.18);
  }
  .chs-icon i {
    font-size: 2rem;
    color: #0d47a1;
    filter: drop-shadow(0 2px 4px rgba(13,71,161,.15));
  }
  .chs-mini-list { padding-left: 0; margin: 0; list-style: none; }
  .chs-mini-list li { margin-bottom: .35rem; color: #445; }

  /* Values ribbon */
  .chs-values-ribbon .chs-value {
    background: linear-gradient(180deg, #ffffff, #f5f9ff);
    border: 1px solid #e2eaff;
    border-radius: 999px;
    padding: .45rem .8rem;
    font-weight: 600;
    color: #0d47a1;
    box-shadow: 0 6px 14px rgba(13,71,161,.06);
    white-space: nowrap;
  }

  /* Promise block */
  .chs-promise {
    background: linear-gradient(145deg, #ffffff 0%, #edf3ff 100%);
    border: 1px solid #d9e6ff;
    box-shadow: 0 12px 28px rgba(13,71,161,.08);
    color: #233;
  }

  /* Responsive tweaks */
  @media (max-width: 575.98px) {
    .chs-float-badge, .chs-float-badge--alt { font-size: .85rem; }
    .chs-icon i { font-size: 1.75rem; }
  }
  
  
    .wwd-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    transition: transform .25s ease, box-shadow .25s ease;
    display: flex;
    flex-direction: column;
  }
  .wwd-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.10);
  }
  .icon-wrap i {
    font-size: 2.75rem;
    line-height: 1;
    color: #0d47a1; /* brand accent used elsewhere */
    filter: drop-shadow(0 2px 4px rgba(13,71,161,.15));
  }
  .wwd-cta {
    background: linear-gradient(135deg, #ffffff 0%, #e6efff 100%);
    border: 1px solid #dbe5ff;
    border-radius: 18px;
  }
  /* Tighter spacing on very small screens */
  @media (max-width: 575.98px) {
    .what-we-do .h5 { font-size: 1.05rem; }
    .icon-wrap i { font-size: 2.25rem; }
  }