*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f5f7fb;
}

.container{
    width:100%;
}

#backToTop{
    position: fixed;
    bottom: 70px;
    right: 20px;
    width: 80px;
    height: 80px;
    padding: 10px 15px;
    background: linear-gradient(135deg, purple, gold);
    outline: 2px solid rgb(163, 2, 163);
    font-size: 30px;
    color: gold;
    border-radius: 50%;
    border: none;
    display: none;
    cursor: pointer;
    z-index: 10;
}
#backToTop:hover{
    background-color: rgb(163, 2, 163);
    outline: 2px solid rgb(225, 6, 225);
    box-shadow: 2px -4px 8px rgb(243, 46, 243), -2px 4px 8px rgb(243, 46, 243);
}

#backToTop{
    transition: all 0.3s ease;
}

#backToTop:hover{
    transform: scale(1.1) rotate(5deg);
}

/* NAV CLEAN */
.over-lay{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 20px;
    background: linear-gradient(
        135deg,
        rgba(5, 0, 20, 0.95),
        rgba(20, 0, 40, 0.95)
    );

    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: relative;
    z-index: 2000;
}

.over-lay::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;

    background: linear-gradient(
        to right,
        transparent,
        rgba(160, 0, 255, 0.6),
        transparent
    );
}

.logo-first-sec{
    display:flex;
    align-items:center;
    gap:10px;
}

.logo-txt p{
    font-size:28px;
    font-weight:bold;
    color:brown;
}


/* NAV WRAPPER */
.main-nav{
    position: relative;
    z-index: 2000;
}

/* MAIN NAV */
.navigation{
    display: flex;
    gap: 40px;
    list-style: none;
}

/* NAV ITEMS */
.navigation > li{
    position: relative;
}

/* LINKS */
.navigation a{
    display: inline-block;
    padding: 10px 16px;
    border-radius: 30px;
    color: gold;
    text-decoration: none;
    background: linear-gradient(180deg, #6b3f1d, #4a2b13);
    transition: 0.3s ease;
}

.navigation a:hover{
    background: linear-gradient(135deg, purple, gold);
    color: white;
    box-shadow: 0 0 10px rgba(255,215,0,0.6);
}


/* DROPDOWN BASE */
.dropdown{
    position: absolute;
    top: 120%;
    left: 0;
    min-width: 260px;

    background: white;
    list-style: none;
    border-radius: 12px;
    padding: 15px;

    display: grid;
    gap: 10px;

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);

    transition: 0.3s ease;
    z-index: 3000;
}

/* DROPDOWN LINKS */
.dropdown a{
    background: none;
    color: #333;
    padding: 6px 10px;
    border-radius: 8px;
}

.dropdown a:hover{
    background: #f0f0f0;
    color: purple;
}

