*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html,
body{

    width:100%;
    min-height:100%;

    overflow-x:hidden;

    font-family:'Poppins',sans-serif;

    background:
    linear-gradient(
    135deg,
    #e0f7ff,
    #d6f4ff,
    #eefcff
    );

    color:#071a2f;

    scroll-behavior:smooth;
}


/* Navbar */

/* =========================.premium-navbar
   ULTRA PREMIUM TOP HEADER
========================= */

.top-header{

    width:100%;

    background:
    linear-gradient(
    135deg,
    rgba(2,12,27,0.98),
    rgba(4,25,50,0.96),
    rgba(0,53,102,0.95)
    );

    backdrop-filter:blur(18px);

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 70px;

    color:white;

    position:relative;

    overflow:visible;

    border-bottom:
    1px solid rgba(255,255,255,0.08);

    box-shadow:
    0 10px 35px rgba(0,0,0,0.18);

    z-index:99999;
}

/* GLOW EFFECT */

.top-header::before{

    content:"";

    position:absolute;

    width:450px;
    height:450px;

    background:
    radial-gradient(
    rgba(0,255,200,0.12),
    transparent 70%
    );

    top:-220px;
    left:-120px;

    filter:blur(30px);
}

.top-header::after{

    content:"";

    position:absolute;

    width:350px;
    height:350px;

    background:
    radial-gradient(
    rgba(0,102,255,0.12),
    transparent 70%
    );

    bottom:-180px;
    right:-100px;

    filter:blur(30px);
}

/* LEFT */

.top-left{

    display:flex;

    align-items:center;

    gap:35px;

    position:relative;

    z-index:2;

    font-size:15px;

    font-weight:500;
}

/* CONTACT ITEM */

.contact-item{

    display:flex;

    align-items:center;

    gap:14px;

    background:
    rgba(255,255,255,0.06);

    padding:10px 18px;

    border-radius:50px;

    border:
    1px solid rgba(255,255,255,0.08);

    backdrop-filter:blur(10px);

    transition:0.3s;
}

.contact-item:hover{

    transform:translateY(-3px);

    background:
    rgba(0,200,150,0.12);
}

/* LOGO */

/* PHONE */

.top-left span{

    color:#dbeafe;

    letter-spacing:0.5px;
}

/* SEARCH */

.top-search{

    position:relative;

    width:340px;

    z-index:2;
}

/* INPUT */

#serviceSearch{

    width:100%;

    padding:16px 24px;

    border-radius:60px;

    border:
    2px solid rgba(255,255,255,0.12);

    outline:none;

    background:
    rgba(255,255,255,0.08);

    color:white;

    font-size:15px;

    backdrop-filter:blur(12px);

    transition:0.3s;
}

/* PLACEHOLDER */

#serviceSearch::placeholder{

    color:#cbd5e1;
}

/* FOCUS */

#serviceSearch:focus{

    border-color:#00ffd5;

    background:
    rgba(255,255,255,0.12);

    box-shadow:
    0 0 20px rgba(0,255,213,0.2);
}

/* RIGHT */

.top-right{

    display:flex;

    align-items:center;

    gap:16px;

    position:relative;

    z-index:2;
}

/* LINKS */

.top-right a{

    text-decoration:none;

    color:white;

    transition:0.3s;
}

/* COMPANY PROFILE */

.top-right a:first-child{

    background:
    linear-gradient(
    135deg,
    #00c896,
    #0066ff
    );

    padding:14px 26px;

    border-radius:50px;

    font-size:14px;

    font-weight:600;

    box-shadow:
    0 10px 25px rgba(0,102,255,0.2);
}

/* SOCIAL ICONS */

.top-right a:not(:first-child){

    width:44px;
    height:44px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:
    rgba(255,255,255,0.08);

    border:
    1px solid rgba(255,255,255,0.08);

    font-size:18px;

    backdrop-filter:blur(10px);
}

/* HOVER */

.top-right a:hover{

    transform:
    translateY(-4px)
    scale(1.05);

    background:
    linear-gradient(
    135deg,
    #00c896,
    #0066ff
    );

    color:white;
}

/* MOBILE */

@media(max-width:1100px){

    .top-header{

        flex-direction:column;

        gap:20px;

        padding:25px;
    }

    .top-left{

        flex-direction:column;

        gap:15px;

        text-align:center;
    }

}

@media(max-width:700px){

    .top-search{

        width:100%;
    }

    .top-right{

        flex-wrap:wrap;

        justify-content:center;
    }

}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 6%;
    background:#0d1b2a;
}

.logo{
    color:white;
    font-size:28px;
}

.nav-links{
    display:flex;
    gap:25px;
    list-style:none;
}


.nav-links li{
    margin-left:25px;
}

.nav-links a{
    color:white;
    text-decoration:none;
    font-size:18px;
}





/* ========================= */
/* PREMIUM NAVBAR */
/* ========================= */

.premium-header{

    width:100%;
    position:sticky;
    top:0;
    z-index:1000;

    background:
    rgba(7, 15, 43, 0.95);

    backdrop-filter:blur(10px);

    box-shadow:
    0 4px 20px rgba(0,0,0,0.2);
}

.premium-navbar{

    width:90%;
    margin:auto;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:18px 0;
}

/* LOGO */

.brand-section{

    display:flex;
    flex-direction:column;
}

.premium-logo{

    color:#fff;

    font-size:32px;

    font-weight:700;

    letter-spacing:1px;
}

.logo-tagline{

    color:#d4af37;

    font-size:13px;

    margin-top:3px;

    letter-spacing:1px;
}

/* MENU */

.premium-nav-links{

    display:flex;

    align-items:center;

    gap:28px;

    list-style:none;
}

.premium-nav-links li{

    position:relative;
}

.premium-nav-links li a{

    text-decoration:none;

    color:white;

    font-size:16px;

    font-weight:500;

    transition:0.3s;

    padding:10px 16px;

    border-radius:30px;
}

.premium-nav-links li a:hover{

    background:#d4af37;

    color:#000;
}

.premium-dropdown-menu{

    position:absolute;
    top:70px;
    left:50%;
    transform:translateX(-50%);

    min-width:700px;   /* rectangle width */
    width:max-content;

    display:grid;
    grid-template-columns:repeat(3,1fr);

    gap:12px;

    background:#fff;

    border-radius:18px;

    padding:20px;

    box-shadow:0 18px 40px rgba(0,0,0,.15);

    opacity:0;

    visibility:hidden;

    transition:.3s;

    z-index:999999;
}

/* SHOW */

.premium-dropdown:hover .premium-dropdown-menu{

    opacity:1;

    visibility:visible;

    top:75px;
}

/* ITEMS */

.premium-dropdown-menu li{

    list-style:none;
}

/* LINKS */

.premium-dropdown-menu li{
    list-style:none;
}

.premium-dropdown-menu li a{

    display:flex;

    justify-content:center;

    align-items:center;

    padding:16px;

    border-radius:12px;

    background:#f5f7fb;

    color:#071a2f;

    font-size:15px;

    font-weight:600;

    text-decoration:none;

    transition:.3s;
}

