*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Jost", sans-serif;
}
html{
    scroll-behavior: smooth;
}
body{
    background: white;
}
/* scroll button*/
#progress{
    position: fixed;
    bottom: 20px;
    right: 10px;
    width: 45px;
    height: 45px;
    display: none;
    place-items: center;
    border-radius: 50%;
    box-shadow: 0,0,10px rgb(225, 222, 216);
    cursor: pointer;
    z-index: 9999;
}
#progress-value{
    display: block;
    height: calc(98% - 3px);
    width: calc(98% - 3px);
    background-color: #ffffff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 24px;
    z-index: 9999;
}
.top-footer{
    background: rgb(255, 255, 255);
    height: 40px;
    z-index: 9999;
    position: relative;
}
.top-footer .box{
    position: relative;
    padding: 10px 0;
    display: flex;
    
}
.top-footer .box .icon{
    min-width: 45px;
    height: 23px;
    color: #E31E24;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 17px;
}
.top-footer .box .text-1{
    display: flex;
    font-size:.95rem;
    height: 10px;
    color: #000000;
    text-overflow: ellipsis;
}
.top-footer .box .text-1 a{
    color: rgb(0, 0, 0);
    text-decoration: none;
}
.top-footer .box .text-1 a:hover{
    color: #387ef8;
}
.social-link-list{
    display: flex;
    margin-left: 580px;
    align-items: center;
    gap: 20px;
}
.social-link-list .social-link{
    color: #d82828;
    font-size: 17px;
}
.social-link-list .social-link:hover{
    color: #387ef8;
}
/* HEADER */
header {
    width: 100%;
    height: 70px;
    background-color: #00AEEF;
    padding: 0 60px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    position: sticky;
    top: 0;
    z-index: 9999;
}
/* LOGO */
header .logo {
    width: 100px;
    display: block;
}
/* NAV */
header ul {
    display: flex;   /* 🔥 replaces float */
    align-items: center;
    gap: 10px;
}
/* REMOVE FLOAT */
header ul li {
    list-style: none;
}
/* LINKS */
header ul li a {
    color: #fff;
    font-size: 18px;
    padding: 10px 18px;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s ease;
}
/* HOVER */
header ul li a:hover {
    background: #fff;
    color: #000;
}
/* BUTTON (your <a>) */
.dropdown .dropbtn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    padding: 12px 16px;
    cursor: pointer;
    transition: 0.3s ease;
}
/* HOVER EFFECT */
.dropdown .dropbtn:hover {
    background: #fff;
    color: #000;
    border-radius: 4px;
}
/* ICON */
.dropdown .dropbtn i {
    font-size: 16px;
    transition: transform 0.3s ease;
}
/* ROTATE ICON WHEN ACTIVE */
.dropdown.active .dropbtn i {
    transform: rotate(180deg);
}
/* DROPDOWN */
.dropdown {
    position: relative;
}
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;

    background-color: #00AEEF;
    min-width: 220px;
    border-radius: 5px;
    overflow: hidden;
}
/* DROPDOWN LINKS */
.dropdown-content li a {
    display: block;
    padding: 12px 15px;
    font-size: 18px;
}
/* SHOW DROPDOWN */
.dropdown:hover .dropdown-content {
    display: block;
}
/* DROPDOWN HOVER */
.dropdown-content li a:hover {
    background: #fff;
    color: #000;
}
/* styling whatsapp*/
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999;
    cursor: pointer;
    border-radius: 50%;
    transition: transform 0.3s ease;
}
.whatsapp-float:hover {
    transform: scale(1.1);
}
/* =========================
   CONTACT SECTION
========================= */

.contact-section {
    padding: 70px 20px;
    background: #f7f9fc;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 10px;
}

.open-text {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 50px;
    color: #000000;
    line-height: 1.6;
    font-size: 18px;
}

