/* Base Styles */
:root {
    --primary-color: #5F259F;      /* Royal Purple */
    --secondary-color: #FFFFFF;
    --accent-color: #FFB800;        /* Golden Yellow */
    --text-dark: #333333;
    --text-light: #666666;          /* Soft Slate */
    --text-white: #FFFFFF;
    --bg-light: #F5F5F5;            /* Light Neutral */
    --bg-dark: #5F259F;              /* Royal Purple */
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-light);        /* Soft Slate for body text */
    background-color: var(--secondary-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary-color);      /* Royal Purple for headlines */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Sections Scrolling Top Margin */
#about-description, #services, #numbers, #contact {
    scroll-margin-top: 80px;
}

/* Universal Slide-in Animations */
.slide-left, .slide-right {
    opacity: 0;
    transition: all 1s ease;
    will-change: transform, opacity;
    position: relative;
}

.slide-left {
    transform: translateX(-50px);
}

.slide-right {
    transform: translateX(50px);
}

.slide-left.show,
.slide-right.show {
    opacity: 1;
    transform: translateX(0);
}

/* Slide Up Animation */
.slide-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
    will-change: transform, opacity;
}

.slide-up.show {
    opacity: 1;
    transform: translateY(0);
}

/* Header Styling */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 30px;
    background: var(--primary-color);  /* Royal Purple background */
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    color: var(--text-white);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
    margin-right: 10px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--accent-color);  /* Golden Yellow underline */
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--accent-color);        /* Golden Yellow on hover */
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    color: var(--text-white);
    cursor: pointer;
}

/* ===============================
   Hero Section
================================= */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 30px 50px;
    overflow: hidden;
}

/* Create a separate background layer for animation */
/* Animated Background Layer */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 110%;
    height: 110%;
    background:
        linear-gradient(rgba(95, 37, 159, 0.35), rgba(95, 37, 159, 0.45)),
        url('../images/11.jpg') no-repeat center center;
    background-size: cover;
    animation: heroTechMotion 25s ease-in-out infinite alternate;
    z-index: 0;
    transform-origin: center;
}

/* Light Sweep Effect */
.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        120deg,
        transparent 40%,
        rgba(255,255,255,0.08) 50%,
        transparent 60%
    );
    animation: lightSweep 12s linear infinite;
    z-index: 1;
}

/* Main Motion Animation */
@keyframes heroTechMotion {
    0% {
        transform: scale(1) translate(0px,0px) rotate(0deg);
    }
    50% {
        transform: scale(1.08) translate(-20px,-10px) rotate(0.5deg);
    }
    100% {
        transform: scale(1.12) translate(20px,10px) rotate(-0.5deg);
    }
}

/* Moving Light Animation */
@keyframes lightSweep {
    0% {
        transform: translateX(-100%) rotate(25deg);
    }
    100% {
        transform: translateX(100%) rotate(25deg);
    }
}

/* Hero Content Container */
.hero-content {
    position: relative;
    max-width: 850px;
    margin: 0 auto;
    z-index: 2;
}

/* Hero Heading */
.hero h1 {
    font-size: 4rem;
    color: var(--text-white);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 5px 20px rgba(95, 37, 159, 0.4); /* Royal Purple shadow */
}

/* Hero Paragraph */
.hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    font-weight: 300;
}

/* Buttons Container */
.button-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center; /* Center buttons */
}

/* Base Button Styling */
.cta-button,
.services-button {
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

/* Primary Button - Purple with White Text */
.cta-button {
    background: var(--primary-color);  /* Royal Purple */
    color: var(--text-white);          /* White text */
    border: 2px solid var(--primary-color);
}

.cta-button:hover {
    background: var(--accent-color);    /* Golden Yellow */
    color: var(--primary-color);        /* Royal Purple text */
    border-color: var(--accent-color);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(255, 184, 0, 0.3); /* Golden Yellow shadow */
}

/* Secondary Button */
.services-button {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--accent-color);  /* Golden Yellow border */
}

.services-button:hover {
    background: var(--accent-color);        /* Golden Yellow */
    color: var(--primary-color);            /* Royal Purple text */
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(255, 184, 0, 0.3);
}

/* ===============================
   Responsive Design
================================= */

@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 20px 60px;
        background-attachment: scroll; /* Better performance on mobile */
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .hero p {
        font-size: 1.05rem;
    }

    .cta-button,
    .services-button {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 0.95rem;
    }
}

/* About Section */
.about-section {
    padding: 100px 20px;
    background: var(--bg-light);        /* Light Neutral #F5F5F5 */
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);        /* Royal Purple #5F259F */
    position: relative;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-color);     /* Golden Yellow #FFB800 */
    border-radius: 2px;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(95, 37, 159, 0.15);  /* Royal Purple tinted shadow */
    transition: var(--transition);
}

.about-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(95, 37, 159, 0.25);  /* Stronger Royal Purple on hover */
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-light);            /* Soft Slate #666666 for body text */
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-text strong {
    color: var(--primary-color);         /* Royal Purple #5F259F for emphasis */
    font-weight: 600;
}

.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);     /* Royal Purple background */
    color: var(--text-white);             /* White text */
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 20px;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background: var(--accent-color);      /* Golden Yellow background on hover */
    color: var(--primary-color);          /* Royal Purple text on hover */
    border-color: var(--accent-color);    /* Golden Yellow border */
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 184, 0, 0.3);  /* Golden Yellow shadow */
}

