

.custom-bg {

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
}
.carousel-item{
  margin-top: 80px;
  height: auto;
  width: 100%;
}

.custom-navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    font-family: 'Roboto', sans-serif;
    z-index: 1030;
    
    
    
  }
  
  .logo-icon {
    height: 80px;
  }
  
  /* Nav links styling */
  .navbar-nav .nav-link {
    white-space: nowrap; /* Prevent line break inside nav links */
    color: #0082fF;
    font-weight: 500;
    font-size: x-large;
    transition: color 0.3s ease;
  }
  
  .navbar-nav .nav-link:hover {
    color: #0082FF !important;
    
  }
  
  /* Active nav link styling */
  .custom-navbar .nav-link.active {
    color: #ed1c24 !important;
    border-bottom: 3px solid #ed1c24;
  }
  
  /* Hover underline */
  .custom-navbar .nav-link:hover {
    border-bottom: 3px solid #0082FF;
  }
  
  /* Responsive styles */
  @media (max-width: 900px) {
    .custom-navbar {
      height: auto;
      border-radius: 0;
      padding: 10px 0;
      flex-wrap: wrap;
      gap: 8px;
    }
  
    .navbar-brand {
      font-size: 18px;
    }
  
    .navbar-nav {
      flex-direction: column !important;
      gap: 0.5rem !important;
      flex-basis: 100%;
      margin-bottom: 0;
    }
  
    .navbar-nav .nav-link {
      white-space: nowrap;
      font-size: 16px;
      padding-left: 0;
    }
    
  }


  
  
  /* HERO SECTION BASE */
 

  /* Use Roboto font globally */
body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #ffffff;
  }
  
  /* Hero Section and Consistent Background for All Slides */
  .hero-section {
    background-color: #0D5BA6;
    color: #ffffff;
  }
  
  .slide-bg {
    background-color: #0D5BA6; /* same for all slides */
  }
  
  /* Typography */
  .hero-title {
    font-size: 48px;
    font-weight: 700;
  }
  
  .hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
  }
  
  .hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
  }
  
  /* Call-to-action Button */
  .cta-button {
    background-color: #ffffff;
    color: #004689;
    font-weight: 600;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: inline-block;
  }
  
  .cta-button:hover {
    background-color: #eaeaea;
  }
  
  /* Carousel Transitions */
  .carousel-item {
    transition: opacity 1s ease-in-out;
  }
  
  /* Carousel Indicators (Pagination Dots) */
  .carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ffffff;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    margin: 0 6px;
  }
  
  .carousel-indicators .active {
    opacity: 1;
    background-color: #ffffff;
  }
  
  /* Carousel Navigation Arrows */
  .custom-carousel-controls .carousel-control-prev,
  .custom-carousel-controls .carousel-control-next {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    margin-top: 80px;
  }
  
  .custom-carousel-controls .carousel-control-prev {
    left: 15px;
  }
  
  .custom-carousel-controls .carousel-control-next {
    right: 15px;
  }
  
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    background-size: 100% 100%;
  }
  
  /* Responsive Styles */
  @media (max-width: 991.98px) {
    .hero-title {
      font-size: 36px;
    }
  
    .hero-subtitle {
      font-size: 18px;
    }
    #img1{
      width: 600px;
    }
  
    .hero-image {
      max-width: 100%;
    }
  
    .cta-button {
      padding: 10px 20px;
      font-size: 0.95rem;
    }
  }
  
  @media (max-width: 575.98px) {
    .hero-title {
      font-size: 28px;
    }
  
    .hero-subtitle {
      font-size: 16px;
    }
  
    .hero-image {
      max-width: 85%;
      margin-top: 20px;
    }
  
    .cta-button {
      padding: 8px 16px;
      font-size: 0.9rem;
    }
    .logo-icon {
      height: 40px;
      width: 150px;
    }
    .carousel-item{
      margin-top: 30px;
      height: auto;
      width: 100%;
    }
  
    /* Hide arrows on small screens if needed */
    .custom-carousel-controls {
      display: none;
    }
  }
  


  

