/* Existing Desktop CSS */
body {
    margin: 0;
    line-height: normal;
}
body, html {
    /* overflow-x: hidden; */
   
    width: 100%;
   
}
.header, .menu-container, .menu-item {
  position: relative;
  z-index: 1000; 
}
body.sidebar-open {
    overflow: hidden; 
    position: fixed;
    width: 100%;
}
.header {
    width: 100%;
    position: absolute;
    margin: 0 auto;
    max-width: 1200px;
    left: 0;
    right: 0;
    top: 24px;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.04);
    border-radius: 20px;
    background-color: #fff;
    border: 1px solid #e1e4e8;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 12px 12px 12px 32px;
    gap: 0px;
    text-align: left;
    font-size: 16px;
    color: #1d252d;
    font-family: Poppins;
}

/* Common Logo Styles */
.logo-dark {
    position: relative;
    width: 166px;
    height: 40px;
}

.logo-dark img {
    height: 100%;
    width: auto;
}

/* Hide mobile logo by default */
.mobile-logo {
    display: none;
}

/* Desktop Menu Styles */
.menu-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
}

.menu-item {
    padding: 8px 16px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.menu-item.selected {
    background: #F3F6FA;
}

.menu-text {
    color: #1D252D;
    font-size: 16px;
    font-family: Poppins, sans-serif;
    font-weight: 400;
    word-wrap: break-word;
}

.cta-primary {
    width: 144px;
    padding: 4px;
    background: #EAEAEA;
    border-radius: 16px;
    display: inline-flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
    text-decoration: none;
}

.cta-btn {
    align-self: stretch;
    height: 44px;
    padding: 0 12px;
    background: #191919;
    overflow: hidden;
    border-radius: 12px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.cta-text {
    color: white;
    font-size: 16px;
    font-family: Poppins, sans-serif;
    font-weight: 600;
    line-height: 24px;
    word-wrap: break-word;
}

/* ------------------- Mobile View ------------------- */
.hamburger-menu,
.mobile-sidebar,
.mobile-cta {
    display: none;
}

@media (max-width: 768px) {
    .header {
        max-width: 100%;
        padding: 12px 20px;
        border-radius: 0;
        background-color: transparent;
        border: none;
        box-shadow: none;
        position: relative;
        top: 3px;
    }

    /* Hide desktop elements */
    .desktop-logo,
    .menu-container,
    .cta-primary {
        display: none;
    }

    /* Show mobile elements */
    .mobile-logo,
    .hamburger-menu {
        display: flex;
    }

    .mobile-logo {
        height: 32px;
        width: auto;
    }


    @media (max-width: 768px) {
        .hamburger-menu {
            display: block;
      
            width: 24px;
            height: 24px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0;
        }


        .hamburger-menu img {
            width: 100%;
            /* Make the image fill the button's width */
            height: 100%;
            /* Make the image fill the button's height */
        }


    }

    /* Mobile Sidebar Styles */
    .mobile-sidebar {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: white;
        z-index: 1000;
        padding: 16px 20px;
        box-sizing: border-box;
        transition: transform 0.3s ease-in-out;
        transform: translateY(-100%);
        gap: 12px;
        display: flex;
        /* This is the key line */
    }

    .mobile-sidebar.is-open {
        transform: translateY(0);
        top: 8px;
    }

    .mobile-sidebar .close-btn {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 2rem;
        background: none;
        border: none;
        cursor: pointer;
        color: #1d252d;
    }

    .mobile-menu-items {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        width: 100%;
        margin-top: 20px;
    }

    .mobile-menu-items .menu-item-mobile {
        text-decoration: none;
        width: 100%;
        padding: 8px 16px;
        border-radius: 8px;
        color: #1D252D;
        font-size: 16px;
        font-family: Poppins;
        font-weight: 400;
        word-wrap: break-word;
    }
     .mobile-cta {
        display: flex;
        width: 100%;
        margin-top: 20px;
    }
}

/* header close */
/* details sec */
/* Existing Desktop CSS */
body {
    margin: 0;
    line-height: normal;
}
html, body {
  overflow-x: hidden;
}

.header {
    width: 100%;
    position: absolute;
    margin: 0 auto;
    max-width: 1200px;
    left: 0;
    right: 0;
    top: 24px;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.04);
    border-radius: 20px;
    background-color: #fff;
    border: 1px solid #e1e4e8;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 12px 12px 12px 32px;
    gap: 0px;
    text-align: left;
    font-size: 16px;
    color: #1d252d;
    font-family: Poppins;
}

/* Common Logo Styles */
.logo-dark {
    position: relative;
    width: 166px;
    height: 40px;
}

.logo-dark img {
    height: 100%;
    width: auto;
}

/* Hide mobile logo by default */
.mobile-logo {
    display: none;
}

/* Desktop Menu Styles */
.menu-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
}