/* Optional: Add a subtle accent element */
.about-highlight {
    color: var(--accent-color);           /* Golden Yellow for highlights */
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-section {
        padding: 70px 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-content {
        gap: 40px;
    }
    
    .about-text p {
        font-size: 1rem;
    }
}



/* ============================================
   SIMPLE MISSION SECTION - Italic Focus
   ============================================ */

.mv-mission-simple-block {
    position: relative;
    width: 100%;
    padding: 80px 0;
    background-image: url('../images/9.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Parallax effect */
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

/* Royal Purple overlay with gradient for better text readability */
.mv-mission-simple-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(95, 37, 159, 0.4) 0%,      /* Royal Purple - much lighter */
        rgba(95, 37, 159, 0.25) 50%,
        rgba(95, 37, 159, 0.4) 100%);
    z-index: 1;
}

.mv-mission-simple-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    z-index: 2;
}

.mv-mission-simple-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.mv-mission-simple-content.slide-up.show {
    opacity: 1;
    transform: translateY(0);
}

.mv-mission-simple-text {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 2.2rem;
    font-style: italic;
    font-weight: 400;
    line-height: 1.4;
    color: #FFFFFF;
    text-shadow: 0 4px 20px rgba(95, 37, 159, 0.5);  /* Royal Purple shadow */
    margin: 0;
    padding: 30px 50px;
    position: relative;
    letter-spacing: -0.02em;
}

/* Decorative quotation marks - Golden Yellow */
.mv-mission-simple-text::before {
    content: '"';
    position: absolute;
    top: -15px;
    left: 20px;
    font-family: 'Georgia', serif;
    font-size: 6rem;
    font-style: italic;
    color: rgba(255, 184, 0, 0.25);  /* Golden Yellow with opacity */
    line-height: 1;
    pointer-events: none;
    transition: all 0.3s ease;
}

.mv-mission-simple-text::after {
    content: '"';
    position: absolute;
    bottom: -45px;
    right: 20px;
    font-family: 'Georgia', serif;
    font-size: 6rem;
    font-style: italic;
    color: rgba(255, 184, 0, 0.25);  /* Golden Yellow with opacity */
    line-height: 1;
    pointer-events: none;
    transition: all 0.3s ease;
}

/* Golden accent line - replaced the border animation */
.mv-mission-simple-content::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--accent-color);  /* Golden Yellow */
    border-radius: 2px;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.mv-mission-simple-content:hover::after {
    width: 150px;
    opacity: 1;
}

.mv-mission-simple-content:hover .mv-mission-simple-text::before,
.mv-mission-simple-content:hover .mv-mission-simple-text::after {
    color: rgba(255, 184, 0, 0.5);  /* Brighter Golden Yellow on hover */
    transform: scale(1.1);
}

/* Optional: Add a subtle border animation with Golden Yellow */
@keyframes borderGlow {
    0% {
        box-shadow: 0 0 30px rgba(255, 184, 0, 0.1);  /* Golden Yellow */
    }
    50% {
        box-shadow: 0 0 50px rgba(255, 184, 0, 0.2);  /* Golden Yellow */
    }
    100% {
        box-shadow: 0 0 30px rgba(255, 184, 0, 0.1);  /* Golden Yellow */
    }
}

.mv-mission-simple-content {
    animation: borderGlow 4s ease-in-out infinite;
    position: relative;  /* Added for pseudo-element positioning */
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .mv-mission-simple-block {
        padding: 70px 0;
    }
    
    .mv-mission-simple-text {
        font-size: 2rem;
        padding: 25px 40px;
    }
    
    .mv-mission-simple-text::before {
        font-size: 5rem;
        top: -10px;
    }
    
    .mv-mission-simple-text::after {
        font-size: 5rem;
        bottom: -35px;
    }
}

@media screen and (max-width: 992px) {
    .mv-mission-simple-block {
        padding: 60px 0;
    }
    
    .mv-mission-simple-text {
        font-size: 1.8rem;
        padding: 25px 35px;
    }
    
    .mv-mission-simple-text::before {
        font-size: 4.5rem;
        top: -10px;
        left: 10px;
    }
    
    .mv-mission-simple-text::after {
        font-size: 4.5rem;
        bottom: -30px;
        right: 10px;
    }
}

@media screen and (max-width: 768px) {
    .mv-mission-simple-block {
        padding: 50px 0;
        background-attachment: scroll;
    }
    
    .mv-mission-simple-text {
        font-size: 1.5rem;
        padding: 20px 25px;
    }
    
    .mv-mission-simple-text::before {
        font-size: 3.5rem;
        top: -8px;
        left: 5px;
    }
    
    .mv-mission-simple-text::after {
        font-size: 3.5rem;
        bottom: -25px;
        right: 5px;
    }
    
    .mv-mission-simple-content::after {
        width: 80px;
        bottom: -15px;
    }
    
    .mv-mission-simple-content:hover::after {
        width: 120px;
    }
}

@media screen and (max-width: 480px) {
    .mv-mission-simple-block {
        padding: 40px 0;
    }
    
    .mv-mission-simple-text {
        font-size: 1.3rem;
        padding: 15px 20px;
        line-height: 1.5;
    }
    
    .mv-mission-simple-text::before {
        font-size: 2.5rem;
        top: -5px;
        left: 0;
    }
    
    .mv-mission-simple-text::after {
        font-size: 2.5rem;
        bottom: -15px;
        right: 0;
    }
}




















/* Services Section */
.services-section {
    padding: 100px 20px;
    background: var(--bg-light);           /* Light Neutral #F5F5F5 */
    font-family: 'Inter', sans-serif;      /* Clean sans-serif for body */
}

