/* Neon Theme of body*/
body {
    margin: 0;
    background: radial-gradient(circle at center, #02010a, #010006 70%);
    font-family: 'Orbitron', sans-serif;
    color: #fff;
    overflow-x: hidden;
}

#preloader {
    position: fixed;
    inset: 0;
    background: #020202;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 99999;

    /* smooth exit animation */
    opacity: 1;
    transform: scale(1);
    transition: opacity .5s ease, transform .5s ease;
}

#preloader.hide {
    opacity: 0;
    transform: scale(.97);
    pointer-events: none;
}

.spinner {
    width: 70px;
    height: 70px;
    border: 6px solid #ffffff20;
    border-top-color: #00fff0;
    border-radius: 50%;
    animation: spin 1.2s linear infinite;
}

.loading-text {
    margin-top: 18px;
    color: #00fff0;
    letter-spacing: 2px;
    animation: fade 1.2s ease-in-out infinite alternate;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes fade {
    from {
        opacity: .4;
    }

    to {
        opacity: 1;
    }
}


/* Navbar */
.navbar {
    background: rgba(10, 10, 25, 0.95);
    border-bottom: 1px solid rgba(0, 255, 255, 0.3);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
    padding: 20px 30px;
}

.navbar-brand img {
    height: 40px;
    margin-right: 10px;
    margin-left: 20px;
    transform: scale(3);
}

.navbar-brand {
    color: #00fff0 !important;
    font-weight: 600;
    font-size: 21px;
    text-shadow: 0 0 6px #00fff0;
}

.nav-link {
    color: #eaffff !important;
    margin: 0 10px;
    transition: 0.3s;
    font-weight: 500;
    font-size: 15px;
}

.nav-link:hover {
    color: #00fff0 !important;
    text-shadow: 0 0 6px #00fff0;
    font-size: 18px;
}

/* Dropdown */
.dropdown-menu {
    background: rgba(25, 25, 76, 0.98);
    border: 1px solid rgba(0, 255, 240, 0.3);
    box-shadow: 0 0 10px rgba(0, 255, 240, 0.2);
}

.dropdown-item {
    color: #eaffff;
    transition: 0.3s;
    font-size: 14px;
}

.dropdown-item:hover {
    background: rgba(0, 255, 240, 0.1);
    color: #00fff0;
    text-shadow: 0 0 6px #00fff0;
}

.navbar-toggler {
    border: none;
    font-size: 22px;
    color: #00fff0;
}


/* Button */
.button {
    cursor: pointer;
    position: relative;
    padding: 10px 24px;
    margin-left: 15px;
    font-size: 16px;
    color: rgb(193, 163, 98);
    border: 2px solid rgb(193, 163, 98);
    border-radius: 34px;
    background-color: transparent;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
}

.button::before {
    content: '';
    position: absolute;
    inset: 0;
    margin: auto;
    width: 50px;
    height: 50px;
    border-radius: inherit;
    scale: 0;
    z-index: -1;
    background-color: rgb(193, 163, 98);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.button:hover::before {
    scale: 3.5;
}

.button:hover {
    color: #212121;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(193, 163, 98, 0.4);
}

/* home page */

.hero {
    height: 100vh;
    background: radial-gradient(circle at top left, #00111a, #000000 80%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 0 8%;
}

.hero::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.3), transparent 70%);
    top: -150px;
    left: -150px;
    filter: blur(120px);
    animation: moveGlow 12s ease-in-out infinite alternate;
}

@keyframes moveGlow {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(150px, 100px);
    }
}

/* Hero Layout */
.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    z-index: 2;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.hero-text {
    flex: 1;
    text-align: left;
}

.heading {
    font-size: 48px;
    color: #00fff0;
    text-align: left;
    font-weight: 700;
    text-shadow: 0 0 20px #00fff0;
    margin-bottom: 20px;
}

.hero p {
    color: #d4d4d4;
    font-size: 18px;
    margin: 0 auto 30px;
    line-height: 28px;
}

.hero .cta-btn {
    background: linear-gradient(90deg, #00fff0, #0099ff);
    color: #000;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    padding: 12px 35px;
    font-size: 17px;
    transition: 0.3s;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
    cursor: pointer;
}

.hero .cta-btn:hover {
    transform: scale(1.07);
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.8);
}