.premium-dropdown-menu li a:hover{

    background:linear-gradient(135deg,#0066ff,#00c896);

    color:#fff;
}

/* HOVER */

.premium-dropdown-menu li a:hover{

    background:
    linear-gradient(
    135deg,
    #0066ff,
    #00c896
    );

    color:white;

    transform:
    translateY(-6px)
    scale(1.04);

    box-shadow:
    0 15px 30px rgba(0,102,255,0.25);

}

/* PREMIUM ANIMATION */

.premium-dropdown-menu{

    animation:dropdownFade 0.35s ease;
}

/* GLOW EFFECT */

.premium-dropdown-menu::before{

    content:"";

    position:absolute;

    inset:0;

    border-radius:22px;

    padding:1px;

    background:
    linear-gradient(
    135deg,
    #00c896,
    #0066ff,
    #d4af37
    );

    -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

    -webkit-mask-composite:xor;

    mask-composite:exclude;

    pointer-events:none;
}

/* ANIMATION */

@keyframes dropdownFade{

    from{

        opacity:0;

        transform:
        translateX(-50%)
        translateY(20px)
        scale(0.95);
    }

    to{

        opacity:1;

        transform:
        translateX(-50%)
        translateY(0)
        scale(1);
    }
}

/* RESPONSIVE */

@media(max-width:900px){

    .premium-dropdown-menu{

        min-width:95vw;

        justify-content:center;
    }

    .premium-dropdown-menu li a{

        min-width:140px;
    }
}

/* BUTTON */

.premium-btn{

    background:#d4af37;

    color:#000;

    text-decoration:none;

    padding:10px 18px;

    border-radius:40px;

    font-weight:600;

    font-size:14px;

    transition:0.3s;
}

.premium-btn:hover{

    transform:translateY(-2px);

    background:#fff;
}

/* MOBILE */

@media(max-width:950px){

    .premium-navbar{

        flex-direction:column;

        gap:20px;
    }

    .premium-nav-links{

width:100%;

flex-direction:column;

align-items:stretch;

gap:8px;

}

.premium-nav-links li{

width:100%;

}

}

/* FIX SERVICE CARD CLICK ISSUE */

.home-services{

    position:relative;

    z-index:20;
}

.home-service-grid{

    position:relative;

    z-index:20;
}

.home-service-card{

    position:relative;

    z-index:30;

    cursor:pointer;
}

.service-card-link{

    display:block;

    text-decoration:none;

    color:inherit;

    position:relative;

    z-index:30;
}
/* WHATSAPP FLOATING BUTTON */

.whatsapp-float{

    position:fixed;

    width:65px;

    height:65px;

    bottom:30px;

    right:30px;

    z-index:9999;

    border-radius:50%;

    box-shadow:0 5px 15px rgba(0,0,0,0.3);

    transition:0.3s;
}

.whatsapp-float img{

    width:100%;

    height:100%;

    border-radius:50%;
}

.whatsapp-float:hover{

    transform:scale(1.1);
}

/* ===================================
   ULTRA PREMIUM CONTACT SECTION
=================================== */

.contact-section{

    width:92%;

    margin:80px auto;

    padding:70px 50px;

    border-radius:35px;

    background:
    linear-gradient(
    135deg,
    #071a2f,
    #0d2b45,
    #003566
    );

    position:relative;

    overflow:hidden;

    box-shadow:
    0 20px 50px rgba(0,0,0,0.25);
}

/* GLOW EFFECT */

.contact-section::before{

    content:"";

    position:absolute;

    width:350px;
    height:350px;

    background:
    rgba(0,200,150,0.15);

    border-radius:50%;

    top:-120px;
    right:-120px;

    filter:blur(40px);
}

.contact-section::after{

    content:"";

    position:absolute;

    width:250px;
    height:250px;

    background:
    rgba(255,255,255,0.06);

    border-radius:50%;

    bottom:-100px;
    left:-100px;

    filter:blur(35px);
}

/* HEADING */

.contact-section h2{

    text-align:center;

    font-size:52px;

    color:white;

    margin-bottom:55px;

    position:relative;

    z-index:2;

    font-weight:700;

    letter-spacing:1px;
}

/* CONTACT GRID */

.contact-box{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:30px;

    margin-bottom:50px;

    position:relative;

    z-index:2;
}

/* CONTACT CARDS */

.contact-box p{

    background:
    rgba(255,255,255,0.08);

    backdrop-filter:blur(12px);

    border:
    1px solid rgba(255,255,255,0.12);

    padding:35px 25px;

    border-radius:25px;

    text-align:center;

    color:white;

    font-size:18px;

    line-height:1.9;

    transition:0.4s;

    box-shadow:
    0 10px 25px rgba(0,0,0,0.15);
}

/* HOVER */

.contact-box p:hover{

    transform:
    translateY(-10px)
    scale(1.03);

    background:
    rgba(0,200,150,0.18);

    border:
    1px solid rgba(0,200,150,0.4);

    box-shadow:
    0 20px 40px rgba(0,0,0,0.25);
}

/* TITLES */

.contact-box strong{

    display:block;

    font-size:24px;

    margin-bottom:15px;

    color:#00d9a6;

    letter-spacing:0.5px;
}

/* MAP SECTION */

.map-container{

    position:relative;

    overflow:hidden;

    border-radius:30px;

    z-index:2;

    box-shadow:
    0 15px 40px rgba(0,0,0,0.3);
}

/* MAP */

.map-container iframe{

    width:100%;

    border-radius:30px;

    transition:0.5s;
}

/* MAP HOVER */

.map-container:hover iframe{

    transform:scale(1.04);
}

/* CLICKABLE LAYER */

.map-link{

    position:absolute;

    inset:0;

    z-index:10;
}

/* RESPONSIVE */

@media(max-width:900px){

    .contact-box{

        grid-template-columns:1fr;
    }

    .contact-section{

        padding:50px 25px;
    }

    .contact-section h2{

        font-size:38px;
    }

}
/* SMOOTH ANIMATION */

.contact-section{

    animation:fadeUp 1s ease;
}

@keyframes fadeUp{

    from{

        opacity:0;
        transform:translateY(40px);
    }

    to{

        opacity:1;
        transform:translateY(0);
    }
}

/* CARD GLOW */

.contact-box p:hover{

    box-shadow:
    0 0 25px rgba(0,200,150,0.25),
    0 20px 40px rgba(0,0,0,0.25);
}

/* MAP DARK OVERLAY */

.map-container::after{

    content:"Click To Open Location";

    position:absolute;

    bottom:20px;
    right:20px;

    background:rgba(0,0,0,0.7);

    color:white;

    padding:12px 18px;

    border-radius:40px;

    font-size:14px;

    letter-spacing:1px;

    z-index:20;

    backdrop-filter:blur(10px);
}

/* PREMIUM TITLE LINE */

.contact-section h2::after{

    content:"";

    display:block;

    width:120px;

    height:4px;

    background:#00d9a6;

    margin:18px auto 0;

    border-radius:20px;
}

/* ===================================
   ULTRA LUXURY CINEMATIC LOADER
=================================== */

#loader{

    position:fixed;

    width:100vw;
    height:100vh;

    zoom:133.33%;

    background:
    radial-gradient(circle at top,#0f172a,#020617 70%);

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:999999;

    overflow:hidden;

    transition:opacity 1s ease;
}

/* BACKGROUND GLOW */

#loader::before{

    content:"";

    position:absolute;

    width:700px;
    height:700px;

    background:
    radial-gradient(
    rgba(0,255,200,0.15),
    transparent 70%
    );

    animation:rotateGlow 10s linear infinite;
}

#loader::after{

    content:"";

    position:absolute;

    inset:0;

    background-image:
    radial-gradient(rgba(255,255,255,0.15) 1px, transparent 1px);

    background-size:50px 50px;

    opacity:0.25;

    animation:moveParticles 12s linear infinite;
}

@keyframes moveParticles{

    0%{
        transform:translateY(0);
    }

    100%{
        transform:translateY(60px);
    }
}

/* MAIN BOX */

.loader-content{

    position:relative;

    z-index:5;

    text-align:center;

    animation:fadeLuxury 1.5s ease;

     backdrop-filter:blur(18px);

    background:rgba(255,255,255,0.05);

    border:1px solid rgba(255,255,255,0.1);

    padding:35px 45px;

    border-radius:30px;

    box-shadow:
0 8px 32px rgba(0,0,0,0.3);
}

@keyframes fadeLuxury{

    0%{
        opacity:0;

        transform:
        translateY(40px)
        scale(0.9);
    }

    100%{
        opacity:1;

        transform:
        translateY(0)
        scale(1);
    }
}

/* RING */

.loader-ring{

    position:absolute;

    top:50%;
    left:50%;

    transform:
    translate(-50%,-50%);

    width:200px;
    height:200px;

    border-radius:50%;

    border:2px solid rgba(255,255,255,0.08);

    border-top:2px solid #00ffd5;

    animation:spin 2s linear infinite;
}

/* SECOND RING */

.loader-ring::before{

    content:"";

    position:absolute;

    inset:20px;

    border-radius:50%;

    border:2px solid rgba(255,255,255,0.05);

    border-bottom:2px solid #00a2ff;

    animation:spinReverse 3s linear infinite;
}

/* PREMIUM LOGO BOX */

.logo-box{

    width:280px;
    height:280px;

    display:flex;
    justify-content:center;
    align-items:center;

    margin:auto;

    animation:floatLogo 3s ease-in-out infinite;
}

/* LOGO */

.logo-box img{

    width:115%;
    height:115%;

    object-fit:contain;

    transform:scale(1.4);

    filter:
    drop-shadow(0 0 20px #00ffcc)
    drop-shadow(0 0 35px #0066ff);

    animation:logoGlow 2.5s infinite alternate;
}

/* PREMIUM GLOW */

@keyframes logoGlow{

    0%{

        transform:scale(1);

        filter:
        drop-shadow(0 0 12px rgba(0,255,213,0.4))
        drop-shadow(0 0 20px rgba(0,102,255,0.35));
    }

    100%{

        transform:scale(1.05);

        filter:
        drop-shadow(0 0 24px rgba(0,255,213,0.8))
        drop-shadow(0 0 40px rgba(0,102,255,0.7));
    }
}

/* TITLE */

.loader-content h1{

    margin-top:40px;

    color:white;

    font-size:42px;

    font-weight:700;

    letter-spacing:3px;

    text-shadow:
    0 0 20px rgba(255,255,255,0.15);

    background:
    linear-gradient(
    90deg,
    #ffffff,
    #00ffd5,
    #ffffff
    );

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

    background-size:200% auto;

    animation:textShine 4s linear infinite;
}

@keyframes textShine{

    0%{
        background-position:0% center;
    }

    100%{
        background-position:200% center;
    }
}

/* TEXT */

.loader-content p{

    margin-top:15px;

    color:#94a3b8;

    font-size:14px;

    letter-spacing:6px;

    text-transform:uppercase;
}

/* SHIMMER */

.loader-content p::after{

    content:"";

    display:block;

    width:180px;
    height:2px;

    margin:18px auto 0;

    background:
    linear-gradient(
    90deg,
    transparent,
    #00ffd5,
    transparent
    );

    animation:shine 2s linear infinite;
}

/* ANIMATIONS */

@keyframes spin{

    100%{
        transform:
        translate(-50%,-50%)
        rotate(360deg);
    }
}

@keyframes spinReverse{

    100%{
        transform:rotate(-360deg);
    }
}

@keyframes floatLogo{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-12px);
    }
}

@keyframes rotateGlow{

    100%{
        transform:rotate(360deg);
    }
}

@keyframes shine{

    0%{
        opacity:0.3;
        transform:scaleX(0.5);
    }

    50%{
        opacity:1;
        transform:scaleX(1);
    }

    100%{
        opacity:0.3;
        transform:scaleX(0.5);
    }
}

/* MOBILE */

@media(max-width:768px){

.loader-ring{

    width:190px;
    height:190px;
}

.logo-box{

    width:90px;
    height:90px;

    font-size:34px;
}

.loader-content h1{

    font-size:34px;
}

.loader-content p{

    font-size:12px;

    letter-spacing:3px;
}

}

/* PREMIUM ADMIN HEADER */

.admin-header{

    background:
    linear-gradient(
    135deg,
    #02111f,
    #062742,
    #003566
    );

    padding:45px;

    border-radius:25px;

    color:white;

    text-align:center;

    margin-bottom:40px;

    box-shadow:
    0 15px 40px rgba(0,0,0,0.2);
}

