/* Import Modern Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

/* COLOR PALETTE VARIABLES */
:root {
    --primary: #4f46e5;      /* Indigo */
    --secondary: #9333ea;    /* Purple */
    --accent: #f59e0b;       /* Amber */
    --dark: #0f172a;         /* Deep Navy */
    --light: #f8fafc;        /* Cool White */
    --text-main: #1e293b;    /* Dark Slate */
    --text-muted: #64748b;   /* Gray Slate */
    --white: #ffffff;
    --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
}

/* GLOBAL RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif; /* Enforce Poppins globally */
}

img, iframe {
    max-width: 100%;
    height: auto;
}

body {
    background: var(--white);
    color: var(--text-main);
}

/* HEADER */
.header {
    background: var(--dark);
    padding: 25px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu a {
    margin-left: 20px;
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a:hover {
    color: var(--secondary);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--secondary);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* HAMBURGER MENU */
.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 5px;
    transition: all 0.3s ease;
}

/* HERO */
.hero {
    padding: 100px 20px;
    background: var(--dark);
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(79, 70, 229, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(147, 51, 234, 0.15) 0%, transparent 40%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
    z-index: 1;
}

.hero-text {
    flex: 1;
    min-width: 300px;
    animation: slideInLeft 0.8s ease-out;
}

.hero-text h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
    font-weight: 800;
    color: #fff;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtext {
    font-size: 1.25rem;
    margin-bottom: 35px;
    color: #b0b0b0;
    font-weight: 500;
}

.btn-hero {
    padding: 15px 40px;
    border: none;
    background: var(--gradient);
    color: white;
    cursor: pointer;
    font-size: 1.15rem;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.6);
}

.hero-video {
    flex: 1;
    min-width: 300px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
    aspect-ratio: 16 / 9;
    animation: slideInRight 0.8s ease-out;
}

.hero-video iframe {
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .header {
        padding: 15px 20px;
    }
    .hamburger {
        display: block;
        z-index: 2000;
        position: relative;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -300px;
        left: auto;
        background: linear-gradient(180deg, #000000 0%, #1a1a1a 100%);
        width: 250px;
        height: auto;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 80px 25px 30px;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1500;
        box-shadow: -5px 5px 15px rgba(0,0,0,0.5);
        display: flex;
        border-bottom-left-radius: 20px;
    }
    .nav-menu.active {
        right: 0;
    }
    .nav-menu a {
        margin: 10px 0;
        margin-left: 0;
        display: block;
        width: 100%;
        border-bottom: 1px solid #333;
        padding-bottom: 10px;
    }
    .nav-menu a:last-child {
        border-bottom: none;
    }
    /* Hamburger Animation */
    .hamburger.toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    .hamburger.toggle .line2 {
        opacity: 0;
    }
    .hamburger.toggle .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    .hero-text {
        margin-bottom: 30px;
    }
    .hero-text, .hero-video {
        min-width: 100%;
    }
}

/* SERVICES PREVIEW */
.services-preview {
    padding: 40px 20px;
    text-align: center;
}

/* Expertise Section Specifics */
.expertise-section {
    padding: 80px 20px;
    background: linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)), url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?q=80&w=2072&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.expertise-section .section-header h3 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--text-main);
    font-weight: 800;
}

.expertise-section .section-header p {
    margin-bottom: 50px;
    font-size: 1.2rem;
    color: #555;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.card {
    background: white;
    padding: 0;
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    border: none;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.15);
}

/* Stagger Animation for Cards */
.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }
.card:nth-child(4) { animation-delay: 0.4s; }
.card:nth-child(5) { animation-delay: 0.5s; }

.card-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    margin-bottom: 0;
    transition: transform 0.6s ease;
}

.card:hover img {
    transform: scale(1.1);
}

.card-content {
    padding: 25px;
    text-align: left;
}

.card h4 {
    color: var(--text-main);
    margin-bottom: 12px;
    font-size: 1.35rem;
    font-weight: 700;
}

.card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* SERVICES LIST */
.services-list {
    padding: 40px 20px;
}

