   body {
    font-family: 'Inter', sans-serif!important;
     background-color: #f9f6fc;
      color: #333;
    }
    body,html{
      overflow-x: hidden;
    }
@font-face {
    font-family: 'Angsa';
    src: url('angsa.ttf') format('truetype'); /* or 'angsa.woff' with 'woff' format */
    font-weight: normal;
    font-style: normal;
}
.btn-outline-purple {
  color: #6a1b9a;
  border: 2px solid #6a1b9a;
  background-color: transparent;
  transition: all 0.3s ease;
}

.btn-outline-purple:hover {
  background-color: #6a1b9a;
  color: #ffffff;
  border-color: #6a1b9a;
}
.btn-purple:hover{
  background-color: #5c004c;
  color: white;
}

.section-heading {
  font-family: 'Angsa', sans-serif;
    display: inline-block; /* Shrink to fit content */
    font-weight: bold;
    background-color: #6a1b9a;
    color: #ffffff;
    font-size: 1.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-align: center;
    padding: 10px 20px; /* Adjust padding around text */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5); /* Soft shadow */
    position: relative;
    margin: 0 auto; /* Center block */
}

.section-heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20%;
    height: 3px;
    background-color: #6a1b9a; /* Same as heading color or change if needed */
    border-radius: 2px; /* Optional: rounded edges */
}


p,li{
    font-size: 1.2rem;
}
.bg-purple{
    background-color: #6a1b9a;
}
.text-purple {
  color: #6a1b9a !important;
}
.border-purple{
  border: 3px solid #6A1B9A;
}
.border-purple-left {
  border-left: 3px solid #6A1B9A !important;
}

.btn-purple{
  background-color: #6A1B9A;
}
.purple-strong {
  color: #6a1b9a !important;
  font-weight: bold;
}

.navbar {
    background-color: white;
    border-top: 4px solid #6a1b9a;
    border-bottom: 4px solid #6a1b9a;
}

.navbar-nav .nav-link {
    color: #6a1b9a !important;
    font-weight: bold;
    font-size: 16px !important;
}
.navbar-nav li,
.navbar-nav .nav-link {
  font-size: 16px !important; /* or whatever your default/nav font size is */
}

.navbar-nav .nav-item {
    margin-right: 20px;
}

.navbar-nav .nav-item:last-child {
    margin-right: 0;
}

.logo-bg {
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0.25rem;
    border-radius: 6px;
}

.navbar-toggler {
    border-color: #6a1b9a;
    position: relative;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%236a1b9a' stroke-width='3' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    transition: opacity 0.3s ease;
}

.close-icon {
    color: #000;
    font-size: 24px;
    font-weight: bold;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

/* Mobile Styles */
@media (max-width: 991.98px) {
    .modern-top-nav {
        margin-top: 0;
        background-color: white;
        border-radius: 0;
        padding: 0;
        box-shadow: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        z-index: 1050;
        transform: translateY(-100%);
        transition: transform 0.3s ease-in-out;
        overflow-y: auto;
    }
    
    .modern-top-nav.show {
        transform: translateY(0);
    }
    
    /* Mobile header with logo and close button */
    .mobile-nav-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px;
        background-color: white;
        position: sticky;
        top: 0;
        z-index: 1;
        border-bottom: 1px solid #eee;
    }
    
    .mobile-close-btn {
        background: none;
        border: none;
        font-size: 24px;
        color: #000;
        cursor: pointer;
        padding: 5px 10px;
    }
    
    .modern-top-nav ul.navbar-nav {
        flex-direction: column;
        gap: 0.5rem;
        padding: 15px;
        font-family: 'Arial Narrow', Arial, sans-serif;
        font-weight: bold;
        margin-top: 0;
    }
    
    .modern-top-nav .nav-link {
        color: #6a1b9a !important;
        font-size: 18px !important;
        padding: 12px 20px;
        text-align: left;
        border-radius: 0;
        border-left: 4px solid transparent;
    }
    .modern-top-nav .nav-link {
    border-bottom: 1px solid #e4e4e4;
}

    .modern-top-nav .nav-link:hover,
    .modern-top-nav .nav-link:focus {
        background-color: #f8f9fa;
        border-left: 4px solid #6a1b9a;
    }
    
    .dropdown-toggle::after {
        border-top: 0.3em solid #6a1b9a;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }
        .dropdown-toggle {
        position: relative;
    }
    .dropdown-menu {
        background-color: #f8f9fa;
        border: none;
        margin-left: 20px;
        box-shadow: none;
    }
    
    .dropdown-item {
        color: #6a1b9a !important;
        padding: 10px 20px;
    }
    
    .dropdown-item:hover {
        background-color: #e9ecef;
    }
    
    /* Hide the original close icon in navbar toggler */
    .close-icon {
        display: none !important;
    }
    
    /* Overlay for the rest of the page */
    .navbar-collapse-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.5);
        z-index: 1040;
        display: none;
    }
    
    .navbar-collapse-overlay.show {
        display: block;
    }
    .donate-cta {
      margin-top: 335px;
    width: 100%;
    padding: 8px;
    background-color: #6a1b9a;
    text-align: center;
    position: sticky;
    bottom: 0;
    z-index: 2;
}

