:root {
    --cyan: #00D5D9;
    --coral: #FF5841;
    --yellow: #FFD43A;
    --dark: #1A1A1A;
    --light: #F5F7FA;
    --Teal: #008080;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    background: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

.header {
    background: linear-gradient(135deg, var(--Teal), var(--coral));
    color: white;
    padding: 0.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    padding-left: 32px; /* Set to exactly 2cm (32px, assuming 1cm ≈ 16px) */
}

.logo-img {
    height: 40px;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.1);
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 10px; /* Reduced from 16px (1rem) to 10px for tighter spacing */
    margin-left: auto;
    margin-right: 32px; /* Set to 2cm (32px) for spacing from right edge */
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.3rem 0.5rem;
    transition: all 0.3s ease;
    border-radius: 5px;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--yellow);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    cursor: pointer;
}

.lang-icon {
    width: 24px;
    height: 18px;
}

.chat-icon {
    font-size: 1.2rem;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(0, 119, 134, 0.95);
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    list-style: none;
    min-width: 180px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.dropdown-menu.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    padding: 0.75rem 1rem;
    text-decoration: none;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.dropdown-item:hover {
    background: var(--cyan);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 50px;
        left: 0;
        width: 100%;
        background: var(--cyan);
        padding: 1rem;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-link {
        padding: 0.8rem;
        text-align: center;
    }

    .dropdown-menu {
        position: static;
        background: rgba(0, 0, 0, 0.8);
        margin-top: 0.5rem;
        width: 100%;
    }

    .logo {
        padding-left: 10px; /* Adjusted for mobile */
    }

    .nav-links {
        margin-right: 0; /* Remove right margin on mobile */
    }

    .menu-toggle {
        display: block;
    }
}



/* Existing styles remain unchanged, add or update these sections */

/* Hero section with video */
.hero {
    background: none; /* Remove gradient since video will handle background */
    color: white;
    text-align: center;
    padding: 120px 2rem 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Dark overlay for text readability */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.hero-info {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.btn {
    background: var(--yellow);
    color: var(--dark);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    background: #ffcc00;
}

/* Ensure other sections remain unchanged */



/* Existing styles for other sections remain unchanged */
/* .hero {
    background: linear-gradient(135deg, var(--cyan), var(--coral));
    color: white;
    text-align: center;
    padding: 120px 2rem 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.hero-info {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
} */

.btn {
    background: var(--yellow);
    color: var(--dark);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    background: #ffcc00;
}

.section {
    padding: 80px 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--cyan);
    text-align: center;
    margin-bottom: 3rem;
}

.section-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

/* Existing styles remain unchanged, add or update these sections */

/* About Section */
.about {
    background: linear-gradient(135deg, var(--light), #ffffff);
    padding: 80px 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem; /* Reduced gap for tighter layout */
    align-items: flex-start;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.about-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover .about-img {
    transform: scale(1.1);
}

.expert-team-card {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 1.5rem;
    border-radius: 0 0 15px 15px;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.about-image:hover .expert-team-card {
    transform: translateY(0);
}

.expert-team-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.expert-team-card p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.team-stats {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--cyan);
    display: block;
}

.stat-item p {
    font-size: 0.9rem;
    color: white;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-left: 1rem; /* Reduce empty space */
}

.about-story {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-story:hover {
    transform: translateY(-5px);
}

.about-story h3 {
    color: var(--coral);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.about-story p {
    font-size: 1.1rem;
    color: var(--dark);
    line-height: 1.6;
}

.about-mission {
    background: rgba(0, 213, 217, 0.1);
    padding: 2rem;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.about-mission:hover {
    transform: translateY(-5px);
}

.about-mission h3 {
    color: var(--cyan);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.about-mission p {
    font-size: 1.1rem;
    color: var(--dark);
    line-height: 1.6;
}

/* Animation for About Section */
.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: fadeInLeft 0.8s ease-out forwards;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    animation: fadeInRight 0.8s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.3s;
}

@keyframes fadeInLeft {
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    to { opacity: 1; transform: translateX(0); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-image {
        margin-bottom: 1rem;
    }

    .expert-team-card {
        position: relative;
        transform: translateY(0);
        margin-top: 1rem;
    }

    .about-content {
        padding-left: 0;
    }
}
/* Ensure other sections remain unchanged */

/* Existing styles remain unchanged, add or update these sections */

/* Features Section */
.features {
    background: linear-gradient(135deg, #ffffff, var(--light));
    padding: 80px 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 20px 0;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--cyan);
    margin-bottom: 1rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: rotate(15deg);
    color: var(--coral);
}

.feature-card h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.feature-card:hover h3 {
    color: var(--cyan);
}

.feature-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Animation for Features Section */
.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1.0s; }
.delay-6 { animation-delay: 1.2s; }
.delay-7 { animation-delay: 1.4s; }
.delay-8 { animation-delay: 1.6s; }

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .features-container {
        grid-template-columns: 1fr;
    }

    .feature-card:hover {
        transform: translateY(-5px) scale(1.02);
    }
}

/* Existing styles remain unchanged, add or update these sections */

/* Steps Section */
.steps {
    background: linear-gradient(135deg, var(--light), #f9f9f9);
    padding: 80px 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 3rem; /* Increased gap for better spacing */
    position: relative;
    padding: 0 1rem;
}

/* Remove the vertical line (already set to none, no change needed) */
.timeline::before {
    display: none;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    padding-left: 3rem; /* Slightly increased for better alignment */
    position: relative;
    transition: transform 0.3s ease;
}

.timeline-item:hover {
    transform: translateX(10px); /* Subtle hover effect */
}

.timeline-number {
    width: 40px; /* Increased size for modern look */
    height: 40px;
    background: var(--cyan);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    position: absolute;
    left: 0;
    transition: background 0.3s ease;
    z-index: 2;
}

.timeline-item:hover .timeline-number {
    background: var(--coral); /* Color change on hover */
}

.timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-item:hover .timeline-content {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.screenshot-collapse {
    display: none; /* Hidden by default */
    max-height: none; /* Removed fixed height to avoid cropping */
    overflow: visible; /* Changed to visible to show full image */
    transition: opacity 0.3s ease; /* Simplified transition */
}

.timeline-item:hover .screenshot-collapse {
    display: block;
    opacity: 1;
}

.timeline-screenshot {
    width: auto; /* Respect natural width */
    max-width: 250px; /* Reduced from 300px to make it smaller */
    height: auto; /* Preserve aspect ratio */
    border-radius: 10px;
    object-fit: contain; /* Ensure no cropping */
    transition: transform 0.3s ease;
    display: block; /* Ensure proper rendering */
    margin: 0 auto; /* Center the image */
}

.timeline-item:hover .timeline-screenshot {
    transform: scale(1.05); /* Zoom effect on hover */
}

.timeline-item p {
    margin: 0;
    font-size: 1.1rem;
    color: var(--dark);
    line-height: 1.6;
}

/* Animation for Steps Section */
.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1.0s; }

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .timeline {
        gap: 2rem;
    }

    .timeline-item {
        padding-left: 2rem;
    }

    .timeline-number {
        width: 30px;
        height: 30px;
    }

    .timeline-content {
        padding: 1rem;
    }

    .timeline-screenshot {
        max-width: 200px; /* Further reduced for smaller screens */
    }
}

/* Existing styles remain unchanged, add or update these sections */

/* Services Section */
.services {
    background: linear-gradient(135deg, #ffffff, var(--light));
    padding: 80px 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 20px 0;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-icon {
    font-size: 3rem;
    color: var(--cyan);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.service-card:hover .service-icon {
    transform: rotate(360deg); /* Full rotation on hover */
    color: var(--coral);
}

.service-card h3 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: var(--cyan);
}

.service-card p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

/* Animation for Services Section */
.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-container {
        grid-template-columns: 1fr;
    }

    .service-card:hover {
        transform: translateY(-10px) scale(1.02);
    }
}

/* Existing styles remain unchanged, add or update these sections */

/* Pricing Section */
.pricing {
    background: linear-gradient(135deg, var(--light), #ffffff);
    padding: 80px 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 20px 0;
}

.pricing-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.pricing-card.recommended {
    border: 2px solid var(--coral);
    padding: 2.7rem;
}

.pricing-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-icon {
    font-size: 3rem;
    color: var(--cyan);
    margin-bottom: 1.5rem;
    transition: transform 0.6s ease, color 0.3s ease;
}

.pricing-card:hover .service-icon {
    transform: rotate(360deg);
    color: var(--coral);
}

.pricing-card h3 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.pricing-card:hover h3 {
    color: var(--cyan);
}

.price {
    font-size: 2rem;
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-features li {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.pricing-features li:before {
    content: "✓";
    color: var(--cyan);
    position: absolute;
    left: 0;
}

.pricing-btn {
    background: var(--cyan);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    white-space: nowrap; /* Ensure text stays on one line */
}

.pricing-btn:hover {
    background: var(--coral);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.secondary-btn {
    background: #e0e0e0;
    color: var(--dark);
    margin-right: 1rem;
}

.secondary-btn:hover {
    background: #c0c0c0;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.animated-btn {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background: white;
    margin: 5% auto; /* Adjusted to give more space */
    padding: 2.5rem; /* Increased padding */
    border-radius: 15px;
    width: 90%;
    max-width: 700px; /* Increased max-width */
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modal-logo {
    max-width: 150px; /* Adjust size as needed */
    margin-bottom: 1rem;
}

.modal-body {
    display: flex;
    align-items: center;
    gap: 2rem;
    justify-content: center;
}

.promo-image {
    max-width: 200px;
    height: auto;
    border-radius: 10px;
}

.promo-details {
    text-align: left;
    flex-grow: 1;
}

.modal-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.close {
    color: #aaa;
    float: right;
    font-size: 2rem;
    font-weight: bold;
    position: absolute;
    top: 1rem;
    right: 1rem;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: var(--coral);
    text-decoration: none;
}

.blink-text {
    font-size: 2.5rem;
    color: var(--cyan);
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0% { color: var(--cyan); }
    50% { color: var(--coral); }
    100% { color: var(--cyan); }
}

/* Animation for Pricing Section */
.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .pricing-container {
        grid-template-columns: 1fr;
    }

    .pricing-card:hover {
        transform: translateY(-10px) scale(1.02);
    }

    .pricing-btn {
        padding: 0.8rem 1.5rem;
    }

    .modal-content {
        margin: 15% auto;
        padding: 1.5rem;
        flex-direction: column;
    }

    .modal-body {
        flex-direction: column;
        text-align: center;
    }

    .promo-image {
        max-width: 150px;
    }

    .modal-logo {
        max-width: 100px; /* Adjusted for smaller screens */
    }

    .blink-text {
        font-size: 2rem;
    }

    .modal-buttons {
        flex-direction: column;
    }

    .secondary-btn {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

/* Existing styles remain unchanged, add or update these sections */

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #ffffff, var(--light));
    padding: 80px 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    padding: 20px 0;
}

.contact-info {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
}

.contact-info h3 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--cyan);
    margin-right: 1rem;
    flex-shrink: 0;
}

.info-item p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.contact-form-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
}

.contact-form-card:hover, .contact-info:hover {
    transform: translateY(-10px);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--cyan);
    outline: none;
}

.captcha {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

.captcha input {
    flex-grow: 1;
    max-width: 60%;
}

.captcha-text {
    font-size: 1.2rem;
    color: var(--dark);
    font-weight: 600;
    padding: 0.5rem 1rem;
    background: #f5f5f5;
    border-radius: 8px;
}

.captcha-refresh {
    background: var(--cyan);
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.captcha-refresh:hover {
    background: var(--coral);
    transform: translateY(-2px);
}

.captcha-refresh i {
    margin-right: 0;
}

.btn {
    background: var(--cyan);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background: var(--coral);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.success {
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 1.5rem;
}

.error {
    background: #f8d7da;
    color: #721c24;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 1.5rem;
}

/* Animation for Contact Section */
.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-form-card:hover, .contact-info:hover {
        transform: translateY(0);
    }

    .form-group {
        gap: 1rem;
    }

    .captcha {
        flex-direction: column;
        gap: 0.5rem;
    }

    .captcha input {
        max-width: 100%;
    }

    .captcha-refresh {
        width: 100%;
    }

    .btn {
        padding: 0.8rem 1.5rem;
    }
}

/* Existing styles remain unchanged, add or update these sections */

/* Footer Section */
.footer {
    background: linear-gradient(135deg, var(--dark), #1a252f);
    color: #ffffff;
    padding: 40px 2rem 10px;
    margin-top: 40px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section {
    padding: 0;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 1rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--cyan);
}

.download-title {
    font-size: 1.2rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: var(--cyan);
}

.footer-section p {
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--coral);
}

.quick-links-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.social-links a {
    color: #ffffff;
    font-size: 1.2rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    color: var(--cyan);
    transform: translateY(-3px);
}

.app-links {
    display: flex;
    gap: 1rem;
}

.app-icon {
    max-width: 120px; /* Adjust size as needed */
    transition: transform 0.3s ease;
}

.app-icon:hover {
    transform: translateY(-3px);
}

.footer-top-links {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.5rem 2rem;
    text-align: right;
}

.footer-links {
    display: inline-flex;
    gap: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--cyan);
}

.footer-bottom {
    text-align: center;
    padding-top: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        max-width: 120px;
    }

    .quick-links-columns {
        grid-template-columns: 1fr;
    }

    .social-links {
        justify-content: center;
    }

    .app-links {
        flex-direction: column;
        align-items: center;
    }

    .app-icon {
        max-width: 100px;
    }

    .footer-top-links {
        text-align: center;
        padding: 0.5rem 0;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-bottom {
        padding-top: 0.5rem;
    }
}