/* Hero Image */
.hero-image {
    flex: 1;
    display: flex;
    align-items: center;
    margin-left: 10vw;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    height: auto;
    max-width: 450px;
    filter: drop-shadow(0 0 30px rgba(0, 255, 255, 0.4));
    animation: float 5s ease-in-out infinite alternate;
    scale: 170%;
}

@keyframes float {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-15px);
    }
}

/* 📱 Responsive */
@media (max-width: 900px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        text-align: center;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-image {
        margin-top: 30px;
        height: 80px;
        width: auto;
        scale: (-200%);
    }
}

/* Services section */
.heading-2 {
    text-align: center;
    font-size: 45px;
    color: #00fff0;
    font-weight: 600;
    margin: 60px 20px;
    text-shadow: 0 0 10px #00fff0;
}

.slider-wrapper {
    display: flex;
    overflow-x: hidden;
    scroll-behavior: smooth;
    gap: 30px;
    padding: 10px 0;
}

.service-item {
    flex: 0 0 auto;
    width: 180px;
    text-align: center;
    transition: transform 0.3s ease;
}

.img-gif {
    height: 100px;
    margin-bottom: 10px;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #00ffff;
    /* neon blue */
    color: #111;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 30px;
    padding: 10px 15px;
    z-index: 10;
    box-shadow: 0 0 10px #00ffff;
    transition: 0.3s ease;
}

.slider-btn:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 20px #00ffff;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #00fff0;
    border: none;
    padding: 10px 18px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    z-index: 50;
}

.left-btn {
    left: -10px;
}

.right-btn {
    right: -10px;
}

.img-gif {
    height: 100px;
    width: auto;
}

/* Mobile size */
@media (max-width: 576px) {
    .img-gif {
        height: 70px;
        /* smaller size for mobile */
        width: auto;
    }
}

/*  CTA Section */

