* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
  font-family: 'Panchang-Semibold';
  src: url('fonts/Panchang-Semibold.woff2') format('woff2'),
       url('fonts/Panchang-Semibold.woff') format('woff'),
       url('fonts/Panchang-Semibold.ttf') format('truetype');
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* DarkVeil Background Container */
.dark-veil-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    /* Add performance optimization */
    will-change: transform;
    backface-visibility: hidden;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes float {
    0%, 100% { transform: translate(0px, 0px) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

@keyframes moveGrid {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

/* Header */
.header {
    position: relative;
    z-index: 1000;
    padding: 1rem 0;
}

/* Trusted By Section - Refined Premium Enhancement */
.trusted-section {
    padding: 3rem 0;
    position: relative;
    z-index: 1;
    background: transparent;
    overflow: hidden;
}

.trusted-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    position: relative;
}

.trusted-title {
    font-family: 'Panchang-Semibold', 'Panchang', 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #7c77c6;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    position: relative;
    display: inline-block;
    background: linear-gradient(90deg, #7c77c6, #00b3b3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trusted-companies {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 0 auto;
    padding: 1rem 0;
    position: relative;
}

.company-name {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
    cursor: default;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    min-width: 120px;
    text-align: center;
}

.company-name::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.company-name:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(124, 119, 198, 0.15);
    border-color: rgba(124, 119, 198, 0.25);
    background: rgba(255, 255, 255, 0.08);
}

.company-name:hover::before {
    left: 100%;
}

/* Staggered entrance animation */
@keyframes companyEntrance {
    0% {
        opacity: 0;
        transform: translateY(15px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.company-name {
    animation: companyEntrance 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
}

.company-name:nth-child(1) { animation-delay: 0.1s; }
.company-name:nth-child(2) { animation-delay: 0.2s; }
.company-name:nth-child(3) { animation-delay: 0.3s; }
.company-name:nth-child(4) { animation-delay: 0.4s; }
.company-name:nth-child(5) { animation-delay: 0.5s; }

/* Responsive Design for Trusted Section */
@media (max-width: 1024px) {
    .trusted-section {
        padding: 2.5rem 0;
    }
    
    .trusted-companies {
        gap: 1.5rem;
    }
    
    .company-name {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
        min-width: 100px;
    }
}

@media (max-width: 768px) {
    .trusted-section {
        padding: 2rem 0;
    }
    
    .trusted-title {
        font-size: 1.3rem;
        margin-bottom: 2rem;
    }
    
    .trusted-companies {
        gap: 1.2rem;
    }
    
    .company-name {
        font-size: 0.8rem;
        padding: 0.4rem 0.9rem;
        min-width: 90px;
    }
}

@media (max-width: 480px) {
    .trusted-section {
        padding: 1.5rem 0;
    }
    
    .trusted-container {
        padding: 0 1rem;
    }
    
    .trusted-title {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        letter-spacing: 1px;
    }
    
    .trusted-companies {
        gap: 1rem;
    }
    
    .company-name {
        font-size: 0.75rem;
        padding: 0.35rem 0.8rem;
        min-width: 80px;
    }
}

/* Why Choose Section - Transparent Enhancement */
.why-choose-section {
    padding: 5rem 0;
    position: relative;
    z-index: 1;
    background: transparent;
    overflow: hidden;
}

.why-choose-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 179, 179, 0.3), transparent);
}

.why-choose-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    position: relative;
}

.why-choose-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    position: relative;
}

.why-choose-title {
    font-family: 'Panchang-Semibold', 'Panchang', 'Inter', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 1.5rem;
    position: relative;
    letter-spacing: -0.02em;
}

.why-choose-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #7c77c6, #00b3b3);
    border-radius: 2px;
}

.why-choose-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto 4rem;
}

/* Floating Tags Enhancement */
.floating-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 3rem;
    position: relative;
}

.floating-tag {
    font-family: 'Panchang', 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    background: rgba(124, 119, 198, 0.1);
    border: 1px solid rgba(124, 119, 198, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: default;
    /* Chain reaction animation using staggered delays */
    animation: subtleUpDown 2s ease-in-out infinite;
    will-change: transform;
}

/* Chain effect: each tag has a staggered delay based on data-delay attribute */
.floating-tag:nth-child(1) { animation-delay: 0s; }
.floating-tag:nth-child(2) { animation-delay: 0.1s; }
.floating-tag:nth-child(3) { animation-delay: 0.2s; }
.floating-tag:nth-child(4) { animation-delay: 0.3s; }
.floating-tag:nth-child(5) { animation-delay: 0.4s; }
.floating-tag:nth-child(6) { animation-delay: 0.5s; }
.floating-tag:nth-child(7) { animation-delay: 0.6s; }
.floating-tag:nth-child(8) { animation-delay: 0.7s; }
.floating-tag:nth-child(9) { animation-delay: 0.8s; }
.floating-tag:nth-child(10) { animation-delay: 0.9s; }
.floating-tag:nth-child(11) { animation-delay: 1.0s; }

.floating-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: 0.5s;
    will-change: transform;
}

.floating-tag:hover {
    transform: translateY(-13px) scale(1.05);
    background: rgba(124, 119, 198, 0.2);
    border-color: rgba(124, 119, 198, 0.4);
    box-shadow: 0 10px 25px rgba(124, 119, 198, 0.2);
    color: #ffffff;
    animation-play-state: paused;
}

.floating-tag:hover::before {
    left: 100%;
}

/* Chain reaction Up and Down Animation */
@keyframes subtleUpDown {
    0%, 100% {
        transform: translateY(0);
        will-change: transform;
    }
    25% {
        transform: translateY(-6px);
        will-change: transform;
    }
    50% {
        transform: translateY(0);
        will-change: transform;
    }
    75% {
        transform: translateY(-6px);
        will-change: transform;
    }
} }

/* Responsive Design for Why Choose Section */
@media (max-width: 1024px) {
    .why-choose-title {
        font-size: 2.3rem;
    }
    
    .why-choose-subtitle {
        font-size: 1.1rem;
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: 3rem 0;
    }
    
    .why-choose-title {
        font-size: 2rem;
    }
    
    .why-choose-subtitle {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }
    
    .floating-tags {
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .floating-tag {
        font-size: 0.9rem;
        padding: 0.7rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .why-choose-title {
        font-size: 1.7rem;
    }
    
    .why-choose-subtitle {
        font-size: 0.95rem;
    }
    
    .floating-tags {
        gap: 0.8rem;
    }
    
    .floating-tag {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
    }
}

/* Services Section - Transparent Enhancement */
.services-section {
    padding: 6rem 0;
    position: relative;
    z-index: 1;
    background: transparent;
    overflow: hidden;
    width: 100%;
}

.services-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 179, 179, 0.4), transparent);
    z-index: 2;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    width: 100%;
}

.services-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.services-header-left h2 {
    font-family: 'Panchang-Semibold', 'Panchang', 'Inter', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.highlight-blue {
    background: linear-gradient(135deg, #00b3b3, #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-header-right p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
}

/* Service Cards Enhancement */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Exactly 3 cards per row */
    gap: 2rem;
    margin-top: 2rem;
    align-items: stretch;
    width: 100%;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    /* Reduced backdrop-filter intensity for better performance */
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem;
    /* Optimized transition for better performance */
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 400px; /* Changed from fixed height to minimum height */
    width: 100%; /* Full width of grid column */
    will-change: transform;
    box-sizing: border-box; /* Ensure padding is included in width/height */
    cursor: pointer; /* Show that card is tappable */
    touch-action: manipulation; /* Enable native touch feedback */
}

/* Make sure tap targets are large enough on mobile */
.service-card .service-title,
.service-card .service-description {
    pointer-events: none; /* Allow clicking the card even when touching title/description */
}

.service-btn {
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    justify-content: center;
    min-height: 44px; /* Minimum touch target size */
    width: 100%;
    touch-action: manipulation; /* Enable native touch feedback */
}

.service-btn:active {
    transform: scale(0.98);
}

/* Mobile-specific service button improvements */
@media (max-width: 768px) {
    .service-btn {
        padding: 14px 20px; /* Better touch target size */
        font-size: 0.95rem;
        min-height: 48px; /* Larger minimum touch target */
    }
    
    .service-btn:active {
        transform: scale(0.96); /* Slightly more noticeable press effect */
    }
}

/* Mobile-specific service card improvements */
@media (max-width: 768px) {
    .service-card {
        min-height: auto; /* Allow cards to be smaller on mobile */
        padding: 1.25rem; /* Slightly less padding on mobile */
        margin-bottom: 1rem; /* Add space between cards */
    }
    
    .service-image {
        height: 150px; /* Smaller images on mobile */
    }
    
    .service-title {
        font-size: 1.2rem; /* Slightly smaller font on mobile */
    }
    
    .service-description {
        font-size: 0.85rem; /* Smaller font on mobile */
        -webkit-line-clamp: 3; /* Limit to 3 lines on mobile */
    }
    
    .service-card:hover {
        /* On mobile, use active state instead of hover */
        transform: translateY(-5px); /* Less transform on mobile */
    }
    
    .service-btn {
        padding: 14px 20px; /* Better touch target size */
        font-size: 0.95rem;
    }
}

/* Extra touch-friendly styles for mobile */
@media (hover: none) and (pointer: coarse) {
    .service-card {
        /* On touch devices, add a slight visual feedback */
        transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    }
    
    .service-card:active {
        transform: translateY(-3px);
        background: rgba(255, 255, 255, 0.06);
        border-color: rgba(124, 119, 198, 0.3);
    }
}

.service-card .service-image {
    width: 100%;
    height: 180px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, rgba(9, 0, 64, 0.2), rgba(0, 179, 179, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(124, 119, 198, 0.2);
    /* Reduced box-shadow intensity for better performance */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-image {
    width: 100%;
    height: 180px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgba(9, 0, 64, 0.2), rgba(0, 179, 179, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.service-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(124, 119, 198, 0.1), rgba(0, 179, 179, 0.1));
}

.service-image img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    /* Reduced filter intensity for better performance */
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.15));
    /* Optimized transition for better performance */
    transition: transform 0.2s ease;
    z-index: 2;
    will-change: transform;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-title {
    font-family: 'Panchang-Semibold', 'Panchang', 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    flex-shrink: 0;
}

.service-description {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem; /* Reduced font size */
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    flex-grow: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4; /* Limit to 4 lines */
    -webkit-box-orient: vertical;
}

/* Service Details (Hidden by default) */
.service-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    flex-grow: 1;
}

