/* ========================================= */
/* GLOBAL */
/* ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family:Arial, Helvetica, sans-serif;
    overflow-x: hidden;
}

:root {
    --pink: #ed027c;
    --blue: #1d67b1;
    --white: #ffffff;
}
/* ========================================= */
/* TOP BAR DESKTOP */
/* ========================================= */

/* ================= TOP BAR ================= */

.top-bar {
    background: var(--blue);
    padding: 6px 0;   /* 🔥 space reduce (10px → 6px) */
}

.top-container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

.top-flex {
    display: flex;
    align-items: center;
}

/* LEFT SIDE GROUP */
.top-left {
    display: flex;
    align-items: center;
    gap: 25px;   /* 🔥 gap reduce (45px → 25px) */
}

/* CONTACT ITEMS SMALL */
.top-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--white);
    font-size: 15px;   /* 🔥 smaller text */
}

/* ICON SMALL */
.top-item i {
    font-size: 15px;   /* 🔥 icon size reduce */
}

/* BUTTON SMALL */
.btn-appoint {
    margin-left: auto;
    background: var(--pink);
    color: var(--white);
    padding: 6px 16px;   /* 🔥 reduce button size */
    border-radius: 8px;
    font-size: 15px;     /* smaller text */
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.btn-appoint:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}
@media (max-width: 768px) {

    .top-flex {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }

    .top-left {
        flex-direction: column;
        gap: 4px;
    }

    .btn-appoint {
        margin-left: 0;
        padding: 5px 14px;
        font-size: 12px;
    }
}


/* ================= ROOT COLORS ================= */


/* ================= HEADER (STICKY) ================= */
header{
    width:100%;
    background:var(--white);
    box-shadow:0 2px 10px rgba(0,0,0,0.05);

    position:sticky;
    top:0;
    z-index:999;
}

/* ================= NAV CONTAINER ================= */
.nav-container{
    max-width:1250px;
    margin:0 auto;
     padding:8px 40px;

    display:flex;
    align-items:center;
    justify-content:space-between;
}

/* ================= LOGO ================= */
.logo img{
    width:170px;
    height:auto;
    display:block;
    margin-left: 30px;
}

/* ================= NAV LINKS ================= */
.nav-links{
    display:flex;
    align-items:center;
    gap:60px;

    list-style:none;
    margin:0;
    padding:0;
}

/* NAV LINK STYLE */
.nav-links li a{
    text-decoration:none;
    color:var(--blue);
    font-weight:600;
    font-size:15px;
    text-transform:uppercase;
    letter-spacing:1px;
    position:relative;
    transition:0.3s ease;
}

/* Underline effect */
.nav-links li a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-4px;
    width:0%;
    height:2px;
    background:var(--pink);
    transition:0.3s ease;
}

.nav-links li a:hover{
    color:var(--pink);
}

.nav-links li a:hover::after{
    width:100%;
}

/* ================= DROPDOWN ================= */
.dropdown{
    position:relative;
}

.dropdown-menu{
    position:absolute;
    top:110%;
    left:0;
    min-width:260px;
    background:var(--white);
    padding:15px 0;
    display:none;

    border-radius:8px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    list-style:none;
}

.dropdown-menu li{
    padding:10px 20px;
}

.dropdown-menu li a{
    display:block;
    white-space:nowrap;
    text-transform:none;
    font-size:15px;
    color:var(--blue);
}

.dropdown-menu li a:hover{
    color:var(--pink);
}

/* Desktop hover dropdown */
@media(min-width:769px){
    .dropdown:hover .dropdown-menu{
        display:block;
    }
}

/* ================= MOBILE MENU TOGGLE ================= */
.menu-toggle{
    display:none;
    font-size:26px;
    color:var(--blue);
    cursor:pointer;
}

/* ================= TABLET ================= */
@media(max-width:992px){
    .nav-container{
        padding:15px 25px;
    }
}

/* ================= MOBILE ================= */
@media(max-width:768px){

    .menu-toggle{
        display:block;
    }

    .nav-links{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:var(--white);

        flex-direction:column;
        gap:25px;
        padding:30px 0;
        display:none;

        box-shadow:0 10px 20px rgba(0,0,0,0.08);
    }

    .nav-links.active{
        display:flex;
    }

    .nav-links li{
        text-align:center;
        width:100%;
    }

    .dropdown-menu{
        position:static;
        width:100%;
        box-shadow:none;
        padding:10px 0;
        display:none;
    }

    .dropdown.active .dropdown-menu{
        display:block;
    }
}





/* ================= SERVICE HERO ================= */
/* ================= SERVICE HERO ================= */

.service-hero {
    position: relative;
    height: 65vh;
    min-height: 420px;

    /* 🔥 If CSS inside css folder use ../ */
    background: url("../images/contactbg.png") center center / cover no-repeat;

    display: flex;
    align-items: center;
    justify-content: start;
    overflow: hidden;
 
    animation: heroZoom 18s ease-in-out infinite alternate;
}

/* Dark Overlay */
.service-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

/* Content */
.service-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;

    /* 🔥 Slight right shift */
    transform: translateX(100px);   /* Adjust 80px / 120px if needed */
}

/* Title */
.service-hero-content h1 {
    font-size: 52px;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 1px;

    animation: textZoom 1.3s ease forwards;
}

/* Background Zoom */
@keyframes heroZoom {
    0% { background-size: 100%; }
    100% { background-size: 110%; }
}

