body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
    cursor: default;
}
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1020; /* Ensure it stays above other content */
}


.navbar-nav .nav-link {
    transition: color 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover {
    color: #188bb8;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.btn-success {
    background-color: #2464bf; /* WhatsApp Green */
    border: none;
}

.btn-success:hover {
    background-color: #1ebe57;
}


/* mobile */

/* navbar */

/* footer */
.footer-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    display: block;
    padding: 5px 0;
    transition: 0.3s;
}
.footer-link:hover {
    color: #ffcc00;
    transform: translateX(5px);
}
.footer-contact {
    font-size: 14px;
    margin-bottom: 10px;
    opacity: 0.9;
}
.footer-contact i {
    margin-right: 8px;
    color: #ffcc00;
}
.social-icon {
    font-size: 22px;
    color: #ffcc00;
    text-decoration: none;
    transition: 0.3s;
}
.social-icon:hover {
    color: #fff;
    transform: scale(1.1);
}

/* footer */
/* Custom Cursor Styling */
.custom-cursor {
    width: 50px;
    height: 50px;
    border: 2px solid #00aeee; /* Circle Border Color */
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: transform 0.1s ease-out, opacity 0.3s ease-in-out;
    z-index: 9999;
    opacity: 0; /* Default invisible */
}

a:hover, button:hover {
    cursor: none;
}

.custom-cursor {
    opacity: 0; /* Hide initially */
}

a:hover ~ .custom-cursor,
button:hover ~ .custom-cursor {
    opacity: 1; /* Show only on hover */
    transform: translate(-50%, -50%) scale(1.5);
}


@media (max-width: 768px) {
    .custom-cursor {
        display: none;
    }
}

/* hero */
.hero-section {
    background: linear-gradient(to right, #fff, #00aeee); /* Two shades gradient */
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 50px 0;
}


/* .video-container {
    max-width: 90%;
    height: 100px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Responsive Video */
/* @media (max-width: 768px) {
    .video-container {
        max-width: 100%;
    }
} */

.btn-primary {
    background-color: #4bc5f3;
    border: none;
    padding: 12px 24px;
    font-size: 18px;
    transition: all 0.3s ease-in-out;
}


.btn-primary:hover {
    background-color: #0f4c5c;
    transform: translateY(-3px);
}
/* .video-container {
    width: 100%;
    max-width: 90%;
    height: 600px; Fixed height */
    /* object-fit: cover; /* Ensures the video fills the area without distortion */
    /* border-radius: 10px; */
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); */ */
/* } */

/* Responsive Video for Small Screens */
/* @media (max-width: 768px) {
    .video-container {
        height: 300px; /* Smaller height on mobile */
    /* }
}   */



/* Hero Section */
/* General Styling */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-bg img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    filter: brightness(0.5);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

/* Play Button */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 50px;
    color: #ffffff;
    text-shadow: 2px 2px 10px rgba(255, 255, 255, 0.7);
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

/* Glassmorphism Effect */
.glassmorphism {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2);
    padding: 20px;
}

/* Progress Circle */
.progress-container {
    position: relative;
    width: 120px;
    height: 120px;
}

.progress-bg {
    fill: none;
    stroke: #ddd;
    stroke-width: 5;
    stroke-dasharray: 314;
    stroke-dashoffset: 0;
}

.progress-bar {
    fill: none;
    stroke: #00aaff;
    stroke-width: 5;
    stroke-dasharray: 314;
    stroke-dashoffset: 80;
    transition: stroke-dashoffset 0.5s ease-in-out;
}

.progress-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.user-icon {
    font-size: 24px;
    color: #00aaff;
}

/* Mobile Optimization */
/* @media (max-width: 768px) {
    .hero-section {
        height: auto;
        padding: 50px 20px;
    }

    .hero-bg img {
        height: 100%;
    }

    .play-button {
        font-size: 40px;
    }

    .glass-card {
        margin-bottom: 20px;
    }
} */
@media (max-width: 768px) {
    /* Hero Section Adjustments */
    .hero-section {
        flex-direction: column; /* Stack items in column */
        text-align: center;
        height: auto; /* Ensure full height */
        padding: 30px 15px;
    }

    /* Background Image */
    .hero-bg img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    /* Play Button Adjustments */
    .play-button {
        font-size: 40px; /* Adjust size */
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    /* Reduce the width of cards for proper alignment */
    .performance-card, .glass-card {
        width: 90% !important;
        margin: 10px auto; /* Center the cards */
        padding: 15px;
    }

    /* Reduce SVG size inside performance card */
    .progress-container svg {
        width: 90px;
        height: 90px;
    }

    /* Fix text alignment */
    .new-users, .returning-users {
        font-size: 14px;
    }

    /* Reduce margin & spacing */
    .mt-2 {
        margin-top: 10px !important;
    }
}



/* Glassmorphism Cards */
/* Cards Same Size */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    color: #fff;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out;
    min-height: 250px;  /* Ensure same height */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.glass-card:hover {
    transform: translateY(-5px);
}

.performance-card {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    height: 100%; /* Full height */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Equal spacing */
    align-items: center;
}

.progress-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 20px 0; /* Adds equal top & bottom spacing */
}

