/* PREMIUM HOME PAGE */

.hero-section{

    min-height:95vh;

    background:
    linear-gradient(
    135deg,
    #001f3f,
    #003566,
    #009966
    );

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:80px;

    color:white;
}

/* LEFT SIDE */

.hero-left{

    width:55%;
}

.hero-left h1{

    font-size:75px;

    line-height:1.2;

    margin-bottom:30px;

    font-weight:bold;
}

.hero-left p{

    font-size:24px;

    line-height:1.8;

    color:#dbeafe;

    margin-bottom:40px;
}

/* 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:white;

    color:#0d1b2a;

    padding:45px;

    border-radius:25px;

    box-shadow:0 10px 30px rgba(0,0,0,0.2);
}

.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;
}

/* STATS SECTION */

.stats-section{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:25px;

    padding:70px 80px;

    background:#eef5f9;
}

.stat-box{

    background:white;

    padding:40px;

    text-align:center;

    border-radius:20px;

    box-shadow:0 5px 20px rgba(0,0,0,0.1);

    transition:0.3s;
}

.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;
}

/* RIGHT BOX */

.right-box{

    flex:1.5;

    background:white;

    padding:40px;

    border-radius:20px;

    box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

.right-box h2{

    color:#0d1b2a;

    font-size:38px;

    margin-bottom:30px;
}

.service-grid{

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:20px;
}

.service-card{

    background:#f4f7fc;

    padding:30px;

    border-radius:15px;

    text-align:center;

    font-size:20px;

    font-weight:bold;

    transition:0.3s;

    cursor:pointer;
}

.service-card:hover{

    background:#00b4d8;

    color:white;

    transform:translateY(-5px);
}

/* 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;
}

