/* - Professional Realsol properties Styles */

/* CSS Custom Properties */
:root {
    --primary-color: #860085;
    --secondary-color: #586642;
    --warning-color:#a57c00;
    --background-color: #ffffff;
    --text-color: #0a0a0a;
    --text-light: #3b3f42;
    /* --success-color: #28a745; */
    /* --warning-color: #ffc107; */
    --danger-color: #dc3545;
    --light-bg: #f8f9fa;
    --dark-bg: #212529;
    --border-color: rgba(0,0,0,0.1);
    --border-radius: 12px;
    --box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    --box-shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --btn-color: #a57c00;
}

/* Global Styles */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    overflow-x: hidden;
}

/* Custom Bootstrap Overrides */
.btn-primary {
    background-color: var(--btn-color);
    border-color: var(--btn-color);
    color: white;
    font-weight: 500;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: none;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #AF8917;
    border-color: #AF8917;
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-lg);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 500;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-lg);
}
.navbar .nav-link:focus,
.navbar .nav-link:active,
.navbar .dropdown-toggle:focus,
.navbar .dropdown-toggle:active {
  background-color: transparent !important;
  color: var(--primary-color) !important; 
  box-shadow: none !important;
}

/* Make dropdown look clean and modern */
.dropdown-menu {
  border-radius: 0.5rem;
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Style dropdown items */
.dropdown-item {
  padding: 0.6rem 1.2rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-item:hover {
  background-color: var(--primary-color);
  color: #fff;
}

/* Add subtle hover and active effect for main toggle link */
.nav-item .nav-link.dropdown-toggle:hover {
  color: var(--primary-color);
}

.nav-item .nav-link.dropdown-toggle.show {
  color: var(--primary-color);
}
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.bg-secondary {
    background-color: var(--secondary-color) !important;
}

/* Form Controls */
.form-control,
.form-select {
    border: 2px solid #e9ecef;
    border-radius: var(--border-radius);
    padding: 12px 16px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(134, 0, 133, 0.25);
}

/* Section Styles */
.section-title {
    color: #a57c00;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--btn-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* Navigation */
.custom-navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(15px);
    padding: 1rem 0;
    transition: var(--transition);
    border-bottom: 1px solid var(--border-color);
}

.custom-navbar.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: var(--box-shadow);
}

.brand-logo {
    width: 55px;
    height: 55px;
    /* background: linear-gradient(135deg, var(--primary-color), #6d0069); */
    /* border-radius: 20%; */
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.navbar-nav .nav-link {
    color: var(--text-color) !important;
    font-weight: 400;
    margin: 0 0.5rem;
    padding: 0.5rem 0.5rem !important;
    border-radius: 8px;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    background-color: rgba(168, 2, 168, 0.2);
}

.custom-btn {
    background-color: rgba(168, 2, 168, 0.2);

    /* color: var(--text-color); */
    padding: 10px 20px;
    font-weight: 400;
    border-radius: 8px;
    transition: var(--transition);
}
.custom-btn :hover{
    background-color:rgba(168, 2, 168, 0.1) ;
    
}

.wrapper {
  display: flex;
  flex-direction: column; /* Stack items vertically */
  min-height: 100vh; /* Ensure the wrapper takes at least full viewport height */
}
/* breadcrumb start */
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5)), url(./Assets/Images/realsol\ breadcrump_img.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 70px 0 70px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}
/* breadcrumb end */
/*** Single Page Hero Header End ***/



 /*** Carousel Start ***/
.carousel .carousel-inner .carousel-item {
    position: relative;
    overflow: hidden;
    height: 100vh;
}

 #home .carousel .carousel-inner .carousel-item img {
    animation-name: image-zoom ;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    transition: 0.5s;
}