/* Welcome Section Styles */
.welcome-section {
    background: linear-gradient(to bottom, #ffffff 0%, #e7f1fb 100%);
    color: #000000; /* black text */
    font-family: 'Roboto', sans-serif;
    padding-top: 48px; /* 3rem = 48px */
    padding-bottom: 48px;
    text-align: center;
    
  }
  
  #togglebtn {
    background-color: #0082FF;
  }

  .welcome-title {
    font-size: 40px; /* 2.5rem */
    color: #000000; /* ensure black */
    margin-bottom: 24px; /* 1.5rem */
  }
  
  .welcome-text {
    font-weight: 400;
    line-height: 24px; /* about 1.6 x 15px font size */
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    white-space: pre-line; /* keep line breaks */
    color: #000000; /* black */
    font-size: 20px; /* ~1rem */
    margin-bottom: 16px; /* reduce bottom spacing */
    font-family: 'Roboto', sans-serif;
  }
  
  /* Responsive Adjustments */
  
  /* Tablets and below */
  @media (max-width: 991.98px) {
    .welcome-title {
      font-size: 32px; /* ~2rem */
    }
  
    .welcome-text {
      font-size: 14px;
      max-width: 90%;
    }
  }
  
  /* Mobile devices */
  @media (max-width: 575.98px) {
    .welcome-title {
      font-size: 26px; /* ~1.6rem */
    }
  
    .welcome-text {
      font-size: 16px !important;
      max-width: 95%;
      text-align: left; /* align text left on mobile */
    }
    #para{
      font-size: 18px;
      line-height: 24px;
    }
  }
  


  /* Reset Bootstrap's default spacing conflict on row */
.pillars-row {
    justify-content: flex-start;
  }
  
  /* Force each card to align consistently */
  .pillars-row > [class*="col-"] {
    display: flex;
    align-items: stretch;
  }
  
  /* Card container */
  .card-rounded {
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    padding: 32px;
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  
  /* Hover effect on larger devices */
  @media (min-width: 768px) {
    .card-rounded:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }
  }
  #para{
    font-size: 20px;
  }
  
  /* Icon container */
  .icon-circle {
    height: 100px;
    width: 100px;
    margin: 0 auto 15px;
    background-color: #eef1f8;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
  }
  
  .icon-circle img {
    height: 80px;
    width: 80px;
    object-fit: contain;
  }
  
  /* Responsive tweaks */
  @media (max-width: 767px) {
    .card-rounded {
      padding: 24px;
     
  
    }
  
    .icon-circle {
      height: 80px;
      width: 80px;
    }
  
    .icon-circle img {
      height: 60px;
      width: 60px;
    }
  
    .card-rounded h5 {
      font-size: 18px;
      text-align: left;
    }
  
    .card-rounded p {
      font-size: 15px;
      text-align: left;
    }
  }
  


  /* About Us Section */
  #Aboutus {
    padding-top: 120px; /* height of navbar */
    margin-top: -120px;
  }

