@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;
    min-height: 100vh;
    background-repeat: no-repeat;
    overflow: hidden;

}


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

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

    .main-img {
        height: 100vh;
    }
}

/* ===== 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(5) {
    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;
}

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

.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: 46px;
    left: 0;
    width: 100%;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 0;
    overflow: hidden;
    transform: translateY(-10px);
    transition: max-height 0.5s ease, transform 0.3s ease;
    z-index: 999;
}

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

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

@media (max-width: 1024px) {

    .navbar {
        height: 56px;
        padding: 0 30px;
    }

    .nav-logo {
        width: 115px;
        height: 24px;
    }

    .nav-links {
        display: none;
    }

    .nav-icon {
        display: block;
    }
}

/*  ==================== nav-bar end here   ====================  */
/* CONTACT SECTION */
.contact-section {
    min-height: 500px;
    position: relative;
    padding: 116px 100px 32px 100px;
    border-bottom: 2px solid #F3F4F6;
}

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

/* LEFT */
.contact-left {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-heading {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: #111827;
    text-align: start;
}

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

/* CARD */
.contact-card {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 32px 16px;
    border: 4px solid #F3F4F6;
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    display: flex;
    flex-wrap: wrap;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #111827;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 24px;
    color: #FFFFFF;

}


.contact-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: #6B7280;

}

.contact-info p {
    font-size: 1rem;
    font-weight: 500;
    color: #111827;

    br {
        display: none;
    }
}

/* RIGHT IMAGE */
.contact-image {
    width: 50%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
}

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