.admin-header h1{

    margin:0;

    font-size:55px;

    color:white;
}

.admin-header p{

    font-size:22px;

    margin-top:10px;

    color:#dbeafe;
}

/* STATS */

.admin-stats{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:25px;

    margin-bottom:40px;
}

/* CARD */

.admin-card{

    background:white;

    padding:35px;

    border-radius:20px;

    text-align:center;

    box-shadow:
    0 10px 25px rgba(0,0,0,0.08);
}

.admin-card h2{

    font-size:55px;

    color:#00a67e;

    margin-bottom:10px;
}

.admin-card p{

    font-size:22px;

    color:#333;
}

/* TABLE */

table{

    border-radius:20px;

    overflow:hidden;
}

th{

    background:#003566;
}

/* MOBILE */

@media(max-width:900px){

.admin-stats{

    grid-template-columns:1fr;
}


}
/* LOADING PERCENT */

.loading-percent{

    width:160px;

    margin:25px auto 0;

    text-align:center;

    font-size:42px;

    font-weight:bold;

    color:#00ffd5;

    letter-spacing:0px;

    font-variant-numeric:tabular-nums;

    font-family:monospace;

    text-shadow:
    0 0 15px rgba(0,255,213,0.5);

    animation:pulsePercent 1.5s infinite;
}

/* ANIMATION */

@keyframes pulsePercent{

    0%{
        transform:scale(1);
        opacity:0.8;
    }

    50%{
        transform:scale(1.08);
        opacity:1;
    }

    100%{
        transform:scale(1);
        opacity:0.8;
    }
}
/* ROTATING TAGLINE */

#changingText{

    margin-top:15px;

    color:#94a3b8;

    font-size:18px;

    letter-spacing:4px;

    text-transform:uppercase;

    transition:0.5s;
}
/* TOP HEADER LOGO */

.contact-item{

    display:flex;

    align-items:center;

    gap:10px;
}

.top-logo{

    width:55px;

    height:55px;

    object-fit:contain;

    animation:
    floatLogo 3s ease-in-out infinite,
    glowLogo 2s infinite alternate;

    filter:
    drop-shadow(0 0 10px #00ffd5)
    drop-shadow(0 0 20px #0066ff);
}
/* FLOATING EFFECT */

@keyframes floatLogo{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-8px);
    }

    100%{
        transform:translateY(0px);
    }
}

/* SHINING GLOW EFFECT */

@keyframes glowLogo{

    0%{

        filter:
        drop-shadow(0 0 8px #00ffd5)
        drop-shadow(0 0 15px #0066ff);

    }

    100%{

        filter:
        drop-shadow(0 0 18px #00ffd5)
        drop-shadow(0 0 35px #0066ff);

    }
}
/* SEARCH CONTAINER */

.top-search{

    position:relative;

    width:300px;
}

/* INPUT */

#serviceSearch{

    width:100%;

    padding:12px 20px;

    border-radius:40px;

    border:2px solid #00c896;

    outline:none;

    font-size:16px;

    background:white;
}

/* PREMIUM DROPDOWN */

#searchResults{

    position:absolute;

    top:115%;

    left:0;

    width:100%;

    background:rgba(255,255,255,0.98);

    backdrop-filter:blur(12px);

    border-radius:18px;

    overflow:hidden;

    box-shadow:
    0 15px 35px rgba(0,0,0,0.18);

    z-index:9999;

    display:none;

    animation:dropdownOpen 0.25s ease;
}

/* ITEMS */

.search-item{

    padding:15px 20px;

    cursor:pointer;

    font-size:16px;

    color:#111;

    transition:0.3s;

    border-bottom:1px solid #eee;
}

/* LAST ITEM */

.search-item:last-child{

    border-bottom:none;
}

/* HOVER EFFECT */

.search-item:hover{

    background:#00c896;

    color:white;

    padding-left:28px;
}

/* DROPDOWN ANIMATION */

@keyframes dropdownOpen{

    from{

        opacity:0;

        transform:
        translateY(-10px)
        scale(0.98);
    }

    to{

        opacity:1;

        transform:
        translateY(0)
        scale(1);
    }
}

/* LOGO SIZE FIX */

.nav-logo{

    width:42px !important;
    height:42px !important;

    min-width:42px;

    overflow:hidden;

    border-radius:10px;

    margin-right:12px;
}

.nav-logo img{

    width:100%;
    height:100%;

    object-fit:contain;

    display:block;
}

/* SEARCH DROPDOWN FIX */

.top-header{
    position:relative;
    z-index:99999;
}

.top-search{
    position:relative;
    z-index:99999;
}

#searchResults{
    position:absolute;
    top:115%;
    left:0;
    width:100%;
    z-index:999999;
}

/* HERO SECTION DOWN */

.video-hero,
.hero-section,
.home-services,
.stats-section,
.about-premium{
    position:relative;
    z-index:1;
}
html{

    zoom:75%;
}

@media(max-width:768px){

    html{

        zoom:100%;
    }
}
/* PREMIUM FONT AWESOME ICONS */

.top-right i{

    font-size:18px;

    transition:0.3s;
}

.top-right a:hover i{

    transform:scale(1.15) rotate(5deg);
}
.top-right a{

    box-shadow:
    0 0 15px rgba(0,255,213,0.08);
}

.top-right a:hover{

    box-shadow:
    0 0 20px rgba(0,255,213,0.35),
    0 0 35px rgba(0,102,255,0.25);
}


/* GLOW */

body::before{

    content:"";

    position:fixed;

    width:500px;
    height:500px;

    background:
    rgba(0,255,200,0.08);

    border-radius:50%;

    top:-200px;
    right:-100px;

    filter:blur(80px);

    z-index:-1;
}
/* SMOOTH WEBSITE */

html{

    scroll-behavior:smooth;
}

/* PREMIUM SELECTION */

::selection{

    background:#00ffd5;

    color:#000;
}
/* PAYMENT SECTION */

.payment-section{

    width:100%;

    padding:80px 20px;

    text-align:center;
}

/* TITLE */

.payment-section h2{

    color:white;

    font-size:42px;

    margin-bottom:15px;
}

.payment-section p{

    color:#cbd5e1;

    margin-bottom:35px;

    font-size:18px;
}

/* QR BOX */

.qr-box{

    display:inline-block;

    padding:20px;

    border-radius:30px;

    background:
    rgba(255,255,255,0.08);

    border:
    1px solid rgba(255,255,255,0.1);

    backdrop-filter:blur(15px);

    transition:0.4s;

    box-shadow:
    0 15px 40px rgba(0,0,0,0.25);
}

/* IMAGE */

.qr-box img{

    width:280px;

    border-radius:20px;
}

/* HOVER */

.qr-box:hover{

    transform:
    translateY(-10px)
    scale(1.03);

    box-shadow:
    0 0 30px rgba(0,255,213,0.2);
}

/* =========================
   PREMIUM PAY NOW BUTTON
========================= */

.pay-now-btn{

    position:relative;

    display:inline-flex;

    justify-content:center;
    align-items:center;

    padding:18px 45px;

    margin-top:30px;

    border-radius:60px;

    text-decoration:none;

    overflow:hidden;

    background:
    linear-gradient(
    135deg,
    #00ffd5,
    #0066ff
    );

    color:white;

    font-size:20px;

    font-weight:700;

    letter-spacing:1px;

    box-shadow:
    0 0 20px rgba(0,255,213,0.35),
    0 0 45px rgba(0,102,255,0.25);

    transition:0.4s;

    animation:
    payPulse 2s infinite;
}

/* GLOW */

.pay-now-btn::before{

    content:"";

    position:absolute;

    top:0;
    left:-120%;

    width:100%;
    height:100%;

    background:
    linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.4),
    transparent
    );

    transition:0.6s;
}

/* HOVER */

.pay-now-btn:hover{

    transform:
    translateY(-6px)
    scale(1.05);

    box-shadow:
    0 0 30px rgba(0,255,213,0.55),
    0 0 60px rgba(0,102,255,0.35);
}

.pay-now-btn:hover::before{

    left:120%;
}

/* ANIMATION */

@keyframes payPulse{

    0%{

        transform:scale(1);
    }

    50%{

        transform:scale(1.04);
    }

    100%{

        transform:scale(1);
    }
}
html{

    scroll-behavior:smooth;
}

/* SECTION COMMON BG */

section{

    background:transparent;
}

/* PREMIUM SERVICES */

.premium-services{

    background:
    linear-gradient(
    135deg,
    #ecfaff,
    #dff6ff
    );
}

/* REVIEW SECTION */

.review-section{

    background:
    linear-gradient(
    135deg,
    #f4fcff,
    #dff6ff
    );
}

/* CLIENT CARD */

.review-card{

    background:white;

    border:
    1px solid rgba(0,191,255,0.15);

    box-shadow:
    0 10px 30px rgba(0,191,255,0.08);
}

/* PROCESS SECTION */

.shop-process{

    background:
    linear-gradient(
    135deg,
    #dff6ff,
    #cfefff,
    #eaf9ff
    );

    color:#071a2f;
}

.shop-process h1,
.process-card h2{

    color:#071a2f;
}

.process-subtitle{

    color:#355070;
}

/* PROCESS CARDS */

.process-card{

    background:
    rgba(255,255,255,0.75);

    border:
    1px solid rgba(0,191,255,0.12);

    backdrop-filter:blur(12px);

    color:#071a2f;
}

/* WHY CHOOSE SECTION */

.gst-features{

    background:
    linear-gradient(
    135deg,
    #dff6ff,
    #cfefff,
    #ecfbff
    );
}

.gst-features h1{

    color:#071a2f;
}

.feature-box{

    background:
    rgba(255,255,255,0.75);

    border:
    1px solid rgba(0,191,255,0.12);
}

