
/* Hero */
.hero-wrapper {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-video {
    position: absolute;
    /* top: 50%; left: 50%; */
    /* transform: translate(-50%, -50%); */
    /* min-width: 100%; min-height: 100%; */
    z-index: -1;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    /* background: linear-gradient(to bottom, rgba(3, 4, 94, 0.7), rgba(0, 150, 199, 0.4)); */
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;

    --webkit-text-stroke: 1px rgba(0, 0, 0, 0.8)
}

.hero-subtitle {
    max-width: 700px;
    font-size: 1.2rem;
    opacity: 0.9;
}


.rounded-custom {
    border-radius: 40px;
}

.shadow-24 {
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.12);
}

/* About Visual Container */
.about-visual-container {
    position: relative;
    padding: 40px;
}

.main-image-wrapper {
    position: relative;
    z-index: 2;
    transform: perspective(1000px) rotateY(-5deg);
    transition: 0.5s ease;
}

.main-image-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.secondary-image-wrapper {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 250px;
    z-index: 3;
    border: 8px solid #fff;
    border-radius: 40px;
}

.experience-badge {
    position: absolute;
    top: 10%;
    left: 0;
    background: var(--primary);
    color: white;
    padding: 25px;
    border-radius: 24px;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: floating 3s ease-in-out infinite;
}

.experience-badge .count {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .label {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Feature Items */
.about-feature-item {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid #f0f0f0;
    transition: 0.3s;
}

.about-feature-item:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 150, 199, 0.05);
}

.mini-icon {
    width: 45px;
    height: 45px;
    background: rgba(0, 150, 199, 0.1);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.2rem;
}

/* Animation */
@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

@media (max-width: 991px) {
    .about-visual-container {
        padding: 0;
        margin-bottom: 50px;
    }

    .secondary-image-wrapper {
        display: none;
    }
}


/* Service Cards */
.service-bg-text {
    position: absolute;
    top: 0;
    right: -5%;
    font-size: 15vw;
    font-weight: 900;
    color: rgba(0, 150, 199, 0.03);
    pointer-events: none;
    line-height: 1;
}

.god-level-card {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    height: 100%;
    z-index: 1;
}

.god-level-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary);
    box-shadow: 0 30px 60px rgba(0, 150, 199, 0.12);
}

.card-step {
    position: absolute;
    top: 30px;
    right: 40px;
    font-weight: 800;
    color: #eee;
    font-size: 1.5rem;
}

.card-icon-wrap {
    width: 70px;
    height: 70px;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 30px;
    transition: 0.4s;
}

.god-level-card:hover .card-icon-wrap {
    background: var(--primary);
    color: #fff;
    transform: rotateY(360deg);
}

.badge-feature {
    display: inline-block;
    padding: 5px 12px;
    background: #f0f4f8;
    color: var(--navy);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 6px;
    margin-right: 5px;
    margin-bottom: 8px;
    transition: 0.3s;
}

.god-level-card:hover .badge-feature {
    background: rgba(0, 150, 199, 0.1);
    color: var(--primary);
}

.btn-explore {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: var(--navy);
    font-weight: 700;
    border-top: 1px solid #eee;
    padding-top: 20px;
    transition: 0.3s;
}

.btn-explore:hover {
    color: var(--primary);
}

/* Custom Navigation Buttons */
.custom-nav-btns button {
    width: 60px;
    height: 60px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 50%;
    transition: 0.3s;
    margin-left: 10px;
}

.custom-nav-btns button:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* Testimonials Refinement */
.premium-testi-card {
    background: #fff;
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid #f0f0f0;
    margin: 15px;
    transition: 0.3s;
}

.premium-testi-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.testi-content p {
    font-size: 1.1rem;
    font-weight: 500;
    color: #444;
}

.btn-testi {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #eee;
    background: #fff;
    color: var(--primary);
    transition: 0.3s;
}

.btn-testi:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(0, 150, 199, 0.2);
}

.testi-text {
    font-style: italic;
    color: #555;
    min-height: 80px;
    /* Keeps card heights consistent */
}

/* Ensure the card is fully clickable or transitions well */
.premium-testi-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Contact Card Modern */
.contact-card-modern {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
}

.contact-details-side {
    background: linear-gradient(135deg, var(--navy) 0%, var(--secondary) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.minimal-input {
    border: none;
    border-bottom: 2px solid #eee;
    border-radius: 0;
    padding: 12px 0;
    transition: 0.3s;
}

.minimal-input:focus {
    box-shadow: none;
    border-color: var(--primary);
}

