

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --dark-color: #1f2937;
    --light-gray: #f3f4f6;
    --text-color: #374151;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}


.navbar {
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.nav-link {
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}


.hero-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    min-height: 90vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><path d="M0 0L100 100M100 0L0 100" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>');
    background-size: 100px 100px;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.fade-in {
    animation: fadeIn 1s ease-in;
}

.fade-in-delay {
    animation: fadeIn 1s ease-in 0.3s both;
}

.fade-in-delay-2 {
    animation: fadeIn 1s ease-in 0.6s both;
}

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


.mission-badge .badge {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    font-weight: 500;
    letter-spacing: 1px;
}


.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.15);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-color);
    font-size: 0.95rem;
    margin: 0;
}


.divider {
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 1rem auto;
}

.divider-light {
    width: 80px;
    height: 4px;
    background: white;
    margin: 1rem auto;
}


.feature-card {
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    background: var(--light-gray);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.feature-card p {
    color: var(--text-color);
    margin: 0;
}


.service-card {
    --background: rgba(255,255,255,0.1);
    --backdrop-filter: blur(10px);
    padding: 2rem;
    --border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    height: 460px;
    color: black;
}

.service-card:hover {
    --background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.4);
}

.service-card h4 {
    color: black;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    --color: rgba(255,255,255,0.9);
    margin: 0;
    height: 100%;
    
}

.card-text{
    font-size: 0.9rem;
    text-align: left;
}

.card {
  width: 20rem;
  --height: 350px;
  display: flex;
  flex-direction: column;
}

.card-body {
  flex: 1;
  overflow-y: auto;
  max-height: 240px;
}


.founder-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.founder-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.founder-image {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, #e0e7ff 0%, #dbeafe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#upcoming-events .card-title, #upcoming-events .card-text{
    text-align: center;
}

.founder-info {
    padding: 1.5rem;
    text-align: center;
}

#founderMessageText{
    text-align: justify;
}

.founder-info h5 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.founder-info .text-primary {
    color: var(--primary-color) !important;
    font-weight: 600;
}


.contact-form-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.contact-form-card .form-control,
.contact-form-card .form-select {
    border: 2px solid #e5e7eb;
    padding: 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}


.btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-outline-light {
    border: 2px solid white;
    padding: 0.75rem 2rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}


footer {
    border-top: 1px solid rgba(255,255,255,0.1);
}


@media (max-width: 768px) {
    .hero-section {
        min-height: 70vh;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}


html {
    scroll-behavior: smooth;
}


section {
    scroll-margin-top: 70px;
}


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

.animate-on-scroll {
    animation: slideInUp 0.6s ease-out;
}

.info-bar {
    background-color: var(--dark-color);
    color: white;
    text-align: center;
    padding: 0.25rem 0;
    font-size: 0.9rem;
    height: 38px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    
}

.logo{
    height: 65px;
    width: auto;
    object-fit: contain;
}
.navbar{
    padding: 0 0 0;
}

.body{
    --height: 100vh;
}

.info-bar > .left, .info-bar > .right{
    display: flex;
    margin: 0 1rem;
    gap: 10px;
}

.info-bar > .right a{
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 300;
    gap: 5px;
}

#founderMessage{
    text-align: justify;
}

.info-bar > .right > .links{
    display: flex;
    margin: 0 1rem;
    gap: 10px;
    align-items: center;
}

.info-bar > .left a{
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 300;
    gap: 5px;
}

/* .info-bar > .right > .contact{
    height: 100%;
    display: inline-block;
    background-color: red;

    

} */


.info-bar .right {
    display: flex;          
    align-items: stretch;    
    gap: 15px;
    padding-right: 50px;
}

.info-bar .right .contact {
    background: #cf2e2e;
    color: white;
    border-radius: 0px;
    padding: 0 14px;
    height: 38px;
    align-items: center;
    display: flex;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    margin-left: 5px;
}



.info-bar > .left > ul, .info-bar > .left > ul > li{
    display: flex;
    margin: 0 1rem;
    gap: 2px;
}



.info-bar svg{
    height: 15px;
    width: 15px;
    margin-right: 3px;
    display: flex;
    justify-content: space-between;
}

.info-bar svg path{
    fill: white;
    
}


.site-footer {
  background: #2d3d4b;
  color: #dee6eb;
  font-family: 'Montserrat', Arial, sans-serif;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  padding: 60px 80px 30px 80px;
  gap: 40px;
}

.footer-column {
  flex: 1;
  min-width: 220px;
}

.footer-column h2 {
  color: #fff;
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: 1px;
}

.footer-column.about p {
  line-height: 1.7;
  font-size: 1.18rem;
  margin-bottom: 16px;
}

.footer-column ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.footer-column li {
  font-size: 1.08rem;
  margin-bottom: 18px;
}

.footer-column.links li a {
  color: #dee6eb;
  text-decoration: none;
  transition: color .2s;
}
.footer-column.links li a:hover {
  color: #2096f3;
}


