
/* 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);
    }
}

/* 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%;

}

}

/* 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);
}


/* =========================================================
   PART 1 — HERO, IMAGE & CONTENT
========================================================= */

.hero-slider {
    position: relative;
    width: 100%;
    height: 730px;
    min-height: 650px;
    overflow: hidden;
    background: #080808;
}

.hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    z-index: 1;

    transition:
        opacity 0.7s ease,
        visibility 0.7s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 2;
}


/* ================= IMAGE ================= */

.hero-image {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    overflow: hidden;

    background: #111;
    z-index: 1;
}

.hero-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center center;
}


/* ================= IMAGE OVERLAY ================= */

.hero-image::after {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 2;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.70) 0%,
            rgba(0, 0, 0, 0.52) 32%,
            rgba(0, 0, 0, 0.28) 58%,
            rgba(0, 0, 0, 0.08) 100%
        );
}

.hero-overlay {
    position: absolute;
    inset: 0;

    z-index: 3;
    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.08),
            rgba(0, 0, 0, 0.18)
        );
}


/* ================= CONTENT ================= */

.hero-content {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;

    z-index: 10;
}

.hero-content-inner {
    width: min(1180px, calc(100% - 180px));

    margin: 0 auto;

    color: #fff;
}


/* ================= TAG ================= */

.hero-tag {
    display: inline-flex;
    align-items: center;

    margin-bottom: 20px;

    color: #d4af37;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.hero-tag::before {
    content: "";

    width: 34px;
    height: 2px;

    margin-right: 12px;

    background: #d4af37;
}


/* ================= HEADING ================= */

.hero-content h1,
.hero-content h2 {
    max-width: 820px;

    margin: 0 0 22px;

    color: #fff;

    font-size: clamp(44px, 5.2vw, 76px);

    font-weight: 700;

    line-height: 1.06;

    letter-spacing: -1.8px;

    text-shadow:
        0 3px 20px rgba(0, 0, 0, 0.55);
}

.hero-content h1 span,
.hero-content h2 span {
    display: block;
    color: #d4af37;
}


/* ================= DESCRIPTION ================= */

.hero-content p {
    max-width: 700px;

    margin: 0 0 32px;

    color: rgba(255, 255, 255, 0.92);

    font-size: 17px;
    line-height: 1.7;
}


/* ================= BUTTONS ================= */

.hero-buttons {
    display: flex;
    align-items: center;

    gap: 14px;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 54px;

    padding: 0 28px;

    border-radius: 5px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    transition: all 0.25s ease;
}

.hero-btn-primary {
    color: #111;
    background: #d4af37;

    border: 1px solid #d4af37;
}

.hero-btn-primary:hover {
    color: #111;
    background: #f1cf58;
    border-color: #f1cf58;

    transform: translateY(-2px);
}

.hero-btn-secondary {
    color: #fff;

    background: rgba(255, 255, 255, 0.06);

    border: 1px solid rgba(255, 255, 255, 0.60);

    backdrop-filter: blur(5px);
}

.hero-btn-secondary:hover {
    color: #111;

    background: #fff;
    border-color: #fff;

    transform: translateY(-2px);
}


/* ================= CONTENT ANIMATION ================= */

.hero-slide.active .hero-content-inner {
    animation: heroContentIn 0.8s ease both;
}

@keyframes heroContentIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================================
   PART 2 — CONTROLS
========================================================= */


/* ================= ARROWS ================= */

.slider-arrow {
    position: absolute;

    top: 50%;

    z-index: 30;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    transform: translateY(-50%);

    border: 1px solid rgba(255, 255, 255, 0.18);

    border-radius: 50%;

    color: #fff;

    background: rgba(10, 10, 10, 0.50);

    backdrop-filter: blur(8px);

    cursor: pointer;

    transition: all 0.25s ease;
}

.slider-arrow span {
    font-size: 34px;
    line-height: 1;
    font-weight: 300;
}

.slider-arrow:hover {
    color: #111;

    background: #d4af37;

    border-color: #d4af37;

    transform:
        translateY(-50%)
        scale(1.05);
}

.slider-prev {
    left: 30px;
}

.slider-next {
    right: 30px;
}


/* ================= DOTS ================= */

.slider-dots {
    position: absolute;

    left: 50%;
    bottom: 32px;

    z-index: 30;

    display: flex;
    align-items: center;

    gap: 9px;

    transform: translateX(-50%);
}

.slider-dots .dot {
    width: 9px;
    height: 9px;

    padding: 0;

    border: 0;

    border-radius: 20px;

    background: rgba(255, 255, 255, 0.40);

    cursor: pointer;

    transition: all 0.3s ease;
}

.slider-dots .dot.active {
    width: 24px;

    background: #d4af37;

    box-shadow:
        0 0 12px rgba(212, 175, 55, 0.65);
}


/* ================= PROGRESS ================= */

