 /* General Styles */
html {
    scroll-behavior: smooth;
}


body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
   /* background-color: #060c25;*/
    color: #ffffff;
    
}


.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%; 
    padding: 0 20px; 
}


.cont {
    width: 100%;
    max-width: 1250px;
    margin: auto;  
    font-size: 18px; 
    padding: auto;
    align-content: center;
    
}
/* Header */
header {
   /* background-color: #060c25;*/
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo container flex */
.logo {
    display: flex;
    align-items: center;
    flex: 1; 
}

#logo {
    height: 105px;
    margin-right: 15px;
}

.chapter-info h1 {
    font-size: 20px;
    font-weight: bold;
    margin: 0;
    line-height: 1.2;
}

.chapter-info h2 {
    font-size: 16px;
    margin: 0;
    font-weight: 400;
}

/* Navigation Bar */
nav {
    display: flex;
    align-items: center;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

nav li {
    margin-left: 20px;
    padding: 4px;
}

nav a {
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
    font-size: 19px;
}

nav a:hover {
    color: #d3b3ff;
}

#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1; 
}
/* Hero Section */
.hero { 
    /*background-color: #060c25;*/
    padding: 90px 0;
    text-align: center;
}

.hero h2 {
    margin-bottom: 20px;
    font-size: 46px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 20px;
}

.cta-button {
    background-color: #0077cc;
    color: #ffffff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

.cta-button:hover { 
    background-color: #d3b3ff;
}
/* Section Styles */
.section {
    padding: 40px 0;
}

.section h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 32px;
}
/*About Section*/
.about-section {
    padding: 50px 20px;
    
  }
  
  .about-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
  }
  
  .about-text {
    flex-basis: 50%;
    padding: 20px;
  }
  
  .about-text h2 {
    font-size: 2.2rem;
    color: #0077cc;
    margin-bottom: 1rem;
  }
  
  .about-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ffffff;
  }
  
  .about-image {
    flex-basis: 45%;
  }
  
  .about-image img {
    width: 95%;
    border-radius: none;
  }
  
  /* Media Queries for Mobile */
  @media (max-width: 768px) {
    .about-container {
      flex-direction: column;
      text-align: center;
    }
  
    .about-text {
      flex-basis: 100%;
    }
  
    .about-image {
      flex-basis: 100%;
      margin-bottom: 20px;
    }
  }
  

/* Team Section */

.carousel-container {
    position: relative;
    display: flex;
    width: 100%;
    overflow: hidden;
  }

  .carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }

  .carousel-slide {
    background-color: #000000;
    border: 2px solid #0077cc;
    border-radius: 2px;
    margin: 8px;
    text-align: center;
    padding: 31px;
    width: 230px; 
    flex-shrink: 0; 
    transition: transform 0.3s ease;
    position: relative;
  }

  .carousel-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: none;
  }

  .carousel-slide h3 {
    margin: 15px ;
    font-size: 1.2em;
    color: #0077cc;
  }

 
.social-links {
    display: none;
    position: absolute;
    bottom: 20px;
    width: 90%;
    justify-content: center; 
    transform: translateY(-225px);
    transition: justify-content 0.3s ease, right 0.3s ease;
}

/* Show social links on hover */
.carousel-slide:hover .social-links {
    display: flex;
    justify-content: flex-end; 
    padding-right: 10px; 
}


  .social-links a {
    font-size: 1.5em;
    transition: color 0.3s ease;
    display: inline-block;
    width: 54px;
    height: 54px;
  }

  .social-links a:hover {
    color: #fff;
  }

  .carousel-slide:hover {
    transform: translateY(-5px);
    background-color: #0f0f0f;
  }


  /* Arrows */
  .prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgb(0, 0, 0);
    padding: 10px;
    cursor: pointer;
    color: white;
    font-size: 25px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
  }

  .prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
  }

  .prev {
    left: 5px;
  }

  .next {
    right: 15px;
  }


/* Events Section */
.events-section {
    display: flex;
    flex-wrap: wrap; 
    gap: 20px;
    justify-content: center;
    padding: 40px 0;
    overflow-x: hidden; 
}


.event-card {
    flex: 1 1 calc(25% - 20px);
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    width: 300px;
    height: 500px;
    flex-shrink: 0;
    border-radius: 20px;
    background-color: #000;
}

.event-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: opacity 0.3s ease;
}


.event-card:hover {
    transform: scale(1.04); 
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.event-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.6); 
    padding: 20px;
    text-align: center;
    color: #ffffff;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Show info on hover */
.event-card:hover .event-info {
    opacity: 1;
}

.event-title {
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 10px;
}

.event-description {
    font-size: 1em;
    margin-bottom: 15px;
}

/* 'See More' button styling */
.see-more {
    background-color: transparent;
    border: 2px solid #00d1ff;
    border-radius: 25px;
    padding: 10px 20px;
    color: #00d1ff;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.see-more:hover {
    background-color: #00d1ff;
    color: #ffffff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .event-card {
        flex: 1 1 100%; 
    }
}
/* Contact us */
.contact-form {
    max-width: 600px;
    margin: 40px auto; 
    padding: 30px;
    border-radius: 10px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    color: #fff;
}

.contact-form h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #0056b3; 
}

.contact-form p {
    font-size: 1rem;
    color: #bbb; 
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

label {
    font-weight: bold;
    font-size: 1rem;
    color: #ccc; 
}

input, textarea {
    padding: 15px;
    background-color: #444; 
    border: 2px solid transparent;
    border-radius: 5px;
    color: #fff;
    font-size: 1rem;
    transition: border-color 0.3s;
}

input:focus, textarea:focus {
    border-color: #007BFF; 
    outline: none; 
}

button {
    padding: 12px 25px;
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #0056b3; 
}

.contact-form .cont p {
    text-align: center;
    font-size: 0.9rem;
    margin-top: 10px;
    color: #999;
}

/* Add responsive design for mobile */
@media screen and (max-width: 600px) {
    .contact-form {
        padding: 20px;
        margin: 20px;
    }

    .contact-form h2 {
        font-size: 1.8rem;
    }

    .contact-form p {
        font-size: 0.9rem;
    }

    input, textarea {
        font-size: 0.9rem;
    }

    button {
        font-size: 0.9rem;
    }
}


/* Contact Form Styling */
.contact-form-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin: 0 auto;
    max-width: 1100px;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-info {
    flex: 1;
    max-width: 400px;
}

.contact-form {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 100px;
}

.input-group {
    display: flex;
    flex-direction: column;
}

label {
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

input, textarea {
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    width: 100%;
    box-sizing: border-box;
    transition: border 0.3s ease;
}

input:focus, textarea:focus {
    border-color: #007bff;
    outline: none;
}

textarea {
    resize: vertical;
}

.button-container {
    display: flex;
    justify-content: flex-start;
}

button {
    padding: 0.75rem 2rem;
    background-color: #0077cc;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #d3b3ff;
}

.contact-form-container a {
    color: #007bff;
    text-decoration: none;
}

.contact-form-container a:hover {
    text-decoration: underline;
}

.social-linkscont {
    margin-top: 20px;
}

.social-linkscont a {
    color: #ffffff;
    font-size: 2.6em;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.social-linkscont a:hover {
    color: #0077cc; 
}


/* Responsive Design */
@media (max-width: 768px) {
    .contact-form-container {
        flex-direction: column;
    }

    .contact-info, .contact-form {
        max-width: 100%;
    }
}


footer {
    background-color: #000;
    text-align: center;
    padding: 10px 0;
   /* color: #060c25;*/
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
}
