/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family:"Lato", sans-serif; line-height: 1.4;
    color: #1A1B1F;
    background: radial-gradient(circle at 35% 25%, #F0F3F1 0%, #F0F3F1 40%, #E2EDE8 100%);
    background-attachment: fixed;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Roboto", sans-serif; 
    font-weight: 800;
    line-height: 1.1;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Color Variables */
:root {
    --bg-mint: #E2EDE8;
    --bg-ivory: #F0F3F1;
    --green-cta: #5BBC96;
    --green-accent: #51B992;
    --text: #1f2125;
    --text-muted: #89817D;
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: Inter, system-ui, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.4;
}

/* Header */
.header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 5px 0; /* Reduced to accommodate larger logo */
    transition: all 0.3s ease;
    animation: slideDown 0.5s ease-out;
}

@media (max-width: 768px) {
    .header {
        padding: 5px 0;
    }
    
    .header.scrolled {
        padding: 4px 0;
    }
}

.header.scrolled {
    padding: 5px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav .cta-button {
    margin: 0;
    padding: 8px 16px;
    line-height: 1.4;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.5s ease-out 0.5s forwards, pulse 2s infinite 1s;
}

.logo h2 {
    font-size: 24px;
    transition: all 0.3s ease;
}



.logo img {
    height: 94px; /* Increased by 30% from original 72px */
    width: auto;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: bicubic;
}

@media (max-width: 768px) {
    .logo img {
        height: 78px; /* Increased by 30% from original 60px */
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
        -ms-interpolation-mode: bicubic;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 62px; /* Increased by 30% from original 48px */
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
        -ms-interpolation-mode: bicubic;
    }
}

.nav-links {
    display: flex;
    gap: 30px;
    opacity: 0;
    animation: fadeIn 0.5s ease-out 0.3s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-links a {
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
    transform: translateY(0);
    opacity: 0;
    animation: navItemAppear 0.3s ease-out forwards;
    color: var(--text);
}

.nav-links a:nth-child(1) { animation-delay: 0.1s; }
.nav-links a:nth-child(2) { animation-delay: 0.2s; }
.nav-links a:nth-child(3) { animation-delay: 0.3s; }
.nav-links a:nth-child(4) { animation-delay: 0.4s; }
.nav-links a:nth-child(5) { animation-delay: 0.5s; }
.nav-links a:nth-child(6) { animation-delay: 0.6s; }
.nav-links a:nth-child(7) { animation-delay: 0.7s; }

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color:#333;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--green-cta);
    transform: translateY(-2px);
}

.nav-links a:hover::after {
    width: 100%;
}

@keyframes navItemAppear {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text);
    margin: 3px 0;
    transition: 0.3s;
}

/* Enhanced CTA Button */
.cta-button {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: Inter, system-ui, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    position: relative;
    overflow: hidden;
    z-index: 1;
    opacity: 0;
    animation: fadeIn 0.5s ease-out 0.5s forwards;
    width: auto;
    line-height: 1.4;
}

.cta-button span {
    display: block;
    text-align: center;
    width: 100%;
}

.cta-button.primary {
    background: var(--green-cta);
    color: white;
    box-shadow: 0 4px 15px rgba(91, 188, 150, 0.3);
    animation: fadeIn 0.5s ease-out 0.5s forwards, pulse 2s infinite 1s;
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(91, 188, 150, 0.4);
    /* Removed animation: none to prevent disappearance */
}

/* Smooth side-wise hover effect for CTA buttons */
.cta-button.primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
    z-index: 0;
    border-radius: 30px;
}

.cta-button.primary:hover::before {
    left: 150%;
}

.cta-button.secondary {
    background-color: transparent;
    color: var(--green-cta);
    border: 2px solid var(--green-cta);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button.secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(91, 188, 150, 0.2), transparent);
    transition: left 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
    z-index: 0;
    border-radius: 30px;
}

.cta-button.secondary:hover::before {
    left: 150%;
}

.cta-button.secondary span {
    position: relative;
    z-index: 1;
}

.cta-button.secondary:hover {
    background-color: var(--green-cta);
    color: white;
    transform: translateY(-3px);
}

/* Centered Primary CTA Button */
.cta-button.primary.centered {
    display: block;
    margin:0px auto 0;
    text-align: center;
    padding: 8px 20px;
    width: auto;
}

.cta-button.primary.centered span {
    display: block;
    text-align: center;
    width: 100%;
}

/* Animations */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(91, 188, 150, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(91, 188, 150, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(91, 188, 150, 0);
    }
}

/* Hero Section */
.hero {
    padding: 150px 0 100px;
    background: radial-gradient(circle at 35% 25%, #F0F3F1 0%, #F0F3F1 40%, #E2EDE8 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(81, 185, 146, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.hero .container {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    padding-right: 50px;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text);
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--green-cta);
    margin-bottom: 25px;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-muted);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Stats Section */