.donate-btn {
    color: white;
    font-weight: bold;
    font-size: 18px;
    text-decoration: none;
    background: transparent;
    border: none;
    padding: 12px 24px;
    display: inline-block;
}

.donate-btn:hover {
    text-decoration: underline;
}

}









.timeline {
  position: relative;
  margin-left: 20px;
  border-left: 4px solid #dee2e6;
}
.timeline-item {
  position: relative;
  margin-bottom: 2rem;
  padding-left: 2.5rem;
}
.timeline-icon {
  position: absolute;
  left: -30px;
  top: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 0 0 4px #fff;
}
.timeline-content h5 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.timeline-content ul {
  list-style: none;
  padding-left: 0;
}
.timeline-content ul li {
  margin-bottom: 0.4rem;
}





.timeline-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.timeline-wrapper {
  padding: 40px 0;
}

.timeline-line {
  height: 4px;
  background: rgba(106, 27, 154, 0.2);
  z-index: 1;
}

.line-progress {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #6a1b9a 0%, #9c27b0 100%);
  transition: width 1.5s ease;
}

.timeline-card {
  position: relative;
  text-align: center;
  transition: all 0.4s ease;
  z-index: 2;
}

.year-badge {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #6a1b9a 0%, #9c27b0 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
  font-weight: bold;
  box-shadow: 0 10px 25px rgba(106, 27, 154, 0.3);
  border: 3px solid white;
  transition: all 0.3s ease;
}