.footer-bottom-bar {
  --background: #25323d;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 80px 22px 80px;
  position: relative;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-bottom-bar{
    gap: 20px;
    font-size: 0.8rem;
    background: linear-gradient(to right, #f5f5f5, #dcdcdc);
    color: black;
    
}

.footer-info{
    text-align: center;
}

.footer-info-title{
    font-weight: 600;
    font-size: 1rem;
}

.footer-info-details{
    font-size: 0.8rem;
    line-height: 1.4;
    
}

.footer-column.services li a {
  color: #dee6eb;
  text-decoration: none;
  transition: color .2s;
}
.footer-column.services li a:hover {
  color: #2096f3;
}

.footer-info-details > a{
    color: black;
    text-decoration: none;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #dee6eb;
}

.footer-logo img {
  height: 75px;
  width: auto;
}

/* .whatsapp-btn {
  display: flex;
  align-items: center;
  background: #25d366;
  color: #fff;
  border-radius: 24px;
  padding: 0 19px;
  height: 54px;
  font-size: 1.28rem;
  font-weight: 500;
  text-decoration: none;
  gap: 10px;
  margin-left: 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  transition: background 0.2s;
  position: absolute;
  right: 100px;
}
.whatsapp-btn:hover { background: #1ebc59; } */

/* .whatsapp-btn svg {
  height: 31px;
  width: 31px;
  flex-shrink: 0;
} */

.back-to-top {
  position: absolute;
  right: 34px;
  bottom: 12px;
  display: flex;
  align-items: center;
}

.back-to-top svg {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #167ee6;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 2px;
}

@media (max-width: 900px) {
  .footer-main, .footer-bottom-bar {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 16px;
    gap: 24px;
  }

  .footer-logo, .footer-bottom-bar { padding: 0 12px; }
  .footer-column { min-width: 170px; }
  .whatsapp-btn, .back-to-top { position: static; margin: 0; }
}

.main-desc > p{
     font-family: "Poppins", sans-serif;
     font-weight: 300;
     font-size: 1rem;
     
     text-align: justify;
}

.main-desc > p > span{
    font-weight: 500;
}

.services-cards{
    gap: 50px;
    justify-content: center;
}

.card{
    padding: 0;
    width: 20rem;
    
}

.card-img-top{
    width: 100%;
  height: 200px;  
  object-fit: cover;
}

.founder-image{
    height: auto;
    overflow: visible;
}

.founder-card {
    padding: 15px;
    max-width: 540px;
    margin: 0 auto;
}



.founder-info h5 {
    font-size: 1.1rem;
}

.footer-main h2{
    font-family: 'Montserrat', sans-serif;
}

.footer-main p{
    font-size: 0.8rem !important;
    text-align: justify;
}


.accordion-button {
  background: none;
  box-shadow: none;
  font-size: 1.1rem;
}

.accordion-button::after {
  display: none !important;
}

.accordion-button span:first-child {
  font-size: 1.2rem;
}

.carousel-item img{
    --height: 600px;
    width: 100%;
    height: 100vh;
    object-fit: fill;
}

@media (max-width: 1200px) {
    .carousel-item img{
        height: 50vh;
        object-fit: cover;
    }
}

@media (max-width: 780px){
    .carousel-item img{
        height: 40vh;
        object-fit: fill;
    }
}

#ranchiImg{
    width: 90%;
    height: auto;
}

.card-title{
    font-family: "Inter", sans-serif;
}

  .info-bar > .right{
    padding-right: 40px;
  }

@media (max-width: 820px) {
  .info-bar {
    flex-direction: column;
    height: auto;
    padding: 8px 0;
    gap: 8px;
  }

}

/* @media (min-width: 450px) {
    #line {
        display: inline-block;
    }

    #envelope {
        display: none;
    }
}

@media (max-width: 450px) {
    #line {
        display: none;
    }

    #envelope {
        display: inline-block;
    }
} */


.accordion-item span{
    font-family: 'Inter', sans-serif;
}

@media (max-width: 550px) {
  .info-bar > .left > ul, .info-bar > .right {
    flex-direction: column;
    height: auto;
    padding: 8px 0;
    gap: 8px;
  }

  .info-bar > .right{
    padding-right: 0px;
  }

  .info-bar > .right > .links{
    justify-content: center;
  }

  .info-bar > .left  li {
    justify-content: center;
  }

  .info-bar .right .contact{
    margin-left: 0px;
  }

}

@media (max-width: 650px) {
  .footer-left {
    flex-direction: column;
    
  }

}

.event-cards{
    gap: 50px;
    justify-content: center;
}

#upcoming-events {
    box-shadow: 4px 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card-area{
    display: flex;
    justify-content: center;
}

/*  */


.footer-info{
    text-align: left !important;
}

/* #founderMessage p{
    text-align: justify !important;
} */