.feature-box h2{

    color:#071a2f;
}

.feature-box p{

    color:#355070;
}

/* =========================
   PREMIUM FOOTER
========================= */

.footer{

    background:#071a2f;

    padding:80px 8% 25px;

    color:white;

    margin-top:80px;
}

.footer-container{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));

    gap:40px;
}

.footer-logo{

     width:240px;
    height:auto;

    margin-bottom:15px;
}

.footer-box h2,
.footer-box h3{

    color:#00ffd5;

    margin-bottom:20px;
}

.footer-box p{

    color:#dbeafe;

    line-height:1.8;

    margin-bottom:10px;
}

.footer-box ul{

    list-style:none;

    padding:0;
}

.footer-box ul li{

    margin-bottom:12px;
}

.footer-box ul li a{

    color:#dbeafe;

    text-decoration:none;

    transition:.3s;
}

.footer-box ul li a:hover{

    color:#00ffd5;

    padding-left:5px;
}

.footer-social{

    display:flex;

    gap:15px;

    margin-top:20px;
}

.footer-social a{

    width:42px;

    height:42px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    color:white;

    text-decoration:none;

    transition:.3s;
}

.footer-social a:hover{

    background:#00ffd5;

    color:#071a2f;

    transform:translateY(-5px);
}

.footer-bottom{

    text-align:center;

    margin-top:50px;

    padding-top:25px;

    border-top:
    1px solid rgba(255,255,255,.1);
}

.footer-bottom p{

    color:#94a3b8;

    margin:8px 0;
}

/* MOBILE */

@media(max-width:768px){

    .footer{

        text-align:center;
    }

    .footer-social{

        justify-content:center;
    }
}

.luxury-insight{

max-width:1300px;
margin:120px auto;
padding:80px 50px;

background:
linear-gradient(
135deg,
#050b14,
#0c1727,
#101c30
);

border-radius:35px;

position:relative;

overflow:hidden;

border:
1px solid rgba(255,255,255,.08);

box-shadow:
0 30px 80px rgba(0,0,0,.45);

}

.luxury-insight::before{

content:"";

position:absolute;

top:-250px;
right:-200px;

width:600px;
height:600px;

background:
radial-gradient(
circle,
rgba(212,175,55,.12),
transparent 70%
);

}

.luxury-header{

text-align:center;

position:relative;

z-index:2;

}

.luxury-tag{

display:inline-block;

padding:10px 25px;

border-radius:50px;

background:
rgba(212,175,55,.08);

border:
1px solid rgba(212,175,55,.25);

color:#D4AF37;

font-size:13px;

letter-spacing:3px;

font-weight:600;

}

.luxury-header h2{

font-size:64px;

line-height:1.1;

margin:25px 0;

color:#fff;

font-family:
'Cormorant Garamond',
serif;

}

.intro-text{

max-width:900px;

margin:auto;

font-size:20px;

line-height:2;

color:#c7d0dd;

}

.luxury-readmore{

margin-top:40px;

padding:16px 40px;

border:none;

border-radius:100px;

cursor:pointer;

font-size:15px;

font-weight:600;

background:
linear-gradient(
135deg,
#D4AF37,
#F5D76E
);

color:#111;

transition:.4s;

}

.luxury-readmore:hover{

transform:translateY(-4px);

box-shadow:
0 15px 30px rgba(212,175,55,.25);

}

.luxury-hidden-content{

max-height:0;

overflow:hidden;

transition:max-height .8s ease;

}

.luxury-hidden-content.active{

max-height:2000px;

margin-top:50px;

}

.luxury-glass-card{

padding:50px;

background:
rgba(255,255,255,.04);

backdrop-filter:blur(20px);

border:
1px solid rgba(255,255,255,.08);

border-radius:25px;

}

.luxury-glass-card h3{

color:#D4AF37;

font-size:28px;

margin-bottom:15px;

}

.luxury-glass-card p{

color:#d4dce8;

line-height:1.9;

margin-bottom:25px;

}

.luxury-glass-card ul{

padding-left:20px;

}

.luxury-glass-card li{

color:#d4dce8;

margin-bottom:12px;

}

@media (max-width:950px){

.premium-dropdown{
    width:100%;
}

.premium-dropdown-menu{

    position:static;

    transform:none;

    left:0;
    top:0;

    width:100%;

    min-width:100%;

    display:none;

    padding:10px;

    margin-top:10px;

    border-radius:15px;

    box-shadow:none;

    flex-direction:column;

    gap:10px;

}

.premium-dropdown.active .premium-dropdown-menu{

    display:flex;

}

.premium-dropdown-menu li{

    width:100%;
}

.premium-dropdown-menu li a{

    width:100%;

    min-width:unset;

    justify-content:flex-start;

}

}

.founder-section{
padding:90px 20px;
background:#f8fafc;
}

.founder-container{
max-width:1200px;
margin:auto;
display:flex;
align-items:center;
gap:50px;
}

.founder-image{
flex:1;
}