.about-section {
    background: linear-gradient(to bottom, #ffffff, #e6f0fa);
    padding: 60px 0;
  }
  
  .about-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .about-image-wrapper img {
    width: 300px;
    height: auto;
    object-fit: cover;
    border-radius: 0%;
    /*box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);*/
  }
  
  .about-text {
    margin-top: 30px;
  }
  
  .about-text h4 {
    font-size: 32px;
    font-weight: bold;
  }
  
  .about-text p {
    font-size: 16px;
  }
  
  /* What We Do Section */
  .what-we-do-section {
    background-color: #f9f9f9;
    padding: 60px 0;
  }
  
  .what-we-do-section .about-image-wrapper img {
    width: 300px;
    height: auto;
    object-fit: cover;
    border-radius: 30% !important;
    /*box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);*/
  }
  
  .what-we-do-section .about-text {
    margin-top: 30px;
  }
  
  .what-we-do-section h4 {
    font-size: 32px;
    font-weight: bold;
  }
  
 
  
  /* Desktop view */
  @media (min-width: 992px) {
    
    .custom-bg {

      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      height: 100vh;
    }
    .carousel-item{
      margin-top: 100px;
      height: 500px;
      width: 100%;
    }
    .hero-title{
      margin-top: 100px;
    }
    .hero-subtitle{
      margin-top: 50px;
    }
    
    
    .about-text h4, .what-we-do-section .about-text h4 {
        font-size: 32px;
    }
  
    .about-text p, .what-we-do-section .about-text p,  #aboutuspara{
        font-size: 24px;
    }
   
  }
  
  /* Tablet view */
  @media (min-width: 768px) and (max-width: 991px) {
    .about-section, .what-we-do-section {
        padding: 50px 0;
    }
  
    .about-image-wrapper img, .what-we-do-section .about-image-wrapper img {
        width: 250px;
    }
  
    .about-text h4, .what-we-do-section .about-text h4 {
        font-size: 28.8px;
    }
  
    .about-text p, .what-we-do-section .about-text p {
        font-size: 16px;
    }
    #aboutuspara {
      font-size: 18px;
    }

    .carousel-item{
      margin-top: 110px;
      height: auto;
      width: 100%;
    }
    .product-img {
      width: 100%;
      height: 150px;
      object-fit: cover;
      border-radius: 10px 10px 0 0;
      margin-bottom: 12px;
      display: block;
    }
  }
  
  /* Mobile view */
  @media (max-width: 767px) {
    .about-section, .what-we-do-section {
        padding: 30px 0;
    }
  
    .about-image-wrapper img, .what-we-do-section .about-image-wrapper img {
        width: 200px;
    }
  
    .about-text h4, .what-we-do-section .about-text h4 {
        font-size: 24px;
    }
  
    .about-text p, .what-we-do-section .about-text p {
        font-size: 16px;
    }
  
    /* Mobile Image First Layout for "Who We Are" */
    .about-section .row {
        display: flex;
        flex-direction: column;
        text-align: left;
    }
  
    .about-section .col-md-5, .about-section .col-md-7 {
        order: 1;
    }
  
    /* Mobile Image First Layout for "What We Do" */
    .what-we-do-section .row {
        display: flex;
        flex-direction: column;
        text-align: center;
    }
  
    .what-we-do-section .col-md-5, .what-we-do-section .col-md-7 {
        order: 1;
    }
  
    /* Ensure text is centered in mobile view */
    .about-text, .what-we-do-section .about-text {
        text-align: center;
    }
  
    /* Ensure container aligns everything to the center */
    .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
  }

  
 /* Vision & Mission Background */