/* SHOW DROPDOWN */
.has-dropdown:hover .dropdown{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.has-dropdown > a::after{
    content: " ▾";
    font-size: 12px;
}

.hamburger{
    display: none;
}

.mobile-overlay{
    display: none;
}

.mobile-nav{
    display: none;
}

.hero{
    background:
        url("../media/your-wave.png"),
        radial-gradient(circle at center, rgba(140,0,255,0.8), #020005 75%);

    background-size: contain, cover;
    background-position: center bottom, center;
}

.hero::before{
    content: "";
    position: absolute;
    inset: 0;

    background: radial-gradient(circle at center, rgba(128,0,255,0.2), transparent 70%);

    pointer-events: none;
}

.hero p:first-child{
    color: #d7b136;
    font-size: 28px;
    font-weight: 500;
}
h1{
    font-size: 39px;
    color: white;
}

.txtDispBx{
    padding:60px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
    position: relative;
    z-index: 1000;
}

@keyframes fadeInUp{
    from{
        opacity: 0;
        transform: translateY(40px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

.txtDispBx:nth-child(3),
.txtDispBx:last-child{
    color: white;
}

.txtDispBx:last-child::after{
    content: "";
    display: block;
    width: 100px;
    height: 3px;
    background: #d7b136;
    margin-top: 28px;
}

/* SECTION WRAPPER */
.inquiry-section{
    padding: 80px 40px;
    display: flex;
    justify-content: center;
}

/* CARD */
.inquiry-card{
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    max-width: 1200px;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    background: white;
}

/* LEFT SIDE */
.inquiry-left{
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: white;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.inquiry-left .mini{
    color: gold;
    font-size: 14px;
    letter-spacing: 1px;
}

.inquiry-left h2{
    font-size: 32px;
    margin: 10px 0;
}

.inquiry-left .desc{
    line-height: 1.7;
    color: #ccc;
}

/* RIGHT SIDE */
.inquiry-right{
    padding: 50px;
}

.inquiry-right .mini{
    font-size: 14px;
    color: purple;
    letter-spacing: 1px;
}

.inquiry-right h2{
    margin: 10px 0 30px;
    font-size: 26px;
}

/* FORM GRID */
.form-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.input-box{
    display: flex;
    align-items: center;
    gap: 10px;

    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 12px 14px;
}

.input-box i{
    color: #888;
    font-size: 14px;
}

.input-box input,
.input-box select{
    border: none;
    outline: none;
    background: transparent;
    width: 100%;
    font-size: 14px;
}

.form-grid input,
.form-grid select,
.form-grid textarea{
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 14px;
    width: 100%;
}

.form-grid textarea{
    grid-column: span 2;
    min-height: 120px;
}

/* CHECKBOX */
.checkbox{
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
}

.checkbox input{
    width: 16px;
    height: 16px;
    accent-color: purple;
    cursor: pointer;
}

.checkbox a{
    color: purple;
    text-decoration: none;
}

/* BUTTON */
.form-grid button{
    grid-column: span 2;
    padding: 16px;
    border: none;
    border-radius: 30px;
    background: linear-gradient(135deg, purple, gold);
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.form-grid button:hover{
    transform: scale(1.03);
}









.footer{
    background: linear-gradient(135deg, #0f2027, #203a43);
    padding: 60px 40px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer img{
    filter: brightness(1.2);
}

.txt p{
    color: #ccc;
    margin-bottom: 10px;
}

.bottom a{
    color: gold;
}

.right_sec{
    display:flex;
    gap:20px;
    font-size:30px;
}

.right_sec a{
    color: white;
    transition: 0.3s;
}

.right_sec a:hover{
    color: gold;
    transform: scale(1.2);
}

/* ===== SMOOTH FADE ANIMATION ===== */
.fade-in{
    opacity: 0;
    transform: translateY(40px);
    transition: 0.6s ease;
}

.fade-in.show{
    opacity: 1;
    transform: translateY(0);
}

/* MOBILE */
@media(max-width:768px){

    .navigation{
        height: 110em;
        width: 80%;
        padding-top: 230px;      
        position: fixed;
        top: 0;
        left: 0;
        z-index: 10;
        opacity: 0;
        transition: all 0.4s ease;
    }

    .navigation{
        display: none;
    }
    .hamburger{
        display:flex;
        flex-direction:column;
        gap:5px;
        cursor:pointer;
    }

    .hamburger span{
        width:25px;
        height:3px;
        background:#8B5A2B;
    }

    /* MOBILE NAV (SAME AS HOME) */
    .mobile-nav{
        display: block;
        position:fixed;
        top:0;
        left:-100%;
        width:80%;
        height:100%;
        background:linear-gradient(180deg,#6b3f1d,#4a2b13);
        z-index:3000;
        padding:20px;
        transition:0.4s ease;
    }

    .mobile-nav.active{
        left:0;
    }

    .mobile-overlay{
        display: block;
        position:fixed;
        inset:0;
        background:rgba(0,0,0,0.5);
        opacity:0;
        visibility:hidden;
        transition:0.3s;
        z-index:2500;
    }

    .mobile-overlay.active{
        opacity:1;
        visibility:visible;
    }

    .mobile-header{
        display:flex;
        justify-content:space-between;
        align-items:center;
    }

    .menu_logo{
        width:100px;
    }

    .close-btn{
        font-size:40px;
        color:gold;
        cursor:pointer;
    }

    .mobile-menu{
        list-style:none;
        margin-top:40px;
        display:flex;
        flex-direction:column;
        gap:25px;
    }

    .mobile-nav li{
        opacity: 0;
        transform: translateX(-20px);
        animation: slideIn 0.5s forwards;
    }

    .mobile-nav.active li:nth-of-type(1){ animation-delay: 0.1s; }
    .mobile-nav.active li:nth-of-type(2){ animation-delay: 0.2s; }
    .mobile-nav.active li:nth-of-type(3){ animation-delay: 0.3s; }
    .mobile-nav.active li:nth-of-type(4){ animation-delay: 0.4s; }

    @keyframes slideIn{
        to{
            opacity: 1;
            transform: translateX(0);
        }
    }

    .mobile-menu a{
        color:gold;
        font-size:22px;
        text-decoration:none;
    }

    .inquiry-card{
        grid-template-columns: 1fr;
    }

    .form-grid{
        grid-template-columns: 1fr;
    }

    .form-grid textarea,
    .form-grid button,
    .checkbox{
        grid-column: span 1;
    }
}

@media (max-width: 1024px){
    .navigation{
        height: 110em;
        width: 80%;
        padding-top: 230px;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 10;
        opacity: 0;
        transition: all 0.4s ease;
    }

    .navigation{
        display: none;
    }
    .hamburger{
        display:flex;
        flex-direction:column;
        gap:5px;
        cursor:pointer;
    }

    .hamburger span{
        width:25px;
        height:3px;
        background:#8B5A2B;
    }

    /* MOBILE NAV (SAME AS HOME) */
    .mobile-nav{
        display: block;
        position:fixed;
        top:0;
        left:-100%;
        width:80%;
        height:100%;
        background:linear-gradient(180deg,#6b3f1d,#4a2b13);
        z-index:3000;
        padding:20px;
        transition:0.4s ease;
    }

    .mobile-nav.active{
        left:0;
    }

    .mobile-overlay{
        display: block;
        position:fixed;
        inset:0;
        background:rgba(0,0,0,0.5);
        opacity:0;
        visibility:hidden;
        transition:0.3s;
        z-index:2500;
    }

    .mobile-overlay.active{
        opacity:1;
        visibility:visible;
    }

    .mobile-header{
        display:flex;
        justify-content:space-between;
        align-items:center;
    }

    .menu_logo{
        width:100px;
    }

    .close-btn{
        font-size:40px;
        color:gold;
        cursor:pointer;
    }

    .mobile-menu{
        list-style:none;
        margin-top:40px;
        display:flex;
        flex-direction:column;
        gap:25px;
    }

    .mobile-nav li{
        opacity: 0;
        transform: translateX(-20px);
        animation: slideIn 0.5s forwards;
    }

    .mobile-nav.active li:nth-of-type(1){ animation-delay: 0.1s; }
    .mobile-nav.active li:nth-of-type(2){ animation-delay: 0.2s; }
    .mobile-nav.active li:nth-of-type(3){ animation-delay: 0.3s; }
    .mobile-nav.active li:nth-of-type(4){ animation-delay: 0.4s; }

    @keyframes slideIn{
        to{
            opacity: 1;
            transform: translateX(0);
        }
    }

    .mobile-menu a{
        color:gold;
        font-size:22px;
        text-decoration:none;
    }

    .inquiry-card{
        grid-template-columns: 1fr;
    }

    .form-grid{
        grid-template-columns: 1fr;
    }

    .form-grid textarea,
    .form-grid button,
    .checkbox{
        grid-column: span 1;
    }
}