.service-card.expanded .service-details {
    max-height: 1000px;
}

.details-content h4 {
    font-family: 'Panchang', 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #00b3b3;
    margin-bottom: 1rem;
}

.details-content p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem; /* Reduced font size */
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1rem; /* Reduced margin */
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Limit to 3 lines */
    -webkit-box-orient: vertical;
}

.service-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem; /* Reduced gap */
    margin-bottom: 0.75rem; /* Reduced margin */
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-item i {
    color: #7c77c6;
    font-size: 1rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-item span {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem; /* Reduced font size */
    color: rgba(255, 255, 255, 0.9);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Limit to 2 lines */
    -webkit-box-orient: vertical;
}

.service-cta {
    text-align: center;
    margin-top: auto;
}

.service-btn {
    background: linear-gradient(135deg, #7c77c6, #00b3b3);
    color: white;
    border: none;
    padding: 0.7rem 1.25rem; /* Reduced padding */
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem; /* Reduced font size */
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(124, 119, 198, 0.3);
    margin-top: 0.5rem; /* Reduced margin */
}

.service-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(124, 119, 198, 0.4);
}

.service-btn i {
    transition: transform 0.2s ease;
}

.service-btn:hover i {
    transform: translateX(3px);
}

/* Responsive Design for Services Section */
@media (max-width: 1024px) {
    .services-header {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .services-header-right p {
        margin: 0 auto;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 cards per row on tablet */
    }
    
    .services-header-left h2 {
        font-size: 2.3rem;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 4rem 0;
    }
    
    .services-container {
        padding: 0 1.5rem;
    }
    
    .services-header-left h2 {
        font-size: 2rem;
    }
    
    .services-header-right p {
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr; /* 1 card per row on mobile */
    }
    
    .service-card {
        padding: 1.5rem;
        height: auto; /* Allow flexible height on mobile */
    }
    
    .service-image {
        height: 150px;
    }
    
    .service-title {
        font-size: 1.3rem;
    }
    
    .service-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 3rem 0;
    }
    
    .services-container {
        padding: 0 1rem;
    }
    
    .services-header-left h2 {
        font-size: 1.7rem;
    }
    
    .service-card {
        padding: 1.25rem;
    }
    
    .service-title {
        font-size: 1.2rem;
    }
    
    .service-description {
        font-size: 0.9rem;
    }
}

/* Testimonials Section - Transparent Enhancement */
.testimonials-section {
    padding: 6rem 0;
    position: relative;
    z-index: 1;
    background: transparent;
    overflow: hidden;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 179, 179, 0.4), transparent);
    z-index: 2;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.testimonials-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.testimonials-header-left h2 {
    font-family: 'Panchang-Semibold', 'Panchang', 'Inter', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.highlight-teal {
    background: linear-gradient(135deg, #00b3b3, #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonials-header-right p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
}

/* Testimonials Wrapper with Horizontal Scrolling */
.testimonials-wrapper {
    position: relative;
    overflow: hidden;
    padding: 1rem 0;
    /* Remove mask to allow more testimonials to be visible */
    mask-image: none;
    -webkit-mask-image: none;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    /* Smooth animation for continuous loop */
    animation: scroll-horizontal 40s linear infinite;
    padding: 1rem 0;
    will-change: transform;
}

.testimonials-grid:hover {
    animation-play-state: paused;
}

@keyframes scroll-horizontal {
    0% {
        transform: translateX(0);
        will-change: transform;
    }
    100% {
        transform: translateX(-50%);
        will-change: transform;
    }
}

/* Testimonial Card Enhancement */
.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    /* Reduced backdrop-filter intensity for better performance */
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2rem;
    /* Optimized transition for better performance */
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    min-width: 450px;
    width: 450px;
    flex-shrink: 0;
    will-change: transform;
    touch-action: manipulation; /* Enable native touch feedback */
}

/* Touch enhancements for testimonial cards */
.testimonial-card:active {
    transform: scale(0.98);
}

/* Mobile-specific testimonial improvements */
@media (max-width: 768px) {
    .testimonial-card {
        min-width: 90vw; /* Make them full width on mobile */
        width: 90vw; /* Make them full width on mobile */
        padding: 1.5rem; /* Adjust padding for mobile */
    }
    
    .testimonial-card:active {
        transform: scale(0.99); /* Slightly less drastic on mobile */
    }
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00b3b3, #0ea5e9);
    transform: scaleX(0);
    transform-origin: left;
    /* Optimized transition for better performance */
    transition: transform 0.3s ease;
    will-change: transform;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(0, 179, 179, 0.2);
    /* Reduced box-shadow intensity for better performance */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

/* Testimonial Rating */
.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 1rem;
}

/* Testimonial Text */
.testimonial-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonial-text::before {
    content: """;
    font-family: 'Panchang', 'Inter', sans-serif;
    font-size: 3rem;
    color: rgba(124, 119, 198, 0.3);
    position: absolute;
    top: -20px;
    left: -15px;
    line-height: 1;
}

/* Testimonial Author */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(124, 119, 198, 0.3);
    position: relative;
}

.author-avatar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(124, 119, 198, 0.1), rgba(0, 179, 179, 0.1));
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.testimonial-card:hover .avatar-img {
    transform: scale(1.05);
}

.author-info h4 {
    font-family: 'Panchang', 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.author-info p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Google Badge */
.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(66, 133, 244, 0.1);
    border-radius: 50px;
    border: 1px solid rgba(66, 133, 244, 0.2);
}

.google-badge i {
    color: #4285f4;
    font-size: 1rem;
}

.google-badge span {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

/* Testimonial Rating */
.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 1rem;
}

/* Testimonial Text */
.testimonial-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonial-text::before {
    content: """;
    font-family: 'Panchang', 'Inter', sans-serif;
    font-size: 3rem;
    color: rgba(124, 119, 198, 0.3);
    position: absolute;
    top: -20px;
    left: -15px;
    line-height: 1;
}

/* Testimonial Author */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(124, 119, 198, 0.3);
    position: relative;
}

.author-avatar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(124, 119, 198, 0.1), rgba(0, 179, 179, 0.1));
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.testimonial-card:hover .avatar-img {
    transform: scale(1.05);
}

.author-info h4 {
    font-family: 'Panchang', 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.author-info p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Google Badge */
.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(66, 133, 244, 0.1);
    border-radius: 50px;
    border: 1px solid rgba(66, 133, 244, 0.2);
}

.google-badge i {
    color: #4285f4;
    font-size: 1rem;
}

.google-badge span {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

/* Testimonial Modal */
.testimonial-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(30px);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    max-width: 600px;
    width: 90%;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #ffffff;
}

.modal-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.modal-rating i {
    color: #fbbf24;
    font-size: 1.2rem;
}

.modal-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    font-style: italic;
    margin-bottom: 2rem;
    text-align: center;
}

.modal-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.modal-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(124, 119, 198, 0.5);
}

.modal-info h4 {
    font-family: 'Panchang', 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.modal-info p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.modal-google-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    background: rgba(66, 133, 244, 0.15);
    border-radius: 50px;
    border: 1px solid rgba(66, 133, 244, 0.3);
}

.modal-google-badge i {
    color: #4285f4;
    font-size: 1.2rem;
}