.founder-image img{
width:100%;
max-width:350px;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.founder-content{
flex:2;
}

.founder-tag{
display:inline-block;
background:#0ea5e9;
color:#fff;
padding:8px 15px;
border-radius:30px;
margin-bottom:15px;
}

.founder-content h2{
font-size:40px;
margin-bottom:20px;
color:#0369a1;
}

.founder-content p{
line-height:1.9;
margin-bottom:15px;
color:#555;
}

.founder-content h3{
margin-top:20px;
color:#111;
}

@media(max-width:768px){

.founder-container{
flex-direction:column;
text-align:center;
}

.founder-image img{
max-width:250px;
}

.founder-content h2{
font-size:30px;
}

}

.service-categories{
padding:90px 20px;
background:#f8fafc;
}

.service-categories h2{
text-align:center;
font-size:42px;
color:#0f172a;
margin-bottom:15px;
}

.category-intro{
max-width:900px;
margin:0 auto 50px;
text-align:center;
line-height:1.8;
color:#64748b;
}

.category-grid{
max-width:1300px;
margin:auto;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:25px;
}

.category-card{
background:#fff;
padding:30px;
border-radius:18px;
text-decoration:none;
color:#111827;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.3s;
border:1px solid #e5e7eb;
}

.category-card:hover{
transform:translateY(-8px);
}

.category-icon{
font-size:42px;
margin-bottom:15px;
}

.category-card h3{
margin-bottom:12px;
font-size:22px;
color:#0284c7;
}

.category-card p{
line-height:1.8;
color:#4b5563;
}

@media(max-width:768px){

.service-categories h2{
font-size:32px;
}

.category-card{
padding:25px;
}

}

/* PREMIUM HOME PAGE */

.hero-section{

min-height:95vh;

display:flex;

align-items:center;

justify-content:space-between;

padding:80px;

position:relative;

overflow:hidden;

background:
linear-gradient(
135deg,
#020617,
#003566,
#00695c
);

}

.hero-section::before{

content:"";

position:absolute;

width:600px;
height:600px;

background:
radial-gradient(
circle,
rgba(0,255,213,0.25),
transparent 70%
);

top:-200px;

right:-150px;

filter:blur(40px);

}


.hero-section::after{

content:"";

position:absolute;

width:500px;
height:500px;

background:
radial-gradient(
circle,
rgba(0,102,255,0.25),
transparent 70%
);

bottom:-200px;

left:-150px;

filter:blur(50px);

}

/* LEFT SIDE */

.hero-left{

    width:55%;
}

.hero-left h1{

    font-size:72px;

    line-height:1.15;

    font-weight:800;

    letter-spacing:-2px;

    background:
    linear-gradient(
    90deg,
    #ffffff,
    #00ffd5,
    #ffffff
    );

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

    margin-bottom:25px;
}

.hero-left p{

font-size:22px;

line-height:1.8;

color:#dbeafe;

max-width:650px;

}

/* BUTTONS */

.hero-buttons{

    display:flex;

    gap:20px;
}

.consult-btn{

    background:#00c896;

    color:white;

    padding:18px 35px;

    border-radius:12px;

    text-decoration:none;

    font-size:20px;

    font-weight:bold;

    transition:0.3s;
}

.consult-btn:hover{

    background:#00a67e;

    transform:translateY(-4px);
}

.service-btn{

    border:2px solid white;

    color:white;

    padding:18px 35px;

    border-radius:12px;

    text-decoration:none;

    font-size:20px;

    font-weight:bold;

    transition:0.3s;
}

.service-btn:hover{

    background:white;

    color:#003566;
}

/* RIGHT CARD */

.hero-right{

    width:35%;
}

.hero-card{

background:
rgba(255,255,255,0.08);

backdrop-filter:blur(20px);

border:
1px solid rgba(255,255,255,0.15);

color:white;

padding:45px;

border-radius:30px;

box-shadow:

0 25px 60px rgba(0,0,0,.35);

}

.hero-card h2{

    margin-bottom:25px;

    font-size:35px;

    color:#009966;
}

.hero-card ul{

    padding-left:20px;
}

.hero-card ul li{

    font-size:22px;

    margin-bottom:18px;

    line-height:1.6;
}

/* ===================================
   PREMIUM STATS SECTION
=================================== */


.stats-section{

    width:90%;

    margin:90px auto;

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:30px;

    padding:40px;


    background:

    linear-gradient(
    135deg,
  #8bd4b2,
    #00663c,
    #009966
    );


    border-radius:40px;


    position:relative;

    overflow:hidden;


    box-shadow:

    0 30px 70px rgba(0,0,0,.25);

}



/* BACKGROUND GLOW */


.stats-section::before{

    content:"";

    position:absolute;

    width:400px;

    height:400px;


    background:

    radial-gradient(
    circle,
    rgba(0,255,213,.25),
    transparent 70%
    );


    top:-200px;

    left:-150px;


    filter:blur(40px);

}



.stats-section::after{

    content:"";

    position:absolute;

    width:350px;

    height:350px;


    background:

    radial-gradient(
    circle,
    rgba(0,102,255,.25),
    transparent 70%
    );


    bottom:-150px;

    right:-120px;


    filter:blur(40px);

}




/* CARD */


.stat-box{

    position:relative;

    z-index:2;


    padding:45px 25px;


    text-align:center;


    background:

    rgba(255,255,255,.10);


    border:

    1px solid rgba(255,255,255,.18);


    border-radius:30px;


    backdrop-filter:blur(20px);


    transition:.4s;


}



/* NUMBER */


.counter{


    font-size:65px;


    font-weight:800;


    line-height:1;


    margin-bottom:20px;


    color:white;


    background:

    linear-gradient(
    135deg,
    #ffffff,
    #00ffd5
    );


    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;


    text-shadow:

    0 0 25px rgba(0,255,213,.3);


}



/* TEXT */


.stat-box p{


    color:#dbeafe;


    font-size:20px;


    font-weight:500;


    letter-spacing:.5px;


}



/* HOVER */


.stat-box:hover{


    transform:

    translateY(-15px)
    scale(1.03);


    background:

    rgba(255,255,255,.18);


    box-shadow:


    0 25px 50px rgba(0,0,0,.35);


}




/* CARD TOP GLOW */


.stat-box::before{


    content:"";


    position:absolute;


    top:0;

    left:50%;


    transform:translateX(-50%);


    width:80px;


    height:4px;


    border-radius:20px;


    background:#00ffd5;


    transition:.4s;


}



.stat-box:hover::before{


    width:150px;


}




/* ANIMATION */

.stat-box{

    animation:

    statFade .8s ease forwards;

}



@keyframes statFade{


    from{

        opacity:0;

        transform:translateY(40px);

    }


    to{

        opacity:1;

        transform:translateY(0);

    }

}




/* RESPONSIVE */


@media(max-width:1100px){


    .stats-section{


        grid-template-columns:
        repeat(2,1fr);


    }


}




@media(max-width:650px){


    .stats-section{


        width:92%;

        grid-template-columns:1fr;

        padding:25px;

    }



    .counter{


        font-size:50px;

    }



    .stat-box p{


        font-size:17px;

    }


}

.stat-box:hover{

    transform:translateY(-6px);
}

.stat-box h1{

    font-size:55px;

    color:#009966;

    margin-bottom:10px;
}

.stat-box p{

    font-size:22px;

    color:#333;
}

/* HOME SERVICES */

.home-services{

    padding:90px 80px;

    background:#f4f7fc;
}

.home-services h1{

    text-align:center;

    font-size:55px;

    color:#003566;

    margin-bottom:50px;
}

.home-service-grid{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:25px;
}

.home-service-card{

    background:white;

    padding:40px;

    border-radius:20px;

    box-shadow:0 5px 20px rgba(0,0,0,0.1);

    transition:0.3s;

    text-align:center;
}

.home-service-card:hover{

    transform:translateY(-8px);

    background:#009966;

    color:white;
}

.home-service-card h2{

    margin-bottom:20px;

    font-size:30px;
}

.home-service-card p{

    font-size:20px;

    line-height:1.8;
}
/* RESPONSIVE */

@media(max-width:1100px){

.hero-section{

    flex-direction:column;

    text-align:center;

    padding:50px 30px;
}

.hero-left,
.hero-right{

    width:100%;
}

.hero-right{

    margin-top:40px;
}

.stats-section{

    grid-template-columns:
    repeat(2,1fr);
}

.home-service-grid{

    grid-template-columns:
    repeat(2,1fr);
}

.about-content{

    flex-direction:column;
}

}

@media(max-width:700px){

.hero-left h1{

    font-size:45px;
}

.hero-left p{

    font-size:18px;
}

.hero-buttons{

    flex-direction:column;
}

.stats-section{

    grid-template-columns:1fr;
}

.home-service-grid{

    grid-template-columns:1fr;
}

.service-grid{

    grid-template-columns:1fr;
}

.why-grid{

    grid-template-columns:1fr;
}

.overlay h1{

    font-size:45px;
}

.overlay h2{

    font-size:35px;
}

.overlay p{

    font-size:18px;
}

}

/* Consultation Page */

.consult-page{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#f4f7fc;
}

.form-box{
    width:400px;
    background:white;
    padding:40px;
    border-radius:10px;
    box-shadow:0 0 15px rgba(0,0,0,0.1);
}

.form-box h1{
    text-align:center;
    margin-bottom:30px;
    color:#0d1b2a;
}

.form-box form{
    display:flex;
    flex-direction:column;
}

.form-box input,
.form-box select{
    margin-bottom:20px;
    padding:15px;
    font-size:16px;
    border:1px solid #ccc;
    border-radius:5px;
}

.form-box button{
    padding:15px;
    background:#00b4d8;
    color:white;
    border:none;
    border-radius:5px;
    font-size:18px;
    cursor:pointer;
}

.form-box button:hover{
    background:#0096c7;
}
/* Back Button */

.back-btn{
    width:100%;
    margin-top:15px;
    padding:15px;
    background:#0d1b2a;
    color:white;
    border:none;
    border-radius:5px;
    font-size:18px;
    cursor:pointer;
}

.back-btn:hover{
    background:#1b263b;
}


/* PREMIUM ABOUT SECTION */

.about-premium{

    background:#eef5f9;

    padding-bottom:60px;
}

/* HERO BANNER */

.about-banner{

    height:420px;

    background:
    linear-gradient(
    rgba(0,30,60,0.8),
    rgba(0,30,60,0.8)
    ),

    url('https://images.unsplash.com/photo-1554224155-6726b3ff858f?q=80&w=1600');

    background-size:cover;

    background-position:center;

    display:flex;

    align-items:center;
}

.overlay{

    padding-left:80px;

    color:white;
}

.overlay h1{

    font-size:70px;

    margin:0;
}

.overlay h2{

    font-size:55px;

    color:#52d681;

    margin-top:10px;
}

.overlay p{

    font-size:28px;

    margin-top:20px;

    line-height:1.6;
}

/* ABOUT CONTENT */

.about-content{

    width:90%;

    margin:auto;

    margin-top:-70px;

    display:flex;

    gap:30px;
}

.left-box{

    flex:1;

    background:white;

    padding:40px;

    border-radius:20px;

    box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

.left-box p{

    font-size:20px;

    line-height:1.9;

    color:#333;
}

.quote-box{

    margin-top:30px;

    background:#dff5e8;

    padding:25px;

    border-radius:12px;

    font-size:22px;

    font-weight:bold;

    color:#006d5b;
}

/* LUXURY SERVICES BOX */

.right-box{

    flex:1.5;

    padding:50px;

    border-radius:30px;

    background:
    linear-gradient(
    135deg,
    #0f172a,
    #1e293b,
    #334155
    );

    border:1px solid rgba(255,255,255,0.1);

    box-shadow:
    0 20px 50px rgba(0,0,0,0.35);

    backdrop-filter:blur(15px);

}

.right-box h2{

    color:#ffd700;

    font-size:42px;

    text-align:center;

    margin-bottom:35px;

    letter-spacing:1px;

}

.service-grid{

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:20px;
}

/* PREMIUM SERVICE CARDS */

.service-card{

    background:
    linear-gradient(
    135deg,
    rgba(255,255,255,0.08),
    rgba(255,255,255,0.03)
    );

    border:1px solid rgba(255,215,0,0.2);

    color:white;

    padding:30px;

    border-radius:18px;

    text-align:center;

    font-size:20px;

    font-weight:600;

    transition:0.4s;

    cursor:pointer;

    backdrop-filter:blur(10px);

}

.service-card:hover{

    transform:
    translateY(-8px)
    scale(1.03);

    background:
    linear-gradient(
    135deg,
    #ffd700,
    #f59e0b
    );

    color:#111827;

    box-shadow:
    0 15px 35px rgba(255,215,0,0.4);

}

.right-box h2::after{

    content:"";

    display:block;

    width:120px;

    height:4px;

    margin:15px auto 0;

    border-radius:20px;

    background:
    linear-gradient(
    90deg,
    #ffd700,
    #f59e0b
    );

}

/* WHY US */

.why-us{

    width:90%;

    margin:50px auto;

    background:
    linear-gradient(
    135deg,
    #003566,
    #009966
    );

    padding:50px;

    border-radius:20px;

    color:white;
}

.why-us h2{

    font-size:45px;

    margin-bottom:30px;
}

.why-grid{

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:20px;

    font-size:22px;
}
/* =========================
   PREMIUM VIDEO HERO
========================= */

.video-hero{

    position:relative;

    width:100%;

    height:90vh;

    overflow:hidden;
}

/* VIDEO */

.hero-video{

    width:100%;

    height:100%;

    object-fit:cover;
}

/* OVERLAY */

.video-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    rgba(0,20,40,0.72),
    rgba(0,20,40,0.72)
    );

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    color:white;

    padding:20px;
}

/* TITLE */

.video-overlay h1{

    font-size:75px;

    max-width:1000px;

    line-height:1.2;

    margin-bottom:25px;

    font-weight:bold;
}

/* TEXT */

.video-overlay p{

    font-size:28px;

    margin-bottom:40px;

    color:#dbeafe;
}

/* BUTTON */

.video-btn{

    background:#00c896;

    color:white;

    text-decoration:none;

    padding:18px 40px;

    border-radius:50px;

    font-size:20px;

    font-weight:bold;

    transition:0.3s;
}

.video-btn:hover{

    background:#00a67e;

    transform:scale(1.05);
}

/* MOBILE */

@media(max-width:900px){

    .video-overlay h1{

        font-size:42px;
    }

    .video-overlay p{

        font-size:20px;
    }

}
/* ===================================
   PREMIUM REVIEW SECTION
=================================== */

