* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    scroll-behavior: smooth;
    text-decoration: none;
  }
  :root {
    /* --text-color: #5d5a88; */
    --second-text-color: #000;
    --third-text-color: #9795b5;
    --button-color: #2b87cb;
    --hover-color: #191b45;
    --bg-color: #ffffff;
    --second-bg-color: #aae5f2;
    --big-font: 2.5rem;
    --normal-font: 1.5rem;
    --transition: all 0.3s ease;
    --white: #fff;
    

    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-bg: #f5f8fa;
    --dark-bg: #2c3e50;
    --success-color: #2ecc71;
    --warning-color: #f39c12;
    --border-radius: 8px;
    --box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    --transition: all 0.3s ease;
  }
  
  body {
    font-family: "Lato", sans-serif !important;
  }

  h1, h2, h3 {
    font-weight: 600 !important;
  }

  p, a {
    font-size: 18px;
  }

  a {
    text-decoration: none;
  }

  @media (max-width: 992px) {
    section {
      padding: 30px 10px !important;
    }
  }
  
  /* Navbar Section ---------- */
  .navbar {
    background-color: var(--second-bg-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 6px 5% !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .navbar-logo {
    display: flex;
    align-items: center;
    padding-left: 100px;
  }
  
  .navbar-logo img {
    width: 55px;
  }
  
  .nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0 !important;
  }
  
  .nav-links li {
    position: relative;
    margin-left: 30px;
    transition: all 0.3s ease; /* Add this */
  }
  .nav-links > li {
    z-index: 100; /* Add this */
  }
  .nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
  }
  
  .nav-links a:hover {
    color: var(--button-color);
  }
  
  .nav-links a.active {
    color: var(--hover-color);
  }
  
  .dropdown-icon {
    margin-left: 5px;
    transition: var(--transition);
    font-size: 0.7em;
  }
  
  .nav-links li:hover .dropdown-icon {
    transform: rotate(180deg);
  }
  
  .dropdown-menu {
    position: absolute;
    top: 100%;
    right: 30%;
    transform: translateX(20%);
    background-color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 15px 0;
    width: 850px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 100;
    pointer-events: none; /* Add this */
  }
  /* Dropdown content wrapper */
  .dropdown-content {
    display: flex;
    width: 100%;
  }
  
  /* Links section */
  .dropdown-links {
    flex: 1;
    padding: 20px;
  }
  
  .dropdown-links li {
    margin: 0;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
  }
  
  .dropdown-links li:last-child {
    border-bottom: none;
  }
  
  .dropdown-links a {
    display: block;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
    padding: 8px 0;
  }
  
  .dropdown-links a:hover {
    color: var(--hover-color);
    padding-left: 10px;
  }
  
  /* Image section */
  .dropdown-image {
    width: 600px;
    background: #f5f5f5;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    overflow: hidden;
  }
  
  .dropdown-image img {
    width: 98%;
    height: 100%;
    object-fit: cover;
  }
  
  /* Hover state */
  .nav-links li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
  }
  
  .nav-links li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto; /* Add this */
  }
  
  .dropdown-menu li {
    margin: 0;
    padding: 10px 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .dropdown-menu li:last-child {
    border-bottom: none;
  }
  
  .donate-btn {
    background-color: var(--button-color);
    color: var(--second-bg-color) !important;
    padding: 8px 20px;
    border-radius: 8px;
    transition: var(--transition);
  }
  
  .donate-btn:hover {
    background-color: var(--bg-color);
    transform: translateY(-2px);
  }
  
  .burger {
    display: none;
    cursor: pointer;
  }
  
  .burger div {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px;
    transition: all 0.3s ease;
  }
  
  /* Mobile responsiveness */
  @media screen and (max-width: 992px) {
    body {
      overflow-x: hidden;
    }
  
    .nav-links {
      position: absolute;
      right: 0;
      top: 70px;
      background-color: var(--bg-color);
      flex-direction: column;
      align-items: flex-start;
      width: 100%;
      padding: 20px 5%;
      box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
      transform: translateX(100%);
      transition: transform 0.5s ease-in;
    }
  
    .nav-links.active {
      transform: translateX(0);
    }
  
    .nav-links li {
      margin: 15px 0;
      width: 100%;
    }
  
    @media screen and (max-width: 992px) {
      .dropdown-menu {
        display: none !important;
        position: static !important;
        width: 100% !important;
        opacity: 1 !important;
        visibility: visible !important;
        box-shadow: none !important;
        padding: 0 !important;
        margin-top: 0;
        background: #f9f9f9;
        border: none !important;
        max-height: 0;
        overflow: hidden;
        right: 0px !important;
        transform: none !important;
        transition: max-height 0.3s ease, padding 0.3s ease;
      }
  
      .dropdown-menu.active {
        display: block !important;
        max-height: 1000px; /* Adjust based on content */
        padding: 15px 0 !important;
      }
  
      .dropdown-content {
        flex-direction: column;
      }
  
      .dropdown-image {
        width: 100% !important;
        height: 200px;
        border-radius: 0 !important;
        margin-bottom: 15px;
      }
  
      .dropdown-links li {
        padding: 10px 25px !important;
      }
    }

    .navbar {
      padding: 6px 5% !important;
    }

    .navbar-logo {
      padding-left: 0;
    }
    .navbar-logo img{
      width: 50px;
    }
    .dropdown-links {
      padding: 15px;
    }
  
    .nav-links li:hover .dropdown-menu {
      display: none;
    }
  
    .dropdown-menu.active {
      display: block;
    }
  
    .dropdown-menu li {
      padding: 10px 0 10px 20px;
    }
  
    .burger {
      display: block;
    }
  }
  @media screen and (min-width: 993px) {
    .dropdown-menu {
      display: block !important; /* Override any mobile styles */
    }
  
    .nav-links li:hover .dropdown-menu {
      opacity: 1 !important;
      visibility: visible !important;
      pointer-events: auto !important;
    }
  }
  /* Burger animation */
  .toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
  }
  
  .toggle .line2 {
    opacity: 0;
  }
  
  .toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
  }
  
  /* Navbar End------ */
  
  /* Hero Section Begins-------------- */
  
  /* Hero Slider Styles */
  .hero-slider {
    position: relative;
    overflow: hidden;
    margin-top: 80px;
  }
  
  .hero-slider .carousel {
    height: 100vh;
    min-height: 600px;
  }
  
  .hero-slider .carousel-inner,
  .hero-slider .carousel-item {
    height: 100%;
  }
  
  .hero-slider .carousel-item img {
    object-fit: cover;
    height: 100%;
    filter: brightness(0.7);
  }
  
  .hero-slider .carousel-caption {
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    padding: 0;
  }
  
  .hero-slider h1 {
    font-size: var(--big-font);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  }
  
  .hero-slider p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  }
  
  .hero-slider .btn {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .hero-slider .btn-primary {
    background-color: var(--button-color);
    border-color: #4a6bff;
  }
  
  .hero-slider .btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--hover-color);
    transform: translateX(5px);
  }
  
  .hero-slider .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
    color: var(--button-color);
  }
  
  .hero-slider .btn i {
    transition: transform 0.3s ease;
  }
  
  .hero-slider .btn:hover i {
    transform: translateX(3px);
  }
  
  /* Carousel Indicators */
  .hero-slider .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 8px;
    border: 2px solid transparent;
    background-color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
  }
  
  .hero-slider .carousel-indicators button.active {
    background-color: #fff;
    transform: scale(1.2);
    border-color: #fff;
  }
  
  /* Carousel Controls */
  .hero-slider .carousel-control-prev,
  .hero-slider .carousel-control-next {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .hero-slider:hover .carousel-control-prev,
  .hero-slider:hover .carousel-control-next {
    opacity: 1;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 992px) {
    .hero-slider {
      margin-top: 70px;
    }
    .hero-slider h1 {
      font-size: 2.5rem;
    }
  
    .hero-slider p {
      font-size: 1.1rem;
    }
  
    .hero-slider .btn-group {
      flex-direction: column;
      gap: 1rem;
    }
  
    .hero-slider .btn {
      width: 100%;
    }
  }
  
  @media (max-width: 768px) {
    .hero-slider h1 {
      font-size: 2rem;
    }
  
    .hero-slider p {
      font-size: 1rem;
    }
  
    .hero-slider .carousel {
      min-height: 500px;
    }
    .hero-slider .carousel-control-prev,
    .hero-slider .carousel-control-next {
      display: none;
    }
  }
  /* End Of Hero Section---------- */
  
  /* About Section */
  .about-section {
    background-color: #f8f9fa;
    padding: 80px 0;
  }
  
  /* Image Stack Container */
  .image-stack {
    position: relative;
    width: 100%;
    padding-top: 75%; /* Maintain aspect ratio */
  }
  
  /* Bottom Image */
  .img-stack-bottom {
    position: absolute;
    width: 55%;
    bottom: 0;
    left: 0;
    z-index: 1;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }
  
  /* Top Image (Overlapping) */
  .img-stack-top {
    position: absolute;
    width: 55%;
    top: 0;
    right: 0;
    z-index: 2;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }
  
  .learn-btn {
    padding: 0.75rem 1.5rem !important;
    font-weight: 600;
    border-radius: 0px 50px 50px 0px !important;
    transition: all 0.3s ease !important;
    color: var(--bg-color) !important;
    letter-spacing: 1px;
    background-color: var(--button-color) !important;
  }
  
  .learn-btn:hover {
    background-color: var(--second-bg-color) !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
    color: var(--text-color) !important;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 992px) {
    .img-stack-bottom,
    .img-stack-top {
      width: 75%;
    }
  
    .img-stack-top {
      right: 5%;
    }
  }
  
  @media (max-width: 768px) {
    .image-stack {
      padding-top: 100%;
      margin-top: 40px;
    }
  
    .img-stack-bottom,
    .img-stack-top {
      width: 65%;
    }
  
    .img-stack-bottom {
      left: 5%;
    }
  
    .img-stack-top {
      right: 5%;
    }
  }
  /* End Of About Us Section------- */
  
  /* Our Team Section---------- */
  
  .team-section {
    position: relative;
    overflow: hidden;
    background-color: var(--second-bg-color);
  }
  
  /* Centered Title Styling */
  .team-section h2.display-4 {
    color: #2c3e50;
    position: relative;
  }
  
  /* Left Content Column */
  .content-col {
    min-height: 500px;
    display: flex;
    align-items: center;
  }
  
  .content-col h3 {
    font-size: var(--big-font);
    color: var(--text-color);
    margin-bottom: 1.5rem;
  }
  
  .content-col p {
    font-size: var(--normal-font);
    line-height: 1.1;
    color: var(--text-color);
  }
  
  .second-btn {
    padding: 0.75rem 1.5rem !important;
    font-weight: 600;
    border-radius: 50px 0px 0px 50px !important;
    transition: all 0.3s ease !important;
    color: var(--bg-color) !important;
    letter-spacing: 1px;
    background-color: var(--text-color) !important;
  }
  
  .second-btn:hover {
    background-color: #2980b9;
    transform: translateX(5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  /* Right Parallax Column */
  .parallax-col {
    position: relative;
    min-height: 400px;
  }
  
  .parallax-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 90%;
    height: 80%;
    background-image: url("../images/team.png");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    z-index: 1;
  }
  
  /* Mobile Responsiveness */
  @media (max-width: 992px) {
    .content-col {
      min-height: auto;
    }
  
    .parallax-col {
      min-height: 400px;
    }
  
    .parallax-image {
      background-attachment: scroll !important;
      top: 23px;
      left: 19px;
    }
  }
  
  @media (max-width: 768px) {
    .team-section h2.display-4 {
      font-size: 2.5rem;
    }
  
    .content-col h3 {
      font-size: 1.8rem;
    }
  
    .parallax-col {
      min-height: 300px;
    }
  }
  /* End Ofg Team Section --------- */
  
  /* Explore Events Section */
  .events-section {
    background-color: #f8f9fa;
  }
  
  .event-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background: var(--second-bg-color);
    height: 100%;
    margin: 0 15px;
  }
  
  .event-img {
    height: 300px;
    overflow: hidden;
  }
  
  .event-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .event-card:hover .event-img img {
    transform: scale(1.05);
  }
  
  .event-content {
    padding: 20px;
  }
  
  .event-content h3 {
    color: #2c3e50;
    margin-bottom: 10px;
  }
  
  .event-content p {
    color: #7f8c8d;
    margin-bottom: 15px;
  }
  
  .event-link {
    color: #3498db;
    font-weight: 600;
    text-decoration: none;
  }
  
  .events-slider {
    padding: 30px 10px 60px;
    width: 60%;
  }
  
  .swiper-slide {
    width: 300px;
  }
  
  .swiper-button-next,
  .swiper-button-prev {
    color: #3498db;
    top: 50%;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }
  
  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 1.2rem;
  }
  
  .swiper-pagination-bullet-active {
    background: #3498db;
  }
  
  @media (max-width: 768px) {
    .swiper {
      padding: 0;
      width: 100%;
    }
    .swiper-slide {
      width: 280px;
    }
  
    .event-img {
      height: 180px;
    }

  
  }
  /* End Of Events Section--- */
  
  /* Partnership Section----------- */
  
  /* Blogs Section------- */
  /* Blogs Section Styling */
  .blogs-section {
    background-color: #f8f9fa;
  }
  
  .blog-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .blog-img {
    height: 200px;
    overflow: hidden;
  }
  
  .blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .blog-card:hover .blog-img img {
    transform: scale(1.05);
  }
  
  .blog-content {
    display: flex;
    flex-direction: column;
    height: calc(100% - 200px);
  }
  
  .blog-content h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #212529;
  }
  
  .blog-content p {
    color: #6c757d;
    flex-grow: 1;
  }
  
  /* Responsive Layout */
  @media (max-width: 767.98px) {
    .blog-img {
      height: 180px;
    }
  
    .blog-content {
      padding: 1.5rem;
    }
  }
  /* Gallerry Section-------------- */
  .gallery-slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
  }
  
  .gallery-slider-track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: scroll 30s linear infinite;
  }
  
  .gallery-card {
    flex-shrink: 0;
    width: 300px;
    height: 200px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }
  
  .gallery-card img {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    /* filter: grayscale(100%); */
  }
  .gallery-card:hover img {
    filter: grayscale(0%);
  }
  
  /* Footer Section----- */
  /* Footer Section */
  .footer-section {
    background-color: var(--hover-color) !important;
    color: var(--text-color);
    padding: 60px 0 0;
    position: relative;
  }

  .footer-section h5 {
    font-size: 24px;
    font-weight: 700;
  }
  
  .footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
  }
  
  /* Left Column */
  .footer-left {
    flex: 1;
    min-width: 300px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
  }
  
  .footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
  }
  
  .footer-logo {
    height: 50px;
    width: auto;
  }
  
  .school-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
  }
  
  .footer-left h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 600;
  }
  
  .footer-left ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-left ul li {
    margin-bottom: 12px;
  }
  
  .footer-left ul li a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-left ul li a:hover {
    color: var(--hover-color);
  }
  
  .footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #ecf0f1;
  }
  
  .footer-contact i {
    width: 20px;
    text-align: center;
  }
  
  /* Right Column */
  .footer-right {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
  }
  
  .newsletter-box {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .newsletter-box h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.3rem;
  }
  
  .newsletter-box p {
    color: #7f8c8d;
    margin-bottom: 20px;
    line-height: 1.6;
  }
  
  .newsletter-form {
    display: flex;
    gap: 10px;
  }
  
  .newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
  }
  
  /* Divider Line */
  .footer-divider {
    height: 2px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 20px 0;
  }
  
  /* Footer Bottom */
  /* Custom Footer Styles */
  /* Floating Buttons */
  .floating-button {
      position: fixed;
      width: 50px;
      height: 50px;
      right: 20px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 99;
      color: white;
      font-size: 24px;
      text-decoration: none;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      transition: all 0.3s ease;
  }
  
  .floating-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  }
  
  /* WhatsApp Button */
  .whatsapp-btn {
      background-color: #25D366; /* WhatsApp green */
      bottom: 20px;
  }
  
  /* Back to Top Button */
  .back-to-top {
    position: fixed;
    bottom: 80px;
    display: none;
    background: var(--button-color);
    color: white;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.back-to-top.active {
    display: block;
    opacity: 1;
}
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
      .floating-button {
          width: 45px;
          height: 45px;
          font-size: 20px;
      }
  }
  /* Link Hover Effects */
  .footer-section a {
    transition: all 0.2s ease;
  }
  
  .footer-section a:hover {
    color: var(--second-bg-color) !important;
  }
  
  /* Social Icons with White Circles */
  .social-icon {
    width: 36px;
    height: 36px;
    transition: all 0.3s ease;
    text-decoration: none !important;
  }
  
  .social-icon:hover {
    transform: translateY(-3px);
  }
  
  /* Individual icon colors on hover */
  .social-icon:hover .fa-facebook-f {
    color: #3b5998 !important;
  }
  .social-icon:hover .fa-twitter {
    color: #1da1f2 !important;
  }
  .social-icon:hover .fa-instagram {
    color: #e1306c !important;
  }
  .social-icon:hover .fa-linkedin-in {
    color: #0077b5 !important;
  }
  .social-icon:hover .fa-youtube {
    color: #ff0000 !important;
  }
  /* Responsive Adjustments */
  @media (max-width: 767.98px) {
    .footer-section .col-6 {
      margin-bottom: 1.5rem;
    }
  
    .footer-section .bg-white {
      margin-top: 1.5rem;
    }
  }
  
  /* About Us Page------------- */
  /* Hero Section */
  .about-hero {
    /* background-image: url("../images/about-home.png"); */
    background-size: cover;
    background-position: center;
    height: 65vh;
    position: relative;
    display: flex;
    align-items: center;
  }
  
  /* Intro Section */
  /* .about-intro {
    background-color: var(--second-bg-color);
    border-radius: 20px 0px;

  } */
  
  .about-intro h2 {
    color: #000;
    position: relative;
  }
  
  /* Mission Section */
  .mission-section {
    background-color: var(--bg-color);
  }

  .mission-section h3, .vision-section h3 {
    font-size: 28px;
  }
  
  .mission-content {
    background-color: var(--hover-color);
    color: var(--bg-color);
    padding: 50px;
    border-top-left-radius: 50px;
    /* border-bottom-left-radius: 50px; */
    position: relative;
    z-index: 1;
  }
  
  .mission-image img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    position: relative;
    z-index: 2;
    margin-left: -50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }
  
  /* Vision Section */
  .vision-section {
    background-color: var(--bg-color);
  }
  
  .vision-content {
    background-color: var(--hover-color);
    color: var(--bg-color);
    padding: 50px;
    border-top-right-radius: 50px;
    /* border-bottom-right-radius: 50px; */
    position: relative;
    z-index: 1;
  }
  
  .vision-image img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    position: relative;
    z-index: 2;
    margin-left: 80px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }
        /* Team Card Styles */
        .team-section {
            position: relative;
            overflow: hidden;
        }
        
        .team-card {
            height: 100%;
            perspective: 1000px;
            transition: all 0.3s ease;
        }
        
        .team-card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            transition: transform 0.6s;
            transform-style: preserve-3d;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            border-radius: 10px;
            overflow: hidden;
            background: white;
        }
        
        .team-card-front {
            position: relative;
            width: 100%;
            height: 100%;
            backface-visibility: hidden;
        }
        
        .team-img-wrapper {
            position: relative;
            overflow: hidden;
            height: 250px;
        }
        
        .team-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .team-card:hover .team-img-wrapper img {
            transform: scale(1.05);
        }
        
        .social-links {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            padding: 15px;
            background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }
        
        .team-card:hover .social-links {
            transform: translateY(0);
        }
        
        .social-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            margin: 0 5px;
            border-radius: 50%;
            background: rgba(255,255,255,0.9);
            color: #333;
            transition: all 0.3s ease;
        }
        
        .social-link:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        
        .social-link i {
            font-size: 16px;
        }
        
        .team-card-body {
            padding: 20px;
            text-align: center;
        }
        
        .team-card-body h5 {
            font-weight: 600;
        }
        
        /* Modal Styles */
        .modal-img-wrapper {
            position: relative;
        }
        
        .member-social-links .social-link {
            width: 40px;
            height: 40px;
            font-size: 18px;
            margin-right: 10px;
        }
        
        .member-meta {
            padding-top: 15px;
            border-top: 1px solid #eee;
        }
        
        /* Responsive adjustments */
        @media (max-width: 767.98px) {
            .modal-img-wrapper {
                height: 250px;
                position: static;
            }
        }
  
  /* Animation */
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  
  /* Responsive Design */
  @media (max-width: 992px) {
    .mission-content,
    .vision-content {
      width: 100%;
      border-radius: 20px;
      margin-bottom: 30px;
      padding: 20px;
    }
  
    .mission-image img,
    .vision-image img {
      width: 250px;
      height: 250px;
      margin: 0 auto;
      display: block;
    }
  
    .vision-content {
      text-align: left !important;
      padding: 20px;
    }

    .about-content {
      text-align: left !important;
      padding: 0;
      margin: 0;
    }
  }
  
  @media (max-width: 768px) {
    .about-hero {
      height: 50vh;
    }
  
    .mission-image img,
    .vision-image img {
      width: 200px;
      height: 200px;
    }
  
    .team-slider-track {
      animation-duration: 20s;
    }
  }
  
  @media (max-width: 576px) {
    .about-hero h1 {
      font-size: 2.5rem;
    }
  
  }
  
  .events-hero {
    height: 50vh;
    background-image: url("../images/events-home.png");
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    color: white !important;
  }
  
  /* Speakers Section------ */
  
  .speakers-section {
    background-color: #f8f9fa;
  }

  .speaker-swiper {
    padding: 30px 10px 60px;
  }
  
  /* Speaker Card */
  .speaker-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }
  
  .speaker-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  }
  
  .speaker-image {
    width: 100%;
    height: 350px;
  }
  
  .speaker-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* Speaker Info (Initially hidden on desktop) */
  .speaker-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(3px);
    padding: 20px;
    transform: translateY(100%);
    transition: all 0.3s ease;
  }
  
  .speaker-card:hover .speaker-info {
    transform: translateY(0);
  }
  
  .speaker-info h4 {
    color: var(--second-text-color);
    margin-bottom: 5px;
  }
  
  .speaker-info p {
    color: var(--second-text-color);
    margin-bottom: 0;
  }
  
  /* Mobile Styles - Always show info */
  @media (max-width: 768px) {
    .speaker-info {
      position: relative;
      transform: translateY(0);
      background: rgba(255, 255, 255, 0.3);
      backdrop-filter: blur(10px);
    }
  
    .speaker-image {
      height: 300px;
    }
    .speaker-card:hover {
      transform: none;
      box-shadow: none;
    }
    .speaker-card {
      box-shadow: none;
    }
  }
  
  /* Responsive Grid */
  @media (max-width: 576px) {
    .speaker-image {
      height: 250px;
    }
  }
  
  /* Events Details Page------------ */
 
  /* Search Box */
  .search-box {
    transition: all 0.3s ease;
    background-color: var(--second-bg-color);
  }
  
  .search-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .search-box .form-control {
    border: none;
    border-radius: 8px 0 0 8px !important;
  }
  
  .search-box .btn {
    border-radius: 0 8px 8px 0 !important;
    background-color: var(--hover-color);
  }
  .search-box .btn {
    color: var(--bg-color);
  }
  .search-box .btn:hover {
    color: var(--hover-color);
  }
  /* Categories Box */
  .categories-box {
    transition: all 0.3s ease;
    background-color: var(--second-bg-color);
  }
  
  .categories-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .categories-box a {
    transition: all 0.2s ease;
    padding: 8px 12px;
    border-radius: 6px;
  }
  
  .categories-box a:hover {
    background-color: var(--hover-color);
    padding-left: 15px;
    color: var(--bg-color) !important;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 992px) {
    .details-image {
      height: 300px;
      margin-bottom: 20px;
    }
  }
  
  @media (max-width: 576px) {
    .search-box,
    .categories-box {
      padding: 20px !important;
    }
  
    .search-box h3,
    .categories-box h3 {
      font-size: 1.5rem;
    }
  }
  
  /* Details Section down--------- */
  
  .summit-section {
    background-color: #f8f9fa;
  }
  
  /* Summit Content */
  .summit-content p {
    margin-bottom: 1.2rem;
    line-height: 1.7;
  }
  
  .summit-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }
  
  /* Recent Posts */
  .recent-posts {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background-color: var(--second-bg-color);
  }
  
  .post-item {
    transition: all 0.2s ease;
  }
  
  .post-item:hover {
    transform: translateX(5px);
  }
  
  .post-content p {
    transition: all 0.2s ease;
  }
  
  .post-item:hover p {
    color: rgba(255, 255, 255, 0.9);
  }
  
  .post-meta {
    color: var(--hover-color);
    font-size: 0.85rem;
  }
  
  .post-meta i {
    width: 16px;
    text-align: center;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 992px) {
    .summit-image {
      margin-bottom: 30px;
    }
  
    .recent-posts {
      margin-top: 20px;
    }
  }
  
  @media (max-width: 576px) {
    .post-item img {
      width: 80px !important;
      height: 80px !important;
    }
  
    .summit-content p {
      font-size: 1rem;
    }
  }
  
  /* Gallery Page 1----------- */
  .gallery-page {
    background-image: url("../images/gallery-page1.png");
    background-size: cover;
    background-position: center;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
  }
  
  /* Gallery Section */
  .gallery-section {
    background-color: #f8f9fa;
  }
  
  /* Gallery Item */
  .gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }
  
  .gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.5s ease;
  }
  
  .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    display: flex;
    align-items: flex-end;
    transition: all 0.3s ease;
    padding: 20px;
  }
  
  .gallery-caption {
    transform: translateY(20px);
    transition: all 0.3s ease;
  }
  
  .gallery-caption h5 {
    color: white;
    margin-bottom: 5px;
  }
  
  .gallery-caption p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
  }
  
  /* Hover Effects */
  .gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  }
  
  .gallery-item:hover .gallery-overlay {
    opacity: 1;
  }
  
  .gallery-item:hover .gallery-caption {
    transform: translateY(0);
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .gallery-item img {
      height: 250px;
    }
  }
  
  @media (max-width: 576px) {
    .gallery-item img {
      height: 200px;
    }
  }
  
  /* Testimonials section-- */
  
  .testimonial-section {
    position: relative;
    overflow: hidden;
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
  }
  
  .parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/about-home.png");
    background-size: cover;
    background-position: center;
    z-index: -2;
  }
  
  .testimonial-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: -1;
  }
  
  /* Testimonial Cards */
  .testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: all 0.5s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .testimonial-card:hover {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  }
  
  .testimonial-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
  }
  
  .profile-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
  }
  
  .profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .testimonial-text p {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
  }
  
  .testimonial-text p::before,
  .testimonial-text p::after {
    content: '"';
    font-size: 24px;
    color: rgba(255, 255, 255, 0.5);
  }
  
  .testimonial-text h5 {
    color: white;
    margin-bottom: 5px;
  }
  
  .testimonial-text small {
    color: rgba(255, 255, 255, 0.7);
    display: block;
  }
  
  /* Responsive Design */
  @media (max-width: 992px) {
    .testimonial-section {
      background-attachment: scroll;
    }
  
    .testimonial-card {
      padding: 25px;
    }
  }
  
  @media (max-width: 768px) {
    .testimonial-card {
      max-width: 400px;
      margin: 0 auto;
    }
  
    .profile-img {
      width: 80px;
      height: 80px;
    }
  }
  
  @media (max-width: 576px) {
    .testimonial-card {
      padding: 20px;
    }
  
    .testimonial-text p {
      font-size: 0.95rem;
    }
  }
  
  /* Testimonial Video Section */
  .testimonial-video-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
  }
  
  .video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/events-home.png");
    background-size: cover;
    background-position: center;
    z-index: -2;
  }
  
  .background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: -1;
  }
  
  .video-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  .video-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3) !important;
  }
  
  .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: all 0.3s ease;
    pointer-events: none;
  }
  
  .play-button i {
    color: white;
    font-size: 30px;
    margin-left: 5px;
  }
  
  .video-container iframe {
    border: none;
  }
  
  .testimonial-content h2 {
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  }
  
  .testimonial-content .lead {
    opacity: 0.9;
  }
  
  /* Responsive Design */
  @media (max-width: 992px) {
    .testimonial-video-section {
      padding: 80px 0;
    }
  
    .play-button {
      width: 60px;
      height: 60px;
    }
  
    .play-button i {
      font-size: 24px;
    }
  }
  
  @media (max-width: 768px) {
    .testimonial-video-section {
      padding: 60px 0;
    }
  
    .video-container {
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2) !important;
    }
  }
  
  @media (max-width: 576px) {
    .play-button {
      width: 50px;
      height: 50px;
    }
  
    .play-button i {
      font-size: 20px;
    }
  
    .testimonial-content h2 {
      font-size: 1.8rem;
    }
  }
  
  /* Gallery Page 2------ */
  /* Hero Section */
  .gallery-page2-section {
    position: relative;
    height: 90vh;
    min-height: 700px;
    overflow: hidden;
  }
  
  /* Full-Width Background Image */
  .gallery-page2-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/gallery-page1.png");
    background-size: cover;
    background-position: center;
    z-index: -1;
  }
  
  /* Dark Blue Content Box */
  .dark-blue-bg {
    background-color: var(--hover-color);
    color: white;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    margin-left: -15px;
  }
  
  /* Content Styling */
  .hero-content {
    max-width: 100%;
    padding: 2rem;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 992px) {
    .hero-section {
      height: 90vh;
      min-height: 500px;
    }
  
    .dark-blue-bg {
      width: 70%;
      margin-left: 0;
      border-radius: 8px;
      background-color: rgba(10, 36, 99, 0.9); /* Slightly transparent */
    }
  }
  
  @media (max-width: 768px) {
    .hero-section {
      height: 90vh;
      min-height: 400px;
    }
  
    .hero-content {
      padding: 1.5rem;
    }
  
    h1.display-3 {
      font-size: 1.9rem;
    }
    h1.display-4 {
      font-size: 2.5rem;
    }
  }
  
  @media (max-width: 576px) {
    .hero-section {
      height: 90vh;
    }
  
    .dark-blue-bg {
      background-color: rgba(10, 36, 99, 0.95); /* More opaque for readability */
    }
  }
  
  /* Team Page--------- */
  
  .team-hero {
    background-image: url("../images/team-hero.png");
    background-size: cover;
    background-position: top;
    height: 65vh;
    position: relative;
  }
  
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.7));
  }
  
  /* Team Hero Section */

  
  /* Team Cards */
  .our-team-card {
      background: white;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
      height: 100%;
      display: flex;
      flex-direction: column;
  }
  
  .our-team-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .team-img-wrapper {
      position: relative;
      height: 250px;
      overflow: hidden;
  }
  
  .team-img-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
  }
  
  .our-team-card:hover .team-img-wrapper img {
      transform: scale(1.05);
  }
  
  .team-social-links {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      display: flex;
      justify-content: center;
      padding: 15px;
      background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
      transform: translateY(100%);
      transition: transform 0.3s ease;
  }
  
  .our-team-card:hover .team-social-links {
      transform: translateY(0);
  }
  
  .social-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      margin: 0 5px;
      border-radius: 50%;
      background: rgba(255,255,255,0.9);
      color: #333;
      transition: all 0.3s ease;
  }
  
  .social-link:hover {
      transform: translateY(-3px);
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }
  
  .team-card-body {
      padding: 20px;
      flex-grow: 1;
  }
  
  .team-quote {
      font-style: italic;
      color: #6c757d;
      margin-bottom: 15px;
      min-height: 60px;
  }
  
  /* Modal Styles */
  .modal-img-wrapper {
      height: 100%;
      min-height: 400px;
  }
  
  .member-social-links .social-link {
      width: 40px;
      height: 40px;
      font-size: 18px;
      margin-right: 10px;
  }
  
  .member-quote {
      border-left: 3px solid var(--bs-primary);
  }
  
  /* Responsive Adjustments */
  @media (max-width: 767.98px) {
      .team-hero {
          min-height: 300px;
      }
      
      .modal-img-wrapper {
          height: 300px;
      }
      
      .team-img-wrapper {
          height: 200px;
      }
  }
  
  /* Impact Section */
  
  .impact-section {
    background-color: var(--button-color);
  }
  .impact-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
    height: 100%;
  }
  
  .impact-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
  }
  
  .impact-card i {
    color: rgba(255, 255, 255, 0.8);
  }
  
  /* Partners Section */
  /* Partners Section Styles */