.stats {
    background: radial-gradient(circle at 35% 25%, #F0F3F1 0%, #F0F3F1 40%, #E2EDE8 100%);
    padding: 50px 0;
    color: white;
}

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

.stat-item .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    font-family: Inter, system-ui, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

.stat-item .stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.8);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--text);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* About Section */
.about {
    background-color: white;
    padding: 100px 0;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Values Section */
.values {
    background: radial-gradient(circle at 35% 25%, #F0F3F1 0%, #F0F3F1 40%, #E2EDE8 100%);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeIn 0.6s ease forwards;
    opacity: 0;
}

.value-card:nth-child(1) { animation-delay: 0.1s; }
.value-card:nth-child(2) { animation-delay: 0.2s; }
.value-card:nth-child(3) { animation-delay: 0.3s; }
.value-card:nth-child(4) { animation-delay: 0.4s; }

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-card .icon {
    width: 60px;
    height: 60px;
    background-color: var(--bg-mint);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.value-card .icon i {
    font-size: 24px;
    color: var(--green-cta);
}

.value-card h3 {
    margin-bottom: 15px;
    color: var(--text);
}

.value-card ul {
    padding-left: 20px;
}

.value-card ul li {
    margin-bottom: 10px;
    position: relative;
    color: var(--text-muted);
}

.value-card ul li::before {
    content: "•";
    color: var(--green-cta);
    font-weight: bold;
    position: absolute;
    left: -15px;
}

/* Services Section */
.services {
    background-color: white;
}

.services-banner {
    text-align: center;
    margin-bottom: 50px;
}

.services-banner img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap:10px;
}

.service-card {
    background: var(--bg-ivory);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    background: white;
}

.service-card .icon {
    width: 80px;
    height: 80px;
    background-color: var(--bg-mint);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.service-card:hover .icon {
    background: var(--green-cta);
    transform: rotate(10deg);
}

.service-card .icon i {
    font-size: 30px;
    color: var(--green-cta);
}

.service-card:hover .icon i {
    color: white;
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--text);
}

.service-card ul {
    text-align: left;
    margin-top: 20px;
}

.service-card ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    color: var(--text-muted);
}

.service-card ul li::before {
    content: "✓";
    color: var(--green-cta);
    position: absolute;
    left: 0;
}

/* Packages Section */
.packages {
    background: radial-gradient(circle at 35% 25%, #F0F3F1 0%, #F0F3F1 40%, #E2EDE8 100%);
}

.subscription-packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.package-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.package-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--green-cta);
    z-index: 2;
}

.package-card.featured::before {
    content: "POPULAR";
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--green-cta);
    color: white;
    padding: 5px 30px;
    font-size: 12px;
    font-weight: 600;
    transform: rotate(45deg);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.package-header h3 {
    font-size: 1.8rem;
    color: var(--text);
    margin-bottom: 10px;
}

.package-header p {
    color: #757575;
    font-weight: 600;
    margin-bottom: 20px;
}

.price {
    margin: 25px 0;
}

.price .indian, .price .overseas {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--text);
}

.price .indian span, .price .overseas span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
}

.package-features {
    margin: 30px 0;
    text-align: left;
}

.package-features li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 30px;
    color: var(--text-muted);
}