@media(max-width:720px) {
    .contact-section {
        position: relative;
        padding: 116px 16px 32px 16px;
        border-bottom: 2px solid #F3F4F6;
    }

    .contact-container {
        display: flex;
        flex-direction: column-reverse;
        gap: 32px;
        align-items: flex-start;
    }

    /* LEFT */
    .contact-left {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .contact-heading {
        font-size: 3rem;
        font-weight: 700;
        line-height: 1.2;
        color: #111827;
        text-align: start;
    }

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

    /* CARD */
    .contact-card {
        background: #FFFFFF;
        border-radius: 24px;
        padding: 24px 16px;
        border: 4px solid #F3F4F6;
        display: flex;
        flex-direction: column;
        gap: 16px;

    }

    .contact-item {
        display: flex;
        align-items: center;
        gap: 8px;
        display: flex;
        flex-wrap: nowrap;
        height: fit-content;
    }


    .contact-icon {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: #111827;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .contact-icon i {
        font-size: 24px;
        color: #FFFFFF;

    }


    .contact-info h4 {
        font-size: 14px;
        font-weight: 600;
        color: #6B7280;


    }

    .contact-info p {
        font-size: 1rem;
        font-weight: 500;
        color: #111827;

        br {
            display: block;
        }
    }

    /* RIGHT IMAGE */
    .contact-image {
        width: 100%;
        height: 200px;
        border-radius: 16px;
        overflow: hidden;
    }

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

/* CONTACT SECTION  END*/
/* GET IN TOUCH SECTION */
.get-in-touch-section {
    position: relative;
    padding: 32px 100px;
    border-bottom: 2px solid #F3F4F6;
}

.get-in-touch-container {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

/* LEFT */
.get-in-touch-left {
    width: 65%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.get-in-touch-image {
    width: 100%;
    height: 305px;
    border-radius: 16px;
    overflow: hidden;
}

.get-in-touch-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

/* RIGHT FORM WRAPPER */
.contact-form {
    margin-left: auto;
    flex-shrink: 0;
}

.contact-form {
    min-height: 603px;
    width: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    background: rgba(255, 255, 255, 0);
    /* white with 30% opacity */
    ;
    border: 8px solid #F3F4F6;
    box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 48px;
}

.form-handle {
    width: 97px;
    height: 10px;
    background: #5C5C5C;
    border-radius: 100px;
}

.contact-form h3 {
    font-size: 24px;
    font-weight: 700;
}

.contact-form form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form label {
    font-size: 14px;
    font-weight: bold;
    color: #6B7280;
}

.contact-form input {
    width: 100%;
    font-size: 16px;
    border: none;
    border-bottom: 1px solid #000;
    background: transparent;
    padding: 6px 0;
    color: #6B7280;
}

.contact-form input:focus {
    outline: none;
}

.contact-form input::placeholder {
    color: #6B7280;
}

.contact-form textarea {
    width: 100%;
    font-size: 16px;
    border: none;
    border-bottom: 1px solid #000;
    background: transparent;
    padding: 6px 0;
    color: #6B7280;
    resize: vertical;
    min-height: 0px;
}

.contact-form textarea:focus {
    outline: none;
}

.contact-form textarea::placeholder {
    color: #6B7280;
}

.contact-form button {
    width: 100%;
    padding: 24px;
    background: #111;
    color: white;
    border: none;
    border-radius: 64px;
    font-size: 16px;
    cursor: pointer;
}

@media (max-width:720px) {
    .get-in-touch-section {
        position: relative;
        padding: 32px 16px;
        border-bottom: 2px solid #F3F4F6;
    }

    .get-in-touch-container {
        display: flex;
        gap: 24px;
        flex-direction: column;
        align-items: flex-start;
    }

    /* LEFT */
    .get-in-touch-left {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .get-in-touch-image {
        width: 100%;
        height: 328px;
        border-radius: 16px;
        overflow: hidden;
    }

    .get-in-touch-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

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

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

    /* RIGHT FORM WRAPPER */
    .contact-form {
        margin-left: auto;
        flex-shrink: 0;
    }

    .contact-form {
        min-height: 451px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 24px;
        background: rgba(255, 255, 255, 0);
        border: 8px solid #F3F4F6;
        box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.25);
        backdrop-filter: blur(12px);
        border-radius: 24px;
        padding: 32px 24px;
    }

    .form-handle {
        width: 97px;
        height: 10px;
        background: #5C5C5C;
        border-radius: 100px;
    }

    .contact-form h3 {
        font-size: 24px;
        font-weight: 700;
    }

    .contact-form form {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .contact-form label {
        font-size: 14px;
        font-weight: bold;
        color: #6B7280;
    }

    .contact-form input {
        width: 100%;
        font-size: 16px;
        border: none;
        border-bottom: 1px solid #000;
        background: transparent;
        padding: 6px 0;
        color: #6B7280;
    }

    .contact-form input:focus {
        outline: none;
    }

    .contact-form input::placeholder {
        color: #6B7280;
    }

    .contact-form textarea {
        width: 100%;
        font-size: 16px;
        border: none;
        border-bottom: 1px solid #000;
        background: transparent;
        padding: 6px 0;
        color: #6B7280;
        resize: vertical;
        min-height: 0px;
    }

    .contact-form textarea:focus {
        outline: none;
    }

    .contact-form textarea::placeholder {
        color: #6B7280;
    }

    .contact-form button {
        width: 100%;
        padding: 24px;
        background: #111;
        color: white;
        border: none;
        border-radius: 64px;
        font-size: 16px;
        cursor: pointer;
    }
}


.service-select-wrapper {
    position: relative;
}

.service-select {
    color: #6B7280;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    font-size: 16px;
    cursor: pointer;
    border-bottom: 1px solid #000;
}

.service-select .arrow {
    transition: transform 0.3s ease;
}

.service-select.open .arrow {
    transform: rotate(180deg);
}

.service-dropdown {
    width: 100%;
    background: transparent;
    border-radius: 12px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    margin-top: 10px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.25s ease;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.service-dropdown.open {
    max-height: 240px;
    opacity: 1;
}

/* MAIN FIX */
.service-option {
    display: flex;
    align-items: last baseline;
    justify-content: flex-start;
    gap: 12px;
    padding: 12px 20px;
    width: 100%;
    cursor: pointer;
    text-align: left;
    white-space: normal;
    color: #6B7280;
    font-size: 14px;
}

.service-option input {
    padding-top: 10px;
}


.service-option:hover {
    background: #F3F4F6;
}

.service-option input[type="checkbox"] {
    margin: 0;
    flex-shrink: 0;
    accent-color: #106EFF;
}


/*  ================= FOOTER-SECTION =================  */
.footer {
    position: relative;
    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   ====================  */