/* 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;     /* fixed kiya */
    top: 36px;              /* 24px ki jagah 0 kiya */
    left: 0;
    right: 0;
    margin: 0 auto;
    max-width: 1200px;
  z-index: 1000 !important; /* zyada value de do */
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.08);
    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;
    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;
}
.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;
    }

    /* 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;
            /* Change from flex to 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;
    }
       /* 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: 110px;
    }

    }




/* header close */
/* our expertise */
/* .content-wrapper {
    width: 100%;         
   
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 0;    
    overflow: hidden;
} */

/* Desktop (same as abhi hai) */
.content-wrapper {
    width: 100%;         
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 0;    
    overflow: hidden;
}

/* 📱 Mobile View */
@media (max-width: 768px) {
  .content-wrapper > div {
    padding-top: 21px !important;
    padding-bottom: 120px !important;
  }

  .content-wrapper > div > div {
    width: 100% !important;        /* 1020px → 100% */
    padding: 0 16px;               /* side spacing */
  }

  .content-wrapper h1,
  .content-wrapper div[style*="font-size: 64px"] {
    font-size: 23px !important;   /* heading chhoti */
    line-height: 38px !important;
  }

  .content-wrapper div[style*="font-size: 16px"][style*="font-weight: 400"] {
          font-size: 17px !important;
        line-height: 22px !important;
        margin-right: 29px;
  }

  .content-wrapper div[style*="font-size: 16px"][style*="font-weight: 500"] {
    font-size: 14px !important;   /* "Our Expertise" label chhoti */
    line-height: 20px !important;
    
  }
}
/* cards sec */
.home {
  	position: relative;
font-size: 16px;
line-height: 24px;
font-family: Poppins;
color: #137cc1;
text-align: center;
text-decoration: none;
}
.caretright-icon {
  	width: 16px;
  	position: relative;
  	max-height: 100%;
  	overflow: hidden;
  	flex-shrink: 0;
}
.expertise {
  	position: relative;
  	line-height: 24px;
  	color: #566470;
}
.home-parent {
  	width: 1228px;
  	display: flex;
  	flex-direction: row;
  	align-items: center;
  	justify-content: flex-start;
  	gap: 4px;
}
.frame-child {
  	width: 584px;
  	position: relative;
  	border-radius: 12px;
  	height: 584px;
  	overflow: hidden;
  	flex-shrink: 0;
}
.digital-experience-dx {
  	align-self: stretch;
  	position: relative;
  	line-height: 30px;
  	font-weight: 500;
}
.at-accelerating-digital {
  	align-self: stretch;
  	position: relative;
  	font-size: 16px;
  	line-height: 24px;
  	color: #485661;
}
.digital-experience-dx-parent {
  	align-self: stretch;
  	display: flex;
  	flex-direction: column;
  	align-items: flex-start;
  	justify-content: flex-start;
  	gap: 12px;
}
.frame-item {
  	width: 24px;
  	position: relative;
  	border-radius: 32px;
  	height: 24px;
  	overflow: hidden;
  	flex-shrink: 0;
  	object-fit: cover;
    background-color: black;
}
.lightning-fast-mobile-optimiz {
  	flex: 1;
  	position: relative;
  	line-height: 24px;
  	font-weight: 500;
}
.instance-parent {
  	align-self: stretch;
  	display: flex;
  	flex-direction: row;
  	align-items: center;
  	justify-content: flex-start;
  	gap: 16px;
}
.frame-parent2 {
  	align-self: stretch;
  	display: flex;
  	flex-direction: column;
  	align-items: flex-start;
  	justify-content: flex-start;
  	gap: 16px;
  	font-size: 16px;
}
.frame-parent1 {
  	flex: 1;
  	display: flex;
  	flex-direction: column;
  	align-items: flex-start;
  	justify-content: center;
  	gap: 32px;
}
.frame-div {
  	width: 1228px;
  	display: flex;
  	flex-direction: row;
  	align-items: center;
  	justify-content: flex-start;
  	gap: 60px;
}
.freepik-floor-inject-311-icon {
  	position: absolute;
  	height: 53.23%;
  	width: 92.18%;
  	top: 43.02%;
  	right: 3.91%;
  	bottom: 3.75%;
  	left: 3.91%;
  	max-width: 100%;
  	overflow: hidden;
  	max-height: 100%;
}
.freepik-shadows-inject-311-icon {
  	position: absolute;
  	height: 39.7%;
  	width: 83.45%;
  	top: 51.74%;
  	right: 6.42%;
  	bottom: 8.56%;
  	left: 10.13%;
  	max-width: 100%;
  	overflow: hidden;
  	max-height: 100%;
}
.freepik-globe-inject-311-icon {
  	position: absolute;
  	height: 33.45%;
  	width: 33.45%;
  	top: 6.65%;
  	right: 35.79%;
  	bottom: 59.9%;
  	left: 30.76%;
  	max-width: 100%;
  	overflow: hidden;
  	max-height: 100%;
}
.freepik-gears-inject-311-icon {
  	position: absolute;
  	height: 14.68%;
  	width: 28.6%;
  	top: 76.09%;
  	right: 6.98%;
  	bottom: 9.23%;
  	left: 64.42%;
  	max-width: 100%;
  	overflow: hidden;
  	max-height: 100%;
}
.freepik-character-2-inject-3-icon {
  	position: absolute;
  	height: 56.2%;
  	width: 45.85%;
  	top: 20.56%;
  	right: 8.7%;
  	bottom: 23.24%;
  	left: 45.45%;
  	max-width: 100%;
  	overflow: hidden;
  	max-height: 100%;
}
.freepik-character-1-inject-3-icon {
  	position: absolute;
  	height: 55.95%;
  	width: 45.78%;
  	top: 29.29%;
  	right: 45.49%;
  	bottom: 14.76%;
  	left: 8.73%;
  	max-width: 100%;
  	overflow: hidden;
  	max-height: 100%;
}
.freepik-chart-3-inject-311-icon {
  	position: absolute;
  	height: 16.75%;
  	width: 28.4%;
  	top: 75.86%;
  	right: 36.09%;
  	bottom: 7.39%;
  	left: 35.51%;
  	max-width: 100%;
  	overflow: hidden;
  	max-height: 100%;
}
.freepik-charts-2-inject-311-icon {
  	position: absolute;
  	height: 32.38%;
  	width: 17.7%;
  	top: 5.77%;
  	right: 5.81%;
  	bottom: 61.85%;
  	left: 76.49%;
  	max-width: 100%;
  	overflow: hidden;
  	max-height: 100%;
}
.freepik-charts-1-inject-311-icon {
  	position: absolute;
  	height: 36.98%;
  	width: 17.25%;
  	top: 9.04%;
  	right: 76.31%;
  	bottom: 53.99%;
  	left: 6.44%;
  	max-width: 100%;
  	overflow: hidden;
  	max-height: 100%;
}
.freepik-idea-inject-311-icon {
  	position: absolute;
  	height: 20.45%;
  	width: 12.7%;
  	top: 68.02%;
  	right: 81.4%;
  	bottom: 11.53%;
  	left: 5.9%;
  	max-width: 100%;
  	overflow: hidden;
  	max-height: 100%;
}
.freepik-speech-bubble-inject-icon {
  	position: absolute;
  	height: 100%;
  	width: 100%;
  	top: 0%;
  	right: 0%;
  	bottom: 0%;
  	left: 0%;
  	max-width: 100%;
  	overflow: hidden;
  	max-height: 100%;
}
.group-icon {
  	width: 35.4px;
  	position: relative;
  	height: 31.2px;
}
.group-icon1 {
  	width: 55.7px;
  	position: relative;
  	height: 14.5px;
}
.group-parent {
  	position: absolute;
  	top: 9.68px;
  	left: 20.45px;
  	width: 55.7px;
  	display: flex;
  	flex-direction: column;
  	align-items: center;
  	justify-content: flex-start;
  	gap: 6px;
}
.freepik-speech-bubble-inject1 {
  	position: absolute;
  	height: 100%;
  	width: 100%;
  	top: 0%;
  	right: 0%;
  	bottom: 0%;
  	left: 0%;
}
.freepik-speech-bubble-inject {
  	position: absolute;
  	height: 19.5%;
  	width: 23.35%;
  	top: 13.58%;
  	right: 40.76%;
  	bottom: 66.92%;
  	left: 35.89%;
}
.online-tech-talks-amico-1 {
  	position: absolute;
  	top: calc(50% - 200px);
  	left: calc(50% - 200px);
  	width: 400px;
  	height: 400px;
  	overflow: hidden;
}
.online-tech-talks-amico-1-wrapper {
  	width: 584px;
  	position: relative;
  	border-radius: 12px;
  	background-color: #fffbd0;
  	height: 584px;
  	overflow: hidden;
  	flex-shrink: 0;
}
.frame-child19 {
  	width: 584px;
  	position: relative;
  	border-radius: 12px;
  	height: 584px;
  	overflow: hidden;
  	flex-shrink: 0;
  	object-fit: cover;
}
.frame-container {
  	display: flex;
  	flex-direction: column;
  	align-items: flex-start;
  	justify-content: flex-start;
  	gap: 120px;
  	text-align: left;
  	font-size: 20px;
  	color: #1d252d;
}
.frame-group {
  	display: flex;
  	flex-direction: column;
  	align-items: flex-start;
  	justify-content: flex-start;
  	gap: 60px;
  	color: #137cc1;
}



