
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      overflow-x: hidden;
      line-height: 1.6;
    }

    /* Header Styles */
    .navbar-header {
      background: #95a2cb;
      color: white;
      padding: 15px 20px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
      position: relative;
      z-index: 100;
    }

    .navbar-logo {
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: 1400px;
      margin: 0 auto;
      position: relative;
      flex-wrap: wrap;
      gap: 20px;
    }

    .logo {
      display: flex;
      align-items: center;
      flex: 1;
      min-width: 250px;
    }

    .logo img {
      height: 50px;
      margin-right: 15px;
      border-radius: 50%;
      /* border: 2px solid rgba(255, 255, 255, 0.3); */
    }

    .logo h1 {
      font-size: 1.8rem;
      font-weight: 700;
      color: #fff;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
      letter-spacing: -0.5px;
    }

    .menu-toggle {
      display: none;
      flex-direction: column;
      justify-content: space-between;
      width: 30px;
      height: 21px;
      cursor: pointer;
      z-index: 1001;
      transition: all 0.3s ease;
    }

    .menu-toggle span {
      display: block;
      height: 3px;
      width: 100%;
      background-color: white;
      border-radius: 3px;
      transition: all 0.3s ease;
    }

    .header-buttons {
      display: flex;
      gap: 10px;
      align-items: center;
    }

    .header-buttons li {
      list-style: none;
    }

    .header-buttons a {
      color: white;
      text-decoration: none;
      padding: 12px 20px;
      border-radius: 25px;
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      transition: all 0.3s ease;
      white-space: nowrap;
      font-weight: 500;
      font-size: 0.9rem;
    }

    .header-buttons a:hover {
      background: #e95f5f;
      transform: translateY(-2px);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .search-icon {
      color: white;
      font-size: 1.3rem;
      cursor: pointer;
      margin-left: 20px;
      padding: 12px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      transition: all 0.3s ease;
    }

    .search-icon:hover {
      background: #e95f5f;
      transform: scale(1.1);
    }

    /* Navigation Styles */
    .navbar {
      background: linear-gradient(135deg, #2c3e50, #34495e);
      padding: 0;
      box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
      position: sticky;
      top: 0;
      z-index: 99;
      transition: all 0.3s ease;
    }

    .navbar.scrolled {
      background: rgba(44, 62, 80, 0.95);
      backdrop-filter: blur(10px);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    }

    .navbar-container {
      display: flex;
      justify-content: center;
      align-items: center;
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 20px;
      /* Remove these lines */
      /* overflow-x: auto; */
      /* white-space: nowrap; */
    }

    .navbar-container::-webkit-scrollbar {
      display: none;
      /* Hide scrollbar */
    }

    .navbar ul {
      display: flex;
      list-style: none;
      margin: 0;
      padding: 0;
      align-items: center;
      flex-wrap: wrap;
      /* Allow items to wrap */
      justify-content: center;
      /* Center items when they wrap */
    }

    .navbar li {
      position: relative;
      margin: 0 2px;
      flex-shrink: 0;
      /* Prevent items from shrinking */
    }

    .navbar a {
      color: white;
      text-decoration: none;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      transition: all 0.3s ease;
      display: block;
      padding: 18px 12px;
      /* Reduced padding to fit more items */
      font-size: 0.8rem;
      /* Slightly smaller font */
      font-weight: 500;
      position: relative;
      white-space: nowrap;
    }

    .navbar a:hover {
      color: #e95f5f;
      transform: translateY(-1px);
    }

    .navbar li::after {
      content: '';
      position: absolute;
      width: 0;
      height: 3px;
      background: linear-gradient(90deg, #f39c12, #e74c3c);
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      transition: width 0.3s ease;
      border-radius: 2px;
    }

    .navbar li:hover::after {
      width: 80%;
    }

    /* Dropdown Styles */
    .dropdown {
      position: relative;
    }

    .dropdown-content {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
     background:#95a2cb;
      min-width: 200px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
      z-index: 1;
      border-radius: 0 0 5px 5px;
      overflow: hidden;
      animation: fadeIn 0.3s ease-out;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(-10px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .dropdown-content a {
      color: #ffffff;
      /* background-color: linear-gradient(135deg, #2c3e50, #34495e); */
      padding: 12px 16px;
      text-decoration: none;
      display: block;
      text-transform: none;
      font-size: 0.8rem;
      border-left: 3px solid transparent;
      transition: all 0.3s ease;
    }

    .dropdown-content a:hover {
      background: #e95f5f;
      color: white;
      /* border-bottom: 3px solid #0c0a09; */
      padding-left: 20px;
    }

    .dropdown:hover .dropdown-content {
      display: block;
    }

   

    .dropdown:hover>a::after {
      transform: rotate(180deg);
    }

    /* Only show dropdown on hover for desktop */
    @media (min-width: 769px) {
      .dropdown:hover .dropdown-content {
        display: block;
      }
    }

    /* Mobile dropdown styles */
    @media (max-width: 768px) {
      .dropdown-content {
        position: static;
        display: none;
        background: rgba(0, 0, 0, 0.1);
        box-shadow: none;
        animation: none;
      }

      .dropdown.active .dropdown-content {
        display: block;
      }
    }

    /* Hero Section */
    .hero {
      position: relative;
      height: 100vh;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: white;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(45deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
      z-index: 1;
    }

    .hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      padding: 0 20px;
      animation: fadeInUp 1s ease-out;
    }

    .hero-content h1 {
      font-size: 3.5rem;
      margin-bottom: 20px;
      text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
      font-weight: 700;
    }

    .hero-content p {
      font-size: 1.4rem;
      margin-bottom: 30px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
      opacity: 0.9;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(50px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Search Modal */
    .search-modal {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.8);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 1000;
      opacity: 0;
      visibility: hidden;
      transition: all 0.4s ease;
      backdrop-filter: blur(10px);
    }

    .search-modal.active {
      opacity: 1;
      visibility: visible;
    }

    .search-container {
      width: 90%;
      max-width: 700px;
      position: relative;
      animation: searchSlideIn 0.5s ease-out;
    }

    .search-container input {
      width: 100%;
      padding: 25px 60px 25px 30px;
      font-size: 1.6rem;
      border: none;
      border-radius: 50px;
      outline: none;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(20px);
      border: 2px solid rgba(255, 255, 255, 0.3);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
      transition: all 0.3s ease;
    }

    .search-container input:focus {
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
      border-color: #3498db;
    }

    .search-container input::placeholder {
      color: #7f8c8d;
    }

    .close-search {
      position: absolute;
      top: 50%;
      right: 20px;
      transform: translateY(-50%);
      color: #7f8c8d;
      font-size: 1.8rem;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .close-search:hover {
      color: #e74c3c;
      transform: translateY(-50%) scale(1.2);
    }

    @keyframes searchSlideIn {
      from {
        opacity: 0;
        transform: scale(0.8) translateY(-50px);
      }

      to {
        opacity: 1;
        transform: scale(1) translateY(0);
      }
    }

    /* Responsive Design */
    @media (max-width: 1200px) {
      .navbar a {
        padding: 15px 10px;
        font-size: 0.75rem;
      }

      .hero-content h1 {
        font-size: 3rem;
      }
    }

    @media (max-width: 992px) {
      .navbar-container {
        padding: 0 15px;
      }

      .navbar a {
        font-size: 0.7rem;
        padding: 15px 8px;
      }

      .hero-content h1 {
        font-size: 2.5rem;
      }

      .hero-content p {
        font-size: 1.2rem;
      }
    }

    @media (max-width: 768px) {
      .navbar-header {
        padding: 10px 15px;
      }

      .menu-toggle {
        display: flex;
        order: 3;
      }

      .logo {
        order: 2;
        justify-content: center;
        flex: 1;
        min-width: auto;
      }

      .logo h1 {
        font-size: 1.4rem;
        text-align: center;
      }

      .logo img:last-child {
        display: block;
        order: 3;
        margin-left: 15px;
        margin-right: 0;
      }

      .header-buttons {
        display: none;
      }

      .search-icon {
        display: none;
      }

      .navbar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        height: 100vh;
        background: linear-gradient(135deg, #2c3e50, #34495e);
        flex-direction: column;
        justify-content: flex-start;
        padding: 100px 0 20px;
        transition: all 0.3s ease;
        z-index: 1000;
        box-shadow: 5px 0 20px rgba(0, 0, 0, 0.3);
      }

      .navbar.active {
        left: 0;
      }

      .navbar-container {
        width: 100%;
        padding: 0;
        overflow-x: visible;
        white-space: normal;
      }

      .navbar ul {
        flex-direction: column;
        width: 100%;
        align-items: stretch;
      }

      .navbar li {
        margin: 0;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      }

      .navbar a {
        padding: 20px 30px;
        text-align: left;
        font-size: 1rem;
        text-transform: none;
        border-left: 4px solid transparent;
        transition: all 0.3s ease;
      }

      .navbar a:hover {
        background: rgba(255, 255, 255, 0.1);
        border-left-color: #f39c12;
        padding-left: 35px;
      }

      .navbar li::after {
        display: none;
      }

      /* Mobile dropdown styles */

      .dropdown.active>a::after {
        transform: rotate(180deg);
      }

      .dropdown-content {
        position: static;
        display: none;
        background: rgba(0, 0, 0, 0.1);
        box-shadow: none;
        animation: none;
      }

      .dropdown.active .dropdown-content {
        display: block;
      }

      .dropdown-content a {
        color: white;
        padding-left: 40px;
        font-size: 0.9rem;
        opacity: 0.9;
      }

      .dropdown-content a:hover {
        background: rgba(0, 0, 0, 0.2);
        color: #f39c12;
        border-left: 3px solid #f39c12;
      }

      .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
      }

      .menu-toggle.active span:nth-child(2) {
        opacity: 0;
      }

      .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
      }

      .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        display: none;
        transition: opacity 0.3s ease;
      }

      .overlay.active {
        display: block;
      }

      .hero-content h1 {
        font-size: 2.2rem;
      }

      .hero-content p {
        font-size: 1.1rem;
      }

      .search-container input {
        font-size: 1.3rem;
        padding: 20px 50px 20px 25px;
      }
    }

    @media (max-width: 480px) {
      .logo h1 {
        font-size: 1.2rem;
      }

      .logo img {
        height: 40px;
        margin-right: 10px;
      }

      .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.2;
      }

      .hero-content p {
        font-size: 1rem;
      }

      .search-container {
        width: 95%;
      }

      .search-container input {
        font-size: 1.1rem;
        padding: 18px 45px 18px 20px;
      }

      .close-search {
        font-size: 1.5rem;
        right: 15px;
      }
    }


    /* Additional Animations */
    .navbar li {
      animation: navSlideIn 0.5s ease-out forwards;
      opacity: 0;
    }

    .navbar li:nth-child(1) {
      animation-delay: 0.1s;
    }

    .navbar li:nth-child(2) {
      animation-delay: 0.2s;
    }

    .navbar li:nth-child(3) {
      animation-delay: 0.3s;
    }

    .navbar li:nth-child(4) {
      animation-delay: 0.4s;
    }

    .navbar li:nth-child(5) {
      animation-delay: 0.5s;
    }

    .navbar li:nth-child(6) {
      animation-delay: 0.6s;
    }

    .navbar li:nth-child(7) {
      animation-delay: 0.7s;
    }

    .navbar li:nth-child(8) {
      animation-delay: 0.8s;
    }

    @keyframes navSlideIn {
      from {
        opacity: 0;
        transform: translateX(-20px);
      }

      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    /* Smooth scrolling */
    html {
      scroll-behavior: smooth;
    }

    /* Custom scrollbar */
    ::-webkit-scrollbar {
      width: 8px;
    }

    ::-webkit-scrollbar-track {
      background: #f1f1f1;
    }

    ::-webkit-scrollbar-thumb {
      background: linear-gradient(135deg, #3498db, #2c3e50);
      border-radius: 4px;
    }

    ::-webkit-scrollbar-thumb:hover {
      background: linear-gradient(135deg, #2980b9, #1e3c72);
    }
/* ------------------------------------------main end---------------------------------------------------------- */
/* ------------------------------------------about css--------------------------------------------------------- */
         .sac-wrapper {
            font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
            max-width: 100%;
            /* margin: 30px auto;
            padding: 25px; */
            background-color: #fffdfa;
            box-shadow: 0 3px 15px rgba(0,0,0,0.08);
            border-radius: 10px;
        }
        
        .sac-main-title {
            display: block;
            text-align: center;
            font-size: 2.3rem;
            color: #5e2c04;
            margin-bottom: 20px;
            margin-top: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid #e0c9b8;
            font-weight: 600;
            letter-spacing: 0.5px;
        }
        
        .sac-content-para {
            font-size: 1.15rem;
            line-height: 1.8;
            color: #4a4a4a;
            text-align: center;
            padding: 0 25px;
            padding-bottom: 16px;
        }
        
        .sac-emphasis {
            color: #8b4513;
            font-weight: 600;
            font-style: normal;
            border-bottom: 1px dotted #c9a880;
            padding-bottom: 2px;
        }

        .educavo-about-wrapper {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #f8f9fa;
      
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 10px;
        }

        .educavo-about-container {
            max-width: 1200px;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .educavo-content-section {
            padding-right: 40px;
        }

        .educavo-section-tag {
            color: #ff6b35;
            font-weight: 600;
            font-size: 14px;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 20px;
            display: block;
        }

        .educavo-main-heading {
            font-size: 48px;
            color: #2c3e50;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 30px;
        }

        .educavo-description {
            font-size: 18px;
            color: #666;
            line-height: 1.8;
            margin-bottom: 25px;
        }

        .educavo-content-text {
            font-size: 16px;
            color: #777;
            line-height: 1.7;
            margin-bottom: 30px;
        }

        .educavo-images-section {
            position: relative;
            height: 500px;
        }

        .educavo-main-image {
            position: absolute;
            top: 0;
            right: 0;
            width: 380px;
            height: 280px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .educavo-main-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .educavo-side-images {
            position: absolute;
            left: 0;
            top: 50px;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .educavo-small-image {
            width: 160px;
            height: 120px;
            border-radius: 12px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 10px 25px rgba(0,0,0,0.08);
            position: relative;
        }

        .educavo-small-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .educavo-small-image:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }

        .educavo-small-image:hover img {
            transform: scale(1.1);
        }

        .educavo-small-image.educavo-active {
            border: 3px solid #ff6b35;
            transform: translateY(-5px) scale(1.05);
        }

        .educavo-floating-circle {
            position: absolute;
            width: 80px;
            height: 80px;
            border: 3px solid #ff6b35;
            border-radius: 50%;
            top: 200px;
            left: 120px;
            animation: educavoFloat 3s ease-in-out infinite;
        }

        @keyframes educavoFloat {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        .educavo-play-button {
            position: absolute;
            bottom: 20px;
            right: 20px;
            width: 60px;
            height: 60px;
            background: #ff6b35;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
        }

        .educavo-play-button:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
        }

        .educavo-play-button::after {
            content: '';
            width: 0;
            height: 0;
            border-left: 12px solid white;
            border-top: 8px solid transparent;
            border-bottom: 8px solid transparent;
            margin-left: 3px;
        }

        .educavo-content-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            padding: 20px;
            background: linear-gradient(transparent, rgba(0,0,0,0.7));
            height: 100%;
            display: flex;
            align-items: flex-end;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .educavo-small-image:hover .educavo-content-overlay {
            opacity: 1;
        }

        .educavo-overlay-text {
            color: white;
            font-size: 14px;
            font-weight: 500;
        }

        .educavo-pause-indicator {
            position: absolute;
            top: 10px;
            right: 10px;
            background: rgba(255, 107, 53, 0.9);
            color: white;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 10px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .educavo-small-image.educavo-paused .educavo-pause-indicator {
            opacity: 1;
        }

        @media (max-width: 768px) {
            .educavo-about-container {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }
            
            .educavo-content-section {
                padding-right: 0;
            }
            
            .educavo-main-heading {
                font-size: 36px;
            }
            
            .educavo-images-section {
                height: 400px;
            }
            
            .educavo-main-image {
                width: 300px;
                height: 220px;
                position: relative;
                margin: 0 auto;
            }
            
            .educavo-side-images {
                position: relative;
                flex-direction: row;
                justify-content: center;
                top: 20px;
                left: 0;
            }
            
            .educavo-floating-circle {
                display: none;
            }
        }
        /* ---------------------------------about end ---------------------------------------------- */
        /* ---------------------------------community start ---------------------------------------- */
             .lms-leadership-section {
            max-width: 1200px;
            margin: 50px auto;
            padding: 20px;
            position: relative;
            overflow: hidden;
            font-family: 'Open Sans', sans-serif;
            background-color: #f5f5f5;
            color: #333;
        }

        .lms-section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 50px;
            color: #2c3e50;
        }

        .lms-community-container {
            display: flex;
            align-items: center;
            min-height: 400px;
            position: relative;
            margin-left: 108px;
            margin-right: -194px;
        }

        .lms-member-image {
            width: 45%;
            height: 400px;
            object-fit: cover;
            border-radius: 8px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            position: relative;
            z-index: 1;
            animation: lmsSlideInLeft 1s ease-out;
        }

        .lms-member-card {
            width: 35%;
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            position: absolute;
            right: 250px;
            z-index: 2;
            transform: translateX(20px);
            opacity: 0;
            animation: lmsSlideInRight 1s ease-out 0.3s forwards;
        }

        .lms-member-name {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: #2c3e50;
        }

        .lms-member-role {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: #3498db;
        }

        .lms-member-bio {
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .lms-member-category {
            position: absolute;
            top: -15px;
            right: 30px;
            background: #3498db;
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
        }

        .lms-stories-link {
            display: block;
            text-align: right;
            margin-top: 10px;
            color: #3498db;
            text-decoration: none;
            font-weight: 600;
        }

        @keyframes lmsSlideInLeft {
            from {
                transform: translateX(-50px);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        @keyframes lmsSlideInRight {
            from {
                transform: translateX(50px);
                opacity: 0;
            }
            to {
                transform: translateX(20px);
                opacity: 1;
            }
        }

        @media (max-width: 768px) {
            .lms-community-container {
                flex-direction: column;
                margin-left: 0;
                margin-right: 0;
            }
            
            .lms-member-image, 
            .lms-member-card {
                width: 100%;
                position: static;
                transform: none;
            }
            
            .lms-member-card {
                margin-top: -50px;
            }
        }
        /* ---------------------------------community end ---------------------------------------- */
        /* ---------------------------------our gallery start ------------------------------------ */
             .edu-container * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .edu-wrapper {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #95a2cb;
            min-height: 100vh;
            padding: 2rem;
        }

        .edu-main-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .edu-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .edu-header-title {
            color: white;
            font-size: 3rem;
            font-weight: 300;
            margin-bottom: 1rem;
        }

        .edu-header-description {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.2rem;
        }

        .edu-courses-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .edu-course-card {
            position: relative;
            height: 280px;
            border-radius: 20px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        }

        .edu-course-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        .edu-card-background {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .edu-course-card:hover .edu-card-background {
            transform: scale(1.1);
        }

        .edu-card-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 2rem;
            color: white;
        }

        .edu-card-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .edu-card-description {
            font-size: 1rem;
            opacity: 0.9;
            margin-bottom: 1rem;
        }

        /* Detail Cards */
        .edu-detail-card {
            position: absolute;
            width: 90%;
            max-width: 350px;
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            z-index: 100;
            backdrop-filter: blur(10px);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            pointer-events: none;
        }

        .edu-detail-card.show {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

        .edu-detail-title {
            color: #333;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .edu-detail-text {
            color: #666;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }
        .edu-read-more-btn {
            background: #95a2cb;
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }

        .edu-read-more-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
            background: #e95f5f;
        }

        /* Animation classes for different directions */
        .edu-from-left {
            transform: translate(-150%, -50%);
        }

        .edu-from-right {
            transform: translate(50%, -50%);
        }

        .edu-from-top {
            transform: translate(-50%, -150%);
        }

        .edu-from-bottom {
            transform: translate(-50%, 50%);
        }

        .edu-detail-card.show.edu-from-left,
        .edu-detail-card.show.edu-from-right,
        .edu-detail-card.show.edu-from-top,
        .edu-detail-card.show.edu-from-bottom {
            transform: translate(-50%, -50%);
        }

        @media (max-width: 768px) {
            .edu-courses-grid {
                grid-template-columns: 1fr;
            }
            
            .edu-header-title {
                font-size: 2rem;
            }
        }
       /*  ---------------------------------our gallery end ---------------------------------------*/
       /* ---------------------------------- topper start -----------------------------------------*/
               .stp-container {
            min-height: 100vh;
            background: rgba(44, 62, 80, 0.95);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            font-family: 'Arial', sans-serif;
        }

        .stp-main-section {
            max-width: 1200px;
            width: 100%;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
        }

        .stp-content-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 500px;
        }

        .stp-left-card {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .stp-left-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
            transform: rotate(45deg);
            animation: stp-shine 3s infinite;
        }

        @keyframes stp-shine {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
            100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
        }

        .stp-student-info {
            position: relative;
            z-index: 2;
        }

        .stp-title {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .stp-description {
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .stp-stats {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
        }

        .stp-stat-item {
            text-align: center;
        }

        .stp-stat-number {
            font-size: 2.2rem;
            font-weight: bold;
            color: #64ffda;
            text-shadow: 0 0 10px rgba(100, 255, 218, 0.5);
        }

        .stp-stat-label {
            font-size: 0.9rem;
            opacity: 0.8;
            margin-top: 5px;
        }

        .stp-right-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            overflow: hidden;
        }

        .stp-image-card {
            position: relative;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
        }

        .stp-image-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
            filter: brightness(0.8) saturate(1.2);
        }

        .stp-image-card:hover {
            z-index: 10;
        }

        .stp-image-card:hover img {
            filter: brightness(1) saturate(1.4);
            transform: scale(1.3);
        }

        .stp-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            color: white;
            padding: 20px;
            transform: translateY(100%);
            transition: all 0.3s ease;
        }

        .stp-image-card:hover .stp-overlay {
            transform: translateY(0);
        }

        .stp-overlay-title {
            font-size: 1.1rem;
            font-weight: bold;
            margin-bottom: 5px;
        }

        .stp-overlay-text {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        .stp-header {
            text-align: center;
            padding: 30px;
            background: rgba(255, 255, 255, 0.05);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .stp-header h1 {
            color: white;
            font-size: 2.5rem;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            margin-bottom: 10px;
        }

        .stp-header p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.1rem;
        }

        @media (max-width: 768px) {
            .stp-content-wrapper {
                grid-template-columns: 1fr;
            }
            
            .stp-title {
                font-size: 2rem;
            }
            
            .stp-stats {
                justify-content: center;
            }
        }
       /* -----------------------------------topper end --------------------*/
       /* -----------------------------------achievements start------------- */
               .efc-section-container {
            max-width: 100%;
            margin: 0 auto;
            padding: 40px 20px;
            background: #95a2cb;
        }

        .efc-section-header {
            text-align: center;
            margin-bottom: 60px;
            color: white;
        }

        .efc-section-header h2 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #fff, #e0e7ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
        }

        .efc-section-header p {
            font-size: 1.2rem;
            line-height: 1.6;
            max-width: 600px;
            margin: 0 auto;
            opacity: 0.9;
        }

        .efc-cards-container {
            position: relative;
            height: 350px;
            overflow: hidden;
            background: rgb(255, 255, 255);
            border-radius: 20px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 30px 0;
        }

        .efc-cards-track {
            display: flex;
            gap: 30px;
            animation: efc-slideLeft 30s linear infinite;
            width: max-content;
            align-items: center;
            height: 100%;
        }

        .efc-cards-container:hover .efc-cards-track {
            animation-play-state: paused;
        }

        @keyframes efc-slideLeft {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .efc-education-card {
            position: relative;
            width: 280px;
            height: 320px;
            border-radius: 20px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            background: rgb(255, 255, 255);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            flex-shrink: 0;
            display: flex;
            flex-direction: column;
        }

        .efc-education-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .efc-card-image {
            width: 100%;
            height: 200px;
            overflow: hidden;
            position: relative;
        }

        .efc-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .efc-education-card:hover .efc-card-image img {
            transform: scale(1.1);
        }

        .efc-card-content {
            padding: 15px;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            background: #390505;
            text-align: center;
        }

        .efc-card-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: white;
            margin-bottom: 5px;
        }

        .efc-card-subtitle {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
        }

        .efc-card-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(173, 171, 42, 0.95);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 20px;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.4s ease;
            border-radius: 20px;
            text-align: center;
            box-sizing: border-box;
        }

        .efc-education-card:hover .efc-card-overlay {
            opacity: 1;
            transform: translateY(0);
        }

        .efc-overlay-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 15px;
        }

        .efc-overlay-description {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.5;
        }

        .efc-card-icon {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            color: white;
        }

        .efc-education-card:hover .efc-card-icon {
            background: rgba(255, 255, 255, 0.3);
            transform: rotate(10deg) scale(1.1);
        }

        @media (max-width: 768px) {
            .efc-section-header h2 {
                font-size: 2.5rem;
            }
            
            .efc-section-header p {
                font-size: 1rem;
            }

            .efc-education-card {
                width: 250px;
                height: 300px;
            }

            .efc-cards-container {
                height: 300px;
            }
        }
       /* -----------------------------------achievements end --------------- */
       /* -----------------------------------news start ---------------------- */
            .news-container {
            max-width: 99%;
            margin: 0 auto;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .news-header {
            display: flex;
            background: #fff;
            border-bottom: 1px solid #e0e0e0;
        }

        .header-tab {
            padding: 20px 30px;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            border-bottom: 3px solid transparent;
        }

        .header-tab.active {
            color: #2c3e50;
            border-bottom-color: #3498db;
        }

        .header-tab.inactive {
            color: #3498db;
        }

        .header-tab:hover {
            background: #f8f9fa;
        }

        .news-content {
            display: flex;
            height: 500px;
        }

        .news-list {
            flex: 1;
            padding: 20px;
            overflow: hidden;
            position: relative;
        }

        .news-items {
            height: 100%;
            overflow: hidden;
            position: relative;
        }

        .news-scroll-container {
            position: absolute;
            width: 100%;
            animation: scrollUp 20s linear infinite;
        }

        @keyframes scrollUp {
            0% {
                transform: translateY(0);
            }
            100% {
                transform: translateY(-100%);
            }
        }

        .news-scroll-container.paused {
            animation-play-state: paused;
        }

        .news-item {
            display: flex;
            align-items: center;
            padding: 15px 0;
            border-bottom: 1px solid #eee;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-bottom: 0px;
        }

        .news-item:hover {
            background: #f0f8ff;
            transform: translateX(5px);
        }

        .news-item.selected {
            background: #e3f2fd;
            transform: translateX(10px);
        }
        

        .date-badge {
            background: #e95f5f;
            color: white;
            padding: 8px 12px;
            border-radius: 5px;
            text-align: center;
            margin-right: 20px;
            min-width: 60px;
            flex-shrink: 0;
        }

        .date-number {
            font-size: 18px;
            font-weight: bold;
            display: block;
        }

        .date-month {
            font-size: 12px;
            opacity: 0.9;
        }

        .news-info {
            flex: 1;
        }

        .news-title {
            font-size: 18px;
            font-weight: bold;
            color: #2c3e50;
            margin-bottom: 5px;
            line-height: 1.3;
        }

        .news-meta {
            font-size: 14px;
            color: #7f8c8d;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .join-btn {
            color: #3498db;
            text-decoration: none;
            font-weight: 500;
        }

        .join-btn:hover {
            text-decoration: underline;
        }

        .news-image {
            flex: 1;
            height: 500px;
            position: relative;
            overflow: hidden;
        }

        .image-container {
            width: 100%;
            height: 100%;
            position: relative;
        }

        .news-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        }

        .image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.7));
            color: white;
            padding: 30px;
        }

        .overlay-title {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .overlay-description {
            font-size: 16px;
            opacity: 0.9;
            line-height: 1.4;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .news-container {
                margin: 10px;
            }
            
            .header-tab {
                font-size: 24px;
                padding: 18px 25px;
            }
            
            .news-title {
                font-size: 16px;
            }
            
            .overlay-title {
                font-size: 20px;
            }
        }

        @media (max-width: 768px) {
            body {
                padding: 10px;
            }
            
            .news-content {
                flex-direction: column;
                height: auto;
            }
            
            .news-list {
                height: auto;
                max-height: 300px;
                padding: 15px;
                overflow-y: auto;
                order: 2;
            }
            
            .news-items {
                height: auto;
                position: relative;
                overflow: visible;
            }
            
            .news-scroll-container {
                position: relative;
                animation: none;
                transform: none !important;
            }
            
            .news-image {
                height: 300px;
                order: 1;
            }
            
            .header-tab {
                font-size: 20px;
                padding: 15px 20px;
            }
            
            .news-item {
                padding: 12px 0;
                margin-bottom: 10px;
            }
            
            .news-title {
                font-size: 15px;
                line-height: 1.4;
            }
            
            .date-badge {
                margin-right: 15px;
                min-width: 50px;
                padding: 6px 10px;
            }
            
            .date-number {
                font-size: 16px;
            }
            
            .news-meta {
                font-size: 12px;
                gap: 10px;
            }
            
            .overlay-title {
                font-size: 18px;
                margin-bottom: 8px;
            }
            
            .overlay-description {
                font-size: 14px;
                line-height: 1.3;
            }
            
            .image-overlay {
                padding: 20px;
            }
        }

        @media (max-width: 480px) {
            .header-tab {
                font-size: 18px;
                padding: 12px 15px;
            }
            
            .news-list {
                max-height: 280px;
                padding: 10px;
            }
            
            .news-image {
                height: 250px;
            }
            
            .news-item {
                padding: 10px 0;
                margin-bottom: 8px;
            }
            
            .news-title {
                font-size: 14px;
            }
            
            .date-badge {
                margin-right: 12px;
                min-width: 45px;
                padding: 5px 8px;
            }
            
            .date-number {
                font-size: 14px;
            }
            
            .date-month {
                font-size: 10px;
            }
            
            .news-meta {
                font-size: 11px;
                flex-direction: column;
                align-items: flex-start;
                gap: 5px;
            }
            
            .overlay-title {
                font-size: 16px;
                margin-bottom: 6px;
            }
            
            .overlay-description {
                font-size: 13px;
                line-height: 1.2;
            }
            
            .image-overlay {
                padding: 15px;
            }
        }

        @media (max-width: 320px) {
            .header-tab {
                font-size: 16px;
                padding: 10px 12px;
            }
            
            .news-title {
                font-size: 13px;
            }
            
            .news-item:hover {
                transform: translateX(3px);
            }
            
            .news-item.selected {
                transform: translateX(5px);
            }
        }
        .news-container h2{
            text-align: center;
            margin: 20px 0;
            font-size: 32px;
            color: #2c3e50;
        }
       /* -----------------------------------news end ------------------------- */
       /* -----------------------------------contact us start ----------------- */
          .ct-container {
            width: 100%;
            max-width: 1200px;
            margin: 20px auto;
            padding: 0 20px;
        }
        
        .ct-main-title {
            text-align: center;
            font-size: 28px;
            margin-bottom: 30px;
            color: #333;
        }
        
        .ct-wrapper {
            display: flex;
            width: 100%;
            box-shadow: 0 0 20px rgba(0,0,0,0.1);
            border-radius: 8px;
            overflow: hidden;
            min-height: 400px;
        }
        
        .ct-bg-section { 
            width: 50%;
            background-image: url('https://images.unsplash.com/photo-1512917774080-9991f1c4c750?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            position: relative;
            display: flex;
            align-items: center;
            padding: 30px;
        }
        
        .ct-bg-overlay {
            background-color: rgba(0, 0, 0, 0.7);
            padding: 30px;
            border-radius: 8px;
            width: 100%;
        }
        
        .ct-info-item {
            margin-bottom: 25px;
            display: flex;
            align-items: center;
        }
        
        .ct-info-icon {
            font-size: 24px;
            margin-right: 15px;
            color: #95a2cb;
            margin-top: -30px;
        }
        
        .ct-info-title {
            font-size: 18px;
            margin-bottom: 5px;
            font-weight: 600;
            color: #fff;
        }
        
        .ct-info-text {
            font-size: 16px;
            color: #e0e0e0;
        }
        
        .ct-form-section {
            width: 50%;
            padding: 40px;
            background-color: #f9f9f9;
            display: flex;
            flex-direction: column;
        }
        
        .ct-form-title {
            font-size: 24px;
            margin-bottom: 30px;
            color: #333;
            display: none; /* Hide the duplicate title */
        }
        
        .ct-form-group {
            margin-bottom: 20px;
        }
        
        .ct-form-label {
            display: block;
            color: #555;
            margin-bottom: 8px;
            font-size: 14px;
            font-weight: 500;
        }
        
        .ct-form-input {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 16px;
            transition: border 0.3s;
        }
        
        .ct-form-input:focus {
            border-color: #4CAF50;
            outline: none;
        }
        
        textarea.ct-form-input {
            resize: vertical;
            min-height: 100px;
        }
        
        .ct-submit-btn {
            background-color: #95a2cb;
            color: white;
            padding: 12px 24px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 16px;
            transition: background-color 0.3s;
            width: 100%;
        }
        
        .ct-submit-btn:hover {
            background-color: #c95f5f;
        }
        
        form {
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        @media (max-width: 768px) {
            .ct-wrapper {
                flex-direction: column;
            }
            
            .ct-bg-section, .ct-form-section {
                width: 100%;
                min-height: auto;
            }
            
            .ct-bg-section {
                order: 2;
                min-height: 300px;
            }
            
            .ct-form-section {
                order: 1;
            }
            
            .ct-main-title {
                margin-bottom: 20px;
            }
        }
       /* -----------------------------------contact us end ------------------- */
       /* -----------------------------------footer start --------------------- */
                 .footer {
            background-color: #f5f5f5;
            padding: 50px 20px 30px;
            color: #333;
            font-family: 'Arial', sans-serif;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 30px;
            font-family: 'Arial', sans-serif;
        }

        .footer-logo-section {
            flex: 1;
            min-width: 250px;
            font-family: 'Arial', sans-serif;
        }

        .logo-container {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            font-family: 'Arial', sans-serif;
        }

        .logo-img {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            font-family: 'Arial', sans-serif;
        }

        .logo-img img {
            height: auto;
            margin-top: -8px;
            margin-left: -6px;
            width: 105%;
        }

        .school-name {
            font-size: 19px;
            font-weight: bold;
            margin-left: -15px;
            font-family: 'Arial', sans-serif;
        }

        .footer-about {
            color: #666;
            line-height: 1.6;
            margin-bottom: 20px;
            font-family: 'Arial', sans-serif;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            font-family: 'Arial', sans-serif;
        }

        .social-icons a {
            color: #666;
            font-size: 18px;
            transition: color 0.3s;
            font-family: 'Arial', sans-serif;
        }

        .social-icons a:hover {
            color: #2c3e50;
        }

        .footer-links {
            flex: 1;
            min-width: 250px;
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-direction: column;
            font-family: 'Arial', sans-serif;
        }

        .links-heading {
            text-align: center;
            font-size: 18px;
            margin-bottom: 20px;
            color: #2c3e50;
            font-family: 'Arial', sans-serif;
        }

        .links-columns-container {
            display: flex;
            gap: 90px;
            margin-top: -39px;
            font-family: 'Arial', sans-serif;
        }

        .links-column {
            flex: 1;
            font-family: 'Arial', sans-serif;
        }

        .links-column ul {
            list-style: none;
            margin-left: 33px;
            font-family: 'Arial', sans-serif;
        }

        .links-column li {
            margin-bottom: 10px;
            color: #666;
            cursor: pointer;
            transition: color 0.3s;
            font-family: 'Arial', sans-serif;
        }

        .links-column li:hover {
            color: #2c3e50;
        }

        .post-date {
            font-size: 14px;
            color: #999;
            margin-top: -8px;
            margin-bottom: 15px;
            display: block;
            font-family: 'Arial', sans-serif;
        }

        .footer-address {
            flex: 1;
            min-width: 250px;
            font-family: 'Arial', sans-serif;
        }

        .footer-address h3 {
            font-size: 18px;
            margin-bottom: 20px;
            color: #2c3e50;
            font-family: 'Arial', sans-serif;
        }

        .address-info {
            color: #666;
            line-height: 1.8;
            font-family: 'Arial', sans-serif;
        }

        .address-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 10px;
            font-family: 'Arial', sans-serif;
        }

        .address-icon {
            margin-right: 10px;
            color: #2c3e50;
            width: 20px;
            text-align: center;
            font-family: 'Arial', sans-serif;
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 40px auto 0;
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #ddd;
            color: #666;
            font-family: 'Arial', sans-serif;
        }

        .footer-links-bottom {
            margin-top: 10px;
            font-family: 'Arial', sans-serif;
        }

        .footer-links-bottom a {
            color: #666;
            text-decoration: none;
            margin: 0 10px;
            transition: color 0.3s;
            font-family: 'Arial', sans-serif;
        }

        .footer-links-bottom a:hover {
            color: #2c3e50;
        }

        @media (max-width: 768px) {
            .footer-container {
                flex-direction: column;
            }

            .footer-links {
                justify-content: flex-start;
            }

            .links-columns-container {
                flex-direction: column;
                gap: 0;
            }
             .links-heading {
            text-align: start;
           
        }
         .school-name{
                margin-left: -21px;
         }
        }


       
       /* -----------------------------------footer end ----------------------- */