.CTA-Section {
    background: radial-gradient(circle at center, #0a4e73, #000000 80%);
    text-align: center;
    padding: 60px 20px;
    margin-top: 100px;
}

.animated-button {
    position: relative;
    display: inline-block;
    padding: 12px 24px;
    border: none;
    width: 200px;
    font-size: 16px;
    text-decoration: none;
    margin-left: 25px;
    background-color: inherit;
    border-radius: 100px;
    font-weight: 600;
    color: #fff;
    box-shadow: 0 0 0 2px #ffffff20;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.animated-button span:last-child {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background-color: #2196F3;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.320, 1);
}

.animated-button span:first-child {
    position: relative;
    z-index: 1;
}

.animated-button:hover {
    box-shadow: 0 0 0 5px #2195f360;
    color: #ffffff;
}

.animated-button:active {
    scale: 0.95;
}

.animated-button:hover span:last-child {
    width: 250px;
    height: 150px;
    opacity: 1;
}

.div-btn {
    display: flex;
    justify-content: center;
}

/* MAIN SECTION */
.Packages {
    text-align: center;
    padding: 60px 20px;
    margin-top: 100px;
}

.heading-3 {
    font-size: 66px;
    color: #00fff0;
    font-weight: 600;
    margin-bottom: 10px;
    text-shadow: 0 0 10px #00fff0;
}

.p-t {
    color: #d4d4d4;
    font-weight: 600;
    font-size: 18px;
    margin: 0 auto 30px;
    line-height: 28px;
}

/* FILTER BUTTONS */
.filter-buttons .btn-filter {
    background: transparent;
    border: 1px solid #00fff0;
    color: #00fff0;
    margin: 5px;
    padding: 10px 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.filter-buttons .btn-filter.active,
.filter-buttons .btn-filter:hover {
    background: #00fff0;
    color: #111;
}

/* SLIDER WRAPPER */
.slider-container {
    position: relative;
}

.packages-wrapper {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    padding: 20px 10px;
    scroll-behavior: smooth;
}

/* SCROLLBAR HIDE */
.packages-wrapper::-webkit-scrollbar {
    height: 0;
}

/* PACKAGE CARD */
.package-card {
    flex: 0 0 330px;
    background: rgba(20, 101, 144, 0.18);
    border-radius: 20px;
    padding: 25px;
    border: 1px solid rgba(0, 255, 240, 0.18);
    backdrop-filter: blur(12px) saturate(160%);
    transition: 0.3s ease;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 255, 240, 0.4);
    border-color: #00fff0;
}

.pkg-title {
    color: #00fff0;
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: bold;
}

/* FEATURES */
.pkg-features {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.pkg-features li {
    color: #ddd;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* PRICE */
.price {
    font-size: 28px;
    color: #0099ff;
    font-weight: 700;
    margin-bottom: 20px;
}

/* BUTTON */
.btn-custom {
    display: block;
    width: 100%;
    text-align: center;
    background: #0099ff;
    color: white;
    font-weight: 600;
    padding: 12px;
    border-radius: 8px;
    transition: 0.3s ease;
    text-decoration: none;
}

.btn-custom:hover {
    background: #ffcc00;
    color: #111;
}

/* SLIDER BUTTONS */
.slider-btn {
    position: absolute;
    top: 50%;
    background: #00fff0;
    color: #111;
    border: none;
    padding: 10px 15px;
    border-radius: 40%;
    cursor: pointer;
    font-size: 24px;
    transform: translateY(-50%);
    transition: 0.3s ease;
    z-index: 10;
}

.slider-btn:hover {
    background: #ffcc00;
}

.prev {
    left: -40px;
}

.next {
    right: -40px;
}

/* MOBILE ADJUSTMENTS */
@media (max-width: 768px) {
    .prev {
        display: none;
    }

    .next {
        display: none;
    }

    .slider-btn {
        display: none;
    }
}


/* why us */

.why-us-section {
    background: radial-gradient(circle at center, #00111a, #000000 80%);
    padding: 60px 20px;
    margin-top: 100px;
}

.wu-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.wu-img {
    width: 100%;
    height: 1000px;
    scale: 1px;
}

.content {
    flex: 1;
    position: relative;
}

.text-box-1,
.text-box-2,
.text-box-3 {
    gap: 20px;
    margin-top: 180px;
    border: 1px solid #222;
    padding: 20px;
    border-radius: 10px;
}

/* connection  */

.conn-img {
    width: 100%;
    height: 600px;
}

.conn-a {
    width: 220px;
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background-color: #00fff0;
    color: #000;
    font-weight: 600;
    text-align: center;
    font: bolder 20px 'Poppins', sans-serif;
    border-radius: 30px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.conn-a:hover {
    background-color: #0099ff;
}

.conn-a:active {
    transform: scale(0.95);
}

/* form */
.form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 350px;
    background-color: #fff;
    padding: 20px;
    border-radius: 20px;
    position: relative;
}

.title {
    font-size: 28px;
    color: royalblue;
    font-weight: 600;
    letter-spacing: -1px;
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 30px;
}

.title::before,
.title::after {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    border-radius: 50%;
    left: 0px;
    background-color: royalblue;
}

.title::before {
    width: 18px;
    height: 18px;
    background-color: royalblue;
}

.title::after {
    width: 18px;
    height: 18px;
    animation: pulse 1s linear infinite;
}

.message,
.signin {
    color: rgba(88, 87, 87, 0.822);
    font-size: 14px;
}

.signin {
    text-align: center;
}

.signin a {
    color: royalblue;
}

.signin a:hover {
    text-decoration: underline royalblue;
}

.flex {
    display: flex;
    width: 100%;
    gap: 6px;
}

.form label {
    position: relative;
}

.form label .input {
    width: 100%;
    padding: 10px 10px 20px 10px;
    outline: 0;
    border: 1px solid rgba(105, 105, 105, 0.397);
    border-radius: 10px;
}

.form label .input+span {
    position: absolute;
    left: 10px;
    top: 15px;
    color: grey;
    font-size: 0.9em;
    cursor: text;
    transition: 0.3s ease;
}

.form label .input:placeholder-shown+span {
    top: 15px;
    font-size: 0.9em;
}

.form label .input:focus+span,
.form label .input:valid+span {
    top: 30px;
    font-size: 0.7em;
    font-weight: 600;
}

.form label .input:valid+span {
    color: green;
}

.submit {
    border: none;
    outline: none;
    background-color: royalblue;
    padding: 10px;
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    transform: .3s ease;
}

.submit:hover {
    background-color: rgb(56, 90, 194);
}

@keyframes pulse {
    from {
        transform: scale(0.9);
        opacity: 1;
    }

    to {
        transform: scale(1.8);
        opacity: 0;
    }
}


/* portfolio page */


/*  Portfolio Section */

.portfolio-section {
    padding: 100px 20px;
    text-align: center;
    background: radial-gradient(circle at center, #00111a, #000000 80%);
    margin-top: 100px;
}

.portfolio-section h2 {
    font-size: 50px;
    color: #00fff0;
    font-weight: 700;
    margin-bottom: 40px;
    text-shadow: 0 0 15px #00fff0;
}

/*  Filter Buttons */
.filter-buttons {
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.filter-buttons .btn {
    border: 1px solid #00fff0;
    color: #00fff0;
    background: transparent;
    padding: 8px 18px;
    border-radius: 50px;
    transition: 0.3s;
}

.filter-buttons .btn:hover,
.filter-buttons .btn.active {
    background: #00fff0;
    color: #000;
    box-shadow: 0 0 20px #00fff0;
}

/* Thumbnails */
.portfolio-thumb {
    width: 100%;
    height: 500px;
    object-fit: cover;
    margin-top: 50px;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-thumb:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px #00fff0;
}

/*  Modal */
.modal-content {
    background: #000;
    border: 1px solid #00fff0;
}

#modalImage {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.p-t2 {
    text-align: center;
    color: #d4d4d4;
    font-weight: bolder;
    font-size: 18px;
    margin: 0 auto 30px;
    margin-top: -4vh;
    line-height: 28px;
}

/*  Review Section  */
.client-reviews {
    background: #0099ff;
    /* yellow-orange background */
    color: #fff;
    padding: 80px 0;
}

.client-reviews h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
}

.client-reviews p {
    color: #fff;
    max-width: 700px;
    margin: 0 auto;
}

/*  Review Card  */
.review-card {
    background: #1a1a1a;
    color: #fff;
    border-radius: 10px;
    text-align: left;
    min-height: 320px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.5);
}

.stars {
    color: #0099ff;
    font-size: 1.2rem;
}

/*  Reviewer  */
.avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #0099ff;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.reviewer small {
    color: #bbb;
}

/*  Responsive  */
@media (max-width: 991px) {
    .review-card {
        margin-bottom: 30px;
    }
}

/* about page */

.img-wrap-about {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    /* allows wrapping on smaller screens */
    gap: 40px;
    padding: 40px 5%;
    background: transparent;
    /* adjust if you want a section color */
}

.img-wrap-about img {
    height: 200px;
    width: auto;
    transform: scale(1);
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.2));
}