.modal-google-badge span {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive Design for Testimonials Section */
@media (max-width: 1024px) {
    .testimonials-header {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .testimonials-header-right p {
        margin: 0 auto;
    }
    
    .testimonial-card {
        min-width: 400px;
        width: 400px;
    }
    
    .testimonials-header-left h2 {
        font-size: 2.3rem;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 4rem 0;
    }
    
    .testimonials-container {
        padding: 0 1.5rem;
    }
    
    .testimonials-header-left h2 {
        font-size: 2rem;
    }
    
    .testimonials-header-right p {
        font-size: 1rem;
    }
    
    .testimonial-card {
        min-width: 350px;
        width: 350px;
        padding: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .author-avatar {
        width: 50px;
        height: 50px;
    }
    
    .modal-content {
        padding: 2rem 1.5rem;
    }
    
    .modal-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 3rem 0;
    }
    
    .testimonials-container {
        padding: 0 1rem;
    }
    
    .testimonials-header-left h2 {
        font-size: 1.7rem;
    }
    
    .testimonial-card {
        min-width: 280px;
        width: 280px;
        padding: 1.25rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
    
    .author-info h4 {
        font-size: 1rem;
    }
    
    .author-info p {
        font-size: 0.85rem;
    }
    
    .modal-content {
        padding: 1.5rem 1rem;
    }
    
    .modal-text {
        font-size: 1rem;
    }
    
    .modal-author {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* FAQ Section - Transparent Enhancement */
.faq-section {
    padding: 6rem 0;
    position: relative;
    z-index: 1;
    background: transparent;
    overflow: hidden;
}

.faq-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 179, 179, 0.4), transparent);
    z-index: 2;
}

.faq-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.faq-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.faq-text h2 {
    font-family: 'Panchang-Semibold', 'Panchang', 'Inter', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, #7c77c6, #00b3b3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-text > p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin-bottom: 3rem;
}

/* FAQ List Enhancement */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(124, 119, 198, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.faq-item.active {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(124, 119, 198, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* FAQ Question */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: background 0.3s ease;
    position: relative;
    z-index: 2;
    touch-action: manipulation; /* Enable native touch feedback */
    min-height: 56px; /* Ensure minimum touch target size */
}

/* Touch enhancements for FAQ items */
.faq-question:active {
    background: rgba(124, 119, 198, 0.1);
}

/* Mobile-specific FAQ improvements */
@media (max-width: 768px) {
    .faq-question {
        padding: 1.6rem; /* Larger touch targets on mobile */
        min-height: 60px; /* Larger minimum touch size */
    }
    
    .faq-question:active {
        background: rgba(124, 119, 198, 0.15);
    }
}

.faq-question:hover {
    background: rgba(124, 119, 198, 0.05);
}

.faq-question {
    touch-action: manipulation; /* Better touch handling */
    min-height: 56px; /* Minimum touch target size */
}

.faq-question:active {
    background: rgba(124, 119, 198, 0.1); /* Visual feedback when pressed */
}

.faq-question span {
    font-family: 'Panchang', 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    flex: 1;
    margin-right: 1rem;
}

.faq-question i {
    color: #7c77c6;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.2rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* FAQ Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    background: rgba(0, 0, 0, 0.1);
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 1.5rem 1.5rem;
    opacity: 1;
}

.faq-answer p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    transform: translateY(-10px);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer p {
    transform: translateY(0);
}

/* FAQ Image */
.faq-image {
    position: sticky;
    top: 2rem;
}

.faq-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.faq-image img:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

/* Responsive Design for FAQ Section */
@media (max-width: 1024px) {
    .faq-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .faq-text h2 {
        font-size: 2.3rem;
        text-align: center;
    }
    
    .faq-text > p {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .faq-question span {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 4rem 0;
    }
    
    .faq-container {
        padding: 0 1.5rem;
    }
    
    .faq-text h2 {
        font-size: 2rem;
    }
    
    .faq-text > p {
        font-size: 1rem;
    }
    
    .faq-question {
        padding: 1.25rem;
    }
    
    .faq-question span {
        font-size: 0.95rem;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 3rem 0;
    }
    
    .faq-container {
        padding: 0 1rem;
    }
    
    .faq-text h2 {
        font-size: 1.7rem;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question span {
        font-size: 0.9rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1rem 1rem;
    }
}

/* Consultation Section - Transparent Enhancement */
.consultation-section {
    padding: 6rem 0;
    position: relative;
    z-index: 1;
    background: transparent;
    overflow: hidden;
}

.consultation-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 179, 179, 0.4), transparent);
    z-index: 2;
}

.consultation-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.consultation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Consultation Text */
.consultation-text h2 {
    font-family: 'Panchang-Semibold', 'Panchang', 'Inter', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.consultation-text p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin-bottom: 2rem;
}

/* Contact Info */
.contact-info p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.email-link {
    color: #00b3b3;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
}

.email-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 1px;
    background: #00b3b3;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.email-link:hover {
    color: #0ea5e9;
}

.email-link:hover::after {
    transform: scaleX(1);
}

/* Benefits Section */
.benefits-section h3 {
    font-family: 'Panchang', 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(124, 119, 198, 0.1);
    border-color: rgba(124, 119, 198, 0.2);
    transform: translateY(-2px);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #7c77c6, #00b3b3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    color: white;
    font-size: 1rem;
}

.benefit-item span {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

/* Process Section */
.process-section h3 {
    font-family: 'Panchang', 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7c77c6, #00b3b3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Panchang', 'Inter', sans-serif;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.step-content p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* Consultation Form */
.consultation-form-wrapper {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.consultation-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7c77c6, #00b3b3);
}

.consultation-form-container .form-title {
    font-family: 'Panchang', 'Inter', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    text-align: center;
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #ffffff;
    transition: all 0.3s ease;
    min-height: 50px; /* Minimum touch target size */
    touch-action: manipulation; /* Better touch handling */
}

/* Mobile-specific form input improvements */
@media (max-width: 768px) {
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 1.1rem 1.35rem; /* Larger touch targets */
        font-size: 1.05rem; /* Slightly larger text for easier reading */
        min-height: 52px; /* Minimum touch target size */
    }
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7c77c6;
    box-shadow: 0 0 0 3px rgba(124, 119, 198, 0.3);
    background: rgba(0, 0, 0, 0.4);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(135deg, #7c77c6, #00b3b3);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 1.25rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 6px 20px rgba(124, 119, 198, 0.3);
    margin-top: 0.5rem;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(124, 119, 198, 0.4);
}

.submit-btn:active {
    transform: translateY(-1px);
}

/* Touch enhancements for submit button */
.submit-btn {
    min-height: 52px; /* Minimum touch target size */
    touch-action: manipulation; /* Enable native touch feedback */
}

.submit-btn:active {
    transform: scale(0.98); /* Add scale effect for extra touch feedback */
}

/* Mobile-specific submit button improvements */
@media (max-width: 768px) {
    .submit-btn {
        padding: 1.3rem; /* Increase padding on mobile */
        font-size: 1.15rem; /* Slightly larger text */
        min-height: 56px; /* Larger touch target */
    }
    
    .submit-btn:active {
        transform: scale(0.97); /* Slightly more noticeable press effect */
    }
}

/* Responsive Design for Consultation Section */
@media (max-width: 1024px) {
    .consultation-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .consultation-text h2 {
        font-size: 2.3rem;
        text-align: center;
    }
    
    .consultation-text p {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .consultation-section {
        padding: 4rem 0;
    }
    
    .consultation-container {
        padding: 0 1.5rem;
    }
    
    .consultation-text h2 {
        font-size: 2rem;
    }
    
    .consultation-text p {
        font-size: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .consultation-form-wrapper {
        padding: 2rem;
    }
    
    .consultation-form-container .form-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .consultation-section {
        padding: 3rem 0;
    }
    
    .consultation-container {
        padding: 0 1rem;
    }
    
    .consultation-text h2 {
        font-size: 1.7rem;
    }
    
    .consultation-form-wrapper {
        padding: 1.5rem;
    }
    
    .process-step {
        gap: 1rem;
    }
    
    .step-content p {
        font-size: 0.9rem;
    }
}

/* Footer - Premium Enhancement */
.footer {
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.95) 0%, rgba(5, 5, 15, 0.98) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(124, 119, 198, 0.3), transparent);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
    padding: 4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Footer Brand */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    width: 180px;
    height: 60px;
}

.footer-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.footer-logo-img:hover {
    transform: scale(1.05);
}

.footer-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    max-width: 300px;
}

/* Footer Social */
.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: linear-gradient(135deg, #7c77c6, #00b3b3);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(124, 119, 198, 0.3);
}

.social-link i {
    font-size: 1.1rem;
}

/* Footer Navigation Sections */
.footer-nav-sections {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-nav-column h3 {
    font-family: 'Panchang', 'Inter', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-nav-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #7c77c6, #00b3b3);
    border-radius: 1px;
}

.footer-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav-list li {
    transition: transform 0.2s ease;
}

.footer-nav-list li:hover {
    transform: translateX(5px);
}

.footer-nav-list a {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-nav-list a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, #7c77c6, #00b3b3);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.footer-nav-list a:hover {
    color: #00b3b3;
}

.footer-nav-list a:hover::after {
    transform: scaleX(1);
}

/* Brand Column in Footer */
.brand-column {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.footer-brand-info {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-family: 'Panchang', 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    position: relative;
}

.brand-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #7c77c6, #00b3b3);
    border-radius: 1px;
}

.footer-brand-description {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin: 0;
}

/* Footer Accordion */
.footer-accordion {
    display: flex;
    flex-direction: column;
}

.accordion-toggle {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    margin-bottom: 0.25rem !important; /* Smaller margin */
    padding-bottom: 0.25rem;
    position: relative;
    color: #ffffff;
    font-family: 'Panchang', 'Inter', sans-serif;
    font-size: 0.5rem !important; /* Much smaller and using !important to override other styles */
    font-weight: 700;
}

.accordion-toggle::after {
    display: none; /* Hide the default decorative line */
}

.accordion-icon {
    font-size: 0.6rem !important; /* Make the icon smaller too */
    transition: transform 0.3s ease;
    margin-left: 0.25rem;
}

/* More specific selector to ensure footer accordion titles are smaller */
.footer-nav-column .accordion-toggle {
    font-size: 0.5rem !important;
    margin-bottom: 0.25rem !important;
    padding-bottom: 0.25rem !important;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    opacity: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-left: 0;
    margin-top: 0;
}

.accordion-content.active {
    max-height: 300px; /* Sufficient height for all items */
    opacity: 1;
    transition: max-height 0.3s ease, opacity 0.3s ease 0.1s;
}

.accordion-toggle.active .accordion-icon {
    transform: rotate(180deg);
}

/* Ensure accordion content links have proper styles */
.accordion-content li {
    transition: transform 0.2s ease;
}

.accordion-content li:hover {
    transform: translateX(5px);
}

.accordion-content a {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.accordion-content a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, #7c77c6, #00b3b3);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.accordion-content a:hover {
    color: #00b3b3;
}

.accordion-content a:hover::after {
    transform: scaleX(1);
}

/* Footer Bottom */
.footer-bottom {
    padding: 1.5rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-bottom-links a {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #00b3b3;
}

.footer-separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
}

/* Responsive Design for Footer */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .footer-brand {
        align-items: center;
    }
    
    .footer-tagline {
        margin: 0 auto;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-nav-sections {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-nav-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 0 1.5rem;
    }
    
    .footer-content {
        padding: 3rem 0;
    }
    
    .footer-nav-sections {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-logo {
        width: 150px;
        height: 50px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 0 1rem;
    }
    
    .footer-content {
        padding: 2rem 0;
        gap: 2rem;
    }
    
    .footer-nav-sections {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-bottom-content {
        gap: 0.75rem;
    }
    
    .footer-copyright {
        font-size: 0.8rem;
    }
    
    .footer-bottom-links a {
        font-size: 0.8rem;
    }
    
    .footer-separator {
        font-size: 0.8rem;
    }
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
}

.logo i {
    color: #7c77c6;
    font-size: 1.8rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #b0b0b0;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #ffffff;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(90deg, #7c77c6, #ff77c6);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.login-btn {
    text-decoration: none;
    color: #b0b0b0;
    font-weight: 500;
    transition: color 0.3s ease;
}

.login-btn:hover {
    color: #ffffff;
}

.join-btn {
    background: linear-gradient(135deg, #7c77c6, #ff77c6);
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(124, 119, 198, 0.3);
}

.join-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 119, 198, 0.4);
}

/* Add padding to account for fixed header on pages without main content */
.dm-hero, .hero-section, section[class*="hero"], 
section.fade-in-section[style*="padding: 8rem 0"] {
    padding-top: 6rem !important;
}

/* Main Content */
.main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    align-items: center;
    min-height: calc(100vh - 120px);
    padding-top: 6rem; /* Add padding to account for fixed header */
}

.content-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    z-index: 10;
    margin-top: 0; /* Remove the 5vh margin */
    height: 100%; /* Take full height to enable vertical centering */
    padding: 2rem 0; /* Add some padding */
    text-align: left; /* Ensure left alignment */
}

.hero-title {
    font-family: 'Panchang-Semibold', 'Inter', sans-serif;
    font-size: 2.5rem; /* Increased significantly from 0.75rem */
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 2rem; /* Increased from 1rem */
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff, #e2e8f0, #cbd5e1);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    text-align: left; /* Keep text alignment as requested */
}

.hero-title:hover {
    transform: translateY(-3px) scale(1.01);
    filter: drop-shadow(0 8px 25px rgba(255, 255, 255, 0.2));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* New Hero Section Styles */
.hero-content {
    max-width: 600px;
    width: 100%;
    text-align: left; /* Ensure left alignment */
}

.hero-main-title {
    font-family: 'Panchang-Semibold', 'Inter', sans-serif;
    font-size: 1.75rem;
    line-height: 1.4;
    font-weight: 700;
    margin-bottom: 0;
    letter-spacing: -0.02em;
}

.hero-gradient-text {
    color: #ffffff; /* Changed to pure white */
    /* Removed gradient effect for solid white text */
}

.hero-highlight {
    color: #ffffff; /* Changed to pure white */
    /* Removed gradient effect for solid white text */
}

.hero-forward-thinking {
    background: linear-gradient(135deg, #00ffff 0%, #ffffff 25%, #00ffff 50%, #9f7aea 75%, #00ffff 100%);
    background-size: 200% 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientTextShift 6s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.3));
}

.hero-gradient-all {
    background: linear-gradient(135deg, #00ffff 0%, #ffffff 25%, #00ffff 50%, #9f7aea 75%, #00ffff 100%);
    background-size: 200% 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientTextShift 6s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(0, 255, 255, 0.5));
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
    font-family: 'Panchang', 'Panchang-Semibold', 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.3;
    letter-spacing: 0.5px;
    /* color: #ffffff; */ /* Removed to allow gradient text effects */
    margin-bottom: 2.5rem;
    max-width: 550px;
    text-align: left; /* Ensure left alignment */
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.primary-btn, .secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.5rem; /* Reduced padding for smaller height */
    border-radius: 30px; /* Increased roundness */
    font-size: 1rem; /* Slightly smaller font */
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.primary-btn {
    background: linear-gradient(135deg, #00ffff, #0080ff, #00ffff);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(0, 128, 255, 0.3);
}

.primary-btn:hover {
    transform: translateY(-2px); /* Reduced transformation for sleeker feel */
    box-shadow: 0 6px 15px rgba(0, 128, 255, 0.4); /* Reduced shadow for sleeker look */
    background: linear-gradient(135deg, #1affff, #1a8cff, #1affff);
}

.secondary-btn {
    background: transparent;
    color: #ffffff; /* Changed to pure white for better contrast */
    border: 2px solid rgba(255, 255, 255, 0.3); /* Adjusted border color */
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.1); /* Slightly more visible hover effect */
    transform: translateY(-2px); /* Consistent transformation */
    border: 2px solid rgba(255, 255, 255, 0.5); /* Enhanced border on hover */
}

/* Touch enhancements for buttons */
.primary-btn, .secondary-btn {
    min-height: 44px; /* Minimum touch target size */
    touch-action: manipulation; /* Enable native touch feedback */
    user-select: none; /* Prevent text selection on tap */
}

.primary-btn:active, .secondary-btn:active {
    transform: translateY(0) scale(0.95); /* Visual feedback when pressed */
}

/* Mobile-specific button improvements */
@media (max-width: 768px) {
    .primary-btn, .secondary-btn {
        padding: 0.8rem 1.8rem; /* Larger touch targets on mobile */
        font-size: 1.05rem; /* Slightly larger text on mobile */
        min-height: 48px; /* Larger minimum size for touch */
    }
    
    .primary-btn:active, .secondary-btn:active {
        transform: scale(0.95); /* Simpler transform on mobile */
    }
}


.gradient-text {
    background: linear-gradient(135deg, #78dbff, #7c77c6, #ff77c6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientAnimation 3s ease infinite;
}

.highlight {
    display: inline-block;
    position: relative;
}

@keyframes gradientAnimation {

    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes gradientTextShift {
    0%, 100% { background-position: 0% 50%; }
    25% { background-position: 100% 50%; }
    50% { background-position: 100% 100%; }
    75% { background-position: 0% 100%; }
}

.cta-button {
    background: linear-gradient(135deg, #7c77c6, #9c4dc4);
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(124, 119, 198, 0.3);
    margin-bottom: 3rem;

}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(124, 119, 198, 0.4);
    background: linear-gradient(135deg, #8a83d1, #a755ca);
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(4px);
}

/* Consultant Info */
.consultant-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.consultant-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #7c77c6, #ff77c6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.consultant-name {
    font-weight: 600;
    color: #ffffff;
}

.consultant-role {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Orbit Animation */
.content-right {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 5;
    margin-top: 2vh; /* Reduced from 10.8vh to 2vh to prevent excessive scrolling */
}

.orbit-container {
    position: relative;
    width: 750px; /* Increased size to 150% of original (500px) */
    height: 750px; /* Increased size to 150% of original (500px) */
    margin: 0 auto;
    padding: 0;
    /* Ensure proper positioning context */
    transform-style: preserve-3d;
}

.orbit-paths {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.orbit-paths circle {
    stroke: #7c77c6;
    stroke-width: 2;
    fill: none;
    opacity: 0.6;
}

.central-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 472.5px; /* Increased size by 50% (1.5x) from 315px */
    height: 472.5px; /* Increased size by 50% (1.5x) from 315px */
    /* Using a more white glassmorphism background */
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.45) 0%,
        rgba(255, 255, 255, 0.35) 25%,
        rgba(255, 255, 255, 0.25) 50%,
        rgba(255, 255, 255, 0.35) 75%,
        rgba(255, 255, 255, 0.45) 100%
    );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
    z-index: 10;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-top: 0; /* Remove extra margin to center the logo perfectly */
    /* Adding backdrop filter for glass effect like header */
    backdrop-filter: blur(25px) saturate(180%) brightness(110%);
    -webkit-backdrop-filter: blur(25px) saturate(180%) brightness(110%);
    /* Using similar border and shadow styles as header */
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.7),
        0 0 0 1px rgba(255, 255, 255, 0.3),
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 0 80px rgba(0, 255, 255, 0.1),
        0 0 30px rgba(255, 255, 255, 0.5); /* Enhanced glow effect */
}



.central-logo {
    width: 303.75px; /* Increased size by 50% (1.5x) from 202.5px */
    height: 303.75px; /* Increased size by 50% (1.5x) from 202.5px */
    border-radius: 50%;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

.central-hub:hover {
    transform: translate(-50%, -50%) scale(1.05);
}

/* Orbit Styles for Icons */
.orbit-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 56.25px; /* Reduced size to 60% of original (93.75px) */
    height: 56.25px; /* Reduced size to 60% of original (93.75px) */
    border-radius: 50%;
    backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(9, 0, 64, 0.3), 0 4px 12px rgba(139, 92, 246, 0.2);
    padding: 9px; /* Reduced padding to 60% of original (15px) */
    transform-origin: center;
    cursor: pointer;
    will-change: transform;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #7c77c6;
    z-index: 15;
    /* Position relative to container center */
    transform: translate3d(-50%, -50%, 0);
    /* Add hardware acceleration */
    backface-visibility: hidden;
    perspective: 1000px;
}

.orbit-icon:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.8), 0 0 60px rgba(139, 92, 246, 0.4);
    border-color: #090040;
    transform: scale(1.15) translate(-50%, -50%);
}

.company-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(1.1);
    transition: all 0.3s ease;
    image-rendering: crisp-edges;
}

/* Proper orbital animations - icons move along circular paths */
/* Optimize with will-change and transform3d for better performance */
/* Orbit 1 (innermost circle) - 2 icons moving counter-clockwise */
@keyframes orbit1icon1 {
    0% { transform: translate3d(-50%, -50%, 0) rotate(0deg) translateX(187.5px) rotate(0deg); will-change: transform; } /* Radius for first orbit */
    100% { transform: translate3d(-50%, -50%, 0) rotate(-360deg) translateX(187.5px) rotate(360deg); will-change: transform; } /* Counter-clockwise */
}

@keyframes orbit1icon2 {
    0% { transform: translate3d(-50%, -50%, 0) rotate(180deg) translateX(187.5px) rotate(-180deg); will-change: transform; } /* Radius for first orbit */
    100% { transform: translate3d(-50%, -50%, 0) rotate(-180deg) translateX(187.5px) rotate(180deg); will-change: transform; } /* Counter-clockwise */
}

/* Orbit 2 (middle circle) - 3 icons moving clockwise */
@keyframes orbit2icon1 {
    0% { transform: translate3d(-50%, -50%, 0) rotate(0deg) translateX(281.25px) rotate(0deg); will-change: transform; } /* Increased radius to 150% (187.5px -> 281.25px) */
    100% { transform: translate3d(-50%, -50%, 0) rotate(360deg) translateX(281.25px) rotate(-360deg); will-change: transform; }
}

@keyframes orbit2icon2 {
    0% { transform: translate3d(-50%, -50%, 0) rotate(120deg) translateX(281.25px) rotate(-120deg); will-change: transform; } /* Increased radius to 150% (187.5px -> 281.25px) */
    100% { transform: translate3d(-50%, -50%, 0) rotate(480deg) translateX(281.25px) rotate(-480deg); will-change: transform; }
}

@keyframes orbit2icon3 {
    0% { transform: translate3d(-50%, -50%, 0) rotate(240deg) translateX(281.25px) rotate(-240deg); will-change: transform; } /* Increased radius to 150% (187.5px -> 281.25px) */
    100% { transform: translate3d(-50%, -50%, 0) rotate(600deg) translateX(281.25px) rotate(-600deg); will-change: transform; }
}

/* Orbit 3 (outermost circle) - 3 icons moving counter-clockwise */
@keyframes orbit3icon1 {
    0% { transform: translate3d(-50%, -50%, 0) rotate(0deg) translateX(375px) rotate(0deg); will-change: transform; } /* Radius for third orbit */
    100% { transform: translate3d(-50%, -50%, 0) rotate(-360deg) translateX(375px) rotate(360deg); will-change: transform; } /* Counter-clockwise */
}

@keyframes orbit3icon2 {
    0% { transform: translate3d(-50%, -50%, 0) rotate(120deg) translateX(375px) rotate(-120deg); will-change: transform; } /* Radius for third orbit */
    100% { transform: translate3d(-50%, -50%, 0) rotate(-240deg) translateX(375px) rotate(240deg); will-change: transform; } /* Counter-clockwise */
}

@keyframes orbit3icon3 {
    0% { transform: translate3d(-50%, -50%, 0) rotate(240deg) translateX(375px) rotate(-240deg); will-change: transform; } /* Radius for third orbit */
    100% { transform: translate3d(-50%, -50%, 0) rotate(-120deg) translateX(375px) rotate(120deg); will-change: transform; } /* Counter-clockwise */
}

/* Apply animations to individual icons */
/* Orbit 1 icons */
.orbit-1-icon-1 {
    animation: orbit1icon1 20s linear infinite; /* Faster speed for inner orbit */
    transform: translate(-50%, -50%) rotate(0deg) translateX(187.5px) rotate(0deg); /* Radius for first orbit */
}

.orbit-1-icon-2 {
    animation: orbit1icon2 20s linear infinite; /* Faster speed for inner orbit */
    transform: translate(-50%, -50%) rotate(180deg) translateX(187.5px) rotate(-180deg); /* Radius for first orbit */
}

/* Orbit 2 icons */
.orbit-2-icon-1 {
    animation: orbit2icon1 30s linear infinite;
    transform: translate(-50%, -50%) rotate(0deg) translateX(281.25px) rotate(0deg); /* Increased radius to 150% (187.5px -> 281.25px) */
}

.orbit-2-icon-2 {
    animation: orbit2icon2 30s linear infinite;
    transform: translate(-50%, -50%) rotate(120deg) translateX(281.25px) rotate(-120deg); /* Increased radius to 150% (187.5px -> 281.25px) */
}

.orbit-2-icon-3 {
    animation: orbit2icon3 30s linear infinite;
    transform: translate(-50%, -50%) rotate(240deg) translateX(281.25px) rotate(-240deg); /* Increased radius to 150% (187.5px -> 281.25px) */
}

/* Orbit 3 icons */
.orbit-3-icon-1 {
    animation: orbit3icon1 40s linear infinite; /* Slower speed for outer orbit */
    transform: translate(-50%, -50%) rotate(0deg) translateX(375px) rotate(0deg); /* Radius for third orbit */
}

.orbit-3-icon-2 {
    animation: orbit3icon2 40s linear infinite; /* Slower speed for outer orbit */
    transform: translate(-50%, -50%) rotate(120deg) translateX(375px) rotate(-120deg); /* Radius for third orbit */
}

.orbit-3-icon-3 {
    animation: orbit3icon3 40s linear infinite; /* Slower speed for outer orbit */
    transform: translate(-50%, -50%) rotate(240deg) translateX(375px) rotate(-240deg); /* Radius for third orbit */
}

/* Initial positioning to ensure icons start on their orbits */
.orbit-icon {
    /* Position all icons at the center initially, animations will move them to orbits */
    position: absolute;
    top: 50%;
    left: 50%;
}

/* Ensure the orbit icons are positioned correctly on their orbits */
.orbit-2-icon-1,
.orbit-2-icon-2,
.orbit-2-icon-3 {
    top: 50%;
    left: 50%;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.05); }
}