.partners-section {
    background-color: #f8f9fa;
}


.partner-logo {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.partner-logo img {
    max-height: 100px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.05);
}

.partner-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .partner-logo {
        padding: 1rem;
    }
    .partner-logo img {
        max-height: 80px;
    }
}
  
  /* Responsive Design */
  @media (max-width: 992px) {
    .team-hero {
      height: 100vh;
    }
    /* .our-team-card {
      padding: 8px 15px;
    } */
  
    .team-img {
      width: 100%;
      height: 200px;
    }
  }
  
  @media (max-width: 768px) {
    .team-hero h1 {
      font-size: 2.5rem;
    }
  
  }
  
  @media (max-width: 576px) {
    .team-hero {
      height: 90vh;
    }
  }
  
  
  .learn-btn {
    background-color: #4e73df;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s;
}

.learn-btn:hover {
    background-color: #2e59d9;
    color: white;
}

/* For the email template */
.mail-button {
    background-color: #4e73df;
    color: white !important;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
    display: inline-block;
}



/* Contact section styles */
/* public/css/contact.css */

.contact-section {
  padding: 100px 0;
  background-color: #f8f9fa;
}

.contact-info {
  padding-right: 30px;
}

.contact-info h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}

.contact-info > p {
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.6;
}

.contact-details {
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  margin-bottom: 25px;
  align-items: flex-start;
}