/* MAIN GRID */
.contract {
    max-width: 1150px;
    margin: auto;
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

/* =========================
   CONTACT INFO (LEFT)
========================= */

.Contactinfo {
    flex: 1.5;
    margin-top: 130px;
}

.Contactinfo .box {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.Contactinfo .icon {
    width: 50px;
    height: 50px;
    background: #00AEEF;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 50%;
}

.Contactinfo .text h3 {
    margin: 0 0 5px;
    font-size: 18px;
    color: #000000;
}

.Contactinfo .text p {
    margin: 0;
    color: #000000;
    line-height: 1.5;
}

/* =========================
   FORM WRAPPER (RIGHT)
========================= */

.form-wrapper {
    flex: 2;
    background: #fff;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.form-wrapper .title {
    font-size: 17px;
    margin-bottom: 15px;
    color: #000000;
}

/* =========================
   TABS
========================= */

.tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.tab {
    padding: 10px 22px;
    border: 1px solid #676767;
    background: #fff;
    color: #000000;
    cursor: pointer;
    font-size: 15px;
    transition: 0.3s;
}

.tab.active,
.tab:hover {
    background: #00AEEF;
    color: #fff;
}

/* =========================
   FORM FIELDS
========================= */

form .row {
    display: flex;
    gap: 25px;
    margin-bottom: 20px;
}

form .row.full {
    flex-direction: column;
}

.field {
    flex: 1;
}

.field label {
    font-size: 15px;
    color: #000000;
    display: block;
    margin-bottom: 6px;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    height: 42px;
    padding: 0 12px;
    border: 1px solid #dfe3eb;
    font-size: 15px;
    outline: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: #000000;
}

.field textarea {
    height: 120px;
    padding-top: 10px;
    resize: none;
}

/* PHONE FIELD */
.phone-box {
    display: flex;
}

.phone-box span {
    background: #f1f3f6;
    border: 1px solid #dfe3eb;
    padding: 10px 12px;
    font-size: 15px;
    color: #000000;
}

.phone-box input {
    border-left: none;
}

/* =========================
   SUBMIT BUTTON
========================= */

.submit-btn {
    background: #00AEEF;
    color: #fff;
    border: none;
    padding: 12px 35px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #387ef8;
}

/* =========================
   MOBILE & TABLET FIXES
========================= */

/* Tablets */
@media (max-width: 1024px) {
    .contract {
        gap: 30px;
    }

    .form-wrapper {
        padding: 25px;
    }
}

/* Mobile */
@media (max-width: 768px) {

    /* Stack columns */
    .contract {
        flex-direction: column;
    }

    /* Center titles */
    .section-title,
    .open-text {
        text-align: center;
        padding: 0 10px;
    }

    /* Contact info boxes full width */
    .Contactinfo .box {
        align-items: flex-start;
    }

    /* Tabs wrap */
    .tabs {
        flex-wrap: wrap;
        gap: 10px;
    }

    .tab {
        flex: 1 1 calc(50% - 10px);
        text-align: center;
    }

    /* Form rows stack */
    form .row {
        flex-direction: column;
        gap: 15px;
    }

    /* Phone field fix */
    .phone-box {
        flex-direction: row;
    }

    /* Reduce input height */
    .field input,
    .field select {
        height: 40px;
    }

    .field textarea {
        height: 100px;
    }

    /* Button full width */
    .submit-btn {
        width: 100%;
        text-align: center;
    }
}

/* Small phones */
@media (max-width: 480px) {

    .section-title {
        font-size: 26px;
    }

    .open-text {
        font-size: 14px;
    }

    .form-wrapper {
        padding: 20px;
    }

    .tab {
        font-size: 13px;
        padding: 10px;
    }
}
/* styling footer */
footer{
    display: flex;
    flex-wrap: wrap;
    background: #000000;
    color: #fff;
    padding: 50px 20px 20px;
}
ul{
    list-style: none;
    
}
.list{
    padding: 7px;
}
.list li{
    width: auto;
    text-align: center;
    list-style-type: none;
    padding: 7px;
    position: relative;
}
.footer-col{
    display: inline-block;
    width: 22%;
    vertical-align: top;
    margin-right: 3%;
    margin-bottom: 20px;
}
.footer-col h2 {
    position: relative; /* Required for ::before to position properly */
    font-size: 23px;
    margin-bottom: 15px;
    text-align: center;
    color: #ffffffd2;
}
.footer-col p{
    margin-left: 9px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  font-size: 17px;
  text-align: left;
  margin-left: 30px;
}
.footer-col ul li a {
  color: #fff;
  font-size: 17px;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-col ul li a:hover {
  color: #00AEEF;
}
.social-icons{
    text-align: center;
    padding: 7px;
}
.social-icons li{
    display: inline-block;
    text-align: center;
    padding: 5px;
   
 }
 .social-icons i{
    color: white;
    font-size: 18px;
 }
 a{
    text-decoration: none;
    color: #ffffff;
 }
 a:hover{
    color: #00AEEF;
 }
 .social-icons i:hover{
    color: #00AEEF;
 }
 .bottom-bar{
    text-align: center;
    padding: 10px 0;
    margin: auto;
    margin-top: 50px;
 }
.bottom-bar p{
    color: #ffffff;
    margin: auto;
    font-size: 18px;
    padding: 7px;
}

/*styling bottom-footer*/
.bottom-footer{
    text-align: center;
    background-color: #4e4d4d;
}
.craft{
    padding: 6px ;
}
.craft p{
    color: #fff;
}
.craft a{
    color: #c5ffff;
}
.craft a:hover{
    color: rgb(134, 173, 237);
}
@media (max-width: 1115px){
    .social-link-list{
        margin-left: 340px;
    }
    header .logo{
        width: 85px;
        
    }
    nav ul li a {
        text-decoration: none;
        color: #ffffff;
        font-size: 17px;
        transition: color 0.3s;
    }
    .dropdown-content li a {
        display: block;
        padding: 12px 15px;
        font-size: 17px;
    }
}
@media (max-width: 1050px){
    .social-link-list{
        margin-left: 340px;
    }
}
@media (max-width: 1000px){
    .social-link-list{
        margin-left: 280px;
    }
}
@media (max-width: 950px){
    .social-link-list{
        margin-left: 190px;
    }
}
@media (max-width: 900px) {

    /* Hide top footer */
    .top-footer {
        display: none;
    }

    /* Header */
    header {
        padding: 10px 20px;
        position: relative; /* important for nav positioning */
    }

    header .logo {
        width: 90px;
    }

    /* ===== MOBILE NAV CONTAINER ===== */
    header nav {
        position: absolute;
        top: 70px; /* fixed under header */
        left: 0;
        right: 0; /* ensures full width */
        width: 100%;
        background: #00AEEF;
        display: none;
        z-index: 1000;
        text-align: center;
        padding: 20px 0;
    }

    /* Show menu when active */
    header.active nav {
        display: block;
    }

    header.active {
        background-color: #00AEEF !important;
    }

    /* ===== NAV LIST ===== */
    header nav ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0;
        margin: 0;
    }

    header nav ul li {
        list-style: none;
        width: 100%;
    }

    header nav ul li a,
    .dropdown .dropbtn {
        display: block;
        width: 100%;
        color: #fff;
        font-size: 16px;
        padding: 15px 0;
        text-decoration: none;
        cursor: pointer;
    }

    header nav ul li a:hover {
        color: black;
        background-color: transparent;
    }

    /* ===== DROPDOWN ===== */
    .dropdown {
        position: static;
        width: 100%;
        background-color: #00AEEF;
    }

    .dropdown-content {
        display: none;
        position: static;
        background-color: #00AEEF;
        color: #fff;
        text-align: center;
        width: 100%;
    }

    /* Disable hover on mobile */
    .dropdown:hover .dropdown-content {
        display: none !important;
    }

    /* Show dropdown when active (JS controlled) */
    .dropdown.active .dropdown-content {
        display: block !important;
    }

    .dropdown-content li a {
        padding: 12px 16px;
        color: #fff;
        font-size: 15px;
        border-top: 1px solid rgba(255,255,255,0.2);
    }

    /* Dropdown button */
    .dropdown .dropbtn {
        font-size: 16px;
        gap: 50px;
        background: none;
        border: none;
        color: #fff;
    }

    .dropdown .dropbtn i {
        font-size: 16px;
        margin-left: 10px;
        transition: transform 0.3s ease;
    }

    /* Remove tap highlight */
    .dropdown .dropbtn,
    .dropdown .dropbtn:focus,
    .dropdown .dropbtn:active {
        background-color: #00AEEF !important;
        color: #fff;
        outline: none;
        box-shadow: none;
        -webkit-tap-highlight-color: transparent;
    }
    .dropdown-content li a:hover {
        background: transparent;
        color: #000;
    }
    /* ===== HAMBURGER ===== */
    .menuToggle {
        position: relative;
        width: 40px;
        height: 50px;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .menuToggle::before,
    .menuToggle::after {
        content: '';
        position: absolute;
        width: 70%;
        height: 2px;
        background: #fff;
        transition: 0.3s ease;
    }

    .menuToggle::before {
        transform: translateY(-10px);
        box-shadow: 0 10px #fff;
    }

    .menuToggle::after {
        transform: translateY(10px);
    }

    /* Transform to X */
    header.active .menuToggle::before {
        transform: rotate(45deg);
        box-shadow: none;
    }

    header.active .menuToggle::after {
        transform: rotate(-45deg);
    }
    footer{
        flex-direction: column;
    }
    .footer-col {
        width: 100%;
    }
    .footer-col ul {
        margin-left: 1px;
    }
    .footer-col p {
        width: 100%;
    }
    .footer-col h2 {
        text-align: left;
    }
    .social-icons{
        text-align: left;
        padding: 7px;
    }
    .list li{
        text-align: left;
        border-bottom: 1px solid #ffffff79;
    }
    .list li::before{
        display: none;
    }
    .footer-col h2::before {
        display: none;
    }
}    