.service-item {
    background: #fff;
    margin: 15px auto;
    padding: 20px;
    border-left: 4px solid var(--secondary);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* ABOUT & CONTACT */
.about-section, .contact-form {
    padding: 40px 20px;
}

/* CONTACT FORM */
.contact-form form {
    max-width: 400px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    border: 1px solid #aaa;
}

.contact-form button {
    padding: 10px;
    background: var(--gradient);
    color: white;
    font-weight: bold;
    cursor: pointer;
    border: none;
    border-radius: 4px;
}

/* PRICING */
.pricing-section {
    padding: 60px 20px;
    background: #fff;
    text-align: center;
}

.pricing-section h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--text-main);
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.pricing-card {
    background: white;
    padding: 30px;
    width: 100%;
    max-width: 350px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    border: 1px solid #eee;
    border-top: 5px solid var(--secondary);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(147, 51, 234, 0.15);
}

.pricing-card:nth-child(1) { animation-delay: 0.2s; }
.pricing-card:nth-child(2) { animation-delay: 0.4s; }
.pricing-card:nth-child(3) { animation-delay: 0.6s; }

.pricing-card h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-main);
}

.pricing-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 25px;
    padding: 0 10px;
}

.pricing-card ul li {
    margin-bottom: 10px;
    color: var(--text-muted);
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

/* Pricing Categories */
.pricing-category-title {
    font-size: 1.5rem;
    color: var(--text-main);
    margin: 40px 0 20px;
    text-align: center;
    border-bottom: 2px solid var(--secondary);
    display: inline-block;
    padding-bottom: 5px;
}

/* New Pricing Elements */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 20px;
    justify-items: center;
}

.pricing-card .price {
    display: block;
    font-size: 2rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 20px;
}

.pricing-card .price span {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: normal;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    text-align: left;
}

.features-list li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    color: var(--text-muted);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.features-list li::before {
    content: "✓";
    color: var(--primary);
    font-weight: bold;
    margin-right: 10px;
}

.pricing-btn {
    display: inline-block;
    width: 100%;
    padding: 12px 0;
    background: var(--text-main);
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s;
    box-sizing: border-box;
    text-align: center;
}

.pricing-btn:hover {
    background: var(--primary);
}