.contact-item .icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(0, 123, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.contact-item .icon i {
  color: #007bff;
  font-size: 20px;
}

.contact-item .text h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #333;
}

.contact-item .text p {
  font-size: 15px;
  color: #666;
  margin-bottom: 0;
}

.social-links {
  display: flex;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #007bff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  color: #fff;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: #0056b3;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
  color: #fff;
  text-decoration: none;
}

.social-link i {
  font-size: 16px;
}

.contact-form-wrapper {
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #333;
}

.contact-form .form-group {
  margin-bottom: 25px;
}

.contact-form label {
  font-weight: 600;
  font-size: 14px;
  color: #555;
  margin-bottom: 8px;
  display: block;
}

.contact-form .form-control {
  height: auto;
  padding: 12px 15px;
  border-radius: 5px;
  border: 1px solid #ddd;
  font-size: 15px;
  color: #333;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.contact-form textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.contact-form .submit-btn {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 14px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.contact-form .submit-btn:hover {
  background-color: #0056b3;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.contact-form .submit-btn .btn-icon {
  margin-left: 10px;
}

.contact-form .submit-btn:disabled {
  background-color: #6c757d;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.contact-form .alert {
  margin-bottom: 20px;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .contact-info {
      padding-right: 0;
      margin-bottom: 50px;
  }
}