/* Responsive Design */
@media (max-width: 1024px) {
    .main {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        height: auto;
        min-height: calc(100vh - 160px);
    }
    
    .content-left {
        margin-top: 0;
        align-items: center;
        padding: 1rem 0;
    }
    
    .content-right {
        margin-top: 3vh; /* Reduced from 7.2vh to 3vh to prevent excessive scrolling */
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        max-width: 100%;
    }
    
    .hero-main-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        font-weight: 900;
        letter-spacing: 0.3px;
        max-width: 100%;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .orbit-container {
        width: 375px; /* Increased size to 125% of original (300px) */
        height: 375px; /* Increased size to 125% of original (300px) */
        max-width: none;
        max-height: none;
    }
    
    .orbit-icon {
        width: 50px; /* Increased size to 125% of original (40px) */
        height: 50px; /* Increased size to 125% of original (40px) */
    }
    
    @keyframes orbit2icon1 {
        0% { transform: translate(-50%, -50%) rotate(0deg) translateX(140.625px) rotate(0deg); } /* Increased radius to 125% (112.5px -> 140.625px) */
        100% { transform: translate(-50%, -50%) rotate(360deg) translateX(140.625px) rotate(-360deg); }
    }

    @keyframes orbit2icon2 {
        0% { transform: translate(-50%, -50%) rotate(120deg) translateX(140.625px) rotate(-120deg); } /* Increased radius to 125% (112.5px -> 140.625px) */
        100% { transform: translate(-50%, -50%) rotate(480deg) translateX(140.625px) rotate(-480deg); }
    }

    @keyframes orbit2icon3 {
        0% { transform: translate(-50%, -50%) rotate(240deg) translateX(140.625px) rotate(-240deg); } /* Increased radius to 125% (112.5px -> 140.625px) */
        100% { transform: translate(-50%, -50%) rotate(600deg) translateX(140.625px) rotate(-600deg); }
    }
    
    .orbit-2-icon-1 {
        transform: translate(-50%, -50%) rotate(0deg) translateX(140.625px) rotate(0deg); /* Increased radius to 125% (112.5px -> 140.625px) */
    }
    
    .orbit-2-icon-2 {
        transform: translate(-50%, -50%) rotate(120deg) translateX(140.625px) rotate(-120deg); /* Increased radius to 125% (112.5px -> 140.625px) */
    }
    
    .orbit-2-icon-3 {
        transform: translate(-50%, -50%) rotate(240deg) translateX(140.625px) rotate(-240deg); /* Increased radius to 125% (112.5px -> 140.625px) */
    }
}
    
    .central-hub {
        width: 225px; /* Increased size by 50% (1.5x) from 150px */
        height: 225px; /* Increased size by 50% (1.5x) from 150px */
        margin-top: 0; /* Remove extra margin to center the logo perfectly */
        /* Using a more white glassmorphism background */
        background: linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.45) 0%,
            rgba(255, 255, 255, 0.35) 25%,
            rgba(255, 255, 255, 0.25) 50%,
            rgba(255, 255, 255, 0.35) 75%,
            rgba(255, 255, 255, 0.45) 100%
        );
        /* Adding backdrop filter for glass effect like header */
        backdrop-filter: blur(25px) saturate(180%) brightness(110%);
        -webkit-backdrop-filter: blur(25px) saturate(180%) brightness(110%);
        /* Using similar border and shadow styles as header */
        border: 1px solid rgba(255, 255, 255, 0.5);
        box-shadow: 
            0 8px 32px rgba(0, 0, 0, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.7),
            0 0 0 1px rgba(255, 255, 255, 0.3),
            0 20px 60px rgba(0, 0, 0, 0.08),
            0 0 80px rgba(0, 255, 255, 0.1),
            0 0 25px rgba(255, 255, 255, 0.45); /* Enhanced glow effect */
    }
    
    .central-logo {
        width: 146.25px; /* Increased size by 50% (1.5x) from 97.5px */
        height: 146.25px; /* Increased size by 50% (1.5x) from 97.5px */
    }
}