.img-wrap-about img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(0, 255, 255, 0.4));
}

@media (max-width: 992px) {
    .img-wrap-about {
        gap: 30px;
        justify-content: center;
    }

    .img-wrap-about img {
        height: 160px;
    }
}

@media (max-width: 576px) {
    .img-wrap-about {
        flex-direction: column;
        gap: 20px;
    }

    .img-wrap-about img {
        height: 140px;
        width: 80%;
        max-width: 300px;
    }
}


.heading-4 {
    font-size: 46px;
    color: #00fff0;
    text-align: center;
    font-weight: 600;
    margin-bottom: 10px;
    text-shadow: 0 0 10px #00fff0;
}


.client-priority {
    background-color: #0f0f0f;
    color: #fff;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.section-title {
    font-size: 1.9rem;
    font-weight: 700;
    line-height: 1.4;
    color: #fff;
}

.priority-card {
    padding: 20px;
    text-align: center;
}

.priority-card .icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.priority-card h6 {
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    color: #fff;
    margin-bottom: 10px;
}

.priority-card p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 300px;
    margin: 0 auto;
}

/* Responsive alignment */
@media (max-width: 992px) {
    .priority-card p {
        max-width: 100%;
    }

    .section-title {
        font-size: 1.6rem;
    }
}

.about-webdesires {
    background: linear-gradient(180deg, #000814, #000);
    color: #fff;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.about-webdesires .glow-text {
    color: #00fff0;
    text-shadow: 0 0 10px #00fff0, 0 0 25px #00fff0;
}

.about-webdesires p {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.7;
}

.about-webdesires .lead {
    color: #b5b5b5;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .about-webdesires {
        text-align: center;
    }
}

/* contact page */

.main_section {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

/* Contact Section Background */
.contact-section {
    height: 100vh;
    background: radial-gradient(circle at top left, #00111a, #000000 80%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 0 8%;
}

.contact-section::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.3), transparent 70%);
    top: -150px;
    left: -150px;
    filter: blur(120px);
    animation: moveGlow 12s ease-in-out infinite alternate;
}

