@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #299394;
    --primary-dark: #0052cc;
    --secondary-color: #00d2ff;
    --accent-color: #f0f7ff;
    --text-color: #1e293b;
    --text-light: #64748b;
    --white: #ffffff;
    --shadow-sm: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1280px;
    --header-height: 80px;
    --mobile-header-height: 70px;
    --border-radius: 20px;
    --container-padding: 2rem;
    --mobile-container-padding: 1.2rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img,
video {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--mobile-container-padding);
    }
}

.section-padding {
    padding: 5rem 0;
}

h1,
h2,
h3 {
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-whatsapp {
    background-color: #25d366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background-color: #128c7e;
}

/* Header */
header {
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

header.scrolled {
    height: 80px;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 55px;
    /* Better fit for 80px desktop header */
    width: auto;
    display: block;
    transition: var(--transition);
}

@media (max-width: 768px) {
    .logo img {
        height: 40px;
        /* Better fit for 70px mobile header */
    }
}

.logo span {
    color: var(--secondary-color);
    margin-left: 2px;
}

.logo:hover {
    transform: scale(1.02);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-color);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.mobile-only {
    display: none;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1100;
    position: relative;
    color: var(--text-color);
}

/* Mobile Menu Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero {
    min-height: 85vh;
    padding-top: var(--header-height);
    background: radial-gradient(circle at top right, rgba(0, 102, 255, 0.05), transparent),
        radial-gradient(circle at bottom left, rgba(0, 210, 255, 0.05), transparent);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 40%;
    height: 60%;
    background: var(--accent-color);
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.5;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    animation: fadeInLeft 1s ease;
    text-align: left;
    margin: 0;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-color) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

.hero-image-box {
    position: relative;
    animation: fadeInRight 1s ease;
}

.hero-main-img {
    width: 100%;
    height: 500px;
    min-height: 350px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    z-index: 2;
    position: relative;
}

.nav-links li {
    position: relative;
}

.dropdown>a i {
    font-size: 0.8rem;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.dropdown:hover>a i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 220px;
    box-shadow: var(--shadow-lg);
    border-radius: 12px;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    padding: 0.8rem 1.5rem;
    display: block;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
}

.dropdown-menu li a:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding-left: 1.8rem;
}

/* Mobile Dropdown */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0 0 0 1.5rem;
        display: none;
        width: 100%;
        min-width: 0;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu li a {
        padding: 0.6rem 0;
        border-bottom: none !important;
        font-size: 1.1rem;
    }
}

.hero-floating-card {
    position: absolute;
    bottom: 40px;
    left: -60px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 3;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: floating 3s infinite ease-in-out;
}

.floating-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

@keyframes floating {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .hero-image-box {
        position: relative;
    }
}

.about-summary {
    background-color: var(--white);
}

.about-summary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    font-weight: 700;
    text-align: center;
}

.about-badge span {
    display: block;
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.9;
}

@media (max-width: 992px) {
    .about-summary-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Cards Section */
.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
}