.menu-item {
    padding: 8px 16px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.menu-item.selected {
    background: #F3F6FA;
}

.menu-text {
    color: #1D252D;
    font-size: 16px;
    font-family: Poppins, sans-serif;
    font-weight: 400;
    word-wrap: break-word;
}

/* Desktop CTA Button */
.desktop-cta {
    width: 144px;
    padding: 4px;
    background: #EAEAEA;
    border-radius: 16px;
    display: inline-flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
    text-decoration: none;
}

.desktop-cta .cta-btn {
    background: #191919;
}

.desktop-cta .cta-text {
    color: white;
}


/* ------------------- Mobile View ------------------- */
.hamburger-menu,
.mobile-sidebar,
.mobile-cta {
    display: none;
}

@media (max-width: 768px) {
    .header {
        max-width: 100%;
        padding: 12px 20px;
        border-radius: 0;
        background-color: transparent;
        border: none;
        box-shadow: none;
        position: relative;
        top: 3px;
        justify-content: space-between;
        align-items: center;
    }

    /* Hide desktop elements */
    .desktop-logo,
    .menu-container,
    .desktop-cta {
        display: none;
    }

    /* Show mobile elements */
    .mobile-logo,
    .hamburger-menu {
        display: flex;
    }

    .mobile-logo {
        height: 32px;
        width: auto;
    }


    @media (max-width: 768px) {
        .hamburger-menu {
            display: block;
            width: 24px;
            height: 24px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0;
        }


        .hamburger-menu img {
            width: 100%;
            height: 100%;
            padding-left: 6px;
        }
    }

    /* Mobile Sidebar Styles */
    .mobile-sidebar {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: white;
        z-index: 1000;
        padding: 16px 20px;
        box-sizing: border-box;
        transition: transform 0.3s ease-in-out;
        transform: translateY(-100%);
        gap: 12px;
        display: flex;
    }

    .mobile-sidebar.is-open {
        transform: translateY(0);
        top: 8px;
    }

    .mobile-sidebar .close-btn {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 2rem;
        background: none;
        border: none;
        cursor: pointer;
        color: #1d252d;
    }

    .mobile-menu-items {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        width: 100%;
        margin-top: 20px;
    }

    .mobile-menu-items .menu-item-mobile {
        text-decoration: none;
        width: 100%;
        padding: 8px 16px;
        border-radius: 8px;
        color: #1D252D;
        font-size: 16px;
        font-family: Poppins;
        font-weight: 400;
        word-wrap: break-word;
    }

    /* Mobile CTA Button */
    .mobile-cta {
        display: flex;
        width: 100%;
        margin-top: 20px;
        text-decoration: none;
    }


    .mobile-cta .cta-btn {
        background: #191919;
    }
   
    .mobile-cta .cta-text {
             color: white;
        font-size: 16px;
        font-family: Poppins;
        font-weight: 600;
        line-height: 24px;
        word-wrap: break-word;
        padding: 16px;

    }
}
/* bredcrum sec */
.home {
  	position: relative;
  
    text-decoration: none;
    	color: var(--Brand-100, #137CC1);
font-size: 14px;
font-family: Poppins;
font-weight: 400;
line-height: 20px;
word-wrap: break-word;
}
.caretright-icon {
  	width: 16px;
  	position: relative;
  	max-height: 100%;
  	overflow: hidden;
  	flex-shrink: 0;
}
.about-us {
  	position: relative;
  	line-height: 24px;
  	color: #566470;
}
.home-parent {
  	align-self: stretch;
  	display: flex;
  	flex-direction: row;
  	align-items: center;
  	justify-content: flex-start;
  	gap: 4px;
}
.svg-icon {
  	width: 16px;
  	height: 16px;
}
.about-us1 {
  	position: relative;
  	line-height: 24px;
  	font-weight: 500;
}
.svg-parent {
  	border-radius: 8px;
  	background-color: #fff;
  	border: 1px solid #e1e4e8;
  	display: flex;
  	flex-direction: row;
  	align-items: center;
  	justify-content: center;
  	padding: 4px 16px;
  	gap: 10px;
}
.accelerating-digital-is {
  	align-self: stretch;
  	position: relative;
  	font-size: 40px;
  	line-height: 60px;
  	font-weight: 500;
}
.frame-container {
  	align-self: stretch;
  	display: flex;
  	flex-direction: column;
  	align-items: center;
  	justify-content: flex-start;
  	gap: 16px;
  	color: #1d252d;
}
.frame-child {
  	width: 1020px;
  	position: relative;
  	border-radius: 32px;
  	height: 600px;
  	object-fit: cover;
}
.frame-group {
  	width: 1228px;
  	display: flex;
  	flex-direction: column;
  	align-items: center;
  	justify-content: flex-start;
  	gap: 40px;
}
.frame-parent {
  	width: 100%;
  	position: relative;
  	overflow: hidden;
  	display: flex;
  	flex-direction: column;
  	align-items: center;
  	justify-content: flex-start;
  	padding: 180px 0px 60px;
  	box-sizing: border-box;
  	text-align: center;
  	font-size: 16px;
  	color: #137cc1;
  	font-family: Poppins;
}
/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 767px) {
  .accelerating-digital-is {
  width: 100%;
position: relative;
font-size: 24px;
line-height: 32px;
font-weight: 500;
font-family: Poppins;
color: #1d252d;
text-align: center;
display: inline-block;
        margin-top: 7px;
  }

  .frame-child {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    margin-top: 23px;
  }

  .frame-group {
    width: 100%;
    padding: 0 16px;
    gap: 20px;
  }

  .frame-parent {
    padding: 40px 16px;
    gap: 30px;
  }

  .svg-parent {
    padding: 4px 12px;
    font-size: 14px;
    gap: 8px;
            margin-top: 23px;
  }

  .about-us1 {
    font-size: 14px;
  }

  .home-parent {
    font-size: 14px;
    gap: 6px;
  }

  .home, .about-us {
    font-size: 14px;
    line-height: 20px;
  }
}

/* YOE */
/* CSS */
.stats-section {
  width: 100%;
  padding: 40px 20px;
  background: #1D252D;
  display: flex;
  flex-wrap: wrap;
  justify-content: center; 
  text-align: center;     
}

.stat-card {
  flex: 1 1 200px;
  margin: 10px;
  min-width: 150px;
}

.stat-number {
  color: white;
  font-size: 40px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  line-height: 60px;
}

.stat-text {
  color: #C3CCD2;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  line-height: 24px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .stats-section {
    justify-content: flex-start; /* Left align cards */
    text-align: left;            /* Text left */
    gap: 26px;
  }
}
/* Awards */
.awards-section {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

.awards-header .tag {
  display: inline-flex;             
  align-items: center;           
  gap: 8px;                      
  padding: 4px 16px;
  background: #fff;
  border: 1px solid #E1E4E8;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 16px;
  font-family: Poppins, sans-serif;
}

.awards-header .tag img {
  width: 16px;                  
  height: 16px;
  display: block;
}


.awards-header h2 {
  font-size: 44px;
  line-height: 44px;
  font-weight: 500;
  color: #1D252D;
  margin-bottom: 40px;
}

/* LOGOS GRID */
.awards-logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  align-items: center;
}