@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .nav-buttons {
        gap: 0.5rem;
    }
    
    .main {
        padding: 2rem 1rem;
        height: auto;
        min-height: calc(100vh - 160px);
    }
    
    .hero-main-title {
        font-size: 2.3rem;
    }
    
    .hero-subtitle {
        font-size: 1.04rem;
        font-weight: 900;
        letter-spacing: 0.2px;
        margin-bottom: 2rem;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
    
    .primary-btn, .secondary-btn {
        width: 100%;
    }
    
    .orbit-container {
        width: 450px; /* Increased size to 150% of original (300px) */
        height: 450px; /* Increased size to 150% of original (300px) */
        max-width: none;
        max-height: none;
    }
    
    .orbit-icon {
        width: 65.625px; /* Increased size to 150% of original (43.75px) */
        height: 65.625px; /* Increased size to 150% of original (43.75px) */
    }
    
    .orbit-icon:active {
        background: rgba(255, 255, 255, 1) !important;
        box-shadow: 0 0 25px rgba(9, 0, 64, 0.8) !important;
        border-color: #090040 !important;
        transform: scale(1.15) translate(-50%, -50%) !important;
        animation-play-state: paused !important;
    }
    
    @keyframes orbit2icon1 {
        0% { transform: translate(-50%, -50%) rotate(0deg) translateX(112.5px) rotate(0deg); } /* Increased radius to 125% (90px -> 112.5px) */
        100% { transform: translate(-50%, -50%) rotate(360deg) translateX(112.5px) rotate(-360deg); }
    }

    @keyframes orbit2icon2 {
        0% { transform: translate(-50%, -50%) rotate(120deg) translateX(112.5px) rotate(-120deg); } /* Increased radius to 125% (90px -> 112.5px) */
        100% { transform: translate(-50%, -50%) rotate(480deg) translateX(112.5px) rotate(-480deg); }
    }

    @keyframes orbit2icon3 {
        0% { transform: translate(-50%, -50%) rotate(240deg) translateX(112.5px) rotate(-240deg); } /* Increased radius to 125% (90px -> 112.5px) */
        100% { transform: translate(-50%, -50%) rotate(600deg) translateX(112.5px) rotate(-600deg); }
    }
    
    .orbit-2-icon-1 {
        transform: translate(-50%, -50%) rotate(0deg) translateX(112.5px) rotate(0deg); /* Increased radius to 125% (90px -> 112.5px) */
    }
    
    .orbit-2-icon-2 {
        transform: translate(-50%, -50%) rotate(120deg) translateX(112.5px) rotate(-120deg); /* Increased radius to 125% (90px -> 112.5px) */
    }
    
    .orbit-2-icon-3 {
        transform: translate(-50%, -50%) rotate(240deg) translateX(112.5px) rotate(-240deg); /* Increased radius to 125% (90px -> 112.5px) */
    }
}
    
    .central-hub {
        width: 180px; /* Increased size by 50% (1.5x) from 120px */
        height: 180px; /* Increased size by 50% (1.5x) from 120px */
        margin-top: 0; /* Remove extra margin to center the logo perfectly */
        /* Using a more white glassmorphism background */
        background: linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.45) 0%,
            rgba(255, 255, 255, 0.35) 25%,
            rgba(255, 255, 255, 0.25) 50%,
            rgba(255, 255, 255, 0.35) 75%,
            rgba(255, 255, 255, 0.45) 100%
        );
        /* Adding backdrop filter for glass effect like header */
        backdrop-filter: blur(25px) saturate(180%) brightness(110%);
        -webkit-backdrop-filter: blur(25px) saturate(180%) brightness(110%);
        /* Using similar border and shadow styles as header */
        border: 1px solid rgba(255, 255, 255, 0.5);
        box-shadow: 
            0 8px 32px rgba(0, 0, 0, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.7),
            0 0 0 1px rgba(255, 255, 255, 0.3),
            0 20px 60px rgba(0, 0, 0, 0.08),
            0 0 80px rgba(0, 255, 255, 0.1),
            0 0 20px rgba(255, 255, 255, 0.4); /* Enhanced glow effect */
    }
    
    .central-logo {
        width: 112.5px; /* Increased size by 50% (1.5x) from 75px */
        height: 112.5px; /* Increased size by 50% (1.5x) from 75px */
    }
}