.card-img {
    height: 200px;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.card:hover .card-img img {
    transform: scale(1.1);
}

.card-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.card p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.card .btn {
    margin-top: auto;
    width: 100%;
    text-align: center;
}

/* About Section */
.about-section {
    background-color: var(--accent-color);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

/* CTA Section */
.cta-section {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 4rem 0;
}

.cta-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.cta-btns {
    display: flex;
    gap: 1.5rem;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: white;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.copyright {
    border-top: 1px solid #333;
    padding-top: 2rem;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Form Styles */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info {
    padding: 2rem;
    background-color: var(--accent-color);
    border-radius: 15px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stats Section */
.stats-section {
    background-color: var(--white);
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-light);
    font-weight: 500;
}

/* FAQ Section */
.faq-section {
    background-color: var(--accent-color);
}

.faq-container {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: var(--white);
    margin-bottom: 1rem;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0, 1, 0, 1);
    color: var(--text-light);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 1.5rem 1.5rem;
    transition: all 0.4s cubic-bezier(1, 0, 1, 0);
}

.faq-question i {
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Testimonials */
.testimonials-section {
    background-color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    position: relative;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-card i {
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.1;
    position: absolute;
    top: 1rem;
    right: 2rem;
}

.testimonial-text {
    font-style: normal;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.author-info h4 {
    margin: 0;
    font-size: 1rem;
}

.author-info p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 0;
}

/* Why Choose Us */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    padding: 2rem;
    text-align: center;
    background: var(--white);
    border-radius: 15px;
    transition: var(--transition);
}

.feature-item:hover {
    background: var(--accent-color);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

/* Process Section */
.process-section {
    background-color: var(--white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 1.5rem;
}

.process-step h4 {
    margin-bottom: 1rem;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 55px;
    height: 55px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: var(--shadow-md);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    color: white;
}

@keyframes whatsapp-bounce {

    0%,
    100% {
        transform: translateY(0);
    }

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

.whatsapp-float {
    animation: whatsapp-bounce 3s infinite ease-in-out;
}

/* Responsive */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    header {
        height: var(--mobile-header-height);
    }

    .logo {
        font-size: 1.3rem;
    }

    .mobile-only {
        display: block;
    }

    .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        right: -100%;
        /* Start off-screen to the right */
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        text-align: left;
        gap: 2rem;
        z-index: 1050;
        transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), right 0.5s ease;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li a {
        font-size: 1.2rem;
        display: block;
        width: 100%;
        padding-bottom: 0.5rem;
        border-bottom: 1px solid #f1f5f9;
    }

    /* Hide the navbar appointment button on mobile to avoid overlap */
    header .nav-btn {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

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

    .hero {
        position: relative;
        overflow: hidden;
    }

    .hero-image-box {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
        opacity: 0.2;
        /* Subtle background play */
        pointer-events: none;
    }

    .hero-main-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 0;
        box-shadow: none;
        min-height: 100%;
    }

    .hero-content {
        position: relative;
        z-index: 2;
        width: 100%;
    }

    .hero-floating-card {
        display: none;
    }

    .hero-btns {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .hero-btns .btn {
        width: 100%;
        text-align: center;
    }

    /* Testimonials Mobile Slider */
    .reviews-section-v2 {
        overflow: hidden;
        /* Prevent horizontal scroll from negative margins */
    }

    .testimonials-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1.5rem;
        padding: 1rem 1.5rem 2.5rem;
        margin-left: -1.2rem;
        margin-right: -1.2rem;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .testimonials-grid::-webkit-scrollbar {
        display: none;
    }

    .testimonial-card {
        flex: 0 0 85%;
        scroll-snap-align: center;
        height: auto;
    }

    /* Footer Mobile Adjustment */
    .footer-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 2rem 1.5rem;
    }

    .footer-col:first-child,
    .footer-col:last-child {
        grid-column: span 2;
    }
}

/* Appointment Page Styles */
.appointment-hero {
    background: linear-gradient(rgba(0, 102, 255, 0.9), rgba(0, 102, 255, 0.9));
    padding: 6rem 0 4rem;
    color: white;
    text-align: center;
}

.appointment-container {
    max-width: 900px;
    margin: -3rem auto 5rem;
    background: var(--white);
    padding: 4rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 10;
}

.appointment-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.full-width {
    grid-column: span 2;
}

.appointment-form select,
.appointment-form input,
.appointment-form textarea {
    width: 100%;
    padding: 1.2rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: var(--transition);
    background-color: #f8fafc;
    color: var(--text-color);
}

.appointment-form select:focus,
.appointment-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: white;
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
}

.form-label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-btn {
    padding: 0.7rem 1.5rem;
    background: var(--primary-color);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    margin-left: 1rem;
    transition: var(--transition);
}

.nav-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .appointment-form-grid {
        grid-template-columns: 1fr;
    }

    .full-width {
        grid-column: span 1;
    }

    .appointment-container {
        padding: 2rem;
        margin-top: 2rem;
    }

    .nav-btn {
        margin: 1rem 0;
        display: block;
        text-align: center;
    }
}

/* Platforms Title */
.platforms-main-title {
    padding: 5rem 0 3rem;
    font-size: 3rem;
    margin-bottom: 0;
    background-color: var(--white);
}

@media (max-width: 992px) {
    .platforms-main-title {
        font-size: 2.5rem;
        padding: 4rem 1.5rem 2rem;
    }
}

@media (max-width: 480px) {
    .platforms-main-title {
        font-size: 2rem;
        padding: 3rem 1.5rem 1.5rem;
    }
}

/* Service Blocks */
.service-block {
    display: flex;
    min-height: 700px;
    align-items: stretch;
}

.services-container .service-block:nth-child(even) {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1;
    padding: 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-image-box {
    flex: 1;
}

.service-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content h2 {
    font-size: 3.8rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.service-content h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    font-style: italic;
    opacity: 0.95;
}

.service-content p {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 3.5rem;
    max-width: 600px;
}

.btn-explore {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    transition: var(--transition);
    text-align: center;
}

/* Derma Theme */
.derma-theme {
    background-color: #BE2A4B;
    color: #fff;
}

.derma-theme .btn-explore {
    background-color: #000;
    color: #fff;
}

.derma-theme .btn-explore:hover {
    background-color: #333;
    transform: translateY(-3px);
}

/* Radiology Theme */
.radiology-theme {
    background-color: #00ADD9;
    color: #fff;
}

.radiology-theme .btn-explore {
    background-color: #000D44;
    color: #fff;
}

.radiology-theme .btn-explore:hover {
    background-color: #001a8b;
    transform: translateY(-3px);
}

/* Diagnostics Theme */
.diagnostics-theme {
    background-color: #021936;
    color: #fff;
}

.diagnostics-theme .btn-explore {
    background-color: #217B35;
    color: #fff;
}

.diagnostics-theme .btn-explore:hover {
    background-color: #1a632a;
    transform: translateY(-3px);
}

@media (max-width: 1024px) {

    .service-block,
    .services-container .service-block:nth-child(even) {
        flex-direction: column;
    }

    .service-content {
        padding: 4rem 1.5rem;
        text-align: center;
        align-items: center;
    }

    .service-image-box {
        height: 400px;
    }

    .service-content h2 {
        font-size: 2.5rem;
    }

    .service-content h3 {
        font-size: 1.2rem;
    }

    .service-content p {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 480px) {
    .service-image-box {
        height: 300px;
    }

    .service-content h2 {
        font-size: 2rem;
    }
}

/* Stats Info Section */
.stats-info-section {
    display: flex;
    min-height: 600px;
}

.stats-info-left {
    flex: 1;
    background-color: var(--primary-color);
    color: #fff;
    padding: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stats-info-left h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    line-height: 1.2;
    color: #fff;
}

.stats-info-left .content-text {
    font-size: 1.15rem;
    line-height: 1.8;
    opacity: 0.95;
}

.stats-info-left ul {
    margin: 1.5rem 0;
}

.stats-info-left li {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.stats-info-right {
    flex: 1;
    background-color: var(--accent-color);
    color: var(--text-color);
    padding: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stats-info-right .section-title {
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 4rem;
    position: relative;
    font-weight: 800;
}

.stats-info-right .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.stats-grid-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem 2rem;
    width: 100%;
}

.stat-item-new {
    text-align: center;
}

.stat-item-new h4 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.stat-item-new p {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-color);
}

@media (max-width: 992px) {
    .stats-info-section {
        flex-direction: column;
    }

    .stats-info-left {
        padding: 4rem var(--mobile-container-padding);
        text-align: left;
    }

    .stats-info-right {
        padding: 4rem var(--mobile-container-padding);
        text-align: center;
    }

    .stats-info-left h2 {
        font-size: 2.2rem;
    }

    .stats-info-right .section-title {
        font-size: 1.6rem;
        margin-bottom: 3rem;
    }

    .stats-grid-new {
        gap: 3rem 1.5rem;
    }

    .stat-item-new h4 {
        font-size: 2.8rem;
    }
}

@media (max-width: 480px) {
    .stats-info-left h2 {
        font-size: 1.8rem;
    }

    .stats-grid-new {
        grid-template-columns: 1fr;
    }
}

/* Reviews Section V2 */
.reviews-section-v2 {
    padding: 7rem 0;
    background-color: var(--white);
}

.reviews-wrapper {
    display: flex;
    align-items: center;
    gap: 8rem;
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-image-v2 {
    flex: 1;
    max-width: 500px;
}

.reviews-image-v2 img {
    width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
}

.reviews-content-v2 {
    flex: 1.2;
    overflow: hidden;
    position: relative;
}

.reviews-slider-v2 {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card-v2 {
    min-width: 100%;
    padding: 2rem;
}

.review-card-v2 .stars {
    color: #ffc107;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.review-card-v2 p {
    font-size: 1.8rem;
    line-height: 1.5;
    margin-bottom: 2.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.review-card-v2 h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 800;
}

.slider-controls {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-top: 4rem;
}

.slider-arrow {
    background: var(--accent-color);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--primary-color);
    font-size: 1.4rem;
    transition: var(--transition);
}

.slider-arrow:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 1.2rem;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #e2e8f0;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.3);
}

@media (max-width: 1024px) {
    .reviews-wrapper {
        flex-direction: column;
        gap: 4rem;
        text-align: center;
    }

    .slider-controls {
        justify-content: center;
        gap: 2rem;
        margin-top: 3rem;
    }

    .review-card-v2 p {
        font-size: 1.4rem;
    }

    .reviews-image-v2 {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .review-card-v2 p {
        font-size: 1.1rem;
    }

    .slider-arrow {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
}

/* Careers Section Redesign */
.careers-section-v2 {
    padding: 7rem 0;
    background-color: var(--accent-color);
}

.careers-wrapper {
    display: flex;
    align-items: center;
    gap: 8rem;
}

.careers-content {
    flex: 1;
}

.careers-content h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.careers-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2.5rem 0 3.5rem;
}

.c-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    color: var(--text-color);
}

.c-feature i {
    color: var(--primary-color);
}

.careers-image {
    flex: 1;
    position: relative;
}

.careers-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
}

.image-overlay-card {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.image-overlay-card strong {
    display: block;
    font-size: 2.5rem;
    color: var(--primary-color);
    line-height: 1;
}

.image-overlay-card span {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-light);
}

@media (max-width: 1024px) {
    .careers-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 4rem;
    }

    .careers-content h2 {
        font-size: 2.8rem;
    }

    .careers-features {
        justify-content: center;
    }

    .c-feature {
        justify-content: center;
    }

    .image-overlay-card {
        left: 50%;
        transform: translateX(-50%);
        bottom: -20px;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .careers-content h2 {
        font-size: 2rem;
    }

    .careers-features {
        grid-template-columns: 1fr;
    }
}

/* Blogs Section Redesign */
.blogs-section-v2 {
    padding: 5rem 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3.5rem;
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.blog-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.05);
    border: 1px solid rgba(0, 102, 255, 0.08);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.12);
    border-color: var(--primary-color);
}

.blog-img {
    height: 190px;
    position: relative;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-img img {
    transform: scale(1.1);
}

.blog-img .category {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
}

.blog-info {
    padding: 1.8rem;
}

.blog-info .date {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.8rem;
}

.blog-info h3 {
    font-size: 1.25rem;
    margin-bottom: 1.2rem;
    line-height: 1.4;
    color: var(--text-color);
}

.blog-info p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.read-more {
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.read-more:hover {
    gap: 1rem;
}

/* Global Presence Section */
.global-presence {
    padding: 7rem 0;
    background-color: var(--accent-color);
    text-align: center;
}

.global-presence .container {
    display: flex;
    align-items: center;
}

.presence-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    flex: 1.2;
}

.presence-card {
    background: var(--white);
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.05);
    transition: var(--transition);
    border: 1px solid rgba(0, 102, 255, 0.1);
}

.presence-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.presence-card h4 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.presence-card .badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: #eef4ff;
    color: var(--primary-color);
    font-size: 0.9rem;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
}

.presence-content {
    flex: 1;
    padding-left: 8rem;
}

.presence-content h2 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 2rem;
}

