  body {
    padding-top: 85px !important;
}
  html, body {
    overflow-x: hidden;
}

section {
    overflow: hidden;
}

.row {
    margin-left: 0;
    margin-right: 0;
}

img {
    max-width: 100%;
}     


        .hero {
            min-height: 92vh;
        background:
  linear-gradient(120deg, rgba(8,20,48,.96), rgba(15,52,96,.9)),
  url('images/IndexBack.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            display: flex;
            align-items: center;
            padding-top: 80px;
        }

        .hero h1 {
            font-size: 58px;
            font-weight: 900;
            line-height: 1.1;
        }

        .hero p {
            font-size: 18px;
            color: #dbe6ff;
            margin: 24px 0;
        }

        .hero-card {
            background: rgba(255,255,255,.12);
            border: 1px solid rgba(255,255,255,.18);
            backdrop-filter: blur(18px);
            border-radius: 28px;
            padding: 30px;
            box-shadow: 0 30px 70px rgba(0,0,0,.25);
            transition: transform 0.4s ease;
        }
        
        .hero-card:hover {
            transform: translateY(-10px);
        }

        .section-title {
            font-weight: 900;
            font-size: 38px;
        }

        .section-subtitle {
            color: #6c757d;
            max-width: 650px;
            margin: auto;
        }

        .premium-card {
            background: white;
            border: none;
            border-radius: 24px;
            padding: 32px;
            box-shadow: 0 20px 45px rgba(8,20,48,.08);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            height: 100%;
        }

        .premium-card:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: 0 40px 80px rgba(8,20,48,0.15);
        }

        .icon-box {
            width: 68px;
            height: 68px;
            border-radius: 20px;
            background: linear-gradient(135deg, #102a54, #0d6efd);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 28px;
            margin-bottom: 22px;
            transition: transform 0.5s ease;
        }
        
        .premium-card:hover .icon-box {
            transform: rotateY(360deg);
        }

        .stats {
            background: #081430;
            color: #fff;
            border-radius: 30px;
            padding: 45px 25px;
            margin-top: -55px;
            position: relative;
            z-index: 5;
            box-shadow: 0 20px 50px rgba(0,0,0,0.2);
        }

        .stats h2 {
            font-weight: 900;
            color: #f9b233;
        }

        /*.about-img {
            border-radius: 30px;
            box-shadow: 0 30px 70px rgba(0,0,0,.18);
            transition: all 0.5s ease;
        }*/
        .about-img:hover {
            transform: scale(1.03);
        }

        .calculator-box {
            background: linear-gradient(135deg, #081430, #12376d);
            border-radius: 30px;
            padding: 38px;
            color: white;
            box-shadow: 0 25px 60px rgba(8,20,48,.25);
        }

        .plan {
            border-radius: 28px;
            background: #fff;
            padding: 35px;
            box-shadow: 0 20px 45px rgba(8,20,48,.08);
            height: 100%;
            transition: all 0.4s ease;
        }

        .plan:hover {
            transform: scale(1.05);
            z-index: 2;
        }

        .plan.featured {
            background: linear-gradient(135deg, #081430, #143b73);
            color: #fff;
            transform: scale(1.03);
        }

        .price {
            font-size: 42px;
            font-weight: 900;
            color: #f9b233;
        }

       /* Updated Modern Footer Style */
    
        @media(max-width: 768px) {
            .hero h1 { font-size: 38px; }
            .hero { text-align: center; padding-bottom: 50px; }
            .stats { margin-top: 20px; }
            .plan.featured { transform: scale(1); }
        }

        .ultra-profile-section {
    background: radial-gradient(circle at top, #0d1b3d, #050b1f);
}

/* Glass Card */
.ultra-card {
    position: relative;
    background: rgba(255,255,255,0.05);
    border-radius: 30px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
    overflow: hidden;
    transition: 0.5s;
}

.ultra-card:hover {
    transform: translateY(-12px) scale(1.02);
}

/* Gradient Border Glow */
.ultra-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 30px;
    padding: 2px;
    background: linear-gradient(45deg, #0d6efd, #00f2ff, #f9b233);
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
}

/* Profile Ring Glow */
.profile-ring {
    width: 150px;
    height: 150px;
    margin: auto;
    border-radius: 50%;
    padding: 5px;
    background: linear-gradient(135deg, #0d6efd, #00f2ff);

    /* ? REMOVE THIS LINE */
    /* animation: rotateGlow 6s linear infinite; */
}

@keyframes rotateGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Profile Image */
.ultra-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 5px solid #081430;
    object-fit: cover;
}

/* Description */
.ultra-desc {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

/* Buttons */
.ultra-call {
    background: linear-gradient(135deg, #0d6efd, #0056d2);
    color: #fff;
    border-radius: 50px;
    padding: 10px 25px;
    transition: 0.3s;
}

.ultra-call:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 25px rgba(13,110,253,0.5);
}

.ultra-whatsapp {
    background: linear-gradient(135deg, #25D366, #1ebe5d);
    color: #fff;
    border-radius: 50px;
    padding: 10px 25px;
}

.ultra-whatsapp:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 25px rgba(37,211,102,0.5);
}
.ultra-card h2 {
    color: #ffffff !important;
}

.ultra-card p {
    color: rgba(255,255,255,0.75);
}

/* Equal height box */
.equal-box {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Image control */
.about-img {
    width: 100%;
    height: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    transition: 0.4s;
}

/* Hover effect */
.about-img:hover {
    transform: scale(1.03);
}

.btn-primary {
    background: linear-gradient(135deg, #0d6efd, #00c6ff);
    border: none;
    transition: 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(13,110,253,0.3);
}
html {
    scroll-behavior: smooth;
}

/* Remove unwanted gap */
.carousel,
.carousel-inner,
.carousel-item {
    width: 100%;
}

/* Full Banner */
.banner-full {
    height: 90vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Dark Overlay */
.banner-full .overlay {
    /*position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(8,20,48,0.85), rgba(15,52,96,0.75));*/
}

/* Content Position */
.banner-full .content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    color: #fff;
    max-width: 500px;
}

/* Typography */
.banner-full h1 {
    font-size: 48px;
    font-weight: 700;
}

.banner-full p {
    font-size: 18px;
    margin: 15px 0;
}

/* Button */
.banner-full .btn {
    padding: 10px 25px;
    font-weight: 600;
}

/* Mobile Fix */
@media(max-width:768px){
    .banner-full {
        height: 70vh;
    }

    .banner-full .content {
        left: 5%;
        right: 5%;
        text-align: center;
    }

    .banner-full h1 {
        font-size: 26px;
    }
}

        .carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

/* Icon styling */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.6); /* dark circle */
    border-radius: 50%;
    padding: 18px;
    background-size: 60%;
    background-position: center;
    background-repeat: no-repeat;
    transition: 0.3s;
}

/* Hover effect */
.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
    background-color: #ffc107; /* yellow highlight */
    transform: scale(1.1);
}

/* Optional: glass effect */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    backdrop-filter: blur(6px);
}



/* Gallery Css Style */

.custom-gallery-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #f5f7fa, #e4ecf7);
    font-family: 'Poppins', sans-serif;
}

/* TITLE */
.gallery-title {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-title h2 {
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(90deg, #0d6efd, #00c6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gallery-title p {
    font-size: 16px;
    color: #666;
    margin-top: 10px;
}

/* GRID */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* CARD */
.gallery-item {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    position: relative;
}

/* IMAGE */
.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: 0.5s;
}

/* TEXT */
.gallery-item p {
    font-size: 15px;
    font-weight: 600;
    color: #222;
    padding: 12px;
    text-align: center;
}

/* HOVER EFFECT */
.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* OVERLAY EFFECT */
.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
    opacity: 0;
    transition: 0.4s;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* SPECIAL SIZE */
.gallery-item.large {
    grid-column: span 2;
}

.gallery-item.large img {
    height: 240px;
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item.wide img {
    height: 240px;
}

/* LIGHTBOX */
#lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    background: rgba(0,0,0,0.95);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    text-align: center;
    animation: fadeIn 0.3s ease;
}

#lightbox img {
    max-width: 85%;
    max-height: 80%;
    margin-top: 5%;
    border-radius: 12px;
}

/* CLOSE BUTTON */
.close {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

/* ARROWS */
.prev, .next {
    position: absolute;
    top: 50%;
    font-size: 35px;
    background: rgba(255,255,255,0.2);
    border: none;
    color: #fff;
    padding: 10px 15px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.prev:hover, .next:hover {
    background: #0d6efd;
}

.prev { left: 30px; }
.next { right: 30px; }

/* ANIMATION */
@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

.gallery-item::before {
    content: "??";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: #fff;
    font-size: 28px;
    transition: 0.3s;
}

.gallery-item:hover::before {
    transform: translate(-50%, -50%) scale(1);
}



/* Tablet */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr; /*  1 image per row */
    }

    .gallery-item img {
        height: 220px;
    }

    .gallery-item.large,
    .gallery-item.wide {
        grid-column: span 1; /*  full width fix */
    }

    .gallery-title h2 {
        font-size: 24px;
    }

    .gallery-title p {
        font-size: 14px;
    }
}