@keyframes image-zoom {
    0%  {width: 100%; height: 100%; -webkit-filter: blur(0px); opacity: 1;}

    25% {width: 115%; height: 115%; -webkit-filter: blur(3px); opacity: 0.9;}

    50% {width: 130%; height: 130%; -webkit-filter: blur(10px); opacity: 0.7;}

    75% {width: 115%; height: 115%; -webkit-filter: blur(3px); opacity: 0.9;}

    100% {width: 100%; height: 100%; -webkit-filter: blur(0px); opacity: 1;}
}

@media (min-width: 992px) {
    .carousel .carousel-inner .carousel-item img {
        height: 100%;
        object-fit: cover;   
    }
}

@media (max-width: 991px) {
    .carousel .carousel-inner .carousel-item {
        height: 700px;
    }
    .carousel .carousel-inner .carousel-item img {
        height: 700px;
        object-fit: cover;    
    }
}

@media (max-width: 576px) {
    .carousel-item .carousel-caption h1 {
        font-size: 36px;
    }

    .carousel-item .carousel-caption p.fs-5 {
        font-size: 15px;
    }
}

.carousel .carousel-inner .carousel-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.carousel .carousel-inner .carousel-item .carousel-caption {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}



.carousel .carousel-control-prev,
.carousel .carousel-control-next {
    background: transparent;
}

/* .carousel .carousel-control-prev .carousel-control-prev-icon i {
    background-color: #860085;
    position: absolute;
    left: 0;
    padding: 25px 20px;
    

} */

/* .carousel .carousel-control-next .carousel-control-next-icon i {
    background:  #860085;
    position: absolute;
    right: 0;
    padding: 25px 20px;
    
} */

/* .carousel .carousel-control-prev .carousel-control-prev-icon i:hover,
.carousel .carousel-control-next .carousel-control-next-icon i:hover {
    background:  #860085;
    color:  #860085;
} */
/*** Carousel End ***/


/* About Section */
.about-section {
    padding: 5rem 0;
    background: var(--background-color);
}

.about-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(134, 0, 133, 0.1);
    border-radius: 50px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.mission-icon {
    width: 48px;
    height: 48px;
    background: rgba(134, 0, 133, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mission-icon i {
    font-size: 1.5rem;
}

/* Core Values Section */
.core-values-section {
    margin-top: 4rem;
    padding: 3rem 0;
}

.value-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid #f0f0f0;
    transition: var(--transition);
    height: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-lg);
    border-color: rgba(134, 0, 133, 0.2);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: rgba(134, 0, 133, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: var(--transition);
}

.value-card:hover .value-icon {
    background: rgba(134, 0, 133, 0.15);
    transform: scale(1.1);
}

.value-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.value-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.75rem;
    margin-top: 1rem;
}

.value-description {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Stats Section */
/* .stats-section {
    border-top: 1px solid #f0f0f0;
}

.stat-item {
    padding: 1.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
} */

.about-image-container {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
}


.achievement-card {
    position: absolute;
    background: white;
    padding: 1 rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-lg);
    display: flex;
    align-items: center;
    gap: 1 rem;
    animation: float 6s ease-in-out infinite;
}

.achievement-1 {
    bottom: -50px;
    left: -50px;
    animation-delay: 1s;
}

.achievement-2 {
    top: -50px;
    right: -40px;
    animation-delay: 3s;
}

.achievement-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), #6d0069);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1 rem;
}

.achievement-number {
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-color);
}

.achievement-label {
    font-size: 0.9rem;
    color: var(--text-light);
}
/* Relsol team */
.team-card {
    transition: all 0.3s ease;
  }

  .team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }

  .team-img {
    transition: transform 0.4s ease;
  }

  .team-card:hover .team-img {
    transform: scale(1.1);
  }

  .team-image {
    display: flex;
    justify-content: center;
    align-items: center;
  }

/* Services Section */
.services-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

.service-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--box-shadow);
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-lg);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color));
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.featured-service {
    position: relative;
    border: 2px solid var(--primary-color);
}

/* .service-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
} */

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #6d0069);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    transition: var(--transition);
}