@media (max-width: 480px) {
    .nav-links {
        display: none;
    }
    
    .hero-main-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 0.96rem;
        font-weight: 900;
        letter-spacing: 0.1px;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }
    
    .content-left {
        padding: 1rem 0;
        align-items: center;
    }
    
    .orbit-container {
        width: 375px; /* Increased size to 150% of original (250px) */
        height: 375px; /* Increased size to 150% of original (250px) */
        max-width: none;
        max-height: none;
    }
    
    .orbit-container {
        width: 375px; /* Increased size to 150% of original (250px) */
        height: 375px; /* Increased size to 150% of original (250px) */
        max-width: none;
        max-height: none;
    }
    
    .orbit-icon {
        width: 56.25px; /* Increased size to 150% of original (37.5px) */
        height: 56.25px; /* Increased size to 150% of original (37.5px) */
    }
    
    .orbit-icon:active {
        background: rgba(255, 255, 255, 1) !important;
        box-shadow: 0 0 20px rgba(9, 0, 64, 0.7) !important;
        border-color: #090040 !important;
        transform: scale(1.1) translate(-50%, -50%) !important;
        animation-play-state: paused !important;
    }
    
    @keyframes orbit2icon1 {
        0% { transform: translate(-50%, -50%) rotate(0deg) translateX(93.75px) rotate(0deg); } /* Increased radius to 125% (75px -> 93.75px) */
        100% { transform: translate(-50%, -50%) rotate(360deg) translateX(93.75px) rotate(-360deg); }
    }

    @keyframes orbit2icon2 {
        0% { transform: translate(-50%, -50%) rotate(120deg) translateX(93.75px) rotate(-120deg); } /* Increased radius to 125% (75px -> 93.75px) */
        100% { transform: translate(-50%, -50%) rotate(480deg) translateX(93.75px) rotate(-480deg); }
    }

    @keyframes orbit2icon3 {
        0% { transform: translate(-50%, -50%) rotate(240deg) translateX(93.75px) rotate(-240deg); } /* Increased radius to 125% (75px -> 93.75px) */
        100% { transform: translate(-50%, -50%) rotate(600deg) translateX(93.75px) rotate(-600deg); }
    }
    
    .orbit-2-icon-1 {
        transform: translate(-50%, -50%) rotate(0deg) translateX(93.75px) rotate(0deg); /* Increased radius to 125% (75px -> 93.75px) */
    }
    
    .orbit-2-icon-2 {
        transform: translate(-50%, -50%) rotate(120deg) translateX(93.75px) rotate(-120deg); /* Increased radius to 125% (75px -> 93.75px) */
    }
    
    .orbit-2-icon-3 {
        transform: translate(-50%, -50%) rotate(240deg) translateX(93.75px) rotate(-240deg); /* Increased radius to 125% (75px -> 93.75px) */
    }
}
    
    .central-hub {
        width: 157.5px; /* Increased size by 50% (1.5x) from 105px */
        height: 157.5px; /* Increased size by 50% (1.5x) from 105px */
        margin-top: 0; /* Remove extra margin to center the logo perfectly */
        /* Using a more white glassmorphism background */
        background: linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.45) 0%,
            rgba(255, 255, 255, 0.35) 25%,
            rgba(255, 255, 255, 0.25) 50%,
            rgba(255, 255, 255, 0.35) 75%,
            rgba(255, 255, 255, 0.45) 100%
        );
        /* Adding backdrop filter for glass effect like header */
        backdrop-filter: blur(25px) saturate(180%) brightness(110%);
        -webkit-backdrop-filter: blur(25px) saturate(180%) brightness(110%);
        /* Using similar border and shadow styles as header */
        border: 1px solid rgba(255, 255, 255, 0.5);
        box-shadow: 
            0 8px 32px rgba(0, 0, 0, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.7),
            0 0 0 1px rgba(255, 255, 255, 0.3),
            0 20px 60px rgba(0, 0, 0, 0.08),
            0 0 80px rgba(0, 255, 255, 0.1),
            0 0 15px rgba(255, 255, 255, 0.35); /* Enhanced glow effect */
    }
    
    .central-logo {
        width: 101.25px; /* Increased size by 50% (1.5x) from 67.5px */
        height: 101.25px; /* Increased size by 50% (1.5x) from 67.5px */
    }
    
}