.progress-bg {
    fill: none;
    stroke: #ddd;
    stroke-width: 10;
}

.progress-bar {
    fill: none;
    stroke: #0b3d91;
    stroke-width: 10;
    stroke-dasharray: 314;
    stroke-dashoffset: 100;
    transition: stroke-dashoffset 1s ease-in-out;
    stroke-linecap: round;
}

.progress-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    font-weight: bold;
}

.user-icon {
    font-size: 32px;
    color: #ff9800;
    display: block;
}

.text-muted {
    font-size: 14px;
}
/* service */
.service-container {
    padding: 60px 0;
    /* background: linear-gradient(135deg, #00aeee, #fff); */

}

.service-card {
    background: linear-gradient(135deg,  #00aeee, #ffff);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.4s ease-in-out;
    text-align: center;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 10px 25px rgba(0, 255, 170, 0.5);
}

.service-card img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
}

.service-card:hover img {
    transform: scale(1.05);
    filter: brightness(0.8);
}

.service-card h5 {
    font-size: 22px;
    color: white;
    font-weight: 600;
    margin-top: 15px;
}

.btn-custom {
    background: #00FFAA;
    color: black;
    font-weight: bold;
    border-radius: 25px;
    padding: 10px 20px;
    transition: all 0.3s ease-in-out;
    display: inline-block;
    margin-top: 15px;
}

.btn-custom:hover {
    background: white;
    color: #004851;
    box-shadow: 0px 5px 15px rgba(0, 255, 170, 0.6);
}
.image-container:hover .overlay {
    opacity: 1;
}
.transition {
    transition: all 0.3s ease-in-out;
}
/* about */
.nav-tabs .nav-link {
    border-radius: 8px;
    transition: all 0.3s;
}
.nav-tabs .nav-link:hover, .nav-tabs .nav-link.active {
    background: #00aeee;
    color: white;
}
.image-box:hover .overlay {
    opacity: 1;
}
.transition {
    transition: all 0.4s ease-in-out;
}
/* testimonial */
.testimonial-card {
    background: #00aeee; /* Purple background */
    color: black;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    height: 400px; /* Ensures all cards have the same height */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center; /* Centers everything inside */
    text-align: center;
}

.testimonial-card img {
    display: block;
    margin: 0 auto; /* Centers image horizontally */
}



.quote {
    font-style: italic;
    font-size: 1rem;
}

h5 {
    margin-top: 10px;
}