/* Process Section */
.process-section {
    margin-top: 4rem;
    padding: 3rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.process-step {
    text-align: center;
    max-width: 200px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #6d0069);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    position: relative;
}

.step-content h5 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.process-arrow {
    font-size: 1.5rem;
    color: var(--primary-color);
}


/* Projects Section */
.projects-section {
    padding: 5rem 0;
    background: var(--background-color);
}




 .property-image-container {
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            overflow: hidden;
            height: 400px;
            width: 100%;
        }
        
 .property-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
.card img {
    transition: transform 0.3s ease;
  }
  .card img:hover {
    transform: scale(1.05);
  }
  .land-gallery-section {
            padding: 80px 0;
            background-color: #f8f9fa;
        }
        
        .land-gallery-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .land-gallery-item {
            position: relative;
            margin-bottom: 30px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            height: 250px;
        }
        
        .land-gallery-item:hover {
            transform: translateY(-5px);
        }
        
    .land-gallery-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .land-gallery-item:hover .land-gallery-image {
            transform: scale(1.05);
        }
        
        .gallery-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.7));
            color: white;
            padding: 15px;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }
        
        .land-gallery-item:hover .gallery-caption {
            transform: translateY(0);
        }
        
.investment-highlight {
            text-align: center;
            padding: 30px 20px;
            border-radius: 10px;
            background-color: rgba(26, 109, 56, 0.05);
            margin: 10px 0;
        }
        
        .investment-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .cta-section {
            background-color: var(--primary-color);
            color: white;
            padding: 60px 0;
            
        }
        
        .map-container {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .price-tag {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-color);
        }
        
        .price-period {
            font-size: 1rem;
            color: #666;
        }
        
.feature-card {
            border: none;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
            height: 100%;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
        }
        
        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        .highlight-box {
            background-color: #f8f9fa;
            border-left: 4px solid var(--secondary-color);
            padding: 20px;
            border-radius: 0 8px 8px 0;
        }
        
        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            padding: 10px 25px;
            font-weight: 600;
        }
        
        .btn-primary:hover {
            background-color: var(--accent-color);
            border-color: var(--accent-color);
        }
        
        .btn-outline-primary {
            color: var(--primary-color);
            border-color: var(--primary-color);
            padding: 10px 25px;
            font-weight: 600;
        }
        
        .btn-outline-primary:hover {
            background-color: var(--primary-color);
            color: white;
        }
        
        .location-badge {
            background-color: var(--secondary-color);
            color: #333;
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 15px;
        }
        

/* /* Project Stats */
.project-stats {
    margin-top: 4rem;
    padding: 3rem;
    background: #586642;
    border-radius: var(--border-radius);
    color: white;
} 

.stat-card {
    text-align: center;
}

.stat-card .stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: rgb(255, 255, 255);
}

.stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-card .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

.contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.contact-info {
    padding-left: 2rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}
 .contact-item {
    display: flex;
    flex-direction:column; /* stack icon above text */
    align-items: center;    /* center horizontally */
    text-align: center;}   /* align text nicely */
    /*  */
  
  
  .contact-icon {
    font-size: 3rem;  /* make icons larger */
    background: linear-gradient(135deg, var(--primary-color), #6d0069);
    
    margin-bottom: 0.5rem;
  }

/* .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
} */

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #6d0069);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-content h6 {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
}

.contact-content p {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 0.95rem;
} 

.accordion-button {
  background-color:#860085; /* Bootstrap primary with 75% opacity */
  color: #fff;
  font-weight: 600;
}

.accordion-button:not(.collapsed) {
  background-color: rgba(184, 75, 235, 0.75); /* Solid primary when expanded */
  color: #fff;
}

.social-links h6 {
    font-weight: 600;
    color: var(--text-color);
}

.social-link {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), #6d0069);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

/* Footer */
.footer-section {
    background: var(--secondary-color) !important;
    /* color: white; */

    

}

.footer-title {
    font-weight: 600;
    color:var(--primary-color);
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 0.5rem;
}

.footer-brand .brand-name {
    color: var(--primary-color);
}