.frame-parent18 {
  	position: absolute;
  	top: calc(50% - 97px);
  	left: calc(50% - 441px);
  	width: 882px;
  	display: flex;
  	flex-direction: column;
  	align-items: center;
  	justify-content: flex-start;
  	gap: 32px;
}

.logos-traced-icon {
  	position: absolute;
  	height: 100%;
  	width: 23.87%;
  	top: 0%;
  	right: 76.13%;
  	bottom: 0%;
  	left: 0%;
  	max-width: 100%;
  	overflow: hidden;
  	max-height: 100%;
}
.logos-traced-icon1 {
  	position: absolute;
  	height: 60.5%;
  	width: 67.38%;
  	top: 19.74%;
  	right: 0.01%;
  	bottom: 19.76%;
  	left: 32.61%;
  	max-width: 100%;
  	overflow: hidden;
  	max-height: 100%;
}
.logos-svg {
  	width: 168px;
  	position: relative;
  	height: 40px;
}
.driving-digital-growth {
  	align-self: stretch;
  	position: relative;
  	line-height: 20px;
}
.link-open-on-socials {
  	width: 32px;
  	position: relative;
  	border-radius: 80px;
  	height: 32px;
  	overflow: hidden;
  	flex-shrink: 0;
}
.container1 {
  	overflow: hidden;
  	display: flex;
  	flex-direction: row;
  	align-items: flex-start;
  	justify-content: flex-start;
  	gap: 8px;
}
.frame-parent19 {
  	height: 184px;
  	display: flex;
  	flex-direction: column;
  	align-items: flex-start;
  	justify-content: space-between;
  	gap: 0px;
  	font-size: 14px;
  	color: #e1e4e8;
}
.navigation {
  	align-self: stretch;
  	position: relative;
  	line-height: 24px;
  	font-weight: 600;
}
.home-group {
  	align-self: stretch;
  	display: flex;
  	flex-direction: column;
  	align-items: flex-start;
  	justify-content: flex-start;
  	gap: 8px;
  	font-size: 14px;
  	color: #e1e4e8;
}
.navigation-parent {
  	width: 190px;
  	display: flex;
  	flex-direction: column;
  	align-items: flex-start;
  	justify-content: flex-start;
  	gap: 16px;
}
.mail-icon {
  	width: 16px;
  	position: relative;
  	max-height: 100%;
}
.infoacceleratingdigital {
  	position: relative;
  	line-height: 20px;
}
.mail-parent {
  	display: flex;
  	flex-direction: row;
  	align-items: center;
  	justify-content: flex-start;
  	gap: 4px;
}
.frame-parent20 {
  	display: flex;
  	flex-direction: column;
  	align-items: flex-start;
  	justify-content: flex-start;
  	gap: 8px;
  	font-size: 14px;
  	color: #e1e4e8;
}
.get-in-touch-parent {
  	display: flex;
  	flex-direction: column;
  	align-items: flex-start;
  	justify-content: flex-start;
  	gap: 16px;
}
.container-inner {
  	width: 380px;
  	display: flex;
  	flex-direction: column;
  	align-items: flex-start;
  	justify-content: flex-start;
}
.container {
  	width: 1120px;
  	overflow: hidden;
  	display: flex;
  	flex-direction: row;
  	align-items: flex-start;
  	justify-content: space-between;
  	flex-wrap: wrap;
  	align-content: flex-start;
  	gap: 0px;
  	max-width: 1120px;
}

