
body{
    overflow-x: hidden;
}
:root {
    --primary-color: #193A68;
    --secondary-color: #ED7723;
    --font-main: 'Manrope', sans-serif;
    --hover-color: #ED7723;
    --text-color: white;
    --mobile-bg: #193A68;
}


/* banner section  */

/* 1 bg image section  */

/* Banner Section - Full Width & Height */


.banner {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    justify-content: flex-start;
    align-items: center;
    justify-content: center;
}

.banner img {
    width: 100%;
    height: 80%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.banner div {
  position: relative;
  z-index: 2;
  text-align: justify;
  padding: 20px;
  width: 100%;
  max-width: 638px;
  margin-top: 130px;
  box-sizing: border-box;
  margin-left: 50px;
}



.banner h1 {
    font-family: 'Figtree', sans-serif;;
    font-size: 45px;
    margin-bottom: 20px;
    letter-spacing: 1%;
    text-shadow: 2px 7px 5px #ED772340;
    font-weight: 550;
    
}

.banner h5 {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.banner button {
    padding: 9px 40px;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 2px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.ban-cimg {
    position: absolute;
    left: 50%;
    top: 25%;
    transform: translateY(-50%);
    width: 40%;
    z-index: 2;
    margin-left: 30px;
}

.ban-cimg img {
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: white 5px solid;
    position: absolute;
}

.ban-cimg .img1 {
    width: 481px;
    height: 337px;
    margin-left: -100px;
}

.ban-cimg .img2 {
    width: 314px;
    height: 220px;
    left: 350px;
    top: 200px;
    z-index: -3;
}

.ban-cimg .img3 {
    width: 336px;
    height: 235px;
    top: 290px;
    left: 70px;
}


/* about section  */
/* About Section Styles */
.sct-about {
    max-width: 80vw;
    margin: auto;
    padding: 40px -10px;
}
.sct-about h1{
    font-family: 'Arsenal', sans-serif;
    color: #193A68;
}
.sct-about hr {
    color: var(--secondary-color);
    height: 2px;
    background-color: var(--secondary-color);
    width: 100px;

}

.about {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Card Styles */
.about-card {
    flex: 1;
    /* background: white; */
    padding: 40px;
    border-radius: 1px;
    border: #ED772380 20px solid;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.about-card p{
    text-align: justify;
    font-family: var(--font-main);
    font-size: 14px;
}
.about-bt{
    background-color: var(--secondary-color);
    padding: 7px 30px;
    border: none;
    border-radius: 2px;
    font-size: 13px;

}

/* Swiper Container */
.about-imgs {
    flex: 2;
    position: relative;
    border-radius: 1px;
    overflow: hidden;
    min-height: 350px;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Your existing CSS remains the same */
/* Remove default Swiper navigation icons */
.swiper-button-prev::after,
.swiper-button-next::after {
    display: none;
}

/* Custom square navigation buttons */
.custom-prev,
.custom-next {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
}

/* Custom arrow icons using CSS */
.custom-prev::before,
.custom-next::before {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    border-top: 2px solid var(--primary-color);
    border-right: 2px solid var(--primary-color);
}

.custom-prev::before {
    transform: rotate(-135deg);
    margin-right: -2px;
}

.custom-next::before {
    transform: rotate(45deg);
    margin-left: -2px;
}

/* Hover effects */
.custom-prev:hover,
.custom-next:hover {
    background: #f8f8f8;
    transform: translateY(-50%) scale(1.05);
}

/* Position buttons */
.custom-prev {
    left: 15px;
}

.custom-next {
    right: 15px;
}

/* Swiper container styling */
.swiper {
    width: 100%;
    height: 100%;
    position: relative;
}

.swiper-wrapper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    width: 100%;
    height: 100%;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* Responsive Layout */
@media (min-width: 768px) {
    .about {
        flex-direction: row;
    }
    
    .about-imgs {
        margin-left: 20px;
    }
}


/* sapce scetion  */

/* Keep all your original desktop styles exactly as they are */
.space-container {
    position: relative;
    width: 100%;
    margin-top: 50px;
}

.image-wrapper {
    position: relative;
    width: 100%;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.overlay-content {
    position: absolute;
    top: 0;
    width: 100%;
    max-width: 638px;
    margin-top: 100px;
    box-sizing: border-box;
    margin-left: 70px;
}

.overlay-content h1 {
    font-size: 40px;
    margin-bottom: 15px;
    font-family: 'Arsenal', sans-serif;
    line-height: Static/Headline Large/Line Height;
    letter-spacing: 0.6%;
    color: #193A68;
}

.overlay-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-family: var(--font-main);
    font-size: 20px;
    line-height: Static/Headline Small/Line Height;
    letter-spacing: 1%;
}

.overlay-content button {
    padding: 12px 70px;
    background: transparent;
    border: var(--secondary-color) solid 1px;
    color: var(--primary-color);
    border-radius: 1px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 21px;
    letter-spacing: 0.7%;
}

.overlay-content button:hover {
    background: #e06b00;
    transform: translateY(-2px);
}

.auditorium-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    background: white;
    color: black;
    border: black 1px solid;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 60%;
    margin-top: 40px;
    max-width: 250px;
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-grow: 1;
}

.auditorium-btn .fa-arrow-right {
    margin-left: auto;
}

.auditorium-btn:hover {
    background: #8e898569;
    transform: translateY(-2px);
}

/* Mobile-only adjustments (applies only below 768px) */
@media (max-width: 768px) {
    .image-wrapper {
        position: relative;
        height: 0;
        padding-bottom: 75%; /* Creates a responsive height */
        overflow: hidden; /* Ensures nothing spills out */
    }
    
    .image-wrapper img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover; /* Ensures image covers the area */
        transition: transform 0.5s ease; /* For zoom effect */
    }
    
    /* Zoom effect on hover/touch */
    .image-wrapper:hover img,
    .image-wrapper:active img {
        transform: scale(1.05);
    }
    
    .overlay-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90%;
        max-width: none;
        margin: 0;
        padding: 20px;
        text-align: center;
        background-color: rgba(255, 255, 255, 0.85);
        border-radius: 8px;
    }
    
    .overlay-content h1 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .overlay-content p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .overlay-content button,
    .auditorium-btn {
        padding: 10px 20px;
        font-size: 1rem;
        width: auto;
        max-width: none;
        margin: 20px auto 0;
    }
}

/* Optional: Further adjustments for very small screens */
@media (max-width: 480px) {
    .overlay-content {
        padding: 15px;
    }
    
    .overlay-content h1 {
        font-size: 1.5rem;
    }
    
    .overlay-content p {
        font-size: 0.9rem;
    }
}

/* blog section  */

/* Blog Section Styles */
.blog-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-section h1 {
  font-size: 2.5rem;
  color: var(--primary-color);       /* Use your theme color */
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
  text-align: center;
}

/* Center the h1 within its container */
.blog-section {
  text-align: center;
}

.blog-section h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 170px;
  height: 3px;
  background: var(--secondary-color); /* Underline color */
}


/* Blog Container - Responsive Columns */
.blog-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Default: 3 columns */
    gap: 30px;
    padding: 10px;
}