/* Default animations for main screen size */

/* Responsive Design */
@media (max-width: 1024px) {
    .orbit-container {
        width: 562.5px; /* Increased size to 150% of original (375px) */
        height: 562.5px; /* Increased size to 150% of original (375px) */
    }
    
    .orbit-icon {
        width: 45px; /* Reduced size to 60% of original (75px) */
        height: 45px; /* Reduced size to 60% of original (75px) */
    }
    
    /* Orbit 1 icons (innermost circle) */
    @keyframes orbit1icon1 {
        0% { transform: translate(-50%, -50%) rotate(0deg) translateX(140.625px) rotate(0deg); } /* Radius for first orbit at tablet size */
        100% { transform: translate(-50%, -50%) rotate(-360deg) translateX(140.625px) rotate(360deg); } /* Counter-clockwise */
    }

    @keyframes orbit1icon2 {
        0% { transform: translate(-50%, -50%) rotate(180deg) translateX(140.625px) rotate(-180deg); } /* Radius for first orbit at tablet size */
        100% { transform: translate(-50%, -50%) rotate(-180deg) translateX(140.625px) rotate(180deg); } /* Counter-clockwise */
    }
    
    /* Orbit 2 icons (middle circle) */
    @keyframes orbit2icon1 {
        0% { transform: translate(-50%, -50%) rotate(0deg) translateX(210.9375px) rotate(0deg); } /* Increased radius to 150% (140.625px -> 210.9375px) */
        100% { transform: translate(-50%, -50%) rotate(360deg) translateX(210.9375px) rotate(-360deg); }
    }

    @keyframes orbit2icon2 {
        0% { transform: translate(-50%, -50%) rotate(120deg) translateX(210.9375px) rotate(-120deg); } /* Increased radius to 150% (140.625px -> 210.9375px) */
        100% { transform: translate(-50%, -50%) rotate(480deg) translateX(210.9375px) rotate(-480deg); }
    }

    @keyframes orbit2icon3 {
        0% { transform: translate(-50%, -50%) rotate(240deg) translateX(210.9375px) rotate(-240deg); } /* Increased radius to 150% (140.625px -> 210.9375px) */
        100% { transform: translate(-50%, -50%) rotate(600deg) translateX(210.9375px) rotate(-600deg); }
    }
    
    /* Orbit 3 icons (outermost circle) */
    @keyframes orbit3icon1 {
        0% { transform: translate(-50%, -50%) rotate(0deg) translateX(281.25px) rotate(0deg); } /* Radius for third orbit at tablet size */
        100% { transform: translate(-50%, -50%) rotate(-360deg) translateX(281.25px) rotate(360deg); } /* Counter-clockwise */
    }

    @keyframes orbit3icon2 {
        0% { transform: translate(-50%, -50%) rotate(120deg) translateX(281.25px) rotate(-120deg); } /* Radius for third orbit at tablet size */
        100% { transform: translate(-50%, -50%) rotate(-240deg) translateX(281.25px) rotate(240deg); } /* Counter-clockwise */
    }

    @keyframes orbit3icon3 {
        0% { transform: translate(-50%, -50%) rotate(240deg) translateX(281.25px) rotate(-240deg); } /* Radius for third orbit at tablet size */
        100% { transform: translate(-50%, -50%) rotate(-120deg) translateX(281.25px) rotate(120deg); } /* Counter-clockwise */
    }
    
    /* Orbit 1 icons positioning */
    .orbit-1-icon-1 {
        transform: translate(-50%, -50%) rotate(0deg) translateX(140.625px) rotate(0deg); /* Radius for first orbit at tablet size */
    }
    
    .orbit-1-icon-2 {
        transform: translate(-50%, -50%) rotate(180deg) translateX(140.625px) rotate(-180deg); /* Radius for first orbit at tablet size */
    }
    
    /* Orbit 2 icons positioning */
    .orbit-2-icon-1 {
        transform: translate(-50%, -50%) rotate(0deg) translateX(210.9375px) rotate(0deg); /* Increased radius to 150% (140.625px -> 210.9375px) */
    }
    
    .orbit-2-icon-2 {
        transform: translate(-50%, -50%) rotate(120deg) translateX(210.9375px) rotate(-120deg); /* Increased radius to 150% (140.625px -> 210.9375px) */
    }
    
    .orbit-2-icon-3 {
        transform: translate(-50%, -50%) rotate(240deg) translateX(210.9375px) rotate(-240deg); /* Increased radius to 150% (140.625px -> 210.9375px) */
    }
    
    /* Orbit 3 icons positioning */
    .orbit-3-icon-1 {
        transform: translate(-50%, -50%) rotate(0deg) translateX(281.25px) rotate(0deg); /* Radius for third orbit at tablet size */
    }
    
    .orbit-3-icon-2 {
        transform: translate(-50%, -50%) rotate(120deg) translateX(281.25px) rotate(-120deg); /* Radius for third orbit at tablet size */
    }
    
    .orbit-3-icon-3 {
        transform: translate(-50%, -50%) rotate(240deg) translateX(281.25px) rotate(-240deg); /* Radius for third orbit at tablet size */
    }
}

