@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: "Inter", sans-serif;
}

body {
    width: 100%;
    height: 100%;
    font-family: "Inter", sans-serif;
    background-color: #F1F1F1;
}

.main {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-repeat: no-repeat;
    overflow-x: hidden;
}


.main-img {
    position: absolute;
    width: 100%;
    object-fit: cover;
}

@media (max-width: 720px) {
    .main {
        overflow-x: hidden;
    }
}

/* ===== Glass Background Navbar ===== */
.glass-bg {
    background: rgba(17, 24, 39, 0.08);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}


/* ===== Navbar ===== */
.navbar {
    position: fixed;
    width: 100%;
    height: 84px;
    padding: 0 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.nav-logo {
    width: 177px;
    height: 37px;
}

.nav-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.nav-links {
    width: 486px;
    height: 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #000;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 400;
    padding: 8px 16px;
    line-height: 1.5;
    border: 2px solid transparent;
}

.nav-links a:hover {
    border-color: white;

}

.nav-links a:nth-child(2) {
    background: #267BFF;
    color: white;
    border: none;
}



/* ===== Hamburger Icon ===== */
.nav-icon {
    width: 24px;
    height: 24px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    gap: 5px;
    cursor: pointer;
}

.nav-icon span {
    display: flex;
    width: 100%;
    height: 3px;
    background-color: #111827;
    border-radius: 3px;
    transition: 0.4s ease;
    margin-bottom: 5px;
    position: relative;
    z-index: 1001;
}

/* ==== Cross animation ==== */
.nav-icon.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.nav-icon.active span:nth-child(2) {
    opacity: 0;
}

.nav-icon.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== Mobile Menu ===== */
.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 0;
    overflow: hidden;
    transform: translateY(-15px);
    opacity: 0;
    transition: all 0.4s ease;
}