@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* FOOTER */
 footer {
    background: var(--dark);
    color: var(--light);
    padding: 80px 20px 0;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
 }
 
 footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
 }
 
 .footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
 }
 
 .footer-col h3 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 10px;
 }
 
 .footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--gradient);
 }
 
 .footer-col p {
    color: #cbd5e1;
    line-height: 1.7;
 }
 
 .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    display: block;
    margin-bottom: 20px;
 }
 
 .social-icons {
    margin-top: 25px;
    display: flex;
    gap: 15px;
 }
 
 .social-icons a {
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
 }
 
 .social-icons a svg {
    width: 24px;
    height: 24px;
 }

 .social-icons a:hover {
    transform: translateY(-5px);
    opacity: 0.9;
 }

 .social-icons .youtube { background: #FF0000; }
 .social-icons .linkedin { background: #0A66C2; }
 .social-icons .instagram { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%); }
 .social-icons .whatsapp { background: #25D366; }
 
 .footer-col ul {
    list-style: none;
 }
 
 .footer-col ul li a {
    color: #cbd5e1;
    text-decoration: none;
    display: block;
    padding: 8px 0;
    transition: all 0.3s ease;
 }
 
 .footer-col ul li a:hover {
    color: var(--primary);
    padding-left: 10px;
 }
 
 .footer-bottom {
    text-align: center;
    margin-top: 60px;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
 }

 .footer-col .newsletter-form {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-col .newsletter-form input {
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: var(--white);
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
}

.footer-col .newsletter-form input::placeholder {
    color: #94a3b8;
}

.footer-col .newsletter-form input:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
}

.footer-col .newsletter-form button {
    padding: 12px;
    border: none;
    background: var(--gradient);
    color: white;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-col .newsletter-form button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* BOOKING SECTION */
.booking-section {
    padding: 60px 20px;
    background: #fff;
    text-align: center;
}

.booking-section h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--text-main);
}

.booking-section p {
    margin-bottom: 30px;
    color: var(--text-muted);
}

.booking-form {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
}

.booking-form label {
    font-weight: bold;
    color: var(--text-main);
    font-size: 0.9rem;
}

.booking-form input,
.booking-form select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.booking-form button {
    padding: 12px;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}

.booking-form button:hover {
    background: linear-gradient(45deg, var(--secondary), var(--primary));
    box-shadow: 0 5px 15px rgba(79, 70, 229, 0.3);
}

/* Service Box Animation (About Page) */
.service-box {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}
.service-box:nth-child(1) { animation-delay: 0.1s; }
.service-box:nth-child(2) { animation-delay: 0.2s; }
.service-box:nth-child(3) { animation-delay: 0.3s; }
.service-box:nth-child(4) { animation-delay: 0.4s; }
.service-box:nth-child(5) { animation-delay: 0.5s; }

/* Contact Page Animations */
.contact-info, .contact-form-section {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.2s;
}

/* KEYFRAME ANIMATIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* TEAM SECTION */
.team-section {
    padding: 80px 20px;
    background-color: var(--light); /* Light background for contrast */
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.team-header {
    margin-bottom: 60px;
}

.team-header h3 {
    font-size: 2.5rem;
    color: var(--text-main);
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.accent-line {
    width: 60px;
    height: 4px;
    background: var(--gradient); /* Use gradient instead of orange */
    margin: 0 auto;
    border-radius: 2px;
}

.team-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.team-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px 25px;
    width: 270px;
    text-align: center;
    border: 1px solid #f5f5f5;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: all 0.4s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: transparent;
}

.member-img {
    width: 140px;
    height: 140px;
    margin: 0 auto 20px;
    border-radius: 30px; /* Rounded corners for photo */
    overflow: hidden;
}

.member-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%); /* B&W by default */
    transition: filter 0.4s ease, transform 0.4s ease;
}

.team-card:hover .member-img img {
    filter: grayscale(0%); /* Color on hover */
    transform: scale(1.1);
}

.team-card h4 {
    font-size: 1.2rem;
    color: var(--text-main);
    margin-bottom: 8px;
    font-weight: 700;
}

.team-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    margin: 0;
}

/* Mobile Horizontal Scroll */
@media (max-width: 768px) {
    .team-grid {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 30px;
        padding-left: 20px;
        padding-right: 20px;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none; /* Hide scrollbar Firefox */
    }
    .team-grid::-webkit-scrollbar {
        display: none; /* Hide scrollbar Chrome/Safari */
    }
    .team-card {
        flex: 0 0 260px;
        scroll-snap-align: center;
        margin-right: 15px;
    }
}

/* SCROLL ANIMATIONS */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ABOUT PAGE STYLES */
.about-hero {
    background: var(--dark);
    position: relative;
    overflow: hidden;
    color: white;
    padding: 120px 20px;
    text-align: center;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at center, rgba(79, 70, 229, 0.2) 0%, transparent 70%);
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
    100% { opacity: 0.5; transform: scale(1); }
}

.about-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
}

.about-split {
    display: flex;
    align-items: center;
    gap: 50px;
    margin: 80px 0;
}

.about-split img {
    flex: 1;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    max-width: 500px;
    width: 100%;
    transition: transform 0.3s ease;
}

.about-split img:hover {
    transform: scale(1.02);
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-main);
    position: relative;
    display: inline-block;
}

.about-text h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--gradient);
    margin-top: 10px;
    border-radius: 2px;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Stats Redesign */
.stats-wrapper {
    background: var(--dark);
    color: white;
    padding: 80px 20px;
    border-radius: 30px;
    margin: 80px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.3);
    background-image: linear-gradient(135deg, var(--dark) 0%, #1e1b4b 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.stat-box {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    color: #cbd5e1;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mission Vision Cards */
.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 80px 0;
}