.section-title {
    font-family: 'Poppins', sans-serif;    /* Poppins for headings */
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);            /* Royal Purple */
    font-weight: 700;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    text-align: center;
    color: var(--text-light);               /* Soft Slate */
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: var(--secondary-color);      /* White */
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(95, 37, 159, 0.08);  /* Royal Purple tinted shadow */
    transition: var(--transition);
    border: 1px solid rgba(95, 37, 159, 0.05);        /* Subtle Royal Purple border */
    font-family: 'Inter', sans-serif;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(95, 37, 159, 0.15);   /* Stronger Royal Purple shadow */
    border-color: var(--accent-color);                  /* Golden Yellow border on hover */
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);        /* Royal Purple background */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--accent-color);          /* Golden Yellow on card hover */
    transform: scale(1.05);
}

.service-icon i {
    font-size: 2rem;
    color: var(--accent-color);               /* Golden Yellow icon */
    transition: var(--transition);
}

.service-card:hover .service-icon i {
    color: var(--primary-color);               /* Royal Purple icon on hover */
}

.service-card h3 {
    font-family: 'Poppins', sans-serif;        /* Poppins for card headings */
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);               /* Royal Purple */
    font-weight: 600;
    letter-spacing: -0.01em;
}

.service-card p {
    font-family: 'Inter', sans-serif;
    color: var(--text-light);                  /* Soft Slate for body text */
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 20px;
}

/* Optional: Add a "Learn More" link */
.service-link {
    font-family: 'Inter', sans-serif;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.service-link i {
    font-size: 0.9rem;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--accent-color);                /* Golden Yellow on hover */
}

.service-link:hover i {
    transform: translateX(5px);
    color: var(--accent-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .services-section {
        padding: 70px 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-card {
        padding: 30px 25px;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .service-icon {
        width: 70px;
        height: 70px;
    }
    
    .service-icon i {
        font-size: 1.8rem;
    }
}





/* Slider Section */
.tasvanna-slider-section {
  width: 100%;
  overflow: hidden;
  background: #000;
  position: relative;
}

/* Image Slider Styling */
.about-photo-slider {
    position: relative;
    width: 100%; /* Full viewport width */
    height: 600px; /* Increased height */
    overflow: hidden;
    border-radius: 0; /* Optional: full-width feel */
    margin: 0 auto;
    background-color: #000000;
}

.about-photo-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.about-photo-slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Fill the container and crop if needed */
    transition: transform 0.3s ease;
    border-radius: 0;
}

/* Hover effect for the images */
.about-photo-slider .slide img:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .about-photo-slider {
        height: 400px; /* Adjusted height for mobile */
    }
}








/* ============================================
   WHY CHOOSE TASVANNA SECTION - UPDATED FOR BETTER VISIBILITY
   ============================================ */

.why-tasvanna-section {
    padding: 100px 20px;
    background: var(--bg-light);              /* Light Neutral #F5F5F5 */
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

/* Background decorative elements - updated with Royal Purple */
.why-tasvanna-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(95, 37, 159, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.why-tasvanna-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(95, 37, 159, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);                 /* Soft Slate */
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    font-family: 'Inter', sans-serif;
}

.why-tasvanna-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.why-tasvanna-card {
    background: var(--secondary-color);        /* White */
    padding: 40px 35px;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(95, 37, 159, 0.05);  /* Royal Purple tint */
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    border: 1px solid rgba(95, 37, 159, 0.03);        /* Subtle Royal Purple border */
    overflow: hidden;
}

.why-tasvanna-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(95, 37, 159, 0.15);  /* Stronger Royal Purple shadow */
    border-color: var(--accent-color);                 /* Golden Yellow border */
}

/* Card shine effect on hover - updated with Royal Purple */
.why-tasvanna-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(95, 37, 159, 0.05), transparent);
    transition: left 0.7s ease;
}

.why-tasvanna-card:hover::before {
    left: 100%;
}

/* Icon styling */
.why-tasvanna-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 30px;
}

.why-tasvanna-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);         /* Royal Purple */
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.why-tasvanna-card:hover .why-tasvanna-icon {
    background: var(--accent-color);           /* Golden Yellow on hover */
    border-radius: 50%;
    transform: rotate(5deg);
    box-shadow: 0 10px 20px rgba(255, 184, 0, 0.3);  /* Golden Yellow shadow */
}

.why-tasvanna-icon i {
    font-size: 2.5rem;
    color: var(--text-white);                  /* White icon */
    transition: all 0.3s ease;
}

.why-tasvanna-card:hover .why-tasvanna-icon i {
    color: var(--primary-color);                /* Royal Purple icon on hover */
    transform: scale(1.1);
}

.why-tasvanna-icon-bg {
    position: absolute;
    top: -5px;
    left: -5px;
    width: 90px;
    height: 90px;
    background: rgba(95, 37, 159, 0.1);        /* Royal Purple tint */
    border-radius: 25px;
    z-index: 1;
    transition: all 0.3s ease;
}

.why-tasvanna-card:hover .why-tasvanna-icon-bg {
    top: -8px;
    left: -8px;
    width: 96px;
    height: 96px;
    background: rgba(255, 184, 0, 0.15);        /* Golden Yellow tint on hover */
    border-radius: 50%;
}

/* Card content */
.why-tasvanna-card h3 {
    font-family: 'Poppins', sans-serif;         /* Poppins for headings */
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);                 /* Royal Purple */
    line-height: 1.3;
}

.why-tasvanna-card h3 span {
    color: var(--primary-color);                 /* Royal Purple */
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.why-tasvanna-card h3 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--accent-color);             /* Golden Yellow underline */
    opacity: 0.3;
    z-index: -1;
}

