/* Existing Desktop CSS */
body {
    margin: 0;
    line-height: normal;
}
body, html {
    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: 173px;
    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: 110px;

    }
}

.header, .menu-container, .menu-item {
  position: relative;
  z-index: 1000; 
}
body.sidebar-open {
    overflow: hidden; 
    position: fixed;
    width: 100%;
}

/* explore us */




.main-container {
    width: 100%;
    height: 100vh;
    padding: 180px 0 60px 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    overflow: auto;
    box-sizing: border-box;
            margin-left: 14px;
}

.content-wrapper {
    width: 1020px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
   
}

.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    align-self: stretch;
}

.rating-container {
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
}

.stars-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
}

.star, .half-star {
    
    width: 16px;
    height: 16px;
}

.star img, .half-star img {

    width: 100%;
    height: 100%;
}

.rating-text {
    opacity: 0.80;
    color: #36434E;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-align: center;
    font-family: Poppins;
}

.text-content {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.hero-heading {
    align-self: stretch;
    text-align: center;
    color: #1D252D;
   
    font-weight: 500;
    line-height: 80px;
    font-size: 64px;
font-family: Poppins;
    margin: 0;
}

.hero-subheading {
    align-self: stretch;
    text-align: center;
    color: #566470;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
   
font-family: Poppins;
    margin: 0;
}

.cta-buttons {
    display: inline-flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 16px;
}

/* Common styles for all CTA buttons */
.cta-btn {
    align-self: stretch;
    height: 56px;
    padding: 0 12px;
    overflow: hidden;
    border-radius: 20px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    word-wrap: break-word;
}

/* Explore button styles */
.hero-explore-btn {
    width: 251px;
    padding: 4px;
    background: #EAEAEA;
    border-radius: 24px;
    display: inline-flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
    text-decoration: none;
}

.hero-explore-btn .cta-btn {
    background: #191919;
    color: white;
}


/* Contact Us button styles */
.hero-contact-btn {
    width: 251px;
    padding: 4px;
    background: #EAEAEA;
    border-radius: 24px;
    display: inline-flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
    text-decoration: none;
}

.hero-contact-btn .cta-btn {
    background: white;
    color: #191919;
}
@media (max-width: 768px) {
    /* Hero Section Mobile View */
    .main-container {
        padding: 40px 16px;
        height: auto;
                margin-left: -1px;
    }

    .content-wrapper {
        width: 80%;
      
       
        gap: 40px;
        transform: translateY(-81px);
                margin-left: -16px;
    }

    .rating-container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .stars-wrapper {
        justify-content: center;
    }

    .rating-text {
        font-size: 14px;
        line-height: 20px;
    }

    .hero-heading {
        font-size: 24px;
        line-height: 32px;
    }

    .hero-subheading {
        font-size: 14px;
        line-height: 20px;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
            /* border-radius: 15px; */
    }

    .hero-explore-btn,
    .hero-contact-btn {
        width: 100%;
            border-radius: 13px;
                padding: 3px;
        
    }

    .cta-btn {
        height: 44px;
    }
}
/* services */
/* Main Container */
.services-main-container {
    width: 100%;
    height: 100%;
    padding: 60px 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

/* Content Wrapper */
.services-content-wrapper {
    width: 1228px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 60px;
}

/* Header Section */
.services-header-section {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
}

.services-tag {
    padding: 4px 16px;
    background: white;
    border-radius: 8px;
    outline: 1px #E1E4E8 solid;
    outline-offset: -1px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.services-tag-icon {
    width: 16px;
    height: 16px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.services-tag-icon img {
    width: 100%;
    height: 100%;
}

.services-tag-text {
    text-align: center;
    color: #1D252D;
    font-size: 16px;
    font-family: Poppins;
    font-weight: 500;
    line-height: 24px;
}

.services-heading {
    width: 932px;
    text-align: center;
    color: #1D252D;
    font-size: 44px;
    font-family: Poppins;
    font-weight: 500;
    line-height: 52px;
}

/* Cards Section */
.services-cards-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 24px;
}

.services-cards-row {
    width: 1228px;
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    gap: 24px;
}

.service-card {
    flex: 1 1 0;
    height: 412px;
    padding: 38px 39px;
    overflow: hidden;
    border-radius: 40px;
    outline: 8px #F3F6FA solid;
    outline-offset: -8px;
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    box-sizing: border-box;
}

.card-blue-gradient {
    background: linear-gradient(180deg, #EDF8FF 0%, white 100%);
}

.card-pink-gradient {
    background: linear-gradient(180deg, #FFE6F4 0%, white 100%);
}

.card-green-gradient {
    background: linear-gradient(180deg, #E6FAD9 0%, white 100%);
}

.card-icon-wrapper {
    width: 60px;
    height: 60px;
    padding: 8px;
    background: white;
    overflow: hidden;
    border-radius: 16px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.card-icon-wrapper img {
    width: 40px;
    height: 40px;
}

.card-text-content {
    align-self: stretch;
    min-width: 333.33px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 8px;
}

.card-title {
    align-self: stretch;
    color: #1D252D;
    font-size: 28px;
    font-family: Poppins;
    font-weight: 500;
    line-height: 40px;
}

.card-description {
    align-self: stretch;
    color: #485661;
    font-size: 16px;
    font-family: Poppins;
    font-weight: 400;
    line-height: 24px;
}

/* ✅ Mobile View */
/* ✅ Mobile View Heading */


@media (max-width: 768px) {

  /* Row ko column bana diya */
  .services-cards-row {
    display: flex;
    flex-direction: column;
    gap: 24px;           /* ✅ cards ke beech gap */
    align-items: center; /* ✅ center me stack honge */
    width: 100%;
  }
   .services-heading {
    width: 26%;
    text-align: center;       /* ✅ text center */
    color: #1D252D;
font-size: 20px;
font-family: Poppins;
font-weight: 500;
line-height: 30px;
word-wrap: break-word;
  }
.services-main-container {
  margin-top: -116px;

}

/* Har card ko ek block bana diya */

 .service-card {
  width: 90%;                 /* ✅ thoda chhota rakho */
  margin: 20px auto;          /* ✅ center align */
  border-radius: 40px;
  border: 6px solid #f3f6fa;
  box-sizing: border-box;
  min-height: 350px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 35px 22px;
  text-align: left;
  font-family: Poppins, sans-serif;
  gap: 12px;
}




  .card-title {
    font-size: 22px;
    line-height: 30px;
    font-weight: 500;
    color: #1d252d;
  }

  .card-description {
    font-size: 14px;
    line-height: 22px;
    color: #485661;
  }

  .card-text-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    width: 100%;
  }

  .card-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
/* little about us  */
.about-section {
  width: 100%;
  padding: 60px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-container {
  width: 100%;
  max-width: 1000px; /* ✅ 1228 se kam */
  padding: 60px;     /* ✅ 80px se kam */
  background: linear-gradient(180deg, #050709 0%, #2C3845 100%);
  border-radius: 32px; /* ✅ thoda chhota */
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  width: 100%;
}

/* Tag */
.about-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 4px 14px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #E1E4E8;
}

.about-icon {
  width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-icon-inner {
  width: 12px;
  height: 12px;
  background: #1D252D;
}

.about-tag-text {
  color: #1D252D;
font-size: 16px;
font-family: Poppins;
font-weight: 500;
line-height: 24px;
word-wrap: break-word;
}

/* Heading */
.about-heading {
  color: white;
font-size: 44px;
font-family: Poppins;
font-weight: 500;
line-height: 52px;
word-wrap: break-word;
}

/* Description */
.about-description {
  width: 100%;
position: relative;
font-size: 25px;
line-height: 40px;
color: #e1e4e8;
text-align: center;
display: inline-block;
font-family: Poppins;
}

.about-description .italic-bold {
  font-style: italic;
  font-weight: 700;
}

.about-description .semi-bold {
  font-weight: 600;
}

/* ✅ Mobile Responsive */
@media (max-width: 768px) {
  .about-container {
    max-width: 100%;
    padding: 32px 20px;   /* upar niche + andar ka spacing */
    border-radius: 20px;
    margin: 0 16px;       /* ✅ left-right spacing add */
  }

  .about-heading {
    font-size: 24px;
    line-height: 32px;
  }

  .about-description {
    font-size: 16px;
    line-height: 26px;
  }
}


/* how we work */
.svg-icon {
  	width: 16px;
  	height: 16px;
}
.how-we-work {
  	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;
}
.our-approach-simplifies {
  	width: 932px;
  	position: relative;
  	font-size: 44px;
  	line-height: 52px;
  	font-weight: 500;
  	display: flex;
  	align-items: center;
  	justify-content: center;
}
.frame-container {
  	align-self: stretch;
  	display: flex;
  	flex-direction: column;
  	align-items: center;
  	justify-content: flex-start;
  	gap: 16px;
  	text-align: center;
}
.implement-wrapper {
  	border-radius: 8px;
  	background-color: #fff;
  	border: 1px solid #e1e4e8;
  	display: flex;
  	flex-direction: row;
  	align-items: center;
  	justify-content: center;
  	padding: 4px 16px;
  	text-align: center;
}
.turning-vision-into {
  	align-self: stretch;
  	position: relative;
  	letter-spacing: -0.32px;
  	line-height: 32px;
  	font-weight: 500;
}
.we-build-scalable {
  	align-self: stretch;
  	position: relative;
  	font-size: 16px;
  	line-height: 24px;
  	color: #485661;
}
.turning-vision-into-action-parent {
  	align-self: stretch;
  	display: flex;
  	flex-direction: column;
  	align-items: flex-start;
  	justify-content: flex-start;
  	gap: 16px;
  	font-size: 26px;
}
.frame-child {
  	width: 24px;
  	position: relative;
  	border-radius: 32px;
  	height: 24px;
  	overflow: hidden;
  	flex-shrink: 0;
  	object-fit: cover;
    background-color: black;
}
.end-to-end-platform-developmen {
  	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;
}
.primary {
  	position: relative;
  	line-height: 24px;
  	font-weight: 600;
}
.btn {
  	align-self: stretch;
  	border-radius: 12px;
  	background-color: #191919;
  	height: 44px;
  	overflow: hidden;
  	flex-shrink: 0;
  	display: flex;
  	flex-direction: row;
  	align-items: center;
  	justify-content: center;
  	padding: 0px 12px;
  	box-sizing: border-box;
}
.ctas {
  	width: 144px;
  	border-radius: 16px;
  	background-color: #eaeaea;
  	display: flex;
  	flex-direction: column;
  	align-items: flex-start;
  	justify-content: flex-start;
  	padding: 4px;
  	box-sizing: border-box;
  	color: #fff;
}
.frame-parent1 {
  	flex: 1;
  	display: flex;
  	flex-direction: column;
  	align-items: flex-start;
  	justify-content: flex-start;
  	gap: 32px;
}
.frame-icon {
  	width: 400px;
  	position: relative;
  	border-radius: 12px;
  	height: 400px;
  	overflow: hidden;
  	flex-shrink: 0;
}
.frame-div {
  	align-self: stretch;
  	border-radius: 24px;
  	background-color: #f3f6fa;
  	display: flex;
  	flex-direction: row;
  	align-items: flex-start;
  	justify-content: flex-start;
  	padding: 32px 32px 32px 80px;
  	gap: 60px;
}
.frame-parent3 {
  	align-self: stretch;
  	border-radius: 24px;
  	background-color: #f3f6fa;
  	display: flex;
  	flex-direction: row;
  	align-items: flex-start;
  	justify-content: flex-start;
  	padding: 32px 80px 32px 32px;
  	gap: 60px;
}
.frame-group {
  	width: 1228px;
  	display: flex;
  	flex-direction: column;
  	align-items: center;
  	justify-content: flex-start;
  	gap: 60px;
}
.frame-parent {
  	width: 100%;
  	position: relative;
  	overflow: hidden;
  	display: flex;
  	flex-direction: column;
  	align-items: center;
  	justify-content: flex-start;
  	padding: 60px 0px;
  	box-sizing: border-box;
  	text-align: left;
  	font-size: 16px;
  	color: #1d252d;
  	font-family: Poppins;
}

@media (max-width: 768px) {
  .our-approach-simplifies {
   color: #1D252D;
font-size: 20px;
font-family: Poppins;
font-weight: 500;
line-height: 30px;
word-wrap: break-word;
  }

  .frame-group {
    width: 100%;
    gap: 32px;
    padding: 0 16px;
  }

  /* .frame-div,
  .frame-parent3 {
    flex-direction: column; 
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 20px;
  } */

  .frame-icon {
    width: 100%;
    max-width: 280px;
    height: auto;
    margin: 0 auto;
  }

  .frame-parent1 {
    width: 100%;
    gap: 20px;
    text-align: left;
  }

  .implement-wrapper {
    margin: 0 auto;  /* center align */
    font-size: 14px;
    padding: 4px 12px;
  }

  .turning-vision-into {
    font-size: 18px;
    line-height: 26px;
  }

  .we-build-scalable {
    font-size: 14px;
    line-height: 22px;
    color: #485661;
  }

  .instance-parent {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .end-to-end-platform-developmen {
    font-size: 14px;
    line-height: 22px;
  }

  .btn {
    width: 100%;
    font-size: 15px;
    height: 44px;
    border-radius: 10px;
  }
}
@media (max-width: 768px) {

  .frame-div,
  .frame-parent3 {
    width: 100%;
    max-width: 304px;  /* ✅ card width control */
    margin: 0 16px;    /* ✅ center me */
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
    padding: 20px;
    border-radius: 16px;
  }

  /* Implement/Optimize tags left aligned */
  .implement-wrapper {
    align-self: flex-start; 
    margin-left: 0;
  }

  /* Title & paragraph adjust */
  .turning-vision-into {
    font-size: 18px;
    line-height: 26px;
  }

  .we-build-scalable {
    font-size: 14px;
    line-height: 22px;
  }

  /* Bullet points ko proper gap */
  .instance-parent {
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }

  .end-to-end-platform-developmen {
    font-size: 14px;
  }
 /* Image always top */
  .frame-icon {
    order: -1;   /* ✅ image ko sabse upar le aayega */
    width: 100%;
    max-width: 280px;
    height: auto;
    margin: 0 auto 16px auto; /* ✅ center + neeche gap */
    display: block;
  }
  /* Button full width */
  .btn {
    width: 100%;
    font-size: 15px;
    height: 44px;
    border-radius: 10px;
  }
}
/* our tech stack */
.tech-stack-section {
  width: 100%;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.tech-stack-container {
  width: 100%;
  max-width: 1228px;
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

/* Left Content */
.tech-stack-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tech-stack-tag {
  display: flex;
  align-items: center;   /* vertically center img + text */
  gap: 8px;              /* img aur text ke beech thoda space */
  
  padding: 4px 16px;
  background: #fff;
  border: 1px solid #E1E4E8;
  border-radius: 8px;
  font-size: 14px;
  font-family: Poppins;
  font-weight: 500;
  color: #1D252D;
  width: fit-content;
}

.star-icon {
  width: 20px;   /* optional: size control */
  height: 20px;
}


.tech-stack-title {
  color: #1D252D;
font-size: 44px;
font-family: Poppins;
font-weight: 500;
line-height: 52px;
word-wrap: break-word;
}

.tech-stack-desc {
 color: #485661;
font-size: 16px;
font-family: Poppins;
font-weight: 400;
line-height: 24px;
word-wrap: break-word;
    margin-top: -17px;
}

.tech-stack-btn {
    margin-top: 20px;
    padding: 12px 20px;
    background: #191919;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    color: white;
    font-size: 16px;
    font-family: Poppins;
    font-weight: 600;
    line-height: 24px;
    word-wrap: break-word;
    max-width: 250px;
        text-decoration: none;
    text-align: center;
}

.tech-stack-btn:hover {
  background: #333;
}

/* Right Tech Grid */
.tech-stack-right {
  width: 560px;
  height: auto;
  background: #F3F6FA;
  border-radius: 32px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.stack-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.stack-card {
  width: 76px;
  height: 76px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0px 5px 20px rgba(0,0,0,0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Poppins, sans-serif;
  font-weight: 500;
  color: #1D252D;
}
/* Mobile Responsive Fix */
/* --- Media Queries for Mobile View --- */
        @media (max-width: 768px) {
            .tech-stack-container {
                flex-direction: column; 
                gap: 40px;
                text-align: center;
            }

            .tech-stack-left {
                width: 100%;
                align-items: center;
                text-align: center;
            }
            
            .tech-stack-tag {
                margin: 0 auto; 
                    padding: 4px 16px;
    background: white;
    border-radius: 8px;
    outline: 1px #E1E4E8 solid;
    outline-offset: -1px;
    display: inline-flex
;
    justify-content: center;
    align-items: center;
    gap: 10px;
            }

            .tech-stack-title {
                font-size: 32px;
                line-height: 40px;
            }

            .tech-stack-desc {
                font-size: 14px;
                line-height: 22px;
                text-align: center;
                padding-right: 30px;
            }

            .tech-stack-right {
                width: 75%;
                max-width: none;
                padding: 20px;
            }
            
            .stack-row {
                justify-content: center;
                flex-wrap: wrap;
                gap: 16px;
            }
            
            .stack-card {
                width: 60px;
                height: 60px;
                font-size: 12px;
            }
        }

        @media (max-width: 480px) {
            .tech-stack-section {
                padding: 40px 10px;
            }

            .tech-stack-left {
                gap: 12px;
            }
 .tech-stack-btn {
                align-self: center;
                margin-left: -13px;
            }
            .tech-stack-title {
                font-size: 21px;
                line-height: 36px;
                        margin-left: -4px;
            }
            
            .stack-card {
                width: 50px;
                height: 50px;
                font-size: 10px;
            }
        }
/* for mobile  */
@media (max-width: 768px) {

  /* Services */
  .services-content-wrapper,
  .services-cards-row,
  .services-heading,
  .frame-group,
  .our-approach-simplifies,
  .tech-stack-container{
    width: 100% !important;   /* ✅ full responsive */
    max-width: 100% !important;
  }


  .stack-row {
    flex-wrap: wrap;              /* ✅ icons wrap ho jayenge */
    justify-content: center;
    gap: 16px;
  }

  .stack-card {
    width: 64px;
    height: 64px;
  }

  /* Headings font-size adjust */
  .services-heading,
  .our-approach-simplifies {
    font-size: 21px !important;
    line-height: 28px !important;
    text-align: center;
  }
  

}
/* testinomials */
/* Section */
.testimonials {
  padding: 60px 20px;
  background: white;
  font-family: Poppins, sans-serif;
}

.container {
  max-width: 1228px;
  margin: 0 auto;
  padding: 64px;
  background: #fff;
  border-radius: 24px;
}

/* Testimonial Header */
.testi-header {
  text-align: center;
  margin-bottom: 40px;
}

.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;
  color: #1d252d;
}

.tag .icon {
  width: 12px;
  height: 12px;
  background: #1d252d;
  border-radius: 2px;
}

.testi-header h2 {
  font-size: 44px;
  font-weight: 500;
  color: #1d252d;
  margin-top: 16px;
}

/* Grid */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Desktop: 3 */
  gap: 20px;
}

/* Card */
.card {
  padding: 16px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e1e4e8;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card p {
  color: #1D252D;
font-size: 16px;
font-family: Poppins;
font-weight: 400;
line-height: 24px;
word-wrap: break-word;

 
}

.author .name {
  color: #1D252D;
font-size: 14px;
font-family: Poppins;
font-weight: 500;
line-height: 20px;
word-wrap: break-word;
}

.author .role {
  
   display: block;
    margin-top: 4px;  /* thoda gap */
    color: #566470;
font-size: 12px;
font-family: Poppins;
font-weight: 400;
line-height: 20px;
word-wrap: break-word;
}

/* Responsive */
/* Responsive */
@media (max-width: 1024px) {
  .grid {
    grid-template-columns: repeat(2, 1fr); /* Tablet: 2 cards per row */
  }
}

@media screen and (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr; /* Mobile: 1 card per row */
    background: white;
  }

  .testi-header h2 {
    font-size: 28px;   /* Mobile heading */
    line-height: 36px;
  }
.testimonials {
    background-color: white;
}
  .container {
    padding: 24px;   /* Mobile container padding kam */
  }

  .card p {
    font-size: 14px;
    line-height: 22px;
  }
   .author .role {
    display: block;
    margin-top: 4px; 
  }
}
/* FAQS  */
  /* Transition for the dropdown content */

        /* Transition for the dropdown content */
        .faq-answer-container {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
        }

        /* Class to show the content */
        .faq-answer-container.active {
            max-height: 500px; /* A value large enough to fit the content */
            transition: max-height 0.5s ease-in;
        }

        /* Styles for the + and - icons inside the circle */
        .faq-icon-container {
            width: 24px;
            height: 24px;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 50%;
            border: 1px solid #E1E4E8;
            background-color: #F7F9FA;
            color: #1D252D;
            transition: background-color 0.3s ease-in-out;
            flex-shrink: 0; /* Prevents the icon from shrinking on smaller screens */
        }

        .faq-item.active .faq-icon-container {
            background-color: #fff;
            border-color: #1D252D;
        }

        /* Hide the minus icon by default */
        .minus-icon {
            display: none;
        }
        
        /* Show the minus icon and hide the plus icon when the item is active */
        .faq-item.active .minus-icon {
            display: block;
        }

        .faq-item.active .plus-icon {
            display: none;
        }

        .faq-item:not(.active) .plus-icon {
            display: block;
        }
        /* 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: 343px;
        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;
}

/* Social Icons */
.footer-socials {
  margin-top: auto; /* icons ko neeche push karega */
  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;
    }
}