.review-section{

    padding:90px 0;

    background:#eef5f9;

    overflow:hidden;
}

/* HEADING */

.review-section h1{

    text-align:center;

    font-size:55px;

    color:#003566;

    margin-bottom:60px;
}

/* SLIDER */

.review-slider{

    width:100%;

    overflow:hidden;

    position:relative;
}

/* TRACK */

.review-track{

    display:flex;

    width:calc(400px * 6);

    animation:scrollReviews 28s linear infinite;
}

/* CARD */

.review-card{

    width:380px;

    margin:0 20px;

    background:white;

    padding:40px;

    border-radius:25px;

    box-shadow:
    0 10px 30px rgba(0,0,0,0.1);

    transition:0.4s;
}

/* HOVER */

.review-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 20px 40px rgba(0,0,0,0.15);
}

/* TEXT */

.review-card p{

    font-size:20px;

    line-height:1.9;

    color:#333;

    margin-bottom:25px;
}

/* NAME */

.review-card h3{

    color:#009966;

    font-size:22px;
}

/* ANIMATION */

@keyframes scrollReviews{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(calc(-400px * 3));
    }
}

/* MOBILE */

@media(max-width:900px){

    .review-card{

        width:320px;
    }

    .review-section h1{

        font-size:40px;
    }
}
/* ===================================
   GST CALCULATOR
=================================== */

.gst-calculator{

    padding:100px 20px;

    background:
    linear-gradient(
    135deg,
    #02111f,
    #062742,
    #003566
    );

    text-align:center;

    color:white;
}

/* HEADING */

.gst-calculator h1{

    font-size:60px;

    margin-bottom:20px;
}

.gst-calculator p{

    font-size:22px;

    color:#dbeafe;

    margin-bottom:50px;
}

/* BOX */

.gst-box{

    max-width:650px;

    margin:auto;

    background:white;

    padding:50px;

    border-radius:30px;

    box-shadow:
    0 15px 40px rgba(0,0,0,0.25);
}

/* INPUTS */

.gst-box input,
.gst-box select{

    width:100%;

    padding:18px;

    margin-bottom:25px;

    border-radius:15px;

    border:1px solid #ccc;

    font-size:18px;

    outline:none;
}

/* BUTTON */

.gst-box button{

    width:100%;

    padding:18px;

    border:none;

    border-radius:15px;

    background:#00c896;

    color:white;

    font-size:22px;

    font-weight:bold;

    cursor:pointer;

    transition:0.3s;
}

.gst-box button:hover{

    background:#00a67e;

    transform:translateY(-4px);
}

/* RESULT */

.gst-result{

    margin-top:35px;
}

.gst-result h2{

    color:#003566;

    margin-bottom:15px;

    font-size:30px;
}
/* ===================================
   APPOINTMENT BOOKING
=================================== */

.booking-section{

    padding:100px 20px;

    background:#eef5f9;

    text-align:center;
}

/* HEADING */

.booking-section h1{

    font-size:58px;

    color:#003566;

    margin-bottom:20px;
}

.booking-section p{

    font-size:22px;

    color:#555;

    margin-bottom:50px;
}

/* BOX */

.booking-box{

    max-width:700px;

    margin:auto;

    background:white;

    padding:50px;

    border-radius:30px;

    box-shadow:
    0 15px 40px rgba(0,0,0,0.1);
}

/* FORM */

#bookingForm{

    display:flex;

    flex-direction:column;
}

/* INPUTS */

#bookingForm input,
#bookingForm select{

    padding:18px;

    margin-bottom:25px;

    border-radius:15px;

    border:1px solid #ccc;

    font-size:18px;

    outline:none;
}

/* BUTTON */

#bookingForm button{

    padding:18px;

    border:none;

    border-radius:15px;

    background:#009966;

    color:white;

    font-size:22px;

    font-weight:bold;

    cursor:pointer;

    transition:0.3s;
}

#bookingForm button:hover{

    background:#007a52;

    transform:translateY(-4px);
}
/* FIX CURSOR */

html,
body,
a,
button,
input,
textarea,
select{

    cursor:auto !important;
}

/* CUSTOM GLOW CURSOR */

body::after{

    content:"";

    width:18px;
    height:18px;

    border-radius:50%;

    position:fixed;

    top:0;
    left:0;

    background:rgba(0,255,200,0.35);

    pointer-events:none;

    z-index:999999;

    transform:
    translate(-50%,-50%);

    backdrop-filter:blur(4px);

    box-shadow:
    0 0 15px #00ffd5,
    0 0 30px #0066ff;

    transition:
    transform 0.05s linear;
}
#loader.hidden{

    opacity:0;

    visibility:hidden;

    pointer-events:none;
}

/* FAQ SECTION */

.faq-section{
max-width:1200px;
margin:80px auto;
padding:0 20px;
}

.faq-section h2{
text-align:center;
font-size:42px;
margin-bottom:40px;
color:#0ea5e9;
}

.faq-box{
background:#fff;
margin-bottom:15px;
padding:20px;
border-radius:15px;
box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.faq-box summary{
font-size:20px;
font-weight:600;
cursor:pointer;
color:#0369a1;
list-style:none;
}

.faq-box summary::-webkit-details-marker{
display:none;
}

.faq-box p{
margin-top:15px;
line-height:1.8;
color:#555;
}

@media(max-width:768px){

.faq-section h2{
font-size:30px;
}

.faq-box summary{
font-size:17px;
}

}

/* WHY FINANCIAL COMPLIANCE */

.compliance-section{
padding:90px 20px;
background:#f8fafc;
}

.compliance-container{
max-width:1200px;
margin:auto;
}

.compliance-container h2{
text-align:center;
font-size:42px;
color:#0ea5e9;
margin-bottom:25px;
}

.compliance-intro{
text-align:center;
max-width:900px;
margin:0 auto 50px;
line-height:1.9;
font-size:17px;
color:#555;
}

.compliance-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:25px;
}

.compliance-card{
background:#fff;
padding:30px;
border-radius:16px;
box-shadow:0 5px 20px rgba(0,0,0,.08);
transition:.3s;
}

.compliance-card:hover{
transform:translateY(-5px);
}

.compliance-card h3{
color:#0369a1;
margin-bottom:15px;
font-size:22px;
}

.compliance-card p{
line-height:1.8;
color:#555;
}

.compliance-bottom{
margin-top:50px;
text-align:center;
font-size:17px;
line-height:1.9;
color:#444;
max-width:1000px;
margin-left:auto;
margin-right:auto;
}

.latest-articles-home{
padding:90px 20px;
max-width:1200px;
margin:auto;
}

.latest-articles-home h2{
text-align:center;
font-size:42px;
color:#0ea5e9;
margin-bottom:15px;
}

.articles-intro{
text-align:center;
max-width:850px;
margin:0 auto 40px;
line-height:1.8;
color:#555;
}

.articles-home-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:25px;
}

.article-home-card{
background:#fff;
padding:25px;
border-radius:15px;
box-shadow:0 5px 20px rgba(0,0,0,.08);
transition:.3s;
}

.article-home-card:hover{
transform:translateY(-5px);
}

.article-home-card h3{
color:#0369a1;
margin-bottom:12px;
}

.article-home-card p{
line-height:1.8;
color:#555;
margin-bottom:15px;
}

.article-home-card a{
text-decoration:none;
font-weight:600;
}

.view-all-articles{
text-align:center;
margin-top:40px;
}

.view-all-articles a{
display:inline-block;
padding:12px 30px;
background:#0ea5e9;
color:#fff;
text-decoration:none;
border-radius:8px;
font-weight:600;
}

/* ===================================
   PREMIUM TRUST BAR SECTION
=================================== */
.trust-bar{
    width:90%;
    margin:70px auto;
    display:grid;
    grid-template-columns:
    repeat(4,1fr);
    gap:25px;
    padding:30px;
    background:
    linear-gradient(
    135deg,
    rgba(255,255,255,0.75),
    rgba(255,255,255,0.45)
    );
    border-radius:35px;
    backdrop-filter:blur(20px);
    border:
    1px solid rgba(0,200,150,0.15);
    box-shadow:
    0 20px 50px rgba(0,0,0,0.08);
    position:relative;
    overflow:hidden;
}

/* BACKGROUND GLOW */
.trust-bar::before{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    background:
    radial-gradient(
    circle,
    rgba(0,200,150,0.25),
    transparent 70%
    );
    top:-120px;
    left:-120px;
    filter:blur(30px);
}
.trust-bar::after{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    background:
    radial-gradient(
    circle,
    rgba(0,102,255,0.18),
    transparent 70%
    );
    bottom:-150px;
    right:-100px;
    filter:blur(35px);
}

/* ITEM */
.trust-item{
    position:relative;
    z-index:2;
    padding:35px 25px;
    text-align:center;
    background:
    rgba(255,255,255,0.65);
    border-radius:25px;
    border:
    1px solid rgba(255,255,255,0.8);
    backdrop-filter:blur(15px);
    transition:.4s;
}
/* TITLE */
.trust-item strong{
    display:block;
    font-size:26px;
    color:#071a2f;
    margin-bottom:12px;
    font-weight:700;
}
/* DESCRIPTION */
.trust-item span{
    display:block;
    color:#64748b;
    font-size:16px;
    line-height:1.6;
}

/* HOVER EFFECT */
.trust-item:hover{
    transform:
    translateY(-12px)
    scale(1.03);
    background:
    linear-gradient(
    135deg,
    #00c896,
    #0066ff
    );
    box-shadow:
    0 20px 40px rgba(0,102,255,.25);
}

.trust-item:hover strong,
.trust-item:hover span{
    color:white;
}

/* TOP LINE EFFECT */
.trust-item::before{
    content:"";
    position:absolute;
    top:0;
    left:50%;
    transform:translateX(-50%);
    width:60px;
    height:4px;
    border-radius:20px;
    background:#00c896;
    transition:.4s;
}