.vision-mission-section {
    background: linear-gradient(to bottom, #ffffff, #eaf4fc);
  }
  
  /* Image Container Styling */
  .vision-mission-image-container {
    width: 260px;
    height: 260px;
    padding: 8px;
  }
  
  /* Red underline bar */
  .red-line {
    width: 60px;
    height: 2px;
    background-color: #E41F28;
  }
  
  /* Responsive adjustments */
  @media (max-width: 991px) {
    .vision-mission-image-container {
      width: 220px;
      height: 220px;
    }
  
    .vision-mission-section h3 {
      font-size: 20px;
    }
  
    .vision-mission-section p {
      font-size: 18px;
      text-align: left;
    }
  
    .red-line {
      margin-left: 0;
    }
  }
  
  @media (max-width: 575px) {
    .vision-mission-section h3 {
      font-size: 18px;
    }
  
    .vision-mission-image-container {
      width: 180px;
      height: 180px;
    }
    .product-img {
      width: 100%;
      height: 150px;
      object-fit: cover;
      border-radius: 10px 10px 0 0;
      margin-bottom: 12px;
      display: block;
    }
  }
  


  /* ---------- GENERAL RESET ---------- */
/* Core styles */
body {
    background-color: #f8fbff;
    margin: 0;
    padding: 0;
    font-family: helvetica, sans-serif;
  }
  
  h2.section-title {
    text-align: center;
    font-size: 28px;
    color: #212529;
    margin-top: 0px;
    letter-spacing: 0px;
  }
  
  /* Container for cards */
  .content {
    max-width: auto;
   display: flex;
    flex-wrap: wrap;
    justify-content: center !important;
    align-items: center;
    gap: 12px;
  }
  
  /* Card styles */
  .card {
    background-color: #E5F0FA;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    cursor: pointer;
    padding: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    
    
  
    /* Default width for desktop (3 per row) */
    flex: 0 0 calc(33.333% - 20px);
  
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  
  .icon {
    width: 80px;
    height: 80px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #0D5BA6; /* blue */
    font-size: 36px;
    transition: color 0.3s ease;
  }
  
  .material-icons.md-36 {
    font-size: 36px;
  }
  
  .title {
    margin-top: 15px;
    font-size: 18px;
    font-weight: bold;
    color: #0D5BA6; /* blue */
    text-transform: uppercase;
    
    transition: color 0.3s ease;
  }
  
  .text {
    font-size: 16px;
    margin-top: 15px;
    color: #0D5BA6; /* blue by default */
    font-weight: 400;
    letter-spacing: 0.5px;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: color 0.3s ease, opacity 0.3s ease, max-height 0.3s ease;
  }
  
  /* Hover effect only on desktop */
  @media (min-width: 992px) {

  
    .card:hover .text {
      opacity: 1;
      max-height: 90px;
      color: #E41F28; /* red on hover */
    }
  
    .card:hover .icon {
      color: #E41F28; /* red */
    }
  
    .card:hover .title {
      color: #E41F28; /* red */
    }
    .text {
    font-size: 24px;
    margin-top: 15px;
    color: #0D5BA6; /* blue by default */
    font-weight: 400;
    letter-spacing: 0.5px;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: color 0.3s ease, opacity 0.3s ease, max-height 0.3s ease;
  }
  .title {
    margin-top: 20px;
    font-size: 22px;
    font-weight: bolder;
    color: #0D5BA6; /* blue */
    text-transform: uppercase;
    
    transition: color 0.3s ease;
  }
  .card {
    background-color: #E5F0FA;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    cursor: pointer;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    width: 200px ;
    height: 350px;
  }
  .product-img {
    width: 100%;
    height: 250px !important;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
    margin-bottom: 12px;
    display: block;
  }
  
  }
  
  /* Tablet and Mobile styles */
  /* 2 cards per row, no hover effect, text always visible and blue */
  @media (max-width: 991.98px) {
    .card {
      flex: 0 0 calc(50% - 20px);
      width: 150px;
      height: 335px;
    }
    .welcome-text{
      font-size: 20px;
      width: auto;
    }
  
    .text {
      opacity: 1 !important; /* always visible */
      max-height: 100% !important;
      color: #0D5BA6 !important; /* always blue */
    }
  
    .card:hover {
      background-color: #E5F0FA; /* no hover change */
      transform: none;
    }
  
    .card:hover .icon,
    .card:hover .title {
      color: #0D5BA6 !important; /* no hover color change */
    }
    .product-img {
      width: 100%;
      height: 150px;
      object-fit: cover;
      border-radius: 10px 10px 0 0;
      margin-bottom: 12px;
      display: block;
    }
  }

  
  /*products grid filter*/
 /* General Styles */
 #Products {
  padding-top: 120px !important; /* height of navbar */
  margin-top: -120px !important;
}
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif, sans-serif;
  margin: 0;
  padding: 0;
  
}

#Products {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

/* Section Title */
.section-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 30px;
}

/* Product Tabs */
.product-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 25px;
}

.tab-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  cursor: pointer;
  border-radius: 12px;
  background-color: #fae5e8;
  transition: background0.3s, color 0.3s;
  text-align: center;
  width: 110px;
  user-select: none;
  box-shadow: 0 2px 10px ;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.tab-item:hover {
  background-color: #e3f1ff;
}

.tab-item.active-tab {
  background-color: #ed1c24;
  color: #ffffff;
}

.tab-icon {
  width: 30px;
  height: 30px;
  margin-bottom: 6px;
  display: block;
  filter: grayscale(100%);
  transition: filter 0.3s;
}


.tab-label {
  font-weight: 600;
  font-size: 14px;
  margin: 0;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Default Mobile */
  gap: 15px;
  padding: 5px 10px;
}

.product-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  padding: 20px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
}



.product-name {
  
  padding: 12px;
  font-weight: 600;
  color: #000000;
  border-radius: 0 0 10px 10px;
  transition: background0.3s, color 0.3s;
  margin: 0;
}

.product-card:hover .product-name {
  background: #0d5ba6;
  color: #ffffff;
}

/* Hiding filtered cards (used with JS class toggle) */
.product-card.hidden {
  display: none !important;
}

/* Media Queries */

/* Small Devices: Mobile */
@media (max-width: 576px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    
  }

  .tab-item {
    width: 70px;
    padding: 10px;
  }

  .tab-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 4px;
  }

  .tab-label {
    font-size: 11px;
  }

  .product-card {
    
    height: 250px;
    width: 160px;
  }
    #Products {
      
      padding: 10px 10px;
    }
  
  

  .product-name {
    font-size: 13px;
    padding: 10px;
  }
}