@media (max-width: 1024px) {
    .global-presence .container {
        flex-direction: column;
        text-align: center;
    }

    .presence-grid {
        width: 100%;
        margin-bottom: 4rem;
    }

    .presence-content {
        padding-left: 0;
    }

    .presence-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .presence-grid {
        grid-template-columns: 1fr;
    }

    .presence-card {
        padding: 2.5rem 1.5rem;
    }
}

/* Contact Form on Homepage */
.contact-section-home {
    padding: 7rem 0;
    background-color: var(--white);
}

.contact-form-home {
    max-width: 900px;
    margin: 0 auto;
    background: var(--accent-color);
    padding: 5rem;
    border-radius: 20px;
}

.form-title {
    text-align: center;
    margin-bottom: 4rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-control {
    width: 100%;
    padding: 1.3rem;
    border: 1px solid #e1e8f0;
    border-radius: 10px;
    font-size: 1.1rem;
    background: var(--white);
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 10px rgba(0, 102, 255, 0.1);
}

@media (max-width: 768px) {
    .contact-form-home {
        padding: 3rem 1.5rem;
    }

    .form-title {
        margin-bottom: 2.5rem;
    }

    .form-title h2 {
        font-size: 1.8rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .form-group.full-width {
        grid-column: span 1;
    }
}

/* --- About Us Page Styles --- */
.about-hero {
    background: linear-gradient(rgba(0, 102, 255, 0.8), rgba(0, 102, 255, 0.8)), url('../images/hero.png');
    background-size: cover;
    background-position: center;
    /* height: 40vh; */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 6rem 0;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.mv-card {
    padding: 3rem;
    background: var(--accent-color);
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.mv-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.team-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.05);
    border: 1px solid rgba(0, 102, 255, 0.08);
    transition: var(--transition);
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.1);
}

.box-img {
    /* height: 280px; */
    overflow: hidden;
    position: relative;
}

.box-img img {
    width: 100%;
    height: 300px;
    /* object-fit: cover; */
    transition: var(--transition);
}

.team-card:hover .box-img img {
    transform: scale(1.05);
}
@media (max-width: 992px) {
    .box-img img {
        height: 100%;
    }
}
.team-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.box-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.team-desig {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-text {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .about-hero {
        /* height: 30vh; */
    }

    .mission-vision {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mv-card {
        padding: 2rem;
    }
}


/* --- Ventures Page Styles --- */
.platform-hero {
    background: linear-gradient(rgba(0, 86, 179, 0.8), rgba(0, 86, 179, 0.8));
    /* height: 40vh; */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding-top: var(--header-height);
    padding: 6rem 0;
    text-align: center;
}

.platform-section {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 5rem;
}

.platform-section:nth-child(even) {
    flex-direction: row-reverse;
}

.platform-img {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.platform-text {
    flex: 1;
}

@media (max-width: 768px) {
    .platform-hero {
        /* height: 30vh; */
    }

    .platform-section {
        flex-direction: column !important;
        gap: 2rem;
        text-align: center;
    }

    .platform-text ul {
        text-align: left;
        display: inline-block;
    }
}

/* --- Contact Page Styles --- */
.contact-hero {
    background: linear-gradient(rgba(0, 168, 232, 0.8), rgba(0, 168, 232, 0.8));
    height: 30vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding-top: var(--header-height);
    text-align: center;
}

.team-leader {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.leader-card {
    max-width: 300px;
    width: 100%;
}