.frame-parent {
  	width: 100%;
  	position: relative;
  	display: flex;
  	flex-direction: column;
  	align-items: center;
  	justify-content: flex-start;
  	gap: 120px;
  	text-align: center;
  	font-size: 16px;
  	color: #fff;
  	font-family: Poppins;
    margin-top: 45px;
}

/* Mobile Responsive */
@media (max-width: 768px) {


  .home-parent {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 0 16px;
    box-sizing: border-box;
  }

  .frame-div {
    width: 100%;
    flex-direction: column;  /* stack */
    gap: 20px; /* kam gap */
    padding: 0 16px;
    box-sizing: border-box;
  }

  .frame-child,
  .online-tech-talks-amico-1-wrapper,
  .frame-child19 {
    width: 100%;
    height: auto;
    order: -1;  /* image upar dikhayegi */
  }

  .frame-parent1 {
    gap: 20px;
    order: 2;   /* content neeche */
  }

  .digital-experience-dx {
    font-size: 20px;
    line-height: 26px;
  }

  .at-accelerating-digital {
    font-size: 14px;
    line-height: 22px;
  }

  .frame-parent2 {
    font-size: 14px;
    gap: 12px;
  }

  .frame-container {
    gap: 60px;
    font-size: 16px;
    padding: 0 16px;
  }

  .frame-group {
    gap: 30px;
  }

  .frame-parent18 {
    position: relative;
    width: 100%;
    left: 0;
    top: 0;
    gap: 20px;
  }

  .container {
    width: 100%;
    flex-direction: column;
    gap: 20px;
    padding: 0 16px;
    box-sizing: border-box;
  }

  .container-inner {
    width: 100%;
  }

  .frame-parent {
    gap: 60px;
    font-size: 14px;
    text-align: center;
    padding: 0 16px;
    box-sizing: border-box;
  }
}