.why-tasvanna-card p {
    font-family: 'Inter', sans-serif;
    color: var(--text-light);                    /* Soft Slate */
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.why-tasvanna-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.why-tasvanna-features span {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-dark);                     /* Dark gray for emphasis */
    font-size: 0.95rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.why-tasvanna-features i {
    color: var(--text-white);                     /* White icon */
    font-size: 1rem;
    background: var(--primary-color);              /* Royal Purple background */
    padding: 4px;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(95, 37, 159, 0.2); /* Royal Purple shadow */
}

/* CTA Section */
.why-tasvanna-cta {
    margin-top: 80px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.why-tasvanna-cta-content {
    background: linear-gradient(135deg, var(--primary-color) 0%, #7A3BB3 100%); /* Royal Purple gradient */
    padding: 50px;
    border-radius: 50px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 30px 60px rgba(95, 37, 159, 0.3);  /* Royal Purple shadow */
    position: relative;
    overflow: hidden;
}

.why-tasvanna-cta-content h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    color: var(--text-white);
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.why-tasvanna-cta-content p {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.why-tasvanna-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--accent-color);              /* Golden Yellow */
    color: var(--primary-color);                   /* Royal Purple text */
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    border: 2px solid var(--accent-color);
    font-family: 'Poppins', sans-serif;
}

.why-tasvanna-button:hover {
    background: transparent;
    color: var(--text-white);
    border-color: var(--text-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 184, 0, 0.3); /* Golden Yellow shadow */
}

/* Responsive Design */
@media screen and (max-width: 992px) {
    .why-tasvanna-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .why-tasvanna-card h3 {
        font-size: 1.6rem;
    }
    
    .why-tasvanna-cta-content {
        padding: 40px 30px;
    }
    
    .why-tasvanna-cta-content h4 {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 768px) {
    .why-tasvanna-section {
        padding: 70px 20px;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .why-tasvanna-card {
        padding: 30px 25px;
    }
    
    .why-tasvanna-icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 25px;
    }
    
    .why-tasvanna-icon {
        width: 70px;
        height: 70px;
    }
    
    .why-tasvanna-icon i {
        font-size: 2rem;
    }
    
    .why-tasvanna-card h3 {
        font-size: 1.5rem;
    }
    
    .why-tasvanna-card p {
        font-size: 1rem;
    }
    
    .why-tasvanna-cta {
        margin-top: 50px;
    }
    
    .why-tasvanna-cta-content {
        padding: 35px 25px;
        border-radius: 30px;
    }
    
    .why-tasvanna-cta-content h4 {
        font-size: 1.5rem;
    }
    
    .why-tasvanna-cta-content p {
        font-size: 1.1rem;
    }
    
    .why-tasvanna-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .why-tasvanna-section {
        padding: 50px 15px;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .why-tasvanna-card {
        padding: 25px 20px;
    }
    
    .why-tasvanna-card h3 {
        font-size: 1.3rem;
    }
    
    .why-tasvanna-card p {
        font-size: 0.95rem;
    }
    
    .why-tasvanna-features span {
        font-size: 0.9rem;
    }
    
    .why-tasvanna-cta-content {
        padding: 30px 20px;
    }
    
    .why-tasvanna-cta-content h4 {
        font-size: 1.3rem;
    }
    
    .why-tasvanna-cta-content p {
        font-size: 1rem;
    }
}

/* Animation delays for cards */
.why-tasvanna-card:nth-child(1) { transition-delay: 0.1s; }
.why-tasvanna-card:nth-child(2) { transition-delay: 0.2s; }
.why-tasvanna-card:nth-child(3) { transition-delay: 0.3s; }
.why-tasvanna-card:nth-child(4) { transition-delay: 0.4s; }





/* Numbers Section */
.numbers-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #7A3BB3 100%); /* Royal Purple gradient */
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}


.numbers-section .section-title {
    color: var(--text-white);
    font-family: 'Poppins', sans-serif;
    position: relative;
    z-index: 2;
}

.numbers-section .section-title::after {
    background: var(--accent-color);  /* Golden Yellow underline */
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.number-card {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.number-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 184, 0, 0.15);  /* Golden Yellow tint on hover */
    border-color: var(--accent-color);     /* Golden Yellow border */
    box-shadow: 0 20px 40px rgba(255, 184, 0, 0.2);  /* Golden Yellow shadow */
}

.number-wrapper {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-color);            /* Golden Yellow numbers */
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
    text-shadow: 0 5px 15px rgba(255, 184, 0, 0.3);  /* Golden Yellow glow */
}

.count {
    display: inline-block;
}

.plus {
    font-size: 2.5rem;
    margin-left: 5px;
    color: var(--accent-color);            /* Golden Yellow plus sign */
}

.number-card p {
    color: var(--text-white);
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.95;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
}

/* Optional: Add individual icons or small accents */
.number-card::before {
    content: '●';
    position: absolute;
    top: 10px;
    right: 10px;
    color: var(--accent-color);
    opacity: 0.3;
    font-size: 0.8rem;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .numbers-section {
        padding: 80px 20px;
    }
    
    .number-wrapper {
        font-size: 3rem;
    }
    
    .plus {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .numbers-section {
        padding: 60px 20px;
    }
    
    .numbers-grid {
        gap: 25px;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .number-card {
        padding: 25px 15px;
    }
    
    .number-wrapper {
        font-size: 2.5rem;
    }
    
    .plus {
        font-size: 2rem;
    }
    
    .number-card p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .numbers-section {
        padding: 50px 15px;
    }
    
    .numbers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .number-card {
        padding: 30px 20px;
    }
    
    .number-wrapper {
        font-size: 3rem;
    }
    
    .plus {
        font-size: 2.3rem;
    }
    
    .number-card p {
        font-size: 1.1rem;
    }
}









/* Testimonials Section */
.testimonials-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 184, 0, 0.05) 0%, transparent 70%); /* Golden Yellow */
    border-radius: 50%;
    pointer-events: none;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(95, 37, 159, 0.03) 0%, transparent 70%); /* Royal Purple */
    border-radius: 50%;
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: var(--secondary-color);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 15px 30px rgba(95, 37, 159, 0.05); /* Royal Purple tint */
    transition: var(--transition);
    border: 1px solid rgba(95, 37, 159, 0.03); /* Subtle Royal Purple border */
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(95, 37, 159, 0.15); /* Royal Purple shadow */
    border-color: var(--accent-color); /* Golden Yellow border */
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-color); /* Golden Yellow accent line */
    opacity: 0;
    transition: var(--transition);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-content {
    position: relative;
    z-index: 2;
}