@keyframes moveGlow {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(150px, 100px);
    }
}


/* Glassmorphism Form */
.form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 420px;
    background: rgba(0, 17, 26, 0.7);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.form:hover {
    transform: scale(1.02);
    box-shadow: 0 0 45px rgba(0, 255, 255, 0.4);
}

/*  Title */
.form-title {
    font-size: 28px;
    font-weight: 700;
    color: #00fff0;
    text-shadow: 0 0 15px #00fff0;
    text-align: center;
    margin-bottom: 10px;
}

/* Inputs */
.form label {
    position: relative;
}

.form .input,
.form .input01 {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.3);
    color: #00fff0;
    padding: 12px 10px 20px 10px;
    border-radius: 10px;
    outline: none;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form .input:focus,
.form .input01:focus {
    box-shadow: 0 0 10px #00fff0;
    border-color: #00fff0;
}

.form label span {
    position: absolute;
    left: 12px;
    top: 15px;
    color: #888;
    font-size: 0.9em;
    transition: 0.3s ease;
    pointer-events: none;
}

/* Floating labels */
.form .input:focus+span,
.form .input:valid+span,
.form .input01:focus+span,
.form .input01:valid+span {
    top: -8px;
    left: 10px;
    font-size: 0.75em;
    font-weight: 600;
    color: #00fff0;
    background: #00111a;
    padding: 0 5px;
    border-radius: 3px;
}

/* ✨ Button */
.fancy {
    background: linear-gradient(90deg, #00fff0, #0099ff);
    color: #000;
    border: none;
    border-radius: 50px;
    padding: 12px 35px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
    overflow: hidden;
    position: relative;
    margin-top: 10px;
}

.fancy:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.8);
}

/* Optional floating effect on hover */
@keyframes floatForm {
    0% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(-5px);
    }
}

.form:hover {
    animation: floatForm 1s ease-in-out infinite alternate;
}

/* Responsive */
@media (max-width: 768px) {
    .form {
        max-width: 90%;
        padding: 25px;
    }
}

/* Floating image subtle motion */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(-10px);
    }
}