.logo-card {
  background: #fff;
  border: 1px solid #E1E4E8;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 140px;
}

.logo-card img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
}

/* ✅ Tablet view (optional: 3 per row) */
@media (max-width: 1024px) {
  .awards-logos {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ✅ Mobile view: 2 per row */
@media (max-width: 768px) {
  .awards-header h2 {
    font-size: 22px;
    line-height: 28px;
    padding: 0 10px;
  }

  .awards-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .logo-card {
    height: 100px;
  }

  .logo-card img {
    max-height: 40px;
  }
}
/* our mission */
.mission-section {
  padding: 60px 20px;
      margin-top: 4px;
}



.mission-section .container {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1228px;
  margin: 0 auto;
}

.mission-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mission-content .tag {
  display: inline-flex;
  align-items: center;
  gap: 6px; 
  padding: 4px 8px; 
  background: #fff;
  border: 1px solid #E1E4E8;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  font-family: Poppins, sans-serif;
  color: #1D252D;
  line-height: 1;
  width: fit-content;  
}

.mission-content .tag img {
  width: 16px;
  height: 16px;
  display: inline-block;
}


.mission-content h2 {
  font-size: 44px;
  line-height: 52px;
  font-weight: 500;
  font-family: Poppins, sans-serif;
  color: #1D252D;
}

.mission-content p {
  font-size: 16px;
  line-height: 24px;
  color: #485661;
  font-family: Poppins, sans-serif;
}

.mission-image {
  flex: 1;
  position: relative;
  border-radius: 32px;
  overflow: hidden;
}

.mission-image img {
  width: 100%;
  height: auto;
  border-radius: 32px;
  display: block;
}

.mission-image .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.mission-image .overlay .icon {
  width: 160px;
  height: 160px;
  background: #fff;
  border-radius: 50%;
}

.mission-image .overlay .caption {
  color: #fff;
  font-size: 22px;
  line-height: 32px;
  font-weight: 500;
  font-family: Poppins, sans-serif;
}

/* ✅ Responsive for Mobile */
@media (max-width: 768px) {
  .mission-section .container {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .mission-content h2 {
    font-size: 26px;
    line-height: 34px;
  }

  .mission-content p {
    font-size: 14px;
    line-height: 22px;
  }

  .mission-image .overlay .icon {
    width: 100px;
    height: 100px;
  }
 .mission-content {
    text-align: center;
  }
  .mission-content .tag {
    margin: 0 auto; /* center */
  }
  .mission-image .overlay .caption {
    font-size: 18px;
    line-height: 26px;
  }
}

/* our team */
.team-section {
  width: 100%;
  padding: 60px 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header .tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: #fff;
  border: 1px solid #E1E4E8;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  font-family: Poppins, sans-serif;
  color: #1D252D;
  margin-bottom: 16px;
}

.section-header .tag img {
  width: 16px;
  height: 16px;
}

.section-header h2 {
  max-width: 900px;
  margin: 0 auto;
  font-size: 44px;
  line-height: 52px;
  font-family: Poppins, sans-serif;
  font-weight: 500;
  color: #1D252D;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.team-member {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.team-member img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 16px;
}

.team-member h3 {
  font-size: 16px;
  font-weight: 500;
  font-family: Poppins, sans-serif;
  color: #1D252D;
  margin: 0;
}

.team-member p {
  font-size: 16px;
  font-weight: 400;
  font-family: Poppins, sans-serif;
  color: #485661;
  margin: 0;
}

/* ✅ Mobile Responsive */
@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-header h2 {
    font-size: 32px;
    line-height: 40px;
  }
}

@media (max-width: 600px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 24px;
    line-height: 32px;
  }
}
/* Contact us sec */
      
.contact-section {
  width: 100%;
  height: 100%;
  padding: 60px 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.contact-card {
  width: 1228px;
  height: 440px;
  position: relative;
  background: linear-gradient(180deg, #050709 0%, #2C3845 100%),
              linear-gradient(180deg, #142E50 0%, #3165AB 100%);
  border-radius: 32px;
  overflow: hidden;
}

.circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(229, 233, 238, 0.04);
}

.circle-1 { width: 920px; height: 920px; left: 154px; top: -240px; }
.circle-2 { width: 698px; height: 698px; left: 265px; top: -129px; }
.circle-3 { width: 465px; height: 465px; left: 381px; top: -13px; }

.card-content {
  position: absolute;
  top: 123px;
  left: 173px;
  width: 882px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.text-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
  color: white;
  font-family: Poppins, sans-serif;
}

.heading {
  font-size: 40px;
  font-weight: 600;
  line-height: 52px;
}

.subheading {
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}

.cta-wrapper {
  width: 251px;
  padding: 4px;
  background: #EAEAEA;
  border-radius: 24px;
  display: flex;
}

.cta-btn-alt {
  background: #191919;
  color: white;
  font-size: 16px;
  font-weight: 600;
  font-family: Poppins, sans-serif;
  padding: 16px 24px;
  border-radius: 20px;
  text-decoration: none;
  text-align: center;
  display: block;
  width: 100%;
}

/* Mobile (responsive changes) */
@media (max-width: 768px) {
      .contact-card {
        width: 331px;
        height: auto;
        padding: 103px 28px;
        border-radius: 24px;
        margin-top: -29px;
    }

  .card-content {
    position: static;
    width: 100%;
    gap: 24px;
  }

  .heading {
    color: white;
font-size: 32px;
font-family: Poppins;
font-weight: 600;
line-height: 44px;
word-wrap: break-word;
  }

  .subheading {
    color: white;
font-size: 16px;
font-family: Poppins;
font-weight: 400;
line-height: 24px;
word-wrap: break-word;
  }

  .cta-wrapper {
    width: 100%;
    border-radius: 16px;
  }

 .cta-btn-alt{
  color: white;
font-size: 16px;
font-family: Poppins;
font-weight: 600;
line-height: 24px;
word-wrap: break-word;
  }

  .circle { display: none; }
}
/* footer */
/* Footer Wrapper */
.footer {
  width: 100%;
  padding: 80px 0 60px;
  background: #1D252D;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  font-family: Poppins, sans-serif;
}

/* Footer Main Container */
.footer-container {
  width: 1120px;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

/* Left Section */
.footer-left {
  max-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  margin-bottom: 16px;
}

.footer-logo img {
  max-width: 180px;   
  height: auto;      
  display: block;
}


.logo-box {
  width: 40px;
  height: 40px;
  background: white;
  position: absolute;
  left: 0;
  top: 0;
}

.logo-text {
  width: 113px;
  height: 24px;
  background: white;
  position: absolute;
  left: 55px;
  top: 8px;
}

.footer-desc {
 color: #E1E4E8;
font-size: 14px;
font-family: Poppins;
font-weight: 400;
line-height: 20px;
word-wrap: break-word;
}

/* Social Icons */
.footer-socials {
  margin-top: auto; 
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 32px;
  height: 32px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.3s ease;
}

.social-icon:hover {
  background: #E1E4E8;
}

.social-icon .icon {
  width: 16px;
  height: 16px;
  background: #1D252D; /* Placeholder icon */
  border-radius: 3px;
}

/* Navigation Section */
.footer-nav h4 {
  color: white;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav ul li {
  margin-bottom: 8px;
}

.footer-nav ul li a {
  color: #E1E4E8;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav ul li a:hover {
  color: #ffffff;
}

/* Contact Section */
.footer-contact h4 {
  color: white;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
}

.contact-item {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.contact-item a,
.contact-item span {
  color: #E1E4E8;
  font-size: 14px;
  text-decoration: none;
}

/* Divider & Copy */
.footer-line {
  width: 100%;
  height: 1px;
  background: #36434E;
}

.footer-copy {
    width: 100%;
    text-align: center;
    color: #707B89;
    font-size: 14px;
    font-weight: 500;
    display: block;
}


/* Media query to apply styles only for screens up to 768px */
@media (max-width: 768px) {
    /* Footer Wrapper - Mobile */
    .footer {
        width: 100%;
        padding: 40px 20px;
        background: #1D252D;
        display: flex;
        flex-direction: column;
        align-items: flex-start; /* Align left for mobile */
        gap: 32px;
        font-family: Poppins, sans-serif;
    }
 .footer-desc {
          margin: 1px -38px -143px -177px;
    font-size: 14px;
    line-height: 20px;
  }

    /* Footer Main Container - Mobile */
    .footer-container {
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column; /* Stack sections vertically */
        gap: 40px;
    }

    /* Left Section - Mobile */
    .footer-left {
        width: 100%;
        display: flex;
        flex-direction: row; /* Change to row for logo and socials on one line */
        justify-content: space-between; /* Space out logo and socials */
        align-items: center; /* Vertically align them */
        gap: 16px;
    }
    
    .footer-logo {
        margin-bottom: 0;
    }

    .footer-logo img {
        max-width: 180px;
        height: auto;
    }
    
    /* Social Icons - Mobile */
    .footer-socials {
        margin-top: 0; /* Remove top margin as it's now in a row */
        display: flex;
        gap: 10px;
                margin-right: -60px;
    }

    /* Navigation Section - Mobile */
    .footer-nav {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 12px;
                margin-top: 75px;
    }

    .footer-nav h4 {
        color: white;
        font-size: 18px; /* Slightly larger heading for mobile */
        font-weight: 600;
        margin-bottom: 0;
    }

    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .footer-nav ul li a {
        color: #E1E4E8;
        font-size: 16px;
        line-height: 24px;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    /* Contact Section - Mobile */
    .footer-contact {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .footer-contact h4 {
        color: white;
        font-size: 18px; /* Slightly larger heading for mobile */
        font-weight: 600;
        margin-bottom: 0;
    }
    
    .contact-item {
        margin-bottom: 0;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .contact-item a,
    .contact-item span {
        color: #E1E4E8;
        font-size: 16px;
        text-decoration: none;
    }
    
    /* Divider & Copy - Mobile */
    .footer-line {
        width: 100%;
        height: 1px;
        background: #36434E;
        margin-top: 16px; /* Space between sections and divider */
    }

    .footer-copy {
        width: 100%;
        text-align: center;
        color: #707B89;
        font-size: 14px;
        font-weight: 500;
        margin-top: 16px;
    }
}