.trust-item:hover::before{
    width:120px;
    background:white;
}



/* RESPONSIVE */
@media(max-width:1000px){
    .trust-bar{
        grid-template-columns:
        repeat(2,1fr);
    }
}

@media(max-width:600px){
    .trust-bar{
        width:92%;
        grid-template-columns:1fr;
        padding:20px;
    }
    .trust-item{
        padding:30px 20px;
    }
    .trust-item strong{
        font-size:22px;
    }
}

/* =====================================
   PREMIUM WHY CHOOSE US SECTION
===================================== */


.why-expertise-section{


    padding:110px 70px;


    background:


    linear-gradient(
    135deg,
    #001f3f,
    #003566,
    #071a2f
    );


    position:relative;


    overflow:hidden;


    color:white;


}



/* BACKGROUND GLOW */


.why-expertise-section::before{


    content:"";


    position:absolute;


    width:600px;

    height:600px;


    background:


    radial-gradient(
    circle,
    rgba(0,255,200,.18),
    transparent 70%
    );


    right:-250px;

    top:-250px;


    filter:blur(50px);


}




/* CONTAINER */


.why-container{


    max-width:1300px;


    margin:auto;


    position:relative;


    z-index:2;


}




/* HEADING */


.why-heading{


    text-align:center;


    max-width:900px;


    margin:auto;


}



.why-heading span{


    display:inline-block;


    padding:10px 25px;


    border-radius:50px;


    background:

    rgba(0,255,200,.12);


    border:

    1px solid rgba(0,255,200,.3);


    color:#00ffd5;


    letter-spacing:3px;


    font-size:13px;


    font-weight:600;


}




.why-heading h2{


    font-size:55px;


    line-height:1.2;


    margin:25px 0;


    color:white;


}




.why-heading p{


    font-size:20px;


    line-height:1.8;


    color:#dbeafe;


}





/* GRID */


.expertise-grid{


    margin-top:70px;


    display:grid;


    grid-template-columns:


    repeat(4,1fr);


    gap:30px;


}




/* CARD */


.expertise-card{


    padding:40px 30px;


    border-radius:30px;


    background:


    rgba(255,255,255,.08);


    backdrop-filter:blur(18px);


    border:


    1px solid rgba(255,255,255,.12);


    transition:.4s;


    position:relative;


    overflow:hidden;


}





/* CARD GLOW */


.expertise-card::before{


    content:"";


    position:absolute;


    width:120px;

    height:120px;


    background:


    rgba(0,255,200,.18);


    border-radius:50%;


    right:-60px;


    top:-60px;


    filter:blur(20px);


}





/* HOVER */


.expertise-card:hover{


    transform:


    translateY(-12px);


    background:


    rgba(255,255,255,.15);


    box-shadow:


    0 25px 60px rgba(0,0,0,.35);


}





/* ICON */


.expertise-icon{


    width:75px;


    height:75px;


    display:flex;


    justify-content:center;


    align-items:center;


    border-radius:50%;


    font-size:35px;


    background:


    linear-gradient(
    135deg,
    #00c896,
    #0066ff
    );


    margin-bottom:25px;


}




/* TITLE */


.expertise-card h3{


    font-size:24px;


    margin-bottom:15px;


    color:#00ffd5;


}



/* TEXT */


.expertise-card p{


    color:#dbeafe;


    line-height:1.8;


    font-size:16px;


}




/* RESPONSIVE */


@media(max-width:1100px){


.expertise-grid{


grid-template-columns:
repeat(2,1fr);


}


.why-heading h2{


font-size:42px;


}



}




@media(max-width:650px){


.why-expertise-section{


padding:80px 20px;


}



.expertise-grid{


grid-template-columns:1fr;


}



.why-heading h2{


font-size:32px;


}



}

/* =====================================
   PREMIUM ACCOUNTING SERVICES SECTION
===================================== */


.premium-services-section{


    padding:120px 70px;


    background:


    linear-gradient(
    135deg,
    #f8fcff,
    #e6f7ff,
    #ffffff
    );


    position:relative;


}





.services-container{


    max-width:1300px;


    margin:auto;


}





/* HEADING */


.services-heading{


    text-align:center;


    max-width:900px;


    margin:auto;


}



.services-heading span{


    display:inline-block;


    padding:10px 25px;


    border-radius:50px;


    background:


    rgba(0,200,150,.12);


    color:#009966;


    font-size:13px;


    font-weight:700;


    letter-spacing:3px;


}




.services-heading h2{


    font-size:55px;


    color:#003566;


    margin:25px 0;


    line-height:1.2;


}




.services-heading p{


    font-size:20px;


    color:#64748b;


    line-height:1.8;


}






/* GRID */


.services-grid{


    margin-top:70px;


    display:grid;


    grid-template-columns:


    repeat(3,1fr);


    gap:30px;


}






/* CARD */


.service-premium-card{


    background:white;


    padding:40px 35px;


    border-radius:30px;


    border:


    1px solid rgba(0,200,150,.15);


    box-shadow:


    0 15px 40px rgba(0,0,0,.08);


    transition:.4s;


    position:relative;


    overflow:hidden;


}





/* CARD GLOW */


.service-premium-card::before{


    content:"";


    position:absolute;


    width:180px;


    height:180px;


    background:


    radial-gradient(
    circle,
    rgba(0,200,150,.2),
    transparent 70%
    );


    right:-80px;


    top:-80px;


}






.service-premium-card:hover{


    transform:


    translateY(-12px);


    box-shadow:


    0 30px 70px rgba(0,102,255,.18);


}






/* ICON */


.service-icon{


    width:80px;


    height:80px;


    display:flex;


    justify-content:center;


    align-items:center;


    border-radius:50%;


    font-size:38px;


    background:


    linear-gradient(
    135deg,
    #00c896,
    #0066ff
    );


    color:white;


    margin-bottom:25px;


}







.service-premium-card h3{


    font-size:26px;


    color:#071a2f;


    margin-bottom:15px;


}





.service-premium-card p{


    color:#64748b;


    line-height:1.8;


    font-size:16px;


    margin-bottom:25px;


}







.service-premium-card a{


    text-decoration:none;


    color:#009966;


    font-weight:700;


    font-size:16px;


    transition:.3s;


}





.service-premium-card a:hover{


    color:#0066ff;


    padding-left:8px;


}






/* RESPONSIVE */


@media(max-width:1100px){


.services-grid{


grid-template-columns:
repeat(2,1fr);


}


}





@media(max-width:650px){


.premium-services-section{


padding:80px 20px;


}




.services-grid{


grid-template-columns:1fr;


}




.services-heading h2{


font-size:34px;


}



}

/* =====================================
   PREMIUM PROCESS SECTION
===================================== */


.process-section{


    padding:120px 70px;


    background:


    linear-gradient(
    135deg,
    #001f3f,
    #003566,
    #071a2f
    );


    position:relative;


    overflow:hidden;


    color:white;


}




.process-section::before{


    content:"";


    position:absolute;


    width:600px;


    height:600px;


    background:


    radial-gradient(
    circle,
    rgba(0,255,200,.18),
    transparent 70%
    );


    left:-250px;


    bottom:-250px;


    filter:blur(50px);


}






.process-container{


    max-width:1300px;


    margin:auto;


    position:relative;


    z-index:2;


}






/* HEADING */


.process-heading{


    text-align:center;


    max-width:900px;


    margin:auto;


}




.process-heading span{


    display:inline-block;


    padding:10px 25px;


    border-radius:50px;


    background:


    rgba(0,255,200,.12);


    border:


    1px solid rgba(0,255,200,.3);


    color:#00ffd5;


    font-size:13px;


    letter-spacing:3px;


    font-weight:700;


}




.process-heading h2{


    font-size:55px;


    line-height:1.2;


    margin:25px 0;


}





.process-heading p{


    font-size:20px;


    color:#dbeafe;


    line-height:1.8;


}






/* TIMELINE */


.process-timeline{


    margin-top:80px;


    display:grid;


    grid-template-columns:


    repeat(5,1fr);


    gap:25px;


}






/* CARD */


.process-card{


    background:


    rgba(255,255,255,.08);


    backdrop-filter:blur(18px);


    border:


    1px solid rgba(255,255,255,.12);


    border-radius:30px;


    padding:40px 25px;


    text-align:center;


    position:relative;


    transition:.4s;


}







.process-card:hover{


    transform:


    translateY(-12px);


    background:


    rgba(255,255,255,.15);


    box-shadow:


    0 30px 70px rgba(0,0,0,.35);


}






/* NUMBER */


.process-number{


    position:absolute;


    top:15px;


    right:20px;


    font-size:50px;


    font-weight:900;


    color:


    rgba(255,255,255,.08);


}







/* ICON */


.process-icon{


    width:75px;


    height:75px;


    margin:20px auto;


    display:flex;


    justify-content:center;


    align-items:center;


    border-radius:50%;


    font-size:35px;


    background:


    linear-gradient(
    135deg,
    #00c896,
    #0066ff
    );


}







.process-card h3{


    color:#00ffd5;


    font-size:23px;


    margin-bottom:15px;


}






.process-card p{


    color:#dbeafe;


    line-height:1.7;


    font-size:15px;


}







/* RESPONSIVE */


@media(max-width:1200px){


.process-timeline{


grid-template-columns:
repeat(3,1fr);


}


}





@media(max-width:800px){


.process-section{


padding:80px 20px;


}




.process-timeline{


grid-template-columns:1fr;


}




.process-heading h2{


font-size:35px;


}



}

/* =====================================
   PREMIUM TESTIMONIAL SECTION
===================================== */