/* Medium Devices: Tablets */
@media (min-width: 577px) and (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .tab-item {
    width: 100px;
    padding: 12px; 
  }

  .product-card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    padding: 10px 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 280px;
    width: 240px;
    
  }
  .product-name{
    font-size: 14px;
  }
  

  .tab-label {
    font-size: 13px;
  }
  .product-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
    margin-bottom: 12px;
    display: block;
  }
}

/* Large Devices: Desktop */
@media (min-width: 1025px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .tab-item {
    width: 120px;
    padding: 15px;
  }

  .tab-label {
    font-size: 15px;
  }

  .tab-icon {
    width: 32px;
    height: 32px;
  }
}




/*contact us section*/
/* Contact Section */

.contact-section {
    background: linear-gradient(to bottom, #ffffff, #eaf5ff);
    padding: 40px 0;
  }
  
  .contact-section h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
  }
  
  .contact-section img {
    width: 30px;
    height: 30px;
  }
  
  .contact-section .d-flex {
    align-items: center;
  }
  
  .contact-section .d-flex div {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
  }
  
  /* Social Media Icons */
  .social-icons ul {
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .social-icons ul li a {
    width: 70px;
    height: 70px;
    background-color: #E41F28; /* Dark background to make white icon visible */
    display: block;
    border-radius: 50%;
    text-align: center;
    line-height: 52px;
    font-size: 22px;
    position: relative;
    overflow: hidden;
    border: 2px solid #262626;
    z-index: 0;
  }
  
  .social-icons ul li a:hover {
    background-color: #333; /* Darker shade on hover */
    transform: scale(1.1);  /* Slight zoom effect */
    transition: all 0.3s ease-in-out;
  }
  
  .social-icons ul li a .icon {
    position: absolute;
    color: #fff;
    z-index: 0;
    backface-visibility: hidden;
  }
  
  /* Google Map Styling */
  .contact-section iframe {
    border-radius: 8px;
  }
  
  /* Footer */
  .footer {
    background-color: #ffffff;
    font-size: 0.95rem;
  }
  
  /* Responsive Adjustments */
  
  /* Mobile View */
  @media (max-width: 576px) {
    .social-icons ul {
      flex-wrap: wrap;
      justify-content: flex-start;
    }
  
    .social-icons ul li {
      margin-bottom: 10px;
    }
  
    .contact-section .col-12 {
      margin-bottom: 20px;
    }
  
    .contact-section h4 {
      font-size: 1.3rem;
    }
  }
  
  /* Tablet View */
  @media (max-width: 768px) {
    .contact-section .row {
      flex-direction: column;
      align-items: center;
    }
  
    .contact-section .col-md-6 {
      width: 100%;
      margin-bottom: 20px;
    }
  
    .contact-section h4 {
      font-size: 1.4rem;
    }
  }
  
  /* Desktop View */
  @media (min-width: 992px) {
    .contact-section .row {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
    }
  
    .contact-section .col-md-6 {
      width: 48%;
      margin-bottom: 0;
    }
  
    .contact-section h4 {
      font-size: 1.6rem;
    }
  }
  
  

  /* Footer */
  .footer {
    background-color: #ffffff;
    font-size: 0.95rem;
  }
  
  /* Social Media Icons */
  .social-icons ul {
    display: flex;
    gap: 5px;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .social-icons ul li a {
    width: 70px;
    height: 70px;
    background-color: #E41F28; /* Dark background to make white icon visible */
    display: block;
    border-radius: 50%;
    text-align: center;
    line-height: 52px;
    font-size: 22px;
    position: relative;
    overflow: hidden;
    border: 2px solid #262626;
    z-index: 0;
   
  }
  
  .social-icons ul li a .icon {
    position: absolute;
    color: #3b0a0a; /* Visible white icon on dark background */
    
    z-index: 0;
    backface-visibility: hidden;
  }
  
 
  
  /* Responsive Adjustments */
  @media (max-width: 576px) {
    .social-icons ul {
      flex-wrap: wrap;
      justify-content: flex-start;
    }
  
    .social-icons ul li {
      margin-bottom: 10px;
    }
  }
  