/* ========================================= */
/* 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/servicebg.png") center center / cover no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
 margin-bottom: 100px;  
    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;
    }
}









/* ================= RESET ================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #e6f1fb;

}

/* ================= SECTION ================= */

.service-flex:first-of-type {
    margin-top: 100px;
}

.service-container {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ================= TITLE ================= */


/* ================= SERVICE CARD ================= */

.service-flex {
    display: flex;
    align-items: center;
    justify-content: center;   /* center content */
    gap: 60px;

    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);

    max-width: 1100px;
    margin: 0 auto 70px auto;   /* center card */
    transition: 0.4s ease;
}

.service-flex:hover {
    transform: translateY(-6px);
}

.service-flex.reverse {
    flex-direction: row-reverse;
}

/* ================= CONTENT ================= */

.service-content {
    flex: 1;
    max-width: 550px;
    text-align: justify;
}

.service-heading {
    font-size: 26px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 18px;
}

.service-desc {
    font-size: 16px;
    color: black;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* ================= FEATURES ================= */

.service-feature {
    font-size: 15px;
    margin-bottom: 12px;
    color: black;
    display: flex;
    align-items: center;
}

.service-feature i {
    color: var(--pink);
    margin-right: 10px;
}

/* ================= IMAGE ================= */

.service-image-box {
    flex: 1;
    display: flex;
    justify-content: center;
}

.service-img {
    width: 100%;
    max-width: 520px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* ================= TABLET ================= */

@media (max-width: 992px) {

    .service-flex,
    .service-flex.reverse {
        flex-direction: column;
        align-items: center;
         text-align: justify;
        padding: 35px 25px;
        gap: 30px;
        max-width: 700px;
    }

    .service-content {
        max-width: 100%;
         text-align: justify;
    }

    .service-feature {
        justify-content: center;
    }

}

/* ================= MOBILE ================= */

@media (max-width: 576px) {

    .services-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 26px;
        margin-bottom: 50px;
    }

    .service-flex {
        padding: 25px 18px;
        max-width: 95%;
        margin-bottom: 50px;
    }

    .service-heading {
        font-size: 22px;
    }

    .service-desc {
        font-size: 14px;
    }

}

















/* 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;
    }

}