.footer-social {
  display: flex;
  flex-direction: column; /* stack vertically */
  gap: 12px; /* space between items */
}

.footer-social .social-link {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  color: #333; /* default text color */
  transition: all 0.3s ease;
}

.footer-social .social-link i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--warning-color); /* use Bootstrap primary color */
  transition: color 0.3s ease;
}

.footer-social .social-link:hover {
  color: var(--bs-primary); /* text turns primary on hover */
  transform: translateX(5px); /* small slide effect */
}

.footer-social .social-link:hover i {
  color: white; 
}


.footer-contact .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
}

.footer-contact .contact-item i {
    margin-right: 0.5rem;
    margin-top: 0.1rem;
    color: var(--primary-color);
}


.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: white;
}
.back-to-top {
  position: fixed;     /* makes it float on top */
  right:20px;          /* distance from the left edge */
  bottom: 20px;        /* distance from the bottom */
  z-index: 9999;       /* ensures it stays above other elements */
}

/* Modal Styles */
.modal-content {
    border-radius: var(--border-radius);
    border: none;
    box-shadow: var(--box-shadow-lg);
}

.success-icon i {
    font-size: 4rem;
}

/* Animation Classes */
.fade-in-up {
    animation: fadeInUp 1s ease-out;
}

.fade-in-right {
    animation: fadeInRight 1s ease-out 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Loading States */
.btn.loading .btn-text {
    opacity: 0;
}

.btn.loading .spinner-border {
    display: inline-block !important;
}

/* Events Section Styles */
.events-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* Category Filter Buttons */
.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid #e9ecef;
    background: white;
    color: var(--text-color);
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

/* Event Tabs */
.event-tabs {
    border: none;
    justify-content: center;
    margin-bottom: 3rem;
}

.event-tabs .nav-link {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    color: var(--text-color);
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 50px;
    transition: var(--transition);
    text-decoration: none;
    margin: 0 0.5rem;
}

.event-tabs .nav-link:hover,
.event-tabs .nav-link.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

/* Event Cards */
.event-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
    border: none;
    margin-bottom: 2rem;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-lg);
}

.event-card.featured {
    border: 2px solid var(--primary-color);
    position: relative;
}