.quote-icon {
    font-size: 2rem;
    color: var(--accent-color); /* Golden Yellow */
    opacity: 0.2;
    margin-bottom: 15px;
    display: block;
}

.testimonial-card p {
    color: var(--text-light); /* Soft Slate */
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
    font-family: 'Inter', sans-serif;
}

.testimonial-rating {
    margin-bottom: 20px;
    color: var(--accent-color); /* Golden Yellow */
    font-size: 1rem;
    letter-spacing: 2px;
}

.testimonial-rating i {
    margin-right: 2px;
}

.testimonial-author h4 {
    color: var(--primary-color); /* Royal Purple */
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
}

.testimonial-author p {
    color: var(--text-light); /* Soft Slate */
    font-size: 0.9rem;
    font-style: normal;
    margin-bottom: 0;
    opacity: 0.8;
    font-family: 'Inter', sans-serif;
}

/* Animation delays for staggered effect */
.testimonials-grid .testimonial-card:nth-child(2) {
    transition-delay: 0.1s;
}

.testimonials-grid .testimonial-card:nth-child(3) {
    transition-delay: 0.2s;
}

.testimonials-grid .testimonial-card:nth-child(4) {
    transition-delay: 0.3s;
}

.testimonials-grid .testimonial-card:nth-child(5) {
    transition-delay: 0.4s;
}

.testimonials-grid .testimonial-card:nth-child(6) {
    transition-delay: 0.5s;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 30px 25px;
    }
    
    .quote-icon {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 480px) {
    .testimonials-section {
        padding: 60px 15px;
    }
    
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .testimonial-card p {
        font-size: 0.95rem;
    }
    
    .testimonial-author h4 {
        font-size: 1rem;
    }
}

/* Optional: Add a subtle animation for the quote icon */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
    100% {
        transform: translateY(0px);
    }
}

.testimonial-card:hover .quote-icon {
    animation: float 2s ease-in-out infinite;
    opacity: 0.5;
    color: var(--accent-color); /* Golden Yellow */
}





/* ============================================
   TASVANNA NEWSLETTER SECTION - UNIQUE
   ============================================ */

.tasvanna-newsletter-block {
    position: relative;
    width: 100%;
    padding: 80px 0;
    background-image: url('../images/10.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

/* Royal Purple overlay with gradient */
.tasvanna-newsletter-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(95, 37, 159, 0.85) 0%,      /* Royal Purple */
        rgba(95, 37, 159, 0.7) 50%,
        rgba(95, 37, 159, 0.85) 100%);
    z-index: 1;
}

/* Decorative pattern overlay with Golden Yellow */
.tasvanna-newsletter-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.05"><path d="M10 50 L30 30 L50 50 L70 30 L90 50" stroke="%23FFB800" fill="none" stroke-width="2"/><circle cx="20" cy="70" r="3" fill="%23FFB800"/><circle cx="40" cy="40" r="3" fill="%23FFB800"/><circle cx="60" cy="60" r="3" fill="%23FFB800"/><circle cx="80" cy="30" r="3" fill="%23FFB800"/></svg>') repeat;
    opacity: 0.1;
    z-index: 1;
    pointer-events: none;
}

.tasvanna-newsletter-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
    z-index: 2;
}

.tasvanna-newsletter-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 40px;
    padding: 50px;
    border: 1px solid rgba(255, 184, 0, 0.2);     /* Golden Yellow border */
    box-shadow: 0 30px 60px rgba(95, 37, 159, 0.3); /* Royal Purple shadow */
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.tasvanna-newsletter-content.slide-up.show {
    opacity: 1;
    transform: translateY(0);
}

.tasvanna-newsletter-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 15px;
    line-height: 1.3;
    text-shadow: 0 4px 20px rgba(95, 37, 159, 0.5); /* Royal Purple shadow */
}

.tasvanna-newsletter-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Inter', sans-serif;
}

/* Form styling */
.tasvanna-newsletter-form {
    max-width: 600px;
    margin: 0 auto 25px;
}

.tasvanna-newsletter-input-group {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.tasvanna-newsletter-input {
    flex: 1;
    min-width: 250px;
    padding: 16px 22px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 60px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(95, 37, 159, 0.1); /* Royal Purple shadow */
}

.tasvanna-newsletter-input:focus {
    outline: none;
    border-color: var(--accent-color);           /* Golden Yellow */
    background: #FFFFFF;
    box-shadow: 0 15px 30px rgba(255, 184, 0, 0.2); /* Golden Yellow shadow */
}

.tasvanna-newsletter-input::placeholder {
    color: #999;
    font-style: italic;
}

.tasvanna-newsletter-button {
    padding: 16px 30px;
    background: var(--accent-color);              /* Golden Yellow */
    color: var(--primary-color);                   /* Royal Purple text */
    border: none;
    border-radius: 60px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(255, 184, 0, 0.3); /* Golden Yellow shadow */
    border: 2px solid var(--accent-color);
    font-family: 'Poppins', sans-serif;
}

.tasvanna-newsletter-button:hover {
    background: transparent;
    color: var(--text-white);
    border-color: var(--text-white);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 184, 0, 0.4); /* Golden Yellow shadow */
}

