
/*top header*/

:root {
    --primary-color: #1a237e;
    --secondary-color: #ff3d00;
    --text-color: #333;
    --light-gray: #f5f5f5;
    --hover-color: #ff6433;
    --menu-bg: #f8f9fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.header {
    background: white;
    padding: 1rem 5%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo {
    max-height: 50px;
    width: auto;
}

.contact-info {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-item img {
    width: 20px;
    height: 20px;
}

.info-item div {
    display: flex;
    flex-direction: column;
}

.info-item span {
    font-size: 0.8rem;
    color: #666;
}

.info-item a, .info-item p {
    font-size: 0.9rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

.nav-container {
    width: 100%;
    position: fixed;
    background: var(--primary-color);
    margin-top: 84px;
    top: 0;
    z-index: 1000;
}

.nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    height: 60px;
}

.menu-items {
    display: flex;
    gap: 1rem;
}

.menu-items a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
    transition: background-color 0.3s;
}

.menu-items a:hover,
.menu-items a.active {
    background: var(--secondary-color);
}

.social-icons {
    display: flex;
    gap: 0.5rem;
    margin-left: auto;
}

.social-icon {
    color: white;
    text-decoration: none;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.social-icon:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.social-icon i {
    transition: transform 0.3s;
}

.social-icon:hover i {
    transform: scale(1.1);
}

/* Mobile Menu Styles */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: 0.3s;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background: white;
    z-index: 1002;
    padding: 2rem;
    transition: 0.3s ease-in-out;
    overflow-y: auto;
}

.mobile-menu.active {
    left: 0;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    display: none;
}

.menu-overlay.active {
    display: block;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.mobile-logo {
    max-height: 40px;
}

.close-menu-btn {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-color);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.mobile-nav a {
    color: var(--text-color);
    text-decoration: none;
    padding: 0.5rem 0;
    transition: 0.3s;
}

.mobile-nav a.active {
    color: var(--secondary-color);
}

.mobile-contact-info {
    margin: 2rem 0;
    padding: 2rem 0;
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
}

.mobile-contact-info .info-item {
    margin-bottom: 1rem;
}

.mobile-social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.mobile-social-icons .social-icon {
    color: var(--primary-color);
    background: var(--light-gray);
}

@media (max-width: 1024px) {
    .contact-info {
        gap: 1rem;
    }
    
    .info-item div {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 1rem;
    }

    .contact-info {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-container {
        display: none;
    }
}

/*Slider*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

 {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: #f5f5f5;
}

.slider-container {
    position: relative;
    /*width: 100vw;*/
    height: 600px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.slider {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 7s ease-in-out;
}

.slide {
    position: relative;
    width: 33.333%;
    height: 100%;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.5));
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    background: rgba(0, 0, 0, 0.4);
    padding: 2rem 3rem;
    border-radius: 8px;
    backdrop-filter: blur(5px);
    width: 80%;
    max-width: 600px;
}

.slide-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.slide-content p {
    font-size: 1.5rem;
    opacity: 0.9;
    line-height: 1.6;
    margin-top: 0.5rem;
}

.slider-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 1rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    z-index: 2;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-button:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.prev {
    left: 2rem;
}

.next {
    right: 2rem;
}

.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 2;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot:hover {
    transform: scale(1.2);
}

.dot.active {
    background: white;
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .slider-container {
        height: 450px;
    }

    .slide-content {
        width: 90%;
        padding: 1.5rem 2rem;
    }

    .slide-content h2 {
        font-size: 2rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .slider-button {
        width: 40px;
        height: 40px;
        padding: 0.5rem;
    }

    .prev {
        left: 1rem;
    }

    .next {
        right: 1rem;
    }
}

@media (max-width: 640px) {
    .slide-content {
        width: 95%;
        padding: 1rem 1.5rem;
    }

    .slide-content h2 {
        font-size: 1.5rem;
    }

    .slide-content p {
        font-size: 0.875rem;
    }

    .slider-button {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/*About*/

       @keyframes fadeInUp{from{opacity:0;transform:translateY(30px);}to{opacity:1;transform:translateY(0);}}
        .eas-about-img img,.eas-about-content{animation:fadeInUp 1s ease-out;}
        .eas-about{padding:50px 0;position:relative;}
        .container{max-width:1200px;margin:auto;position:relative;}
        .row{display:flex;flex-wrap:wrap;align-items:center;}
        .col-lg-6{flex:1;padding:15px;}
        .eas-about-img{position:relative;display:flex;justify-content:center;align-items:center;}
        .separator {width: 80px;height: 4px;background: #f20000;margin: 19px;border-radius: 2px;position: relative;}
        .eas-about-main{width:100%;max-width:500px;border-radius:10px;box-shadow:0 4px 10px rgba(0,0,0,0.1);}
        .eas-about-secondary{position:absolute;top:-50px;left:-50px;width:243px;height:auto;border-radius:10px;box-shadow:0 4px 10px rgba(0,0,0,0.1);border:5px solid #ddd;padding:5px;background:#fff;}
        .eas-about-content-container{position:relative;}
        .eas-about-content{text-align:left;position:relative;z-index:2;}
        .eas-about-title h3{font-size:28px;font-weight:bold;color:#333;}
        .eas-about-content p{font-size:16px;line-height:1.6;color:#555;margin-top:10px;}
        .eas-about-watermark{position:absolute;right:-199px;top:50%;transform:translateY(-50%) rotate(90deg);font-size:60px;font-weight:bold;color:rgba(0,0,0,0.1);letter-spacing:5px;}
        @media (max-width:992px){.row{flex-direction:column;text-align:center;}.col-lg-6{width:100%;}.eas-about-secondary{display:none;}.eas-about-watermark{font-size:40px;right:10px;}.eas-about-watermark{display:none;}}
        @media (max-width:600px){.eas-about-title h3{font-size:24px;}.eas-about-content p{font-size:14px;}.eas-about-watermark{font-size:30px;right:5px;}}

    
    
    /*Services*/
  /*Services*/
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

  {
        font-family: system-ui, -apple-system, sans-serif;
        background: linear-gradient(135deg, #1e3a8a, #3b82f6);
        color: #fff;
        min-height: 100vh;
        padding: 2rem;
      }

      .eas-services-container {
   /*     max-width: 1480px;*/
        margin: 0 auto;
        width: 100%;
                background: linear-gradient(135deg, #1e3a8a, #3b82f6);
        color: #fff;
        min-height: 100vh;
        padding: 2rem;
      }

      .eas-services-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 3rem;
      }

      .title-section {
        max-width: 70%;
      }

      .title-wrapper {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1rem;
      }

      .services-icon {
        width: 24px;
        height: 24px;
      }

      .section-subtitle {
        font-size: 1.125rem;
        font-weight: 500;
        letter-spacing: 0.5px;
        text-transform: uppercase;
      }

      .main-title {
        font-size: 3.5rem;
        font-weight: 700;
        line-height: 1.2;
        letter-spacing: -0.02em;
        margin-top: 0.5rem;
      }

      .navigation-buttons {
        display: flex;
        gap: 1rem;
        margin-left: auto;
      }

      .eas-services-carousel-button {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        backdrop-filter: blur(8px);
        transition: all 0.3s ease;
      }

      .eas-services-carousel-button:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: scale(1.05);
      }

      .eas-services-carousel-container {
        position: relative;
        width: 100%;
        overflow: hidden;
        padding: 0 1rem;
      }

      .carousel {
        display: flex;
        gap: 24px;
        transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      }

      .carousel-slide {
        flex: 0 0 calc((100% - 48px) / 3);
        height: 490px;
        position: relative;
        border-radius: 16px;
        overflow: hidden;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      }

      .carousel-slide:hover {
        transform: translateY(-5px);
      }

      .carousel-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
      }

      .carousel-slide:hover img {
        transform: scale(1.05);
      }

      .eas-services-slide-content {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 2rem;
        background: linear-gradient(
          to top,
          rgba(0, 0, 0, 0.95) 0%,
          rgba(0, 0, 0, 0.8) 40%,
          rgba(0, 0, 0, 0) 100%
        );
        color: #fff;
        transform: translateY(0);
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      }

      .eas-services-slide-content h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        font-weight: 600;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        transform: translateY(0);
        transition: transform 0.5s ease;
      }

      .eas-services-slide-content p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
        opacity: 1;
        transform: translateY(20px);
        transition: all 0.5s ease;
      }

      .carousel-slide:hover .slide-content p {
        transform: translateY(0);
      }

      .eas-services-slide-link {
        position: absolute;
        right: 24px;
        bottom: 24px;
        background: #3b82f6;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        transition: all 0.3s ease;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        opacity: 0;
        transform: translateY(20px);
      }

      .carousel-slide:hover .slide-link {
        opacity: 1;
        transform: translateY(0);
      }

      .eas-services-slide-link:hover {
        transform: scale(1.1);
        background: #2563eb;
      }

      .eas-services-slide-link svg {
        stroke: currentColor;
        stroke-width: 2;
      }

      @media (max-width: 1024px) {
        .carousel-slide {
          flex: 0 0 calc((100% - 24px) / 2);
          height: 450px;
        }

        .main-title {
          font-size: 2.5rem;
        }

        .navigation-buttons {
          margin-top: 1rem;
        }

        .eas-services-slide-content h2 {
          font-size: 1.5rem;
        }
      }

      @media (max-width: 768px) {
        {
          padding: 1rem;
        }

        .eas-services-header {
          flex-direction: column;
          gap: 2rem;
        }

        .title-section {
          max-width: 100%;
        }

        .main-title {
          font-size: 2rem;
        }

        .carousel-slide {
          flex: 0 0 100%;
          height: 400px;
        }

        .navigation-buttons {
          justify-content: center;
          width: 100%;
        }

        .eas-services-slide-content {
          padding: 1.5rem;
        }

        .slide-content h2 {
          font-size: 1.4rem;
        }

        .slide-content p {
          font-size: 0.95rem;
          margin-bottom: 1.5rem;
        }
      }
      
            /*Discover*/
      
      
      .eas5-discover {
  padding: 4rem 1rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: rgb(249, 250, 251);
  min-height: 100vh;
}

.eas5-discover__container {
  max-width: 1200px;
  margin: 0 auto;
}

.eas5-discover__content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.eas5-discover__info {
  flex: 1;
}

.eas5-discover__title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.eas5-discover__description {
  color: #666;
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.eas5-discover__dots {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.eas5-discover__dot {
  width: 2rem;
  height: 0.5rem;
  background-color: #ccc;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.eas5-discover__dot.active {
  width: 3rem;
  background-color: #ef4444;
}

.eas5-discover__cards {
  flex: 2;
  display: grid;
  gap: 1.5rem;
  position: relative;
}

.eas5-discover__card {
  background: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transform: scale(0.95);
  opacity: 0.7;
  transition: all 0.5s ease;
  display: none;
}

.eas5-discover__card.active {
  transform: scale(1.05);
  opacity: 1;
  display: block;
}

.eas5-discover__icon-wrapper {
  background-color: #eff6ff;
  width: 5rem;
  height: 5rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.eas5-discover__icon {
  width: 4rem;
  height: 4rem;
  color: #3b82f6;
}

.eas5-discover__card-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.75rem;
}

.eas5-discover__card-text {
  color: #666;
  line-height: 1.5;
}

/* Desktop Styles */
@media (min-width: 1024px) {
  .eas5-discover__content {
    flex-direction: row;
    align-items: center;
  }

  .eas5-discover__cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .eas5-discover__card {
    display: block;
  }

  .eas5-discover__card:not(.active) {
    transform: scale(0.95);
    opacity: 0.7;
  }
}

/* Mobile Styles */
@media (max-width: 1023px) {
  .eas5-discover__title {
    font-size: 2.5rem;
  }

  .eas5-discover__cards {
    grid-template-columns: 1fr;
  }

  .eas5-discover__card {
    margin: 0 auto;
    max-width: 400px;
  }
}
/*Testimonial*/

        .testimonial-main-heading {
            color: white;
            font-weight: 700;
            font-size: clamp(22px, 2vw, 3rem);
            margin-bottom: 20px;
        }
        .testimonial-sub-heading {
            color: white;
            font-weight: 700;
            font-size: clamp(1.5rem, 4vw, 2.5rem);
            margin-bottom: 30px;
        }
        .testimonial-separator {
            height: 3px;
            width: 50px;
            background-color: #f95738;
            margin: 20px auto;
        }
        .eas-testimonial-slider {
            background: linear-gradient(135deg, #1e3a8a, #3b82f6);
            padding: 60px 0;
            color: white;
            position: relative;
            overflow: hidden;
        }
        .testimonial-card {
            background-color: #1c1c1c;
            padding: 30px;
            border-radius: 15px;
            margin: 15px;
            color: white;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s, box-shadow 0.3s;
            /*max-width: 400px;*/
        }
        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }
        .testimonial-card img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid #f95738;
            background-color: white;
        }
        .testimonial-card h5 {
            margin-top: 20px;
            font-size: 1.8rem;
            color: #f95738;
        }
        .testimonial-card p {
            font-size: 1rem;
            color: #d1d1d1;
        }
        .slider-indicators [data-bs-target] {
            background-color: #f95738;
        }
        
        /*Form & Map*/
        

 

        .eas-footer-form-section-container {
            /*max-width: 1200px;*/
            margin: 40px auto;
            padding: 20px;
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            align-items: flex-start;
            justify-content: space-between;
        }

        .eas-footer-form-section-map-section {
            flex: 1;
            min-width: 45%;
            /*background-color: #f8f8f8;*/
            color: white;
            padding: 50px;
            border-radius: 10px;
            box-sizing: border-box;
        }

        .eas-footer-form-section-heading {
            font-size: 3rem;
            color: #000;
            margin-bottom: 20px;
        }

        .eas-footer-form-section-map-container {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            margin-top: 30px;
        }

        .eas-footer-form-section-map-frame {
            width: 100%;
            height: 350px;
            border: none;
        }

        .eas-footer-form-section-form-section {
            flex: 1;
            min-width: 45%;
            background-color: #fff;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            box-sizing: border-box;
        }

        .eas-footer-form-section-form-heading {
            font-size: 2.5rem;
            color: #000;
            margin-bottom: 10px;
        }

        .eas-footer-form-section-form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }

        input, textarea {
            width: 100%;
            padding: 15px;
            border: 2px solid #e2e8f0;
            border-radius: 8px;
            font-size: 1rem;
            background-color: #f9fafb;
        }

        .eas-footer-form-section-submit-button {
            background-color: #b80000;
            color: white;
            border: none;
            padding: 15px;
            width: 100%;
            font-size: 1.2rem;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .eas-footer-form-section-submit-button:hover {
            background-color: #d18d1c;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .eas-footer-form-section-container {
                flex-direction: column;
            }
            .eas-footer-form-section-map-section, .eas-footer-form-section-form-section {
                min-width: 100%;
                padding: 20px;
            }
            .eas-footer-form-section-form-grid {
                grid-template-columns: 1fr;
            }
        }

/*Footer*/



        /* Footer Section Styles */
        .eas-footer {
            background-color: #0d1117;
            padding: 80px 20px;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .eas-footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
            gap: 40px;
        }

        .eas-footer-item {
            flex: 1;
            min-width: 200px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            padding: 30px 20px;
            border-radius: 15px;
            background: linear-gradient(145deg, #161b22, #0b0e12);
            box-shadow: 8px 8px 16px #06080a, -8px -8px 16px #12161c;
        }

        .eas-footer-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 30px rgba(0, 0, 0, 0.25);
        }

        .eas-footer-item h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: #58a6ff;
        }

        .eas-footer-item p, .eas-footer-item a {
            color: #c9d1d9;
            font-size: 1rem;
            margin: 8px 0;
            line-height: 1.6;
        }

        .eas-footer-item a {
            text-decoration: none;
            color: #58a6ff;
            transition: color 0.3s ease;
        }

        .eas-footer-item a:hover {
            color: #1f6feb;
        }

        .eas-footer-icon {
            font-size: 3rem;
            color: #58a6ff;
            margin-bottom: 15px;
        }

        .eas-footer-bottom {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid #30363d;
            color: #8b949e;
            font-size: 1rem;
            margin-top: 30px;
        }

        .eas-footer-bottom a {
            color: #58a6ff;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .eas-footer-bottom a:hover {
            color: #1f6feb;
        }

        /* Responsive Footer */
        @media (max-width: 768px) {
            .eas-footer-content {
                flex-direction: column;
                align-items: center;
            }
            .eas-footer-item {
                min-width: 100%;
                margin-bottom: 20px;
            }
        }
 