.event-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.event-image-container {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.event-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.event-card:hover .event-image-container img {
    transform: scale(1.05);
}

.event-content {
    padding: 1.5rem;
}

.event-category {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.event-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.event-description {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.event-details {
    margin-bottom: 1rem;
}

.detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.detail-item i {
    margin-right: 0.5rem;
    color: var(--primary-color);
    width: 16px;
}

.event-highlights {
    margin-bottom: 1rem;
}

.highlight-tag {
    display: inline-block;
    background: rgba(134, 0, 133, 0.1);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    border: 1px solid rgba(134, 0, 133, 0.2);
}

.event-actions {
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

.btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.btn-primary:hover {
    background: #6d0069;
    border-color: #6d0069;
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

/* Gallery Modal */
.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    z-index: 1050;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.gallery-modal.show {
    display: flex;
}

.gallery-modal-content {
    background: white;
    border-radius: var(--border-radius);
    /* max-width: 800px; */
    width: 80%;
    max-height: 90vh;
    overflow-y: auto;
    /* position: relative; */
}

.gallery-header {
    padding: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gallery-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
    padding: 0.5rem;
    border-radius: 50%;
    transition: var(--transition);
}

.gallery-close:hover {
    background: #f0f0f0;
    color: var(--text-color);
}


.gallery-grid {
    column-count: 4;          /* number of columns */
    column-gap: 15px;         /* space between columns */
    padding: 15px;
  }
  
  .gallery-item {
    break-inside: avoid;      /* prevent image cuts */
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .gallery-item img {
    width: 100%;
    display: block;
    border-radius: 12px;
    object-fit: cover;
  }
  
  /* Hover effect */
  .gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  }
  
  /* Responsive adjustments */
  @media (max-width: 992px) {
    .gallery-grid {
      column-count: 3;
    }
  }
  
  @media (max-width: 768px) {
    .gallery-grid {
      column-count: 2;
    }
  }
  
  @media (max-width: 480px) {
    .gallery-grid {
      column-count: 1;
    }
  }


/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-state i {
    font-size: 4rem;
    color: #ddd;
    margin-bottom: 1rem;
}

.empty-state h3 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.empty-state p {
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 767.98px) {
    .section-title {
        font-size: 2rem;
    }

    .event-tabs .nav-link {
        padding: 0.75rem 1.5rem;
        margin: 0.25rem;
    }

    .filter-buttons {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .event-content {
        padding: 1rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 0.75rem;
        padding: 1rem;
    }
}
/* Foundation Section Styles
.project-tabs .nav-link {
    border: 2px solid transparent;
    color: var(--text-color);
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 50px;
    margin: 0 0.5rem;
    transition: var(--transition);
}

.project-tabs .nav-link.active,
.project-tabs .nav-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
} */

/* Foundation section */

.foundation-section {
    padding: 5rem 0;
}



.scripture-card {
    background: linear-gradient(135deg, rgba(88, 102, 66, 0.05), rgba(134, 0, 133, 0.05));
    border: 1px solid rgba(134, 0, 133, 0.1);
}

.mission-card,
.goals-card {
    transition: var(--transition);
    border: 1px solid #f0f0f0;
}

.mission-card:hover,
.goals-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-lg);
}



.registration-form {
    border: 1px solid #f0f0f0;
}


.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(134, 0, 133, 0.25);
}

.future-vision {
    background: linear-gradient(135deg, rgba(88, 102, 66, 0.05), rgba(134, 0, 133, 0.05));
    border: 1px solid rgba(134, 0, 133, 0.1);
}



.foundation-icon-container img {
    width: 50px;
    height: 50px;
    background: rgba(88, 102, 66, 0.1);
    border-radius: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.foundation-icon img{
    width: 130px;
    height: 100px;
    font-size: 5.5rem;
    color: var(--secondary-color);
}

.foundation-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.foundation-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.scripture-section {
    background: linear-gradient(135deg, rgba(88, 102, 66, 0.05), rgba(134, 0, 133, 0.05));
    border-radius: var(--border-radius);
    padding: 3rem;
}

.scripture-icon {
    font-size: 3rem;
    color: var(--secondary-color);
}

.scripture-quote {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.scripture-reference {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
}

.foundation-card {
    background: white;
    border-radius: var(--border-radius);
    border: 2px solid transparent;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    overflow: hidden;
}

.foundation-card:hover {
    border-color: rgba(88, 102, 66, 0.3);
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-lg);
}

.foundation-card-header {
    background: linear-gradient(135deg, var(--secondary-color), #4a5138);
    color: white;
    padding: 1.5rem;
    display: flex;
    align-items: center;
}

.foundation-card-header h4 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.foundation-card-header i {
    font-size: 1.5rem;
}

.foundation-card-body {
    padding: 1.5rem;
}

.foundation-goals {
    list-style: none;
    padding: 0;
    margin: 0;
}

.foundation-goals li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 1.5rem;
}

.foundation-goals li:last-child {
    border-bottom: none;
}

.foundation-goals li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1rem;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
}

.training-details {
    background: var(--light-bg);
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
}

.training-feature {
    padding: 1.5rem;
}

.training-feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.training-feature h5 {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.75rem;
}

.training-feature p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.foundation-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-lg);
    overflow: hidden;
    border: 2px solid rgba(88, 102, 66, 0.2);
}

.form-header {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 2rem;
    text-align: center;
}

.foundation-form-header h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.foundation-form-header p {
    margin: 0;
    opacity: 0.9;
}

.foundation-form {
    padding: 2rem;
}

.foundation-form .form-label {
    font-weight: 600;
    color: var(--text-color);
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.foundation-form .form-label i {
    background: linear-gradient(135deg, var(--secondary-color), #4a5138);

    color: var(--primary-color);

}
 
.foundation-form .form-control,
.foundation-form .form-select {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: var(--transition);
}

.foundation-form .form-control:focus,
.foundation-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(134, 0, 133, 0.25);
}



.future-vision {
    background: linear-gradient(135deg, rgba(88, 102, 66, 0.05), rgba(134, 0, 133, 0.05));
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
    margin-top: 3rem;
}

.future-vision-icon {
    font-size: 3rem;
    color: var(--secondary-color);
}

.future-vision h4 {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.future-vision p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.whatsapp-float {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 80px;
  right: 40px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}
.whatsapp-float i {
  margin-top: 16px;
}
.whatsapp-float:hover {
  background-color: #20b358;
  color: #fff;
}
/* Responsive Design */
@media (max-width: 1200px) {
    .process-arrow {
        display: none;
    }
    
    .process-steps {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .floating-cards {
        display: none;
    }
    
    .achievement-1,
    .achievement-2 {
        position: relative;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        margin: 1rem 0;
    }
    
    .contact-info {
        padding-left: 0;
        margin-top: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-form-container {
        padding: 2rem 1.5rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
    
    .project-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .btn-group-filters {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .btn-filter {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
        margin-bottom: 0.5rem;
    }
    
    .event-content {
        padding: 1.25rem;
    }
    
    .event-title {
        font-size: 1rem;
    }
    
    .event-detail {
        font-size: 0.8rem;
    }
    
    .event-register-btn {
        font-size: 0.8rem;
        padding: 0.625rem 0.875rem;
    }
    
    .project-tabs .nav-link {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        margin: 0 0.25rem;
    }
    
    .foundation-title {
        font-size: 2rem;
    }
    
    .scripture-section {
        padding: 2rem 1.5rem;
    }
    
    .scripture-quote {
        font-size: 1.1rem;
    }
    
    .foundation-card-header {
        padding: 1.25rem;
    }
    
    .foundation-card-body {
        padding: 1.25rem;
    }
    
    .training-details {
        padding: 2rem 1rem;
    }
    
    .foundation-form {
        padding: 1.5rem;
    }
    
    .foundation-form-header {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .value-card {
        padding: 1.5rem 1rem;
    }
    
    .value-icon {
        width: 50px;
        height: 50px;
    }
    
    .value-icon i {
        font-size: 1.2rem;
    }
    
    .tagline {
        font-size: 1.4rem !important;
    }
    
    .events-section {
        padding: 3rem 0;
    }
    
    .event-image-container {
        height: 180px;
    }
    
    .event-content {
        padding: 1rem;
    }
    
    .btn-filter {
        padding: 0.5rem 0.875rem;
        font-size: 0.8rem;
    }
    
    .event-badges {
        top: 0.75rem;
        left: 0.75rem;
    }
    
    .event-date {
        top: 0.75rem;
        right: 0.75rem;
        padding: 0.375rem;
        min-width: 40px;
    }
    
    .date-day {
        font-size: 1rem;
    }
    
    .date-month {
        font-size: 0.7rem;
    }
    
    .project-tabs .nav-link {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        margin: 0.25rem;
    }
    
    .foundation-icon-container {
        width: 60px;
        height: 60px;
    }
    
    .foundation-icon {
        font-size: 2rem;
    }
    
    .foundation-title {
        font-size: 1.75rem;
    }
    
    .scripture-section {
        padding: 1.5rem 1rem;
    }
    
    .scripture-icon {
        font-size: 2.5rem;
    }
    
    .scripture-quote {
        font-size: 1rem;
    }
    
    .training-feature {
        padding: 1rem;
    }
    
    .training-feature-icon {
        font-size: 2.5rem;
    }
    
    .training-details {
        padding: 1.5rem 0.75rem;
    }
    
    .foundation-form-header h4 {
        font-size: 1.25rem;
    }
    
    .future-vision {
        padding: 2rem 1rem;
    }
    
    .future-vision-icon {
        font-size: 2.5rem;
    }
}