.slider-progress {
    position: absolute;

    left: 0;
    bottom: 0;

    z-index: 40;

    width: 100%;
    height: 3px;

    background: rgba(255, 255, 255, 0.10);
}

.progress-fill {
    display: block;

    width: 0;
    height: 100%;

    background: #d4af37;
}

.progress-fill.animate {
    animation:
        sliderProgress 5s linear forwards;
}

@keyframes sliderProgress {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}


/* ================= SCROLL INDICATOR ================= */

.scroll-indicator {
    position: absolute;

    right: 55px;
    bottom: 28px;

    z-index: 30;

    width: 27px;
    height: 50px;

    border:
        1px solid
        rgba(255, 255, 255, 0.55);

    border-radius: 20px;
}

.scroll-indicator span {
    position: absolute;

    top: 9px;
    left: 50%;

    width: 4px;
    height: 9px;

    transform: translateX(-50%);

    border-radius: 10px;

    background: #d4af37;

    animation: scrollMove 1.7s infinite;
}

@keyframes scrollMove {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    70% {
        transform: translate(-50%, 17px);
        opacity: 0;
    }

    100% {
        transform: translate(-50%, 0);
        opacity: 0;
    }
}

/* =========================================================
   PART 3 — RESPONSIVE
========================================================= */


/* ================= LARGE DESKTOP ================= */

@media (min-width: 1400px) {

    .hero-slider {
        height: 760px;
    }

    .hero-content-inner {
        width: min(1240px, calc(100% - 200px));
    }

    .hero-content h1,
    .hero-content h2 {
        font-size: 78px;
    }

}


/* ================= TABLET ================= */

@media (max-width: 1199px) and (min-width: 769px) {

    .hero-slider {
        height: 680px;
        min-height: 620px;
    }

    .hero-content-inner {
        width: calc(100% - 140px);
    }

    .hero-content h1,
    .hero-content h2 {
        font-size: clamp(42px, 6vw, 62px);
    }

    .slider-prev {
        left: 20px;
    }

    .slider-next {
        right: 20px;
    }

    .scroll-indicator {
        display: none;
    }

}


/* ================= MOBILE ================= */

@media (max-width: 768px) {

    .hero-slider {
        height: 680px;
        min-height: 680px;
    }


    /*
       Mobile par image ko thoda right shift
       kiya gaya hai taaki important subject
       visible rahe.
    */

    .hero-image img {
        object-fit: cover;
        object-position: 58% center;
    }


    .hero-image::after {
        background:
            linear-gradient(
                90deg,
                rgba(0, 0, 0, 0.80) 0%,
                rgba(0, 0, 0, 0.58) 55%,
                rgba(0, 0, 0, 0.20) 100%
            );
    }


    .hero-content-inner {
        width: calc(100% - 40px);
    }


    .hero-tag {
        margin-bottom: 15px;

        font-size: 11px;

        letter-spacing: 1.7px;
    }


    .hero-tag::before {
        width: 22px;
        margin-right: 8px;
    }


    .hero-content h1,
    .hero-content h2 {
        max-width: 100%;

        margin-bottom: 18px;

        font-size: 39px;

        line-height: 1.08;

        letter-spacing: -1px;
    }


    .hero-content p {
        max-width: 100%;

        margin-bottom: 25px;

        font-size: 15px;

        line-height: 1.6;
    }


    .hero-buttons {
        gap: 10px;
    }


    .hero-btn {
        min-height: 48px;

        padding: 0 18px;

        font-size: 13px;
    }


    /* Mobile arrows */

    .slider-arrow {
        top: auto;

        bottom: 72px;

        width: 42px;
        height: 42px;

        transform: none;
    }

    .slider-arrow:hover {
        transform: scale(1.05);
    }

    .slider-arrow span {
        font-size: 26px;
    }

    .slider-prev {
        left: 18px;
    }

    .slider-next {
        right: 18px;
    }


    /* Mobile dots */

    .slider-dots {
        bottom: 28px;
    }


    /* Mobile progress */

    .slider-progress {
        height: 2px;
    }


    /* Hide scroll */

    .scroll-indicator {
        display: none;
    }

}


/* ================= SMALL MOBILE ================= */

@media (max-width: 480px) {

    .hero-slider {
        height: 650px;
        min-height: 650px;
    }

    .hero-content-inner {
        width: calc(100% - 30px);
    }

    .hero-content h1,
    .hero-content h2 {
        font-size: 34px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .hero-buttons {
        width: 100%;

        flex-direction: column;

        align-items: stretch;
    }

    .hero-btn {
        width: 100%;
    }

}


/* ================= REDUCED MOTION ================= */

@media (prefers-reduced-motion: reduce) {

    .hero-slide,
    .hero-btn,
    .slider-arrow,
    .slider-dots .dot {
        transition: none;
    }

    .hero-slide.active .hero-content-inner {
        animation: none;
    }

    .scroll-indicator span,
    .progress-fill.animate {
        animation: none;
    }
}