.tasvanna-newsletter-button i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.tasvanna-newsletter-button:hover i {
    transform: translateX(5px);
}

/* Checkbox styling */
.tasvanna-newsletter-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
}

.tasvanna-newsletter-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--accent-color);            /* Golden Yellow */
}

.tasvanna-newsletter-checkbox label {
    cursor: pointer;
    transition: color 0.3s ease;
}

.tasvanna-newsletter-checkbox label:hover {
    color: var(--accent-color);                    /* Golden Yellow */
}

/* Benefits styling */
.tasvanna-newsletter-benefits {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.tasvanna-newsletter-benefit {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.tasvanna-newsletter-benefit i {
    color: var(--accent-color);                    /* Golden Yellow */
    font-size: 1.1rem;
}

/* Success message styling */
.tasvanna-newsletter-success {
    text-align: center;
    padding: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 184, 0, 0.3);      /* Golden Yellow border */
}

.tasvanna-newsletter-success i {
    font-size: 3.5rem;
    color: var(--accent-color);                    /* Golden Yellow */
    margin-bottom: 15px;
}

.tasvanna-newsletter-success h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    color: var(--text-white);
    margin-bottom: 10px;
}

.tasvanna-newsletter-success p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive Design */
@media screen and (max-width: 992px) {
    .tasvanna-newsletter-block {
        padding: 70px 0;
    }
    
    .tasvanna-newsletter-content {
        padding: 40px 35px;
    }
    
    .tasvanna-newsletter-title {
        font-size: 2rem;
    }
    
    .tasvanna-newsletter-text {
        font-size: 1rem;
    }
}

@media screen and (max-width: 768px) {
    .tasvanna-newsletter-block {
        padding: 60px 0;
        background-attachment: scroll;
    }
    
    .tasvanna-newsletter-content {
        padding: 35px 25px;
        border-radius: 30px;
    }
    
    .tasvanna-newsletter-title {
        font-size: 1.8rem;
    }
    
    .tasvanna-newsletter-text {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .tasvanna-newsletter-input-group {
        flex-direction: column;
        gap: 12px;
    }
    
    .tasvanna-newsletter-input {
        width: 100%;
        padding: 14px 18px;
    }
    
    .tasvanna-newsletter-button {
        width: 100%;
        justify-content: center;
        padding: 14px 22px;
    }
    
    .tasvanna-newsletter-checkbox {
        flex-direction: column;
        text-align: center;
        gap: 6px;
    }
    
    .tasvanna-newsletter-benefits {
        gap: 15px;
        flex-direction: column;
        align-items: center;
    }
}

@media screen and (max-width: 480px) {
    .tasvanna-newsletter-block {
        padding: 50px 0;
    }
    
    .tasvanna-newsletter-content {
        padding: 25px 15px;
    }
    
    .tasvanna-newsletter-title {
        font-size: 1.5rem;
    }
    
    .tasvanna-newsletter-text {
        font-size: 0.9rem;
    }
    
    .tasvanna-newsletter-benefit {
        font-size: 0.85rem;
    }
}

/* Loading state for button */
.tasvanna-newsletter-button.loading {
    position: relative;
    pointer-events: none;
    opacity: 0.8;
}

.tasvanna-newsletter-button.loading span {
    opacity: 0;
}

.tasvanna-newsletter-button.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-color);      /* Royal Purple */
    border-top-color: transparent;
    border-radius: 50%;
    animation: spinner 0.8s linear infinite;
}

@keyframes spinner {
    to { transform: rotate(360deg); }
}







/* ============================================
   MEET THE LEADERSHIP SECTION - UPDATED
   ============================================ */

.tasvanna-leadership-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #ffffff 0%, var(--bg-light) 100%); /* Light Neutral */
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

/* Background decorative elements - Royal Purple */
.tasvanna-leadership-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(95, 37, 159, 0.02) 0%, transparent 70%); /* Royal Purple */
    border-radius: 50%;
    z-index: 0;
}

.tasvanna-leadership-section::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(95, 37, 159, 0.02) 0%, transparent 70%); /* Royal Purple */
    border-radius: 50%;
    z-index: 0;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);        /* Royal Purple */
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-color);     /* Golden Yellow */
    border-radius: 2px;
}

.tasvanna-leadership-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);            /* Soft Slate */
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    position: relative;
    z-index: 2;
    font-family: 'Inter', sans-serif;
}

.tasvanna-leadership-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.tasvanna-leadership-card {
    background: var(--secondary-color);   /* White */
    border-radius: 30px;
    padding: 45px;
    box-shadow: 0 30px 60px rgba(95, 37, 159, 0.08); /* Royal Purple tint */
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(95, 37, 159, 0.03);       /* Subtle Royal Purple border */
    position: relative;
    overflow: hidden;
    width: 100%;
}

.tasvanna-leadership-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 40px 80px rgba(95, 37, 159, 0.15); /* Royal Purple shadow */
    border-color: var(--accent-color);                 /* Golden Yellow border */
}