.mobile-menu.active {
    max-height: 400px;
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu a {
    padding: 14px;
    color: #000;
    border-radius: 8px;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {

    .navbar {
        height: 70px;
        padding: 0 20px;
    }

    .nav-links {
        display: none;
    }

    .nav-icon {
        display: block;
        z-index: 1001;
    }

    .mobile-menu {
        top: 70px;
    }
}

/*  ==================== nav-bar end here   ====================  */
/* ==================== about-content   ====================  */

.view {
    position: relative;
    min-height: 421px;
    padding: 32px 100px;
    display: flex;
    gap: 32px;
    border-bottom: 2px solid #F3F4F6;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-webtone {
    margin-top: 84px;
}

.about-card {
    border-radius: 16px;
    height: 357px;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #F3F4F6;
    border-radius: 16px;
}

.about-card img {
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
}

.about-content {
    width: 50%;
    min-height: 357px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 32px;
}

.about-content h2 {
    font-size: 3.33vw;
    font-weight: 700;
    color: #0b132b;

}

.about-content p {
    font-size: 1.11vw;
    line-height: 1.5;
    color: #111827;

}

.view-content {
    width: 50%;
    min-height: 357px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 32px;
}

.view-content h2 {
    font-size: 3.33vw;
    font-weight: 700;
    color: #0b132b;
}

.view-content p {
    font-size: 1.11vw;
    font-weight: 400;
    line-height: 1.5;
    color: #111827;
}

.view-img {
    border-radius: 16px;
    height: 305px;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #F3F4F6;
    border-radius: 16px;
}

.view-img img {
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
}

.view-2 {
    flex-direction: row-reverse;
}

@media (max-width:720px) {
    .view {
        flex-direction: column;
        position: relative;
        min-height: 421px;
        padding: 32px 16px;
        display: flex;
        gap: 24px;
        border-bottom: 2px solid #F3F4F6;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column-reverse;
    }

    .about-webtone {
        flex-direction: column;
    }

    .about-card {
        border-radius: 16px;
        height: 305px;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        border: 2px solid #F3F4F6;
        border-radius: 16px;
    }

    .about-card img {
        width: 100%;
        height: 100%;
        background-position: center;
        background-size: cover;
    }

    .about-content {
        width: 100%;
        min-height: fit-content;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 24px;
    }

    .about-content h2 {
        font-size: 32px;
        font-weight: 700;
        color: #0b132b;

    }

    .about-content p {
        font-size: 16px;
        font-weight: 400;
        line-height: 1.5;


    }

    .view-content {
        width: 100%;
        min-height: fit-content;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 24px;
    }

    .view-content h2 {
        font-size: 32px;
        font-weight: 700;
        color: #0b132b;
    }

    .view-content p {
        font-size: 16px;
        font-weight: 400;
        line-height: 1.5;
        color: #111827;
    }

    .view-img {
        border-radius: 16px;
        height: 305px;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        border: 2px solid #F3F4F6;
        border-radius: 16px;
    }

    .view-img img {
        width: 100%;
        height: 100%;
        background-position: center;
        background-size: cover;
    }

    .view-2 {
        flex-direction: column-reverse;
    }
}

/*    services-section    */

.services-container {
    position: relative;
    padding: 32px 100px;
    display: flex;
    gap: 32px;
    align-items: flex-start;
    border-bottom: 2px solid #F3F4F6;
}

/* LEFT */
.services-left {
    width: 35%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.services-image {
    width: 100%;
    height: 305px;
    border-radius: 16px;
}

.services-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.services-heading {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: #111827;
    letter-spacing: 0.96px;
}



.services-text {
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 400;
    color: #111827;
}

/* RIGHT CARD */
.services-card {
    width: 65%;
    background: #F9FAFB;
    border-radius: 24px;
    padding: 24px;
    border: 4px solid #F3F4F6;
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;

}

.service-item {
    height: 80px;
    width: 350px;
    display: flex;
    align-items: center;
    padding: 8px;
    gap: 16px;
    background: blur(32px);
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--Light-bg-primary, #FFFFFF);
    box-shadow: inset 0px 0px 12px 0px #00000052;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.service-item h4 {
    width: 255px;
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
}

@media (max-width: 720px) {

    .services-container {
        padding: 32px 16px;
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        align-items: center;
    }

    /* LEFT */
    .services-left {
        width: 100%;
    }

    .services-image {
        height: 328px;
    }

    .services-heading {
        font-size: 2rem;
    }

    /* RIGHT CARD */
    .services-card {
        width: 100%;
        padding: 1rem;
        flex-direction: column;
        justify-content: center;
        gap: 1rem;
        flex-wrap: nowrap;
    }

    .service-item {
        height: fit-content;
        width: 100%;
        justify-content: center;
    }

    .service-icon {
        width: 48px;
        height: 48px;
    }

    .service-item h4 {
        height: fit-content;
        font-weight: 700;
    }

}


/*    services-section  end  */
/*  approach-section   */
.approach-section {
    position: relative;
    width: 100%;
    padding: 32px 100px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    border-bottom: 2px solid #F3F4F6;
}


/* Banner Image */
.approach-banner img {
    width: 100%;
    border: 2px solid #F3F4F6;
    border-radius: 16px;
    object-fit: cover;
}

.approach-banner :first-child {
    display: none;
}

/* Header */
.approach-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.approach-header h2 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: #111827;
    letter-spacing: .96px;

}

.approach-header p {
    font-size: .9rem;
    line-height: 1.5;
    color: #111827;
}

/* Process Card */
.approach-process {
    background: #F9FAFB;
    border-radius: 24px;
    padding: 1.5rem;
    border: 4px solid #F3F4F6;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    gap: 24px;
}

/* Step */
.process-step {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 260px;
}

.step-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--Light-bg-primary, #FFFFFF);
    box-shadow: inset 0px 0px 12px 0px #00000052;
    display: flex;
    align-items: center;
    justify-content: center;

}

.process-step h4 {
    font-size: 1.5rem;
    line-height: 1.3;
    width: 237px;
    font-weight: 600;
    color: #111827;
}

/* Arrow */
.step-arrow {
    width: 32px;
    height: 32px;
}



@media(max-width:720px) {
    .approach-section {
        position: relative;
        width: 100%;
        padding: 32px 16px;
        display: flex;
        flex-direction: column;
        gap: 16px;
        border-bottom: 2px solid #F3F4F6;
    }


    /* Banner Image */
    .approach-banner img {
        width: 100%;
        height: 300px;
        border: 2px solid #F3F4F6;
        border-radius: 16px;
        object-fit: cover;
    }

    .approach-banner :first-child {
        display: block;
    }

    .approach-banner :nth-child(2) {
        display: none;
    }


    /* Header */
    .approach-header {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .approach-header h2 {
        font-size: 2rem;
        font-weight: 700;
        line-height: 1.2;
        color: #111827;
        letter-spacing: .96px;

    }

    .approach-header p {
        font-size: 1rem;
        line-height: 1.5;
        color: #111827;
    }

    /* Process Card */
    .approach-process {
        background: #F9FAFB;
        border-radius: 24px;
        padding: 16px;
        border: 4px solid #F3F4F6;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        align-items: start;
        justify-content: space-around;
        gap: 24px;
    }

    /* Step */
    .process-step {
        display: flex;
        align-items: center;
        gap: 16px;
        min-width: 260px;
    }

    .step-icon {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: var(--Light-bg-primary, #FFFFFF);
        box-shadow: inset 0px 0px 12px 0px #00000052;
        display: flex;
        align-items: center;
        justify-content: center;

    }

    .process-step h4 {
        font-size: 1.5rem;
        line-height: 1.3;
        width: 237px;
        font-weight: 700;
        color: #111827;
    }

    /* Arrow */
    .step-arrow {
        transform: rotate(90deg);
    }

}

/*  approach-section-end   */
/* WHY CHOOSE SECTION */
.why-choose-section {
    position: relative;
    padding: 32px 100px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    border-bottom: 2px solid #F3F4F6;
}

/* TOP */
.why-choose-top {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

/* IMAGE */
.why-choose-image {
    width: 45%;
    border-radius: 16px;
    overflow: hidden;
}

.why-choose-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CONTENT */
.why-choose-content {
    width: 55%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.why-choose-content h2 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: #111827;
    letter-spacing: 0.96px;
}

.why-choose-content p {
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 400;
    color: #111827;
}

/* CARD */
.why-choose-card {
    background: #F9FAFB;
    border-radius: 24px;
    padding: 1.5rem;
    border: 4px solid #F3F4F6;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* ITEM */
.why-choose-item {
    display: flex;
    align-items: center;
    gap: 16px;
    /* width: fit-content; */
}

.why-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--Light-bg-primary, #FFFFFF);
    box-shadow: inset 0px 0px 12px 0px #00000052;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
      flex-shrink: 0;
}

.why-choose-item h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
}

@media(max-width:720px) {
    .why-choose-section {
        position: relative;
        padding: 32px 16px;
        display: flex;
        flex-direction: column;
        gap: 24px;
        border-bottom: 2px solid #F3F4F6;
    }

    /* TOP */
    .why-choose-top {
        display: flex;
        flex-direction: column;
        gap: 24px;
        align-items: center;
        justify-content: center;
    }

    /* IMAGE */
    .why-choose-image {
        width: 100%;
        height: 300px;
        border-radius: 16px;
        overflow: hidden;
    }

    .why-choose-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* CONTENT */
    .why-choose-content {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .why-choose-content h2 {
        font-size: 3rem;
        font-weight: 700;
        line-height: 1.2;
        color: #111827;
        letter-spacing: 0.96px;
    }

    .why-choose-content p {
        font-size: 1rem;
        line-height: 1.5;
        font-weight: 400;
        color: #111827;
    }

    /* CARD */
    .why-choose-card {
        background: #F9FAFB;
        border-radius: 24px;
        padding: 1rem;
        border: 4px solid #F3F4F6;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
    }

    /* ITEM */
    .why-choose-item {
        display: flex;
        align-items: center;
        gap: 16px;
        width: 100%;

    }

    .why-icon {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: var(--Light-bg-primary, #FFFFFF);
        box-shadow: inset 0px 0px 12px 0px #00000052;
        display: flex;
        align-items: center;
        justify-content: center;
        
      
    }

    .why-choose-item h4 {
        font-size: 1.5rem;
        font-weight: 600;
        color: #111827;
    }
     .why-choose-item h4 br{
        display: none;
     }
}

/*  why-choose-section-end   */
/* TECHNOLOGIES SECTION */
.technologies-section {
    position: relative;
    padding: 32px 100px;
    border-bottom: 2px solid #F3F4F6;
}

.technologies-container {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

/* LEFT */
.technologies-left {
    width: 45%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.technologies-image {
    width: 100%;
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
}

.technologies-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.technologies-heading {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: #111827;
}

.technologies-text {
    font-size: 1rem;
    line-height: 1.5;
    color: #111827;
}

/* RIGHT CARD */
.technologies-card {
    width: 55%;
    background: #ffffff;
    border-radius: 24px;
    padding: 24px;
    border: 4px solid #F3F4F6;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.technology-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.technology-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tech-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--Light-bg-primary, #FFFFFF);
    box-shadow: inset 0 0 12px #00000052;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
}

.technology-title h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
}

.technology-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.technology-tags span {
    padding: 12px 24px;
    border-radius: 16px;
    border: 2px solid #F3F4F6;
    font-size: 1rem;
    font-weight: 400;
    color: #111827;
    background: #fff;
}

@media (max-width: 720px) {

    .technologies-section {
        padding: 32px 16px;
    }

    .technologies-container {
        flex-direction: column;
    }

    /* LEFT */
    .technologies-left {
        width: 100%;
    }

    .technologies-heading {
        font-size: 2rem;
    }

    /* RIGHT CARD */
    .technologies-card {
        width: 100%;
        padding: 16px;
    }

    .tech-icon {
        width: 48px;
        height: 48px;
    }

    .technology-title h4 {
        font-weight: 700;
    }

}


/* <!-- technologies-section-end  --> */
/* INDUSTRIES SECTION */
.industries-section {
    position: relative;
    padding: 32px 100px;
    border-bottom: 2px solid #F3F4F6;
}

.industries-container {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

/* LEFT CARD */
.industries-card {
    width: 70%;
    background: #ffffff;
    border-radius: 24px;
    padding: 24px;
    border: 4px solid #F3F4F6;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.industry-item {
    display: flex;
    align-items: center;
    gap: 16px;
    width: calc(50% - 12px);
}

.industry-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--Light-bg-primary, #FFFFFF);
    box-shadow: inset 0px 0px 12px 0px #00000052;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.industry-item h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
}

/* RIGHT CONTENT */
.industries-right {
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.industries-image {
    width: 100%;
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
}

.industries-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.industries-heading {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: #111827;
}

.industries-text {
    font-size: 1rem;
    line-height: 1.5;
    color: #111827;
}
@media (max-width: 720px) {

.industries-section {
    padding: 32px 16px;
}

.industries-container {
    flex-direction: column-reverse;
    gap: 32px;
}

/* LEFT CARD */
.industries-card {
    width: 100%;
    padding: 16px;
    gap: 16px;
}

.industry-item {
    width: 100%;
}

.industry-icon {
    width: 48px;
    height: 48px;
}

/* RIGHT CONTENT */
.industries-right {
    width: 100%;
}

.industries-heading {
    font-size: 2rem;
}

}

/* INDUSTRIES SECTION END*/
/*  ================= FOOTER-SECTION =================  */
.footer {
  background-color: #F9FAFB;
  padding: 32px 100px;
  font-family: Inter, sans-serif;
  color: #667085;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 24px;
}

/* Brand */
.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo span {
  font-size: 22px;
  font-weight: 700;
  color: #101828;
}

.footer-description {
  margin-top: 24px;
  max-width: 292px;
  line-height: 1.6;
}

/* Columns */
.footer-title {
  font-size: 24px;
  font-weight: 600;
  color: #101828;
  margin-bottom: 24px;
}

.footer-list,
.footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  cursor: pointer;
}

.footer-contact {
  margin-bottom: 24px;
}

/* Footer links animation */
.footer-list li a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #667085;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
  margin-left: 5px;
}

/* Add >> before link */
.footer-list li a::before {
  margin-top: 2px;
  content: "˃˃";
  font-size: 22px;
  transform: translateX(-6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  color: #106EFF;
}

/* Hover animation */
.footer-list li a:hover {
  color: #101828;
  transform: translateX(4px);
}

/* Reveal arrow on hover */
.footer-list li a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* Social */
.footer-socials {
  display: flex;
  gap: 50px;                  /* better spacing than space-between */
}

.footer-socials a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  text-decoration: none;
  color: #667085;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-socials a i {
  font-size: 28px;           /* FIX: proper font-size */
  line-height: 1;
}

/* Hover effect */
.footer-socials a:hover {
  transform: translateY(-2px) scale(1.15);  /* FIX: scale inside transform */
  color: #106EFF;                            /* icon color via currentColor */
}

/* Bottom */
.footer-bottom {
  margin-top: 24px;
  padding: 32px 0;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #6B7280;
}

/* Responsive */
@media (max-width: 720px) {
  .footer {
    padding: 32px 16px;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-title {
    font-size: 22px;
    margin-bottom: 16px;
  }

  .footer-bottom {
    margin-top: 24px;
    padding: 8px;
    display: flex;
    gap: 8px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

/* Optional: Motion safe */
@media (prefers-reduced-motion: reduce) {
  .footer-list li a,
  .footer-socials a {
    transition: none;
  }
}
/* ====================  Footer content end   ====================  */