@media (max-width: 768px) {
    .orbit-container {
        width: 450px; /* Increased size to 150% of original (300px) */
        height: 450px; /* Increased size to 150% of original (300px) */
    }
    
    .orbit-icon {
        width: 39.375px; /* Reduced size to 60% of original (65.625px) */
        height: 39.375px; /* Reduced size to 60% of original (65.625px) */
    }
    
    .orbit-icon:active {
        background: rgba(255, 255, 255, 1) !important;
        box-shadow: 0 0 25px rgba(9, 0, 64, 0.8) !important;
        border-color: #090040 !important;
        transform: scale(1.15) translate(-50%, -50%) !important;
        animation-play-state: paused !important;
    }
    
    /* Orbit 1 icons (innermost circle) */
    @keyframes orbit1icon1 {
        0% { transform: translate(-50%, -50%) rotate(0deg) translateX(112.5px) rotate(0deg); } /* Radius for first orbit at mobile size */
        100% { transform: translate(-50%, -50%) rotate(-360deg) translateX(112.5px) rotate(360deg); } /* Counter-clockwise */
    }

    @keyframes orbit1icon2 {
        0% { transform: translate(-50%, -50%) rotate(180deg) translateX(112.5px) rotate(-180deg); } /* Radius for first orbit at mobile size */
        100% { transform: translate(-50%, -50%) rotate(-180deg) translateX(112.5px) rotate(180deg); } /* Counter-clockwise */
    }
    
    /* Orbit 2 icons (middle circle) */
    @keyframes orbit2icon1 {
        0% { transform: translate(-50%, -50%) rotate(0deg) translateX(168.75px) rotate(0deg); } /* Increased radius to 150% (112.5px -> 168.75px) */
        100% { transform: translate(-50%, -50%) rotate(360deg) translateX(168.75px) rotate(-360deg); }
    }

    @keyframes orbit2icon2 {
        0% { transform: translate(-50%, -50%) rotate(120deg) translateX(168.75px) rotate(-120deg); } /* Increased radius to 150% (112.5px -> 168.75px) */
        100% { transform: translate(-50%, -50%) rotate(480deg) translateX(168.75px) rotate(-480deg); }
    }

    @keyframes orbit2icon3 {
        0% { transform: translate(-50%, -50%) rotate(240deg) translateX(168.75px) rotate(-240deg); } /* Increased radius to 150% (112.5px -> 168.75px) */
        100% { transform: translate(-50%, -50%) rotate(600deg) translateX(168.75px) rotate(-600deg); }
    }
    
    /* Orbit 3 icons (outermost circle) */
    @keyframes orbit3icon1 {
        0% { transform: translate(-50%, -50%) rotate(0deg) translateX(225px) rotate(0deg); } /* Radius for third orbit at mobile size */
        100% { transform: translate(-50%, -50%) rotate(-360deg) translateX(225px) rotate(360deg); } /* Counter-clockwise */
    }

    @keyframes orbit3icon2 {
        0% { transform: translate(-50%, -50%) rotate(120deg) translateX(225px) rotate(-120deg); } /* Radius for third orbit at mobile size */
        100% { transform: translate(-50%, -50%) rotate(-240deg) translateX(225px) rotate(240deg); } /* Counter-clockwise */
    }

    @keyframes orbit3icon3 {
        0% { transform: translate(-50%, -50%) rotate(240deg) translateX(225px) rotate(-240deg); } /* Radius for third orbit at mobile size */
        100% { transform: translate(-50%, -50%) rotate(-120deg) translateX(225px) rotate(120deg); } /* Counter-clockwise */
    }
    
    /* Orbit 1 icons positioning */
    .orbit-1-icon-1 {
        transform: translate(-50%, -50%) rotate(0deg) translateX(112.5px) rotate(0deg); /* Radius for first orbit at mobile size */
    }
    
    .orbit-1-icon-2 {
        transform: translate(-50%, -50%) rotate(180deg) translateX(112.5px) rotate(-180deg); /* Radius for first orbit at mobile size */
    }
    
    /* Orbit 2 icons positioning */
    .orbit-2-icon-1 {
        transform: translate(-50%, -50%) rotate(0deg) translateX(168.75px) rotate(0deg); /* Increased radius to 150% (112.5px -> 168.75px) */
    }
    
    .orbit-2-icon-2 {
        transform: translate(-50%, -50%) rotate(120deg) translateX(168.75px) rotate(-120deg); /* Increased radius to 150% (112.5px -> 168.75px) */
    }
    
    .orbit-2-icon-3 {
        transform: translate(-50%, -50%) rotate(240deg) translateX(168.75px) rotate(-240deg); /* Increased radius to 150% (112.5px -> 168.75px) */
    }
    
    /* Orbit 3 icons positioning */
    .orbit-3-icon-1 {
        transform: translate(-50%, -50%) rotate(0deg) translateX(225px) rotate(0deg); /* Radius for third orbit at mobile size */
    }
    
    .orbit-3-icon-2 {
        transform: translate(-50%, -50%) rotate(120deg) translateX(225px) rotate(-120deg); /* Radius for third orbit at mobile size */
    }
    
    .orbit-3-icon-3 {
        transform: translate(-50%, -50%) rotate(240deg) translateX(225px) rotate(-240deg); /* Radius for third orbit at mobile size */
    }
}

@media (max-width: 480px) {
    .orbit-container {
        width: 375px; /* Increased size to 150% of original (250px) */
        height: 375px; /* Increased size to 150% of original (250px) */
    }
    
    .orbit-icon {
        width: 33.75px; /* Reduced size to 60% of original (56.25px) */
        height: 33.75px; /* Reduced size to 60% of original (56.25px) */
    }
    
    .orbit-icon:active {
        background: rgba(255, 255, 255, 1) !important;
        box-shadow: 0 0 20px rgba(9, 0, 64, 0.7) !important;
        border-color: #090040 !important;
        transform: scale(1.1) translate(-50%, -50%) !important;
        animation-play-state: paused !important;
    }
    
    /* Orbit 1 icons (innermost circle) */
    @keyframes orbit1icon1 {
        0% { transform: translate(-50%, -50%) rotate(0deg) translateX(93.75px) rotate(0deg); } /* Radius for first orbit at small mobile size */
        100% { transform: translate(-50%, -50%) rotate(-360deg) translateX(93.75px) rotate(360deg); } /* Counter-clockwise */
    }

    @keyframes orbit1icon2 {
        0% { transform: translate(-50%, -50%) rotate(180deg) translateX(93.75px) rotate(-180deg); } /* Radius for first orbit at small mobile size */
        100% { transform: translate(-50%, -50%) rotate(-180deg) translateX(93.75px) rotate(180deg); } /* Counter-clockwise */
    }
    
    /* Orbit 2 icons (middle circle) */
    @keyframes orbit2icon1 {
        0% { transform: translate(-50%, -50%) rotate(0deg) translateX(140.625px) rotate(0deg); } /* Increased radius to 150% (93.75px -> 140.625px) */
        100% { transform: translate(-50%, -50%) rotate(360deg) translateX(140.625px) rotate(-360deg); }
    }

    @keyframes orbit2icon2 {
        0% { transform: translate(-50%, -50%) rotate(120deg) translateX(140.625px) rotate(-120deg); } /* Increased radius to 150% (93.75px -> 140.625px) */
        100% { transform: translate(-50%, -50%) rotate(480deg) translateX(140.625px) rotate(-480deg); }
    }

    @keyframes orbit2icon3 {
        0% { transform: translate(-50%, -50%) rotate(240deg) translateX(140.625px) rotate(-240deg); } /* Increased radius to 150% (93.75px -> 140.625px) */
        100% { transform: translate(-50%, -50%) rotate(600deg) translateX(140.625px) rotate(-600deg); }
    }
    
    /* Orbit 1 icons positioning */
    .orbit-1-icon-1 {
        transform: translate(-50%, -50%) rotate(0deg) translateX(93.75px) rotate(0deg); /* Radius for first orbit at small mobile size */
    }
    
    .orbit-1-icon-2 {
        transform: translate(-50%, -50%) rotate(180deg) translateX(93.75px) rotate(-180deg); /* Radius for first orbit at small mobile size */
    }
    
    /* Orbit 2 icons positioning */
    .orbit-2-icon-1 {
        transform: translate(-50%, -50%) rotate(0deg) translateX(140.625px) rotate(0deg); /* Increased radius to 150% (93.75px -> 140.625px) */
    }
    
    .orbit-2-icon-2 {
        transform: translate(-50%, -50%) rotate(120deg) translateX(140.625px) rotate(-120deg); /* Increased radius to 150% (93.75px -> 140.625px) */
    }
    
    .orbit-2-icon-3 {
        transform: translate(-50%, -50%) rotate(240deg) translateX(140.625px) rotate(-240deg); /* Increased radius to 150% (93.75px -> 140.625px) */
    }
}