.year-badge.highlight {
  transform: scale(1.1);
  background: linear-gradient(135deg, #ff9800 0%, #ffc107 100%);
  box-shadow: 0 10px 25px rgba(255, 152, 0, 0.3);
}

.timeline-contentt {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.timeline-thing:hover .timeline-contentt {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.timeline-thing:hover .year-badge {
  transform: scale(1.1);
}

/* Pulse animation */
.pulse-animation {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(106, 27, 154, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(106, 27, 154, 0); }
  100% { box-shadow: 0 0 0 0 rgba(106, 27, 154, 0); }
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
  .timeline-line {
    display: none;
  }
  
  .timeline-wrapper {
    padding: 20px 0;
  }
  
  .timeline-thing {
    margin-bottom: 30px;
  }
  
  .year-badge {
    width: 60px;
    height: 60px;
    font-size: 20px;
  }
  
  .timeline-contentt {
    padding: 15px;
  }
}





 .hero {
  position: relative;
  height: 80vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-video {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero h1 {
  font-family: 'Angsa', sans-serif;
  position: relative;
  z-index: 2;
  font-size: 5rem;
  line-height: 0.7; /* Try adjusting between 1 to 1.2 */
}


.highlight-purple {
  color: #6A1B9A;
}


  .vision-card, .mission-card {
  background-size: cover;
  background-position: center;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
}

.vision-card {
  background-image: url('images/vision.jpg'); /* Replace with actual image path */
}

.mission-card {
  background-image: url('images/mision.jpg'); /* Replace with actual image path */
}

.card-overlay-purple {
  background-color: rgba(106, 27, 154, 0.8); /* purple overlay */
  color: white;
  height: 100%;
}

.card-overlay-yellow {
  background-color: rgba(255, 235, 59, 0.8); /* yellow overlay */
  color: #333;
  height: 100%;
}






.custom-card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.custom-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.custom-card-img {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  object-fit: cover;
  height: 320px;
}

.custom-card .card-body {
  padding: 1.2rem;
}

.custom-card .card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #6a1b9a; /* Matching your section heading */
  margin-bottom: 0.75rem;
}

.custom-card .card-text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

.custom-card .highlight {
  color: #d32f2f;
  font-weight: 500;
}











.impact-timeline-section {
  background-color: #f9f6fc;
}

.timeline {
  position: relative;
  padding-left: 40px;
  border-left: 3px solid #6a1b9a;
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.timeline-marker {
  position: absolute;
  left: -20px;
  top: 0;
  background-color: #6a1b9a;
  color: #fff;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-weight: bold;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-content h5 {
  color: #6a1b9a;
  font-weight: 600;
}

.timeline-content p {
  margin: 0;
  font-size: 0.95rem;
  color: #555;
}

.timeline-final-message {
  padding-left: 20px;
  max-width: 600px;
  margin: 0 auto;
  color: #333;
}

.highlight {
  color: #d32f2f;
  font-weight: 500;
}






    /* Footer Styles */
    footer a {
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    footer a:hover {
        color: #adb5bd !important;
    }
    
    #cookieConsent {
        z-index: 9999;
    }
    /* Footer dropdown toggle arrow styling */
footer a.dropdown-toggle::after {
    content: "";
    display: inline-block;
    margin-left: 0.4em;
    vertical-align: middle;
    border-top: 0.3em solid white; /* Arrow color */
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
    transition: transform 0.3s ease;
    position: relative;
    top: 2px; /* vertical alignment */
}
@media(max-width: 992px){
  footer a.dropdown-toggle::after  {  margin-left: 30px;}
}
/* Rotate arrow when dropdown is open */
footer a.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

/* Fix padding so arrow doesn't move text */
footer a.dropdown-toggle {
    padding-right: 1.5rem;
    display: inline-flex;
    align-items: center;
    line-height: 1;
    color: white !important; /* ensure arrow color matches */
}

/* Dropdown menu adjustments inside footer */
footer ul.dropdown-menu {
    background-color: #222; /* Dark background to match footer */
    border: none;
    margin-top: 0.25rem;
    padding: 0.5rem 0;
    min-width: 10rem;
}

footer ul.dropdown-menu .dropdown-item {
    color: white!important;
    padding: 0.25rem 1.5rem;
}

footer ul.dropdown-menu .dropdown-item:hover {
    background-color: #444;
    color: white;
}



.bg-cover {
  background-size: cover;
  background-position: center; /* Default for desktop */
  background-repeat: no-repeat;
}

@media (max-width: 767.98px) {
  .mobile-center-img {
    background-position: center center !important; /* Ensure center on mobile */
    min-height: 250px; /* Adjust height as needed */
  }
}



.pillars-list {
  background-color: #f3e5f5; /* light purple */
  padding: 20px 30px;
  border-radius: 12px;

  box-shadow: 0 4px 6px rgba(106, 27, 154, 0.15);
  font-weight: 600;
  color: #4a148c;

  display: flex;
  flex-wrap: wrap;
  gap: 20px; /* spacing between items */

}

.pillars-list li {
  font-size: 1.4rem;
  padding: 10px 15px;
  margin: 0;
  border-radius: 8px;
  min-width: 220px;
}



.hero-bg {
  position: relative; /* Needed to position the overlay */
  background-image: url('images/why global.jpg'); /* fixed escaping of space */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #000; /* fallback color */
  z-index: 0; /* ensure stacking context */
}


.vertical-line {
  position: absolute;
  top: 0;
  left: 95%;
  width: 4px;
  height: 100%;
  background-color: #ffffff; /* semi-transparent white */
}


.emilia-font{
     font-family: 'Inter', sans-serif!important;
}


        /* Custom styles for each section */
        .involvement-section {
            padding: 4rem 0;
            margin-bottom: 2rem;

        }
        
        #donate {
            background: linear-gradient(135deg, #f5f7fa 0%, #e4efe9 100%);
            border-left: 5px solid #6a1b9a;
        }
        
        #partner {
            background-color: #fff;
            border: 1px solid #e1e1e1;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        #volunteer {
            background-color: #f8f9fa;
            border-top: 3px dashed #6c757d;
            border-bottom: 3px dashed #6c757d;
        }
        
        #corporate {
            background: linear-gradient(to right, #ffffff, #f1f8ff);
            border-radius: 0 50px 0 50px;
            position: relative;
            overflow: hidden;
        }
        
        #corporate::before {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            width: 100px;
            height: 100px;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="%2333b5e5" opacity="0.1"><path d="M50 0 L100 50 L50 100 L0 50 Z"/></svg>') no-repeat;
            background-size: contain;
        }
        
        #fundraiser {
            background-color: #343a40;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        #fundraiser::after {
            content: "";
            position: absolute;
            bottom: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="%23ffffff" opacity="0.05"><circle cx="50" cy="50" r="40"/></svg>') no-repeat;
            background-size: contain;
        }
        
        .icon-container {
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            margin-bottom: 1.5rem;
        }
        
        .benefit-item {
            margin-bottom: 0.75rem;
            padding-left: 1.5rem;
            position: relative;
            font-size: 1.2rem;
        }
        
        .benefit-item::before {
            content: "•";
            position: absolute;
            left: 0;
            color: inherit;
            font-weight: bold;
        }
        
        .btn-custom {
            padding: 0.75rem 1.5rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        
        .btn-donate {
            background-color: #28a745;
            color: white;
        }
        
        .btn-donate:hover {
            background-color: #218838;
            transform: translateY(-2px);
        }
        
        .btn-partner {
            background-color: #17a2b8;
            color: white;
        }
        
        .btn-partner:hover {
            background-color: #138496;
            transform: translateY(-2px);
        }
        
        .btn-volunteer {
            background-color: #6c757d;
            color: white;
        }
        
        .btn-volunteer:hover {
            background-color: #5a6268;
            transform: translateY(-2px);
        }
        
        .btn-corporate {
            background-color: #007bff;
            color: white;
        }
        
        .btn-corporate:hover {
            background-color: #0069d9;
            transform: translateY(-2px);
        }
        
        .btn-fundraiser {
            background-color: #ffc107;
            color: #343a40;
        }
        
        .btn-fundraiser:hover {
            background-color: #e0a800;
            transform: translateY(-2px);
        }
        
        .section-title {
           font-family: 'Angsa', sans-serif;
          font-size: 3rem;
            position: relative;
            padding-bottom: 1rem;
            margin-bottom: 2rem;
        }
        
        .section-title::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: currentColor;
        }
        
        #partner .section-title::after {
            background-color: #17a2b8;
        }
        
        #volunteer .section-title::after {
            background-color: #6c757d;
        }
        
        #corporate .section-title::after {
            background-color: #007bff;
        }
        
        #fundraiser .section-title::after {
            background-color: #ffc107;
        }








            /* CSR Content Styles */
    .csr-content {
        background-color: #f8f9fa;
    }
    
    .csr-country-section {
        background-color: white;
        padding: 2rem;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }
    
    .csr-initiative {
        transition: transform 0.3s ease;
    }
    
    .csr-initiative:hover {
        transform: translateY(-5px);
    }
    
    .gallery-preview {
        background-color: #f8f9fa;
        border-radius: 8px;
    }
    
    .gallery-preview img {
        cursor: pointer;
        transition: transform 0.3s ease;
    }
    
    .gallery-preview img:hover {
        transform: scale(1.05);
    }
    
    .more-images-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.5);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        border-radius: 5px;
        font-weight: bold;
    }
    
    .csr-highlight {
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        border-left: 5px solid #0d6efd !important;
    }
    
    .founder-note {
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(13, 110, 253, 0.2);
    }
    
    .carousel-item img {
        max-height: 70vh;
        object-fit: contain;
    }
    










      /* Blog Card Styles */
    .blog-card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border-radius: 12px;
    }
    
    .blog-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
    }
    
    .card-img-top {
        height: 200px;
        overflow: hidden;
    }
    
    .card-img-top img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .blog-card:hover .card-img-top img {
        transform: scale(1.05);
    }
    
    .card-date {
        position: absolute;
        bottom: 10px;
        right: 10px;
        background: rgba(0,0,0,0.7);
        color: white;
        padding: 5px 10px;
        border-radius: 20px;
        font-size: 0.8rem;
    }
    
    .card-body {
        padding: 1.5rem;
    }
    
  
    .card-text {
        color: #6c757d;
        margin-bottom: 1.5rem;
    }
    
    .card-footer {
        padding: 0 1.5rem 1.5rem;
    }
    
    .stretched-link::after {
        border-radius: 50px;
    }
    
    .badge {
        font-weight: 500;
        font-size: 0.7rem;
        padding: 0.35em 0.65em;
    }
    
    @media (max-width: 768px) {
        .card-img-top {
            height: 150px;
        }
    }














            :root {
            --primary-color: #2c3e50;
            --secondary-color: #3498db;
            --accent-color: #e74c3c;
            --light-bg: #f8f9fa;
            --dark-text: #2c3e50;
            --light-text: #7f8c8d;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: var(--dark-text);
        }
        
        .blog-header {
            background: linear-gradient(135deg, var(--primary-color) 0%, #1a2a3a 100%);
            color: white;
            padding: 5rem 0;
            margin-bottom: 3rem;
        }
        
        .article-title {
            font-weight: 800;
            line-height: 1.3;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
        }
        
        .article-meta {
            display: flex;
            align-items: center;
            margin: 1.5rem 0;
        }
        
        .meta-item {
            display: flex;
            align-items: center;
            margin-right: 1.5rem;
            font-size: 0.9rem;
        }
        
        .meta-item i {
            margin-right: 0.5rem;
            color: var(--secondary-color);
        }
        
        .article-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 8px;
            margin: 2rem 0;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        .article-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        
        .section-divider {
            border: 0;
            height: 1px;
            background: linear-gradient(to right, transparent, var(--secondary-color), transparent);
            margin: 3rem auto;
            width: 50%;
        }
        
        .highlight-box {
            background-color: var(--light-bg);
            border-left: 4px solid var(--secondary-color);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        
        .key-points {
            background-color: var(--light-bg);
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2rem 0;
        }
        
        .key-points ul {
            padding-left: 1.5rem;
        }
        
        .key-points li {
            margin-bottom: 0.8rem;
            position: relative;
        }
        
        .key-points li:before {
            content: "•";
            color: var(--secondary-color);
            font-weight: bold;
            display: inline-block;
            width: 1em;
            margin-left: -1em;
        }
        
        .quote-card {
            border-left: 4px solid var(--accent-color);
            padding: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            background-color: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .quote-author {
            font-weight: bold;
            margin-top: 1rem;
            font-style: normal;
            color: var(--primary-color);
        }
        
        .conclusion-box {
            background: linear-gradient(135deg, var(--primary-color) 0%, #1a2a3a 100%);
            color: white;
            padding: 2rem;
            border-radius: 8px;
            margin: 3rem 0;
        }
        
        .share-buttons {
            display: flex;
            justify-content: center;
            margin: 2rem 0;
        }
        
        .share-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            margin: 0 0.5rem;
            color: white;
            transition: transform 0.3s ease;
        }
        
        .share-btn:hover {
            transform: translateY(-3px);
        }
        
        .facebook {
            background-color: #3b5998;
        }
        
        .twitter {
            background-color: #1da1f2;
        }
        
        .linkedin {
            background-color: #0077b5;
        }
        
        .related-articles {
            background-color: var(--light-bg);
            padding: 3rem 0;
            margin-top: 3rem;
        }
        
        .article-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        
        .article-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .article-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .article-card-body {
            padding: 1.5rem;
        }
        
        .article-card-title {
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        
        .article-card-excerpt {
            color: var(--light-text);
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }
        
        .read-more {
            color: var(--secondary-color);
            font-weight: 600;
            text-decoration: none;
        }
        
        @media (max-width: 768px) {
            .blog-header {
                padding: 3rem 0;
            }
            
            .article-image {
                height: 250px;
            }
            
            .article-meta {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .meta-item {
                margin-bottom: 0.5rem;
            }
        }












        .orphan-transformation {
  background-color: #f8f9fa;
}

.image-collage {
  position: relative;
  height: 400px;
}

.image-collage img {
  position: absolute;
  object-fit: cover;
  border: 5px solid white;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.image-collage .img-1 {
  width: 200px;
  height: 200px;
  top: 0;
  left: 0;
  z-index: 4;
}

.image-collage .img-2 {
  width: 220px;
  height: 220px;
  top: 50px;
  left: 150px;
  z-index: 3;
}

.image-collage .img-3 {
  width: 240px;
  height: 240px;
  top: 100px;
  left: 50px;
  z-index: 2;
}

.image-collage .img-4 {
  width: 200px;
  height: 200px;
  top: 150px;
  left: 200px;
  z-index: 1;
}
/* Existing styles remain unchanged */

/* Responsive layout for small screens */
@media (max-width: 767px) {
  .image-collage {
    position: static;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }

  .image-collage img {
    position: static;
    width: 48%;
    height: auto;
    border: 3px solid white;
  }
}





.hover-lift:hover {
  transform: translateY(-5px);
  transition: all 0.3s ease;
}

.timeline-progress {
  position: relative;
}

.timeline-images {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.timeline-images img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid white;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.success-stories-slider {
  padding: 20px 10px;
}

.swiper-slide {
  height: auto;
}

.swiper-button-next, 
.swiper-button-prev {
  color: var(--bs-primary);
}

@media (max-width: 767.98px) {
  .image-collage {
    height: 300px;
    margin-top: 30px;
  }
  
  .image-collage .img-1,
  .image-collage .img-2,
  .image-collage .img-3,
  .image-collage .img-4 {
    width: 120px;
    height: 120px;
  }
  
  .image-collage .img-1 {
    top: 0;
    left: 0;
  }
  
  .image-collage .img-2 {
    top: 30px;
    left: 80px;
  }
  
  .image-collage .img-3 {
    top: 60px;
    left: 20px;
  }
  
  .image-collage .img-4 {
    top: 90px;
    left: 100px;
  }
}




@media (max-width: 767.98px) {
  #our-program {
    margin-top: -80px;
  }
  .Philosophy{
     margin-top: -80px;
  }
}