/* Medium devices - 2 columns */
@media (max-width: 992px) {
    .blog-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Small devices - 1 column */
@media (max-width: 600px) {
    .blog-container {
        grid-template-columns: 1fr;
    }
}

/* Blog Card Styles */
.blog-card {
    background: #fff;
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 10px;
    border: 1px rgba(0, 0, 0, 0.301) solid;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.card-image {
    position: relative;
    margin: 10px 10px 0;
    border-radius: 1px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: cover;
    display: block;
}

.card-date {
    position: absolute;
    top: 0;
    left: 0;
    background: #ffffff;
    color: rgba(0, 0, 0, 0.7);
    padding: 5px 12px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.card-content {
    padding: 15px 20px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.card-content h3 {
    margin: 0 0 15px;
    font-size: 1rem;
    line-height: 1.5;
    text-align: justify;
}

.card-link {
    text-align: start;
    color: var(--secondary-color, #0077cc);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    font-size: 15px;
}

.card-link:hover {
    color: #004499;
}


/* testimonial section  */
.testimonial-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 80px 40px;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

.testimonial-left,
.testimonial-right {
  flex: 1 1 500px;
}

.testimonial-left h2 {
  font-size: 32px;
  color: #133464;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 20px;
  border-bottom: 3px solid #f26522;
  display: inline-block;
  padding-bottom: 5px;
}

.stars {
  font-size: 22px;
  color: #f26522;
  margin: 20px 0;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: justify;
}

.author {
  font-weight: bold;
  margin-bottom: 5px;
}

.location {
  font-size: 14px;
  color: #555;
}

.arrow {
  font-size: 28px;
  color: #133464;
  margin-top: 30px;
  display: inline-block;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.arrow:hover {
  transform: translateX(6px);
}

.testimonial-right img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Tablet */
@media (max-width: 992px) {
  .testimonial-section {
    flex-direction: column;
    text-align: center;
  }

  .testimonial-left,
  .testimonial-right {
    width: 100%;
  }

  .testimonial-left h2 {
    font-size: 26px;
  }

  .testimonial-text {
    width: 100%;
    text-align: center;
  }

  .arrow {
    margin-top: 20px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .testimonial-section {
    padding: 50px 20px;
    gap: 20px;
  }

  .testimonial-left h2 {
    font-size: 22px;
  }

  .stars {
    font-size: 20px;
  }

  .testimonial-text {
    font-size: 14px;
  }

  .arrow {
    font-size: 24px;
  }
}


/* new - section  */
.section-title {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  text-transform: uppercase;
  color: #133464;

}



.news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.news-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 60px 180px;
}

.news-card img {
  width: 130px;
  height: 130px;
  object-fit: cover;

}

.news-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-content .category {
  color: #f26522;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 6px;
}

.news-content h3 {
  font-size: 17px;
  font-weight: bold;
  margin: 0 0 10px;
}

.news-content p {
  font-size: 14px;
  color: #333;
  margin: 0 0 15px;
}

.bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bottom-row .date {
  font-size: 14px;
  font-weight: 500;
}

.arrow-icon {
  /* display: inline-block; */
  font-size: 18px;
  border: 1px solid #f26522;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  text-align: center;
  line-height: 26px;
  color: #f26522;
  cursor: pointer;
  transition: all 0.3s ease;
}

.arrow-icon:hover {
  background-color: #f26522;
  color: #fff;
}

.news-btn {
  margin-top: 50px;
  margin-left: 10%;
  text-align: start;
}

.news-btn a {
  display: inline-block;
  padding: 10px 18px;
  border: 1px solid #133464;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  color: #133464;
  transition: 0.3s ease;
}

.news-btn a span {
  margin-left: 8px;
}

.news-btn a:hover {
  background-color: #133464;
  color: #fff;
}



/* FaQ section  */
.faq-section {
  max-width: 100%;
  margin: 50px auto;
  background: #e6ecf4;
  padding: 30px 20px;
}

.section-title {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  text-transform: uppercase;
  color: #133464;
  position: relative;
  margin-bottom: 10px;
  font-family: 'Arsenal', sans-serif;
}

.section-title::after {
  content: '';
  display: block;
  height: 3px;
  width: 60px;
  background-color: #f26522;
  margin: 10px auto 20px;
}

.subtitle {
  text-align: center;
  font-size: 15px;
  margin-bottom: 30px;
  color: #222;
}

.accordion-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.accordion {
  background: white;
  border: 1px solid #ccc;
  border-radius: 3px;
  overflow: hidden;
  width: 70%;
  margin: auto;
}

.accordion-header {
  padding: 15px 20px;
  cursor: pointer;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}

.accordion-header:hover {
  background: #d1d1d1;
}

.accordion-body {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #fafafa;
  font-size: 14px;
  line-height: 1.6;
}

/* Rotating + symbol */
.accordion-header span {
  display: inline-block;
  transition: transform 0.3s ease;
}

.accordion-header.active span {
  transform: rotate(45deg);
}

/* ✅ Responsive Adjustments */
@media (max-width: 768px) {
  .section-title {
    font-size: 22px;
  }

  .subtitle {
    font-size: 14px;
  }

  .accordion {
    width: 100%;
  }

  .accordion-header,
  .accordion-body {
    padding: 5px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 20px;
  }

  .accordion-header {
    font-size: 14px;
  }

  .accordion-body {
    font-size: 13px;
  }
}





/* space section  */

/* auditoriums home pahe  */


/* Auditoriums Section */
.auditoriums-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
}

.auditoriums-section h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.auditoriums-section h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 170px;
    height: 3px;
    background: var(--secondary-color);
}

/* Auditoriums Grid */
.auditoriums-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap:30px;
    margin-top: 30px;
}

/* Auditorium Card */
.auditorium-card {
    background: white;
    border-radius: 1px;
    overflow: hidden;
    box-shadow: 10px 5px 25px rgba(0, 0, 0, 0.326);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.auditorium-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 55px rgba(0, 0, 0, 0.418);
}

.auditorium-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.card-content {
    padding: 20px;
    text-align: center;
}

.card-content h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.card-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.view-btn {
    padding: 10px 25px;
    background: var(--secondary-color);
    color: white;
    width: 100%;
    border: none;
    border-radius: 1px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-btn:hover {
    background: #e06b00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(237, 119, 35, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .auditoriums-container {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .auditorium-card {
        margin-bottom: 20px;
    }
}
/* auditoriums home pahe  end */


/* add section  */

/* Ads Section Styling */
.ads-section {
    padding: 40px 0;
    background: #f9f9f9;
}

.ads-swiper {
    width: 100%;
    margin: 0 auto;
}

.ads-swiper .swiper-slide {
    width: 100%;
}

.ads-swiper img {
    width: 100%;
    height: auto;
    display: block;
}

/* Uniform Dot Pagination */
.swiper-pagination {
    position: relative;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ccc;
    opacity: 1;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: var(--secondary-color);
    /* Remove scale transform to keep same size */
}



/* footer section  */

.footer {
  background-color: #173766;
  color: #fff;
  padding: 40px 20px 20px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

.footer-left,
.footer-center,
.footer-right {
  flex: 1 1 300px;
  margin: 10px 20px;
}

.logo {
  width: 60px;
  margin-bottom: 10px;
}

.footer-center h4,
.footer-right h4 {
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-center ul,
.footer-right ul {
  list-style: none;
  padding: 0;
}

.footer-center ul li,
.footer-right ul li {
  margin-bottom: 10px;
}

.footer-center ul li a,
.footer-right ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-center ul li a:hover,
.footer-right ul li a:hover {
  color: #ccc;
}

.footer-bottom {
  border-top: 1px solid #ccc;
  margin-top: 30px;
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 14px;
  color: #ddd;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ✅ Responsive Adjustments */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    flex: 1 1 100%;
    margin: 10px 0;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }

  .social-links {
    margin-top: 10px;
  }
}








/* Responsive Adjustments */
@media (max-width: 1440px) {
    .ban-cimg .img1 {
        width: 400px;
        height: 280px;
        margin-left: -80px;
    }
    .ban-cimg .img2 {
        width: 260px;
        height: 182px;
        left: 290px;
        top: 170px;
    }
    .ban-cimg .img3 {
        width: 280px;
        height: 196px;
        top: 240px;
        left: 60px;
    }
}

@media (max-width: 1200px) {
    .ban-cimg {
        width: 50%;
        display: none;
    }
    .ban-cimg .img1 {
        width: 350px;
        height: 245px;
        margin-left: -60px;
    }
    .ban-cimg .img2 {
        width: 230px;
        height: 161px;
        left: 250px;
        top: 150px;
    }
    .ban-cimg .img3 {
        width: 245px;
        height: 172px;
        top: 210px;
        left: 50px;
    }
}

@media (max-width: 992px) {
    .ban-cimg {
        position: relative;
        width: 100%;
        left: -20px;
        top: -460px;
        transform: none;
        margin: 30px 0;
        height: 300px; /* Adjust based on your needs */
    }
    .ban-cimg img {
        position: absolute;
    }
    .ban-cimg .img1 {
        width: 40%;
        height: auto;
        max-width: 481px;
        left: 10%;
        margin-left: 0;
    }
    .ban-cimg .img2 {
        width: 40%;
        max-width: 314px;
        height: auto;
        left: 55%;
        top: 150px;
    }
    .ban-cimg .img3 {
        width: 45%;
        max-width: 336px;
        height: auto;
        top: 300px;
        left: 20%;
    }
    .benner-sec{
        height: 810px;
    }
}

@media (max-width: 768px) {
    .ban-cimg {
        height: 200px;
    }
    .ban-cimg .img1 {
        width: 70%;
        left: 5%;
    }
    .ban-cimg .img2 {
        width: 40%;
        left: 50%;
        top: 120px;
    }
    .ban-cimg .img3 {
        width: 45%;
        top: 250px;
        left: 15%;
    }
    .banner div{
        width: 400px;
        left: -50px;
        top: -100px;
        font-size: 10px;
    }
    .banner h1{
        font-size: 25px;
    }
    .sct-about{
        position: relative;
        top: -100px;
    }
    .scpace-container img{
        position: relative;
        top: -250px;
        width: 120%;
    }

    /* news-section  */
    @media (max-width: 1024px) {
  .news-card {
    padding: 40px 60px;
  }
}

@media (max-width: 768px) {
  .news-grid {
    grid-template-columns: 1fr; /* Stack cards vertically */
    gap: 30px;
  }

  .news-card {
    flex-direction: column; /* Stack image and content */
    align-items: center;
    padding: 30px 20px;
    text-align: center;
  }

  .news-card img {
    width: 100px;
    height: 100px;
  }

  .news-content {
    align-items: center;
  }

  .bottom-row {
    flex-direction: column;
    gap: 10px;
  }

  .news-btn {
    margin-left: 0;
    text-align: center;
  }
}

   

}

@media (max-width: 576px) {
    .ban-cimg {
        height: 400px;
    }
    .ban-cimg img {
        border-width: 3px;
    }
    .ban-cimg .img1 {
        width: 60%;
        left: 10%;
    }
    .ban-cimg .img2 {
        width: 60%;
        left: 40%;
        top: 100px;
    }
    .ban-cimg .img3 {
        width: 55%;
        top: 130px;
        left: 20%;
    }
}
@media (max-width: 390px) {
    .ban-cimg {
        display: none;
    }

}