/* 💻 Responsive (Tablet & Mobile) */
@media (max-width: 992px) {
    .main_section {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 60px 5%;
    }

    .contact-container {
        order: 1;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .main_section img {
        order: 2;
        max-width: 400px;
        width: 90%;
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .form {
        max-width: 95%;
        padding: 20px;
    }

    .form-title {
        font-size: 22px;
    }

    .main_section img {
        max-width: 320px;
    }
}

/* services Section */

/* Wraps all testimonial boxes */
.wrap-section {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 30px;
    padding: 40px 20px;
}

/* Each testimonial box */
.section-box {
    flex: 1 1 320px;
    max-width: 360px;
    min-height: 220px;
    border: 1px solid #0099ff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 0 15px rgba(0, 153, 255, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.section-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 153, 255, 0.3);
}

/* Name and text styling */
.section-box .row p {
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.section-box p {
    color: #fff;
    line-height: 1.5;
}

/* Star styling */
.stars {
    color: #fbc02d;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.special-text {
    color: #00fff0;
    font: bolder;
    font-size: 60px;
    font-weight: 700;
    text-shadow: 0 0 6px #00fff0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-box {
        width: 100%;
        max-width: 100%;
    }
}

.package-box {
    border: 2px solid #0099ff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 153, 255, 0.2);
    background: #0b0b0b;
    color: #fff;
    width: 90%;
    max-width: 1100px;
    margin: 40px auto;
    font-family: "Poppins", sans-serif;
}

.package-header {
    background: #0099ff;
    text-align: center;
    padding: 25px 10px;
    position: relative;
}

.package-header h2 {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
}

.package-header p {
    margin: 0;
    font-size: 1rem;
    color: #e6f2ff;
}

.package-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background: #111;
    padding: 30px;
}

.package-column {
    flex: 1 1 30%;
    min-width: 250px;
}

.package-column h4 {
    color: #0099ff;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.package-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-column ul li {
    color: #fff;
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px;
}

.package-column ul li::before {
    content: "✔";
    color: #00ccff;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.package-price {
    text-align: center;
    margin-top: 20px;
}

.package-price h3 {
    font-size: 1.8rem;
    color: #0099ff;
}

.package-price h3 span {
    color: #aaa;
    font-size: 1rem;
    text-decoration: line-through;
    margin-left: 8px;
}

.package-footer {
    background: #0099ff;
    text-align: center;
    padding: 20px;
}

.btn {
    background: #fff;
    border: none;
    color: #0099ff;
    padding: 10px 25px;
    border-radius: 25px;
    margin: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.btn:hover {
    background: #e6f2ff;
}

.btn.primary {
    background: #ff4d00;
    color: #fff;
}

.btn.primary:hover {
    background: #ff6633;
}

.phone-bg {
    position: fixed;
    top: 35%;
    right: 0;
    z-index: 999;
}

/* main button */
.phone-side {
    display: flex;
    align-items: center;
    background: #0ca6ed;
    color: #fff;
    padding: 12px;
    border-radius: 30px 0 0 30px;
    text-decoration: none;
    overflow: hidden;
    width: 50px;
    /* icon-only width */
    transition: width 0.35s ease;
}

/* icon */
.phone-side i {
    font-size: 24px;
    min-width: 24px;
}

/* hidden text */
.phone-text {
    margin-left: 12px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.35s ease;
}

/* hover effect */
.phone-side:hover {
    width: 220px;
    /* expands container */
}

/* reveal text */
.phone-side:hover .phone-text {
    opacity: 1;
    transform: translateX(0);
}



.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-float i {
    margin-top: 14px;
}

.whatsapp-float:hover {
    background-color: #1ebe5d;
    transform: scale(1.1);
}


/* footer */

.footer-section {
    background: linear-gradient(to right, #111, #222);
    color: #ddd;
    font-size: 15px;
}

.footer-section h6 {
    color: #fff;
    letter-spacing: 0.5px;
}

.footer-line {
    width: 50%;
    height: 2px;
    background-color: #ff3b3b;
    border: none;
    margin: 5px 0 15px;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 8px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.footer-list li:hover {
    color: #0099ff;
}

.footer-link {
    color: #ddd;
    text-decoration: none;
}

.footer-link:hover {
    color: #0099ff;
}

.footer-bottom {
    background: #ffb300;
    color: #1c1c1e;
    padding: 10px 0;
    font-size: 14px;
}

.footer-bottom a {
    color: #1c1c1e;
    text-decoration: none;
    margin: 0 5px;
    font-weight: 500;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.payment-icons img {
    height: 25px;
    margin-left: 10px;
    filter: brightness(0) invert(1);
}

/* responsive  */
/* 🌐 Full Responsive Fixes */

@media (max-width: 1200px) {
    .hero .heading {
        font-size: 42px;
    }
}

@media (max-width: 992px) {
    .navbar-nav {
        text-align: center;
    }

    .button {
        margin: 10px 0;
        width: 100%;
    }

    .hero {
        flex-direction: column;
        height: auto;
        padding: 120px 30px 60px;
        text-align: center;
    }

    .hero .heading {
        font-size: 36px;
        text-align: center;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-image {
        margin: 40px auto 0;
    }

    .hero-image img {
        max-width: 300px;
    }

    .service-item {
        width: 130px;
        margin: 0 10px;
    }

    .heading-2 {
        font-size: 32px;
    }

    .package-card {
        flex: 0 0 260px;
    }
}

@media (max-width: 768px) {
    .heading {
        font-size: 32px;
    }

    .heading-2,
    .heading-3 {
        font-size: 30px;
    }

    .hero p {
        font-size: 15px;
        line-height: 24px;
    }

    .packages-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .package-card {
        width: 90%;
        margin-bottom: 25px;
    }

    .wu-wrap {
        flex-direction: column;
    }

    .wu-img {
        height: auto;
        width: 100%;
    }

    .footer-section .col-md-3 {
        text-align: center;
        margin-bottom: 25px;
    }

    .footer-bottom {
        font-size: 13px;
        text-align: center;
    }

    .filter-buttons {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .filter-buttons .btn-filter {
        font-size: 14px;
        margin: 4px;
    }

    .CTA-Section {
        padding: 40px 20px;
    }

    .animated-button {
        width: 100%;
        margin: 10px 0;
    }
}

@media (max-width: 480px) {
    .heading {
        font-size: 26px;
    }

    .hero p {
        font-size: 14px;
    }

    .hero-image img {
        max-width: 250px;
    }

    .service-item {
        width: 100px;
        margin: 0 5px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 26px;
        bottom: 20px;
        right: 20px;
    }
}

/* Responsive */