@media (max-width: 767px) {
  .contact-section {
      padding: 60px 0;
  }
  
  .contact-form-wrapper {
      padding: 30px;
  }
  
  .contact-info h2 {
      font-size: 30px;
  }
}

/* Stories page styles */
    /* Base Styles */
    .stories-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 5rem 1rem;
  }

  @media (min-width: 1024px) {
      .stories-container {
          padding: 10rem 0 5rem 0;
      }
  }
  
  .story-card {
      background: white;
      border-radius: 0.5rem;
      overflow: hidden;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .story-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  }
  
  .story-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
  }
  
  .story-content {
      padding: 1.5rem;
  }
  
  .story-title {
      font-size: 1.25rem;
      font-weight: 600;
      color: #1a202c;
      margin-bottom: 0.75rem;
      line-height: 1.375;
  }
  
  .story-excerpt {
      color: #4a5568;
      margin-bottom: 1rem;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
  }
  
  .story-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 0.75rem;
      font-size: 0.875rem;
      color: #718096;
  }
  
  .featured-badge {
      display: inline-block;
      padding: 0.25rem 0.5rem;
      background-color: #ebf8ff;
      color: #3182ce;
      border-radius: 9999px;
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
  }
  
  /* Single Story Styles */
  .single-story {
      max-width: 800px;
      margin: 0 auto;
      background: white;
      border-radius: 0.5rem;
      overflow: hidden;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  }
  
  .single-story-image {
      width: 100%;
      height: 400px;
      object-fit: cover;
  }
  
  .single-story-content {
      padding: 2rem;
  }
  
  .single-story-title {
      font-size: 2rem;
      font-weight: 700;
      color: #1a202c;
      margin-bottom: 1.5rem;
      line-height: 1.25;
  }
  
  .single-story-body {
      color: #2d3748;
      line-height: 1.625;
  }
  
  .single-story-body p {
      margin-bottom: 1.25rem;
  }
  
  .single-story-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 2rem;
      padding-bottom: 1.5rem;
      border-bottom: 1px solid #e2e8f0;
  }
  
  .author-info {
      display: flex;
      align-items: center;
  }
  
  .author-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      margin-right: 1rem;
  }
  
  .author-name {
      font-weight: 600;
      color: #1a202c;
  }
  
  .publish-date {
      color: #718096;
  }
  
  /* Featured Stories Section */
  .featured-stories-section {
      background-color: #f7fafc;
      padding: 4rem 0;
  }
  
  .featured-story-card {
      display: flex;
      flex-direction: column;
      height: 100%;
  }
  
  @media (min-width: 768px) {
      .featured-story-card {
          flex-direction: row;
      }
  }
  
  .featured-story-image {
      width: 100%;
      height: 200px;
  }
  
  @media (min-width: 768px) {
      .featured-story-image {
          width: 40%;
          height: auto;
      }
  }
  
  .featured-story-details {
      padding: 1.5rem;
      flex: 1;
  }
  
  /* Pagination Styles */
  .pagination {
      display: flex;
      justify-content: center;
      margin-top: 3rem;
  }
  
  .pagination-link {
      padding: 0.5rem 1rem;
      margin: 0 0.25rem;
      border-radius: 0.25rem;
      color: #4a5568;
      text-decoration: none;
  }
  
  .pagination-link:hover {
      background-color: #edf2f7;
  }
  
  .pagination-link.active {
      background-color: #4299e1;
      color: white;
  }

  /* Add to your stylesheet */
.collapse-arrow {
  transition: transform 0.2s ease;
}

.collapsed .collapse-arrow {
  transform: rotate(-90deg);
}

.user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #4e73df;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

@media (max-width: 991px) {
  .event-highlighted-story .text-section h1 {
      font-size: 32px;
      padding-bottom: 30px;
      text-align: center;
  }
}

@media (max-width: 991px) {
  .event-highlighted-story iframe {
      width: 100%;
      height: 27vh;
  }
}