.package-features li::before {
    content: "✓";
    color: var(--green-cta);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.pricing-tables {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.table-container {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.table-container h3 {
    background:#555555;
    color: white;
    padding: 15px;
    text-align: center;
    margin: 0;
}

.table-container table {
    width: 100%;
    border-collapse: collapse;
}

.table-container th,
.table-container td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.table-container th {
    background-color: var(--bg-ivory);
    font-weight: 600;
    color: var(--text);
}

.table-container tr:last-child td {
    border-bottom: none;
}

.table-container tr:hover {
    background-color: var(--bg-ivory);
}

.premium-advisory h3 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    color: var(--text);
}

.advisory-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.advisory-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.advisory-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.advisory-card h4 {
    color: var(--text);
    margin-bottom: 15px;
}

.advisory-card p {
    color:#555555;
    font-weight: 600;
    margin-bottom: 20px;
}

.advisory-card ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    color: var(--text-muted);
}

.advisory-card ul li::before {
    content: "•";
    color:#333;
    position: absolute;
    left: 0;
}

/* Team Section */
.team {
    background-color: white;
    padding: 100px 0;
}

.team-illustration {
    text-align: center;
    margin-bottom: 50px;
}

.team-illustration img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.team-member {
    text-align: center;
    background: var(--bg-ivory);
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.member-image {
    width: 100px;
    height: 100px;
    background: var(--bg-mint);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.member-image i {
    font-size: 40px;
    color: var(--green-cta);
}

.team-member h3 {
    color: var(--text);
    margin-bottom: 10px;
}

.team-member p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.mentors-section h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8rem;
    color: var(--text);
}

.mentors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    justify-items: center;
}

.mentor {
    text-align: center;
}

.mentor-image {
    width: 80px;
    height: 80px;
    background: var(--bg-mint);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.mentor-image i {
    font-size: 30px;
    color: var(--green-cta);
}

.mentor h4 {
    color: var(--text);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.team-member {
    text-align: center;
    background: var(--bg-ivory);
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.member-image {
    width: 100px;
    height: 100px;
    background: var(--bg-mint);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.member-image i {
    font-size: 40px;
    color: var(--green-cta);
}

.team-member h3 {
    color: var(--text);
    margin-bottom: 10px;
}

.team-member p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.mentors-section h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8rem;
    color: var(--text);
}

.mentors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    justify-items: center;
}

.mentor {
    text-align: center;
}

.mentor-image {
    width: 80px;
    height: 80px;
    background: var(--bg-mint);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.mentor-image i {
    font-size: 30px;
    color: var(--green-cta);
}

.mentor h4 {
    color: var(--text);
}

/* Why Us Section */
.why-us {
    background: radial-gradient(circle at 35% 25%, #F0F3F1 0%, #F0F3F1 40%, #E2EDE8 100%);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap:10px;
}

.why-us-item {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    animation: fadeIn 0.6s ease forwards;
    opacity: 0;
}

.why-us-item:nth-child(1) { animation-delay: 0.1s; }
.why-us-item:nth-child(2) { animation-delay: 0.2s; }
.why-us-item:nth-child(3) { animation-delay: 0.3s; }
.why-us-item:nth-child(4) { animation-delay: 0.4s; }
.why-us-item:nth-child(5) { animation-delay: 0.5s; }

.why-us-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.why-us-item .icon {
    width: 70px;
    height: 70px;
    background-color: var(--bg-mint);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.why-us-item .icon i {
    font-size: 28px;
    color: var(--green-cta);
}

.why-us-item h3 {
    margin-bottom: 15px;
    color: var(--text);
}

/* Testimonials */
.testimonials {
    background-color: white;
    padding: 100px 0;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-item {
    display: none;
    animation: fadeIn 0.5s ease;
}

.testimonial-item.active {
    display: block;
}

.testimonial-content {
    background: var(--bg-ivory);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.testimonial-content::before {
    content: """;
    position: absolute;
    top: -30px;
    left: 30px;
    font-size: 80px;
    color: var(--green-cta);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.testimonial-content p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-info {
    text-align: left;
}

.author-info h4 {
    color: var(--text);
    margin-bottom: 5px;
}

.author-info p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--green-cta);
    font-style: normal;
}

/* Getting Started */
.getting-started {
    background-color: white;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step {
    text-align: center;
    position: relative;
}

.step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 40px;
    right: -15px;
    width: 30px;
    height: 2px;
    background-color:#555555;
}

.step-number {
    width: 80px;
    height: 80px;
    background:#555555;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 25px;
}

.step h3 {
    margin-bottom: 15px;
    color: var(--text);
}

/* Final CTA */
.final-cta {
    background:#555555;
    color: white;
    text-align: center;
    padding: 100px 0;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
}

.final-cta .cta-button {
    background: white;
    color: var(--green-cta);
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.final-cta .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Contact Form */
.contact {
    background: radial-gradient(circle at 35% 25%, #F0F3F1 0%, #F0F3F1 40%, #E2EDE8 100%);
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: Inter, system-ui, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
    color: var(--text);
    background-color: var(--bg-ivory);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green-cta);
    outline: none;
    box-shadow: 0 0 0 3px rgba(91, 188, 150, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 70px 0 0;
}

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

.footer-column h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    /*color: var(--green-cta);*/
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    color: white;
}

.footer-column h4::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--green-cta);
}

.footer-column p {
    margin-bottom: 20px;
    color: #bbb;
    line-height: 1.8;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--green-cta);
    transform: translateY(-5px);
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #bbb;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-column ul li a:hover {
    color: var(--green-cta);
    padding-left: 5px;
}

.footer-column ul li i {
    margin-right: 10px;
    width: 20px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #bbb;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--green-cta);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 50px;
    }
    
    .hero-image {
        margin-top: 30px;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .step:not(:last-child)::after {
        display: none;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
        transition: 0.3s;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
        opacity: 1;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .package-card.featured {
        transform: scale(1);
    }
    
    /* Mobile CTA button optimization */
    .nav .cta-button {
        margin-top: 20px;
        animation: none;
        opacity: 1;
        transform: none;
        align-self: center;
    }
    
    /* Mobile navigation link optimization */
    .nav-links a {
        margin: 10px 0;
        padding: 15px 0;
        font-size: 1.1rem;
        opacity: 1;
        animation: none;
        transform: none;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-item .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .hero-image img {
        max-width: 90%;
    }
    
    .final-cta {
        padding: 70px 0;
    }
    
    .final-cta h2 {
        font-size: 1.8rem;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .testimonial-content {
        padding: 30px 20px;
    }
    
    .testimonial-content p {
        font-size: 1rem;
    }
    
    /* Further mobile optimizations */
    .nav-links {
        padding-top: 30px;
    }
    
    .nav-links a {
        font-size: 1rem;
        padding: 12px 0;
    }
    
    .cta-button {
        padding: 6px 16px;
        font-size: 14px;
    }
    
    .package-card {
        padding: 30px 20px;
    }
    
    .package-header h3 {
        font-size: 1.5rem;
    }
    
    .price .indian, .price .overseas {
        font-size: 1.5rem;
    }
}