.mv-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #f1f5f9;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.1);
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 4px; height: 100%;
    background: var(--gradient);
}

.mv-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-main);
    font-weight: 700;
}

.mv-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid #f1f5f9;
    position: relative;
    overflow: hidden;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(147, 51, 234, 0.15);
}

.value-card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
    transition: transform 0.3s;
}

.value-card:hover .icon {
    transform: scale(1.2) rotate(10deg);
}

.value-card h3 {
    margin-bottom: 15px;
    color: var(--text-main);
    font-size: 1.25rem;
    font-weight: 700;
}

.value-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* CTA Box */
.cta-box {
    background: var(--dark);
    background-image: linear-gradient(135deg, var(--dark) 0%, #1e1b4b 100%);
    color: white;
    text-align: center;
    padding: 60px 30px;
    border-radius: 20px;
    margin-top: 60px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.cta-box h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta-box a {
    display: inline-block;
    margin-top: 25px;
    padding: 15px 35px;
    background: var(--gradient);
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 15px rgba(147, 51, 234, 0.4);
}

.cta-box a:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(147, 51, 234, 0.6);
}

@media (max-width: 900px) {
    .about-split {
        flex-direction: column;
        text-align: center;
    }
    .about-text h2::after {
        margin: 10px auto;
    }
    .about-split img {
        margin-top: 30px;
    }
}

/* CONTACT PAGE STYLES */
.contact-hero {
    background: var(--dark);
    padding: 100px 20px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(45deg, rgba(79, 70, 229, 0.2), rgba(147, 51, 234, 0.2));
    animation: hueRotate 10s infinite linear;
}

@keyframes hueRotate {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.contact-hero p {
    font-size: 1.2rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-card:hover {
    transform: translateY(-5px) translateX(5px);
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.1);
    border-color: var(--primary);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    background: var(--gradient);
    color: white;
    transform: rotate(15deg);
}

.contact-details h4 {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 5px;
}

.contact-details p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

.contact-form-container {
    background: #fff;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 5px;
    background: var(--gradient);
}

.contact-form-container h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--text-main);
}

.contact-form-container p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

/* Contact Form Floating Labels & Button */
.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #f1f5f9;
    border-radius: 12px;
    background: #f8fafc;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    color: var(--text-main);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

.form-group label {
    position: absolute;
    left: 20px;
    top: 15px;
    color: var(--text-muted);
    pointer-events: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    background: transparent;
}

/* Floating Label Logic */
.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
    top: -10px;
    left: 15px;
    font-size: 0.85rem;
    background: #fff;
    padding: 0 8px;
    color: var(--primary);
    font-weight: 600;
    border-radius: 4px;
}

.send-btn {
    width: 100%;
    padding: 16px;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.send-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(79, 70, 229, 0.4);
}

.send-btn:active {
    transform: translateY(-1px);
}

.whatsapp-btn {
    width: 100%;
    padding: 16px;
    background: #25D366;
    color: white;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-form-container {
        padding: 30px;
    }
}

/* HOME PAGE ENHANCEMENTS */

/* Animated Background Shapes */
.animated-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.5;
    animation: floatAnimation 10s infinite alternate ease-in-out;
}

.shape-1 {
    top: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: rgba(79, 70, 229, 0.3);
}

.shape-2 {
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(147, 51, 234, 0.3);
    animation-delay: -5s;
}

@keyframes floatAnimation {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(50px, 50px) rotate(10deg); }
}

/* Generic Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h3 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-main);
    font-weight: 800;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features-section {
    padding: 80px 20px;
    background: #fff;
}

.feature-item {
    text-align: center;
    padding: 40px 20px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.15);
    border-color: var(--primary);
}

.feature-icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    transition: all 0.4s ease;
}

.feature-item:hover .feature-icon-box {
    background: var(--gradient);
    color: white;
    transform: rotateY(180deg);
}

.feature-item h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-main);
}

.feature-item p {
    color: var(--text-muted);
    line-height: 1.6;
}