/* Card accent line - Golden Yellow to Royal Purple gradient */
.tasvanna-leadership-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 0;
    background: linear-gradient(180deg, var(--accent-color) 0%, var(--primary-color) 100%);
    transition: height 0.6s ease;
    border-radius: 3px 0 0 3px;
}

.tasvanna-leadership-card:hover::before {
    height: 100%;
}

/* Card shine effect */
.tasvanna-leadership-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.tasvanna-leadership-card:hover::after {
    opacity: 1;
}

/* Header section */
.tasvanna-leadership-header {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.tasvanna-leadership-title-group {
    flex: 1;
}

.tasvanna-leadership-title-group h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);             /* Royal Purple */
    margin-bottom: 5px;
    line-height: 1.2;
}

.tasvanna-leadership-position {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: var(--accent-color);              /* Golden Yellow */
    font-weight: 600;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.tasvanna-leadership-location {
    font-size: 0.95rem;
    color: var(--text-light);                 /* Soft Slate */
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Inter', sans-serif;
}

.tasvanna-leadership-location i {
    color: var(--accent-color);               /* Golden Yellow */
    font-size: 0.9rem;
}

/* Quote styling */
.tasvanna-leadership-quote {
    background: rgba(95, 37, 159, 0.02);      /* Royal Purple tint */
    padding: 25px;
    border-radius: 20px;
    margin-bottom: 25px;
    position: relative;
    border-left: 4px solid var(--accent-color); /* Golden Yellow border */
}

.tasvanna-leadership-quote i {
    color: var(--accent-color);                /* Golden Yellow */
    font-size: 1.5rem;
    opacity: 0.5;
    margin-bottom: 10px;
    display: block;
}

.tasvanna-leadership-quote p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    font-style: italic;
    font-weight: 500;
}

/* Content styling */
.tasvanna-leadership-content {
    margin-bottom: 25px;
}

.tasvanna-leadership-content p {
    font-family: 'Inter', sans-serif;
    color: var(--text-light);                 /* Soft Slate */
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.tasvanna-leadership-content p:last-child {
    margin-bottom: 0;
}

/* Highlight section */
.tasvanna-leadership-highlight {
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.02) 0%, rgba(95, 37, 159, 0.02) 100%);
    padding: 20px;
    border-radius: 15px;
    margin-top: 20px;
    border: 1px dashed var(--accent-color);    /* Golden Yellow dashed border */
    opacity: 0.8;
}

.tasvanna-highlight-badge {
    display: inline-block;
    background: var(--accent-color);           /* Golden Yellow */
    color: var(--primary-color);                /* Royal Purple text */
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    font-family: 'Poppins', sans-serif;
}

.tasvanna-leadership-highlight p {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    font-size: 1rem;
    margin-bottom: 0;
    font-weight: 500;
}

/* Expertise tags */
.tasvanna-leadership-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 25px 0;
}

.tasvanna-leadership-expertise span {
    background: rgba(95, 37, 159, 0.05);       /* Royal Purple tint */
    color: var(--primary-color);                 /* Royal Purple text */
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    font-family: 'Inter', sans-serif;
}

.tasvanna-leadership-card:hover .tasvanna-leadership-expertise span {
    background: rgba(255, 184, 0, 0.1);         /* Golden Yellow tint on hover */
    border-color: var(--accent-color);           /* Golden Yellow border */
    color: var(--primary-color);
}

/* Icon line */
.tasvanna-leadership-icon-line {
    display: flex;
    gap: 20px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px solid rgba(95, 37, 159, 0.1); /* Royal Purple subtle border */
}

.tasvanna-leadership-icon-line i {
    font-size: 1.2rem;
    color: var(--primary-color);                  /* Royal Purple */
    opacity: 0.6;
    transition: all 0.3s ease;
}

.tasvanna-leadership-card:hover .tasvanna-leadership-icon-line i {
    opacity: 1;
    transform: translateY(-3px);
    color: var(--accent-color);                    /* Golden Yellow on hover */
}

.tasvanna-leadership-icon-line i:nth-child(1):hover,
.tasvanna-leadership-icon-line i:nth-child(2):hover,
.tasvanna-leadership-icon-line i:nth-child(3):hover {
    color: var(--accent-color);                    /* Golden Yellow on individual hover */
}

/* Responsive Design */
@media screen and (max-width: 992px) {
    .tasvanna-leadership-section {
        padding: 80px 20px;
    }
    
    .tasvanna-leadership-card {
        padding: 35px;
    }
    
    .tasvanna-leadership-title-group h3 {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .tasvanna-leadership-subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .tasvanna-leadership-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .tasvanna-leadership-title-group {
        text-align: center;
    }
    
    .tasvanna-leadership-location {
        justify-content: center;
    }
    
    .tasvanna-leadership-card {
        padding: 30px 25px;
    }
    
    .tasvanna-leadership-title-group h3 {
        font-size: 1.6rem;
    }
    
    .tasvanna-leadership-position {
        font-size: 1rem;
    }
    
    .tasvanna-leadership-quote p {
        font-size: 1rem;
    }
    
    .tasvanna-leadership-content p {
        font-size: 0.95rem;
    }
    
    .tasvanna-leadership-expertise {
        justify-content: center;
    }
    
    .tasvanna-leadership-icon-line {
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .tasvanna-leadership-section {
        padding: 60px 15px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .tasvanna-leadership-card {
        padding: 25px 20px;
    }
    
    .tasvanna-leadership-title-group h3 {
        font-size: 1.4rem;
    }
    
    .tasvanna-leadership-expertise span {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
}

/* Animation delays */
.tasvanna-leadership-card:nth-child(1) { transition-delay: 0.1s; }
.tasvanna-leadership-card:nth-child(2) { transition-delay: 0.2s; }
.tasvanna-leadership-card:nth-child(3) { transition-delay: 0.3s; }








/* Contact Section */
.contact-section {
    padding: 100px 20px;
    background: var(--bg-light);           /* Light Neutral #F5F5F5 */
    font-family: 'Inter', sans-serif;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);           /* Royal Purple */
    font-weight: 700;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-color);        /* Golden Yellow */
    border-radius: 2px;
}

.section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    text-align: center;
    color: var(--text-light);               /* Soft Slate */
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-top: 40px;
}

.contact-info {
    padding-right: 30px;
}

.contact-info h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    color: var(--primary-color);            /* Royal Purple */
    margin-bottom: 20px;
}