/* our technologies */
.tech-section {
    max-width: 1000px;
    margin: 50px auto;
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.tech-title {
    font-size: 28px;
    font-weight: bold;
    color: #6a11cb;
    background: linear-gradient(to right, #6a11cb, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.tech-icons img {
    width: 50px;
    margin: 10px;
}
.check-list {
    text-align: left;
    margin-top: 20px;
}
.check-list i {
    color: #6a11cb;
    margin-right: 10px;
}
.mockup-images img {
    width: 100%;
    max-width: 450px;
    margin-top: 20px;
}

/* our_technologies */
.tech-section {
    text-align: center;
    padding: 50px 20px;
    background: #f9f9f9;
    border-radius: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
.gradient-text {
    background: linear-gradient(90deg, #ff7eb3, #ff758c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.5rem;
    font-weight: bold;
}
.sub-heading {
    font-size: 1.2rem;
    color: #666;
    display: block;
    margin-bottom: 15px;
}
.description {
    font-size: 1rem;
    color: #444;
    margin-bottom: 20px;
}
.btn-custom {
    background:#2464bf;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    transition: 0.3s;
}
.btn-custom:hover {
    background: #33bdf1;
    color:white;
}
.tech-icons h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}
.tech-icons .icons img {
    width: 50px;
    margin: 5px;
    transition: transform 0.3s ease-in-out;
}
.tech-icons .icons img:hover {
    transform: scale(1.1);
}
.check-list {
    margin-top: 20px;
    font-size: 1.1rem;
}
.check-list p {
    color: #333;
}
.check-list i {
    color: #ff758c;
    margin-right: 8px;
}
.mockup-images {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}
.mockup {
    width: 200px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}



/* services */

/* Cards - Improved Styling */
.card_three {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease-in-out;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card_three img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card_three .card-body {
    padding: 20px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card_three .btn {
    margin-top: auto;
    background-color: #007bff;
    color: white;
    border-radius: 5px;
}

.card_three:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
/* Image Styling */



/* choose */
.section-title {
    font-size: 2.5rem;
    font-weight: bold;
}
.section-description {
    color: #6c757d;

    margin-bottom: 30px;
}
/* Video Box */
.video-box {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 10px;
}
.video-box img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}
.play-btn {
    position: absolute;
    font-size: 3rem;
    color: #fff;
    background: rgba(0, 0, 0, 0.6);
    padding: 20px 25px;
    border-radius: 50%;
    transition: 0.3s;
}
.play-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}
/* Feature Box */

.feature-box {
    background: #fff;
    padding: 20px;
    height: 250px; /* Adjust as needed */

    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: 0.3s;
    min-height: 200px; /* Ensures all boxes have the same height */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}
.row-equal-height > div {
    display: flex;
}
.feature-box {
    flex-grow: 1;
}

.feature-icon {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 15px;
    display: inline-block;
    transition: transform 0.3s ease-in-out;
}
.feature-box:hover .feature-icon {
    transform: rotate(10deg) scale(1.1);
}
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    .feature-box {
        margin-bottom: 20px;
    }
}
/* choose */

/* Contact Content */
.contact-content {
    position: relative;
    z-index: 1;
}

.contact-content h1 {
    font-size: 2rem;
    font-weight: bold;
}

.contact-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.contact-btn {
    background-color: #2464bf;
    color: white;
    font-size: 1rem;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s ease-in-out;
    display: inline-block;
}

.contact-btn:hover {
    background-color: #33bdf1;
    transform: scale(1.05);
}

/* Contact Section Responsive Fix */
@media (max-width: 768px) {

    .d-flex.shadow-lg {
        gap: 10px;

        flex-direction: column;
        text-align: center;
    }
    .d-flex.justify-content-between .btn {
        width: 48%; 
        text-align: center;
        padding: 8px 12px; /* Adjust padding for better spacing */
        font-size: 14px; /* Adjust font size */
    }

    /* Left section (Get in Touch) should take full width */
    .col-md-5, .col-md-7 {
        width: 100% !important;
        padding: 20px;
    }

    /* Reduce font size for mobile */
    h3.fw-bold {
        font-size: 1.5rem;
    }

    /* Adjust input field size */
    .form-control {
        font-size: 14px;
        padding: 10px;
    }

    /* Adjust buttons */
    .btn {
        width: 100%;
        padding: 10px;
        font-size: 1rem;
    }

    /* Fix spacing issues */
    .mb-3 {
        margin-bottom: 15px;
    }
}

/* ANIMATION */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    font-size: 28px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    text-decoration: none;
    transition: transform 0.3s ease-in-out;
}
.whatsapp-float:hover {
    transform: scale(1.1);
}

/* whatsapp */
.service-card-two {
    display: flex;
    align-items: center;
    background: #1e1e1e;
    border: 3px solid white;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    padding: 20px;
    transition: border 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.service-card-two:hover {
    border: 3px solid cyan;
    box-shadow: 0px 0px 2px cyan;
}

.service-card-two  img {
    width: 40%;
    height: auto;
    border-radius: 10px;
}
.service-content {
    padding: 20px;
    color:white;
}
.service-content h3 {
    color: #00aeee;
}
.read-more {
    color: #00aeee;
    text-decoration: none;
    font-weight: bold;
}
/* paeges */



/* Glassmorphism Effect */
.glassmorphism-card {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Gradient Text */
.text-gradient {
    background: linear-gradient(90deg, #ff8a00, #e52e71);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Neumorphic Buttons */
.btn-neumorphic {
    border: none;
    background: #f5f5f5;
    box-shadow: 6px 6px 10px rgba(0, 0, 0, 0.15), -6px -6px 10px rgba(255, 255, 255, 1);
    transition: all 0.3s ease-in-out;
}

.btn-neumorphic:hover {
    box-shadow: inset 4px 4px 8px rgba(0, 0, 0, 0.2), inset -4px -4px 8px rgba(255, 255, 255, 0.8);
}

/* Glass Button */
.btn-glass {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.4);
}