/* Contact us sec */
        /* Desktop (same as inline) */
.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: 271px;
        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; } /* background circles off in mobile */
}

/* 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;   /* logo ki max size */
  height: auto;       /* ratio maintain hoga */
  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;
    margin-top: -11px;
}

/* Social Icons */
.footer-socials {
  margin-top: auto; /* icons ko neeche push karega */
  display: flex;
  gap: 10px;
      margin-left: 12px;
}

.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-contact h4 {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    margin-left: 0;     /* ❌ agar kahi pe left margin diya ho */
    padding-left: 0;    /* ❌ agar andar se spacing ho */
    text-align: left;   /* ✅ heading ko left align kar dega */
}


.footer-nav ul {
          list-style: none;
        padding: 0;
        margin: 0;
        display: flex
;
        flex-direction: column;
        gap: 0px;
        align-items: flex-start;
}

.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 (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;
            margin-top: -29px;
  }

    /* 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 {
    margin-top: 20px;
    margin-left: 0;     /* ✅ left se start */
    padding-left: 0;
    text-align: left;   /* ✅ sab text left aligned */
}

.footer-nav h4 {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: left;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;  /* ✅ column (vertical) */
    gap: 8px;
    align-items: flex-start; /* ✅ left align */
}

.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;
    font-weight: 600;
    margin-bottom: 10px;
    margin-left: 0;      
    padding-left: 0;      
    text-align: left;     
            margin-top: -17px;
  }
    
    .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;
    }
}

  .group-icon1 {
            width: 584px;
            height: 512px;
            position: relative;
            border-radius: 12px;
            background-color: #fffbd0;
            overflow: hidden;
            flex-shrink: 0;
            margin-top: -99px;
        }
      