.contact-info > p {
    font-family: 'Inter', sans-serif;
    color: var(--text-light);               /* Soft Slate */
    margin-bottom: 40px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--accent-color);             /* Golden Yellow icon */
    background: var(--primary-color);        /* Royal Purple background */
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(95, 37, 159, 0.2); /* Royal Purple shadow */
}

.info-item:hover i {
    background: var(--accent-color);         /* Golden Yellow background on hover */
    color: var(--primary-color);             /* Royal Purple icon on hover */
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(255, 184, 0, 0.3); /* Golden Yellow shadow */
}

.info-item h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: var(--primary-color);            /* Royal Purple */
    margin-bottom: 5px;
    font-weight: 600;
}

.info-item p {
    font-family: 'Inter', sans-serif;
    color: var(--text-light);                /* Soft Slate */
    line-height: 1.6;
}

.contact-form {
    background: var(--secondary-color);      /* White */
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(95, 37, 159, 0.1); /* Royal Purple tint */
    border: 1px solid rgba(95, 37, 159, 0.05);      /* Subtle Royal Purple border */
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
    background: var(--secondary-color);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);              /* Golden Yellow border */
    box-shadow: 0 0 0 3px rgba(255, 184, 0, 0.1);   /* Golden Yellow glow */
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--primary-color);                /* Royal Purple */
    color: var(--text-white);
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
    border: 2px solid var(--primary-color);
}

.submit-btn:hover {
    background: var(--accent-color);                 /* Golden Yellow on hover */
    color: var(--primary-color);                      /* Royal Purple text */
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 184, 0, 0.3);  /* Golden Yellow shadow */
    border-color: var(--accent-color);
}

.submit-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .contact-section {
        padding: 80px 20px;
    }
    
    .contact-wrapper {
        gap: 40px;
    }
    
    .contact-info {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-info h3 {
        font-size: 1.8rem;
    }
    
    .contact-info > p {
        font-size: 1rem;
    }
    
    .contact-form {
        padding: 30px;
    }
    
    .info-item i {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 50px 15px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .contact-info h3 {
        font-size: 1.5rem;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .info-item {
        gap: 15px;
    }
    
    .info-item i {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .info-item h4 {
        font-size: 1.1rem;
    }
    
    .info-item p {
        font-size: 0.95rem;
    }
}




/* Footer */
footer {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 80px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

/* Add this new section for footer logo image */
.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo img {
    max-width: 150px;  /* Adjust this value as needed */
    height: auto;
    margin-bottom: 15px;
}

.footer-logo h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.footer-logo p {
    opacity: 0.8;
    line-height: 1.6;
}

/* Rest of your footer CSS remains the same */
.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-white);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 10px;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--accent-color);
    width: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    text-decoration: none;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Responsive adjustment for mobile */
@media screen and (max-width: 768px) {
    .footer-logo {
        align-items: center;
        text-align: center;
    }
    
    .footer-logo img {
        max-width: 120px; /* Slightly smaller on mobile */
    }
}

/* Chat Button */
.chat-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    cursor: pointer;
    z-index: 999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color);        /* Royal Purple #5F259F */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(95, 37, 159, 0.3); /* Royal Purple shadow */
    transition: var(--transition);
    animation: pulse 2s infinite;
    border: 2px solid var(--accent-color);   /* Golden Yellow border */
}

.chat-btn:hover {
    transform: scale(1.1) rotate(5deg);
    background: var(--accent-color);         /* Golden Yellow on hover */
    box-shadow: 0 8px 25px rgba(255, 184, 0, 0.5); /* Golden Yellow shadow */
}

.chat-icon-img {
    width: 35px;
    height: 35px;
    object-fit: contain;
    filter: brightness(0) invert(1);         /* Makes icon white on purple background */
    transition: var(--transition);
}

.chat-btn:hover .chat-icon-img {
    filter: brightness(0) saturate(100%) invert(27%) sepia(78%) saturate(2878%) hue-rotate(260deg) brightness(90%) contrast(90%); /* Royal Purple color on hover */
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(95, 37, 159, 0.7); /* Royal Purple pulse */
    }
    70% {
        box-shadow: 0 0 0 15px rgba(95, 37, 159, 0); /* Royal Purple fade */
    }
    100% {
        box-shadow: 0 0 0 0 rgba(95, 37, 159, 0);
    }
}

@keyframes ping {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    75% {
        transform: scale(1.5);
        opacity: 0.5;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media screen and (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--primary-color);
        padding: 20px;
        gap: 15px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 10px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .button-container {
        flex-direction: column;
    }
    
    .cta-button, .services-button {
        width: 100%;
    }
    
    .about-content {
        flex-direction: column;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .number-wrapper {
        font-size: 2.5rem;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .numbers-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .chat-btn {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .chat-icon-img {
        width: 30px;
        height: 30px;
    }
}

/* Loading animation for numbers */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.count.show {
    animation: countUp 1s ease forwards;
}