.testimonial-section{


    padding:120px 70px;


    background:


    linear-gradient(
    135deg,
    #f8fcff,
    #e8f7ff,
    #ffffff
    );


    position:relative;


    overflow:hidden;


}




.testimonial-section::before{


    content:"";


    position:absolute;


    width:500px;


    height:500px;


    background:


    radial-gradient(
    circle,
    rgba(0,200,150,.18),
    transparent 70%
    );


    top:-200px;


    right:-150px;


    filter:blur(50px);


}






.testimonial-container{


    max-width:1300px;


    margin:auto;


    position:relative;


    z-index:2;


}





/* HEADING */


.testimonial-heading{


    text-align:center;


    max-width:900px;


    margin:auto;


}




.testimonial-heading span{


    display:inline-block;


    padding:10px 25px;


    border-radius:50px;


    background:


    rgba(0,200,150,.12);


    color:#009966;


    font-size:13px;


    font-weight:700;


    letter-spacing:3px;


}





.testimonial-heading h2{


    font-size:55px;


    color:#003566;


    margin:25px 0;


    line-height:1.2;


}




.testimonial-heading p{


    font-size:20px;


    color:#64748b;


    line-height:1.8;


}

/* GRID */
.testimonial-grid{
    margin-top:80px;
    display:grid;
    grid-template-columns:
    repeat(3,1fr);
    gap:35px;
    align-items:center;
}
/* CARD */
.testimonial-card{
    background:
    rgba(255,255,255,.75);
    backdrop-filter:blur(20px);
    padding:45px 35px;
    border-radius:35px;
    border:
    1px solid rgba(0,200,150,.15);
    box-shadow:
    0 20px 50px rgba(0,0,0,.08);
    transition:.4s;
    position:relative;
}
.testimonial-card:hover{
    transform:
    translateY(-12px);
    box-shadow:
    0 30px 70px rgba(0,102,255,.18);
}

/* FEATURED */
.featured-review{
    transform:
    scale(1.08);
    background:
    linear-gradient(
    135deg,
    #001f3f,
    #003566
    );
    color:white;
    box-shadow:
    0 30px 80px rgba(0,0,0,.3);
}
.featured-review:hover{
    transform:
    scale(1.12);
}
/* BADGE */
.review-badge{
    position:absolute;
    top:-15px;
    left:50%;
    transform:translateX(-50%);
    background:
    linear-gradient(
    135deg,
    #00c896,
    #0066ff
    );
    color:white;
    padding:8px 20px;
    border-radius:30px;
    font-size:12px;
    font-weight:700;
}
/* STARS */
.stars{
    color:#fbbf24;
    font-size:24px;
    margin-bottom:25px;
}

/* TEXT */
.testimonial-card p{
    font-size:17px;
    line-height:1.9;
    color:#475569;
    margin-bottom:30px;
}
.featured-review p{
    color:#dbeafe;
}
/* CLIENT */
.client-info h3{
    font-size:22px;
    color:#003566;
    margin-bottom:5px;
}
.featured-review .client-info h3{
    color:#00ffd5;
}
.client-info span{
    color:#64748b;

}
/* RESPONSIVE */
@media(max-width:1100px){
.testimonial-grid{
grid-template-columns:
1fr;
}
.featured-review{

transform:scale(1);
}
.featured-review:hover{
transform:translateY(-12px);
}
}
@media(max-width:650px){
.testimonial-section{
padding:80px 20px;
}
.testimonial-heading h2{
font-size:34px;
}
}

/* =====================================
   PREMIUM CONSULTATION CTA SECTION
===================================== */


.consultation-section{


    width:92%;

    margin:100px auto;

    padding:80px 60px;


    position:relative;

    overflow:hidden;


    border-radius:40px;


    background:

    linear-gradient(
    135deg,
    #02111f,
    #062742,
    #003566
    );


    color:white;


    box-shadow:

    0 30px 80px rgba(0,0,0,.35);


}




/* GLOW */


.consultation-glow{


    position:absolute;


    width:400px;

    height:400px;


    border-radius:50%;


    filter:blur(90px);


}




.glow-left{


    background:

    rgba(0,255,213,.18);


    left:-150px;

    top:-150px;

}



.glow-right{


    background:

    rgba(0,102,255,.20);


    right:-150px;

    bottom:-150px;

}





/* CONTAINER */


.consultation-container{


    display:grid;


    grid-template-columns:

    1.5fr 1fr;


    gap:60px;


    align-items:center;


    position:relative;


    z-index:2;


}




/* BADGE */


.consultation-badge{


    display:inline-block;


    padding:10px 25px;


    border-radius:50px;


    background:

    rgba(0,255,213,.12);


    border:

    1px solid rgba(0,255,213,.3);


    color:#00ffd5;


    font-size:14px;


    letter-spacing:2px;


    font-weight:600;


}





/* HEADING */


.consultation-content h2{


    font-size:52px;


    line-height:1.2;


    margin:25px 0;


}





.consultation-content p{


    font-size:19px;


    line-height:1.9;


    color:#dbeafe;


    max-width:650px;


}




/* POINTS */


.consultation-points{


    margin-top:35px;


    display:grid;


    gap:15px;


}




.consultation-points div{


    padding:15px 20px;


    background:

    rgba(255,255,255,.08);


    border-radius:15px;


    border:

    1px solid rgba(255,255,255,.1);


    backdrop-filter:blur(10px);


    font-size:17px;


}





/* RIGHT BOX */


.consultation-box{


    background:

    rgba(255,255,255,.08);


    backdrop-filter:blur(20px);


    padding:45px 35px;


    border-radius:30px;


    border:

    1px solid rgba(255,255,255,.15);


    text-align:center;


}




.consultation-box h3{


    font-size:32px;


    margin-bottom:15px;


    color:#00ffd5;


}




.consultation-box p{


    color:#dbeafe;


    line-height:1.7;


}





/* BUTTON */


.consultation-btn{


    display:inline-flex;


    align-items:center;

    justify-content:center;


    margin-top:30px;


    padding:18px 45px;


    border-radius:50px;


    text-decoration:none;


    background:

    linear-gradient(
    135deg,
    #00ffd5,
    #0066ff
    );


    color:white;


    font-size:18px;


    font-weight:700;


    transition:.4s;


    box-shadow:

    0 15px 35px rgba(0,255,213,.25);


}





.consultation-btn:hover{


    transform:

    translateY(-6px);


    box-shadow:

    0 25px 50px rgba(0,255,213,.45);


}





/* CONTACT */


.consultation-contact{


    margin-top:30px;


    display:flex;


    justify-content:center;


    gap:20px;


    flex-wrap:wrap;


}



.consultation-contact span{


    padding:10px 18px;


    border-radius:50px;


    background:

    rgba(255,255,255,.08);


    font-size:14px;


}





/* MOBILE */


@media(max-width:900px){


.consultation-section{


    padding:50px 25px;


}



.consultation-container{


    grid-template-columns:1fr;


    gap:40px;


}



.consultation-content h2{


    font-size:35px;


}



.consultation-content{


    text-align:center;


}



.consultation-points div{


    text-align:left;


}


}

/* =====================================
   PREMIUM FOUNDER SECTION
===================================== */


.founder-section{

padding:120px 20px;

background:
linear-gradient(
135deg,
#eefaff,
#ffffff,
#dff6ff
);

overflow:hidden;

}



.founder-container{

max-width:1300px;

margin:auto;

display:grid;

grid-template-columns:
0.9fr 1.1fr;

gap:70px;

align-items:center;

}





/* IMAGE */


.founder-image-box{

position:relative;

}



.founder-image-box img{


width:100%;

max-width:500px;

border-radius:35px;


position:relative;

z-index:2;


box-shadow:

0 30px 70px rgba(0,0,0,.25);


}





.founder-glow{


position:absolute;

width:350px;

height:350px;


background:

radial-gradient(
circle,
rgba(0,200,150,.35),
transparent 70%
);


top:-80px;

left:-80px;

filter:blur(30px);


}




/* EXPERIENCE */


.experience-card{


position:absolute;


bottom:-30px;

right:30px;


background:

linear-gradient(
135deg,
#003566,
#009966
);


padding:25px 35px;


border-radius:25px;


color:white;


z-index:3;


box-shadow:

0 20px 40px rgba(0,0,0,.25);


}



.experience-card strong{


display:block;

font-size:45px;

color:#00ffd5;


}


.experience-card span{

font-size:15px;

}



/* CONTENT */


.founder-badge{


display:inline-block;


padding:10px 25px;


border-radius:50px;


background:

rgba(0,150,255,.12);


color:#0066ff;


font-weight:600;


margin-bottom:20px;


}




.founder-content h1{


font-size:55px;


color:#071a2f;


margin-bottom:10px;


}



.founder-content h2{


font-size:38px;


color:#009966;


margin-bottom:15px;


}



.founder-role{


font-size:18px;


font-weight:600;


color:#0369a1;


line-height:1.8;


}





.founder-content p{


font-size:18px;


line-height:1.9;


color:#475569;


margin-bottom:20px;


}





/* VALUES */


.founder-values{


display:grid;


grid-template-columns:

repeat(3,1fr);


gap:20px;


margin-top:40px;


}



.founder-values div{


background:white;


padding:25px;


border-radius:20px;


border:

1px solid rgba(0,150,255,.15);


box-shadow:

0 10px 30px rgba(0,0,0,.08);


transition:.3s;


}



.founder-values div:hover{


transform:translateY(-8px);


}



.founder-values h3{


color:#009966;


font-size:20px;


margin-bottom:10px;


}



.founder-values p{


font-size:15px;

margin:0;


}




/* MOBILE */


@media(max-width:900px){


.founder-container{


grid-template-columns:1fr;

text-align:center;


}



.founder-image-box img{


margin:auto;


}



.founder-values{


grid-template-columns:1fr;


}



.founder-content h1{


font-size:38px;


}


}