/* Text Zoom Animation */
@keyframes textZoom {
    0% {
        opacity: 0;
        transform: scale(0.6);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

    .service-hero {
        height: 55vh;
    }

    .service-hero-content h1 {
        font-size: 38px;
    }
}

@media (max-width: 768px) {

    .service-hero {
        height: 45vh;
        min-height: 300px;
        justify-content: center;
    }

    .service-hero-content {
        transform: translateX(0);  /* Center on mobile */
        text-align: center;
    }

    .service-hero-content h1 {
        font-size: 28px;
        padding: 0 15px;
    }
}











/* ========================================= */
/* CONTACT SECTION */
/* ========================================= */

.contact-section {
    padding: 30px 6% 60px 6%;   /* 🔥 Top space reduce */
    background: #e6efff;
    display: flex;
    justify-content: center;
}

/* CONTAINER */
.contact-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    gap: 40px;                 /* reduce gap */
    align-items: flex-start;   /* top align */
}

/* ================= LEFT SIDE ================= */

.contact-left {
    flex: 1;
}

.contact-title {
    color: var(--pink);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;   /* 🔥 reduce space below title */
}

/* CONTACT BOX */
.contact-box {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #ffffff;
    padding: 15px 18px;
    border-radius: 14px;
    margin-bottom: 15px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.contact-box:hover {
    transform: translateY(-4px);
}

.contact-box h4 {
    color: var(--blue);
    font-weight: 600;
    margin-bottom: 2px;
    font-size: 15px;
}

.contact-box p,
.contact-box a {
    font-size: 14px;
    margin: 0;
    color: #333;
    text-decoration: none;
}

.contact-box a:hover {
    color: var(--pink);
}

/* ICON */
.icon {
    font-size: 20px;
    background: linear-gradient(135deg, var(--pink), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    flex-shrink: 0;
}

/* MAP */
.map-box {
    margin-top: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.map-box iframe {
    width: 100%;
    display: block;
}

/* ================= RIGHT SIDE (FORM) ================= */

.contact-right {
    flex: 1;
    background: var(--blue);
    padding: 35px 30px;     /* reduce padding */
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.contact-right h2 {
    color: #ffffff;
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
}

/* FORM */
.contact-right form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-right input,
.contact-right select,
.contact-right textarea {
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
}

.contact-right textarea {
    resize: none;
    min-height: 90px;
}

.contact-right button {
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: #ffffff;
    color: var(--pink);
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.contact-right button:hover {
    background: var(--pink);
    color: #ffffff;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {

    .contact-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .contact-left,
    .contact-right {
        width: 100%;
        max-width: 550px;
    }

    .contact-title {
        text-align: center;
    }

    .contact-box {
        width: 100%;
    }
}











/* MAIN FOOTER */
.footer{
    background: var(--blue);
    color:var(--white);
    padding:60px 8% 0 8%;
    overflow:hidden;
      font-family:Arial, Helvetica, sans-serif;
}

/* WRAPPER */
.footer-wrapper{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:50px;
}

/* COLUMN */
.footer-col h3{
    font-size:22px;
    margin-bottom:25px;
    font-weight:700;
}

.footer-col ul{
    list-style:none;
    padding:0;
}

.footer-col ul li{
    margin-bottom:18px;
    font-size:16px;
}

.footer-col ul li a{
    text-decoration:none;
    color:var(--white);
    transition:0.3s;
}

.footer-col ul li a:hover{
    color:#ffe3f3;
}

/* CONTACT ICONS */
.contact-list li{
    display:flex;
    align-items:center;
    gap:12px;
}

.contact-list i{
    background:var(--white);
    color:var(--pink);
    padding:8px;
    border-radius:50%;
    font-size:14px;
}

/* SOCIAL */
.social-icons{
    margin-top:20px;
}

.social-icons a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:40px;
    height:40px;
    text-decoration: none;
    border-radius:50%;
    background:var(--white);
    color:var(--pink);
    margin-right:12px;
    transition:0.3s;
}

.social-icons a:hover{
    background:var(--pink);
    color:var(--white);
}

/* BOTTOM BAR */
.footer-bottom{
    margin-top:50px;

    width:100vw;              /* Full screen width */
    margin-left:calc(-8vw);   /* Same as footer side padding */
    
    text-align:center;
    padding:18px 0;
    background:rgba(0,0,0,0.2);
    font-size:15px;
}


/* ======================
   SCROLL ANIMATION
====================== */

.reveal-left{
    opacity:0;
    transform:translateX(-60px);
    transition:0.8s ease;
}

.reveal-right{
    opacity:0;
    transform:translateX(60px);
    transition:0.8s ease;
}

.reveal-left.active,
.reveal-right.active{
    opacity:1;
    transform:translateX(0);
}

/* ======================
   MOBILE RESPONSIVE
====================== */

@media(max-width:992px){
    .footer-wrapper{
        grid-template-columns:repeat(2,1fr);
        text-align:center;
    }

    .contact-list li{
        justify-content:center;
    }
}

@media(max-width:600px){
    .footer-wrapper{
        grid-template-columns:1fr;
        text-align:center;
    }
}







/* ================= FLOATING ICONS ================= */

.floating-icons {
    position: fixed;
    right: 20px;
    bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    transition: 0.3s ease;
    animation: floatBounce 2s infinite;
}

/* Phone Style */
.phone {
    background: #25d366;
}

/* WhatsApp Style */
.whatsapp {
    background: #25D366;
}

/* Hover Effect */
.float-btn:hover {
    transform: scale(1.1);
}

/* Floating Animation */
@keyframes floatBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

    .floating-icons {
        right: 15px;
        bottom: 20px;
    }

    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

}
