@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700&display=swap');
/* Base Styles */

:root {
    --primary-color: #00bfe7;
    --dark-bg: #100028;
    --text-light: #ffffff;
    --text-gray: #adadad;
    --border-color: rgba(255, 255, 255, 0.1);
    --paypal-blue: #003087;
    --paypal-light-blue: #009cde;
    --paypal-dark: #1d2939;
    --paypal-text: #243757;
    --white: #ffffff;
}



body {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Josefin Sans", sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
}

/* Modern Navbar Styles */



/* Add smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Add scroll indicator */
.scroll-indicator {
    height: 2px;
    background: var(--paypal-light-blue);
    position: fixed;
    top: 80px;
    left: 0;
    z-index: 1001;
    transition: width 0.3s ease;
}

/* Responsive adjustments */

/* Add hover effect for active state */
.nav-links a.active {
    color: var(--paypal-light-blue);
}

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

/* Optional: Add animation for menu items */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-links li {
    animation: fadeInDown 0.5s ease forwards;
    opacity: 0;
}

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

/* Hero Section with Fixed Background and Button */
.hero {
    height: 400px;
    background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)),
                url('path-to-your-feather-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* This creates a parallax-like effect */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    position: relative;
    margin-top: 70px;
    overflow: hidden;
}

/* Background with better visibility */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/blue.png') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    opacity: 0.15;
    z-index: 1;
    animation: subtlePulse 4s ease-in-out infinite;
}

/* Updated Hero Content */
.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
    animation: fadeIn 1s ease forwards;
}

/* Updated Button Styles */
.cta-button {
    background: var(--paypal-light-blue);
    color: var(--white);
    border: none;
    border-radius: 25px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 156, 222, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Button Hover Effect */
.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--paypal-blue);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: -1;
}

.cta-button:hover::before {
    transform: translateX(0);
}

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

/* Refined Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes subtlePulse {
    0% {
        transform: scale(1);
        opacity: 0.15;
    }
    50% {
        transform: scale(1.01);
        opacity: 0.2;
    }
    100% {
        transform: scale(1);
        opacity: 0.15;
    }
}

/* Text Animations */
.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--paypal-blue);
    margin-bottom: 15px;
    animation: slideDown 0.8s ease forwards;
}

.hero-content p {
    font-size: 18px;
    color: var(--paypal-text);
    margin-bottom: 25px;
    line-height: 1.5;
    animation: slideUp 0.8s ease forwards 0.2s;
}

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

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

/* Optional: Add floating particles */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.particle {
    position: absolute;
    background: var(--paypal-light-blue);
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s infinite;
}

.particle:nth-child(1) { width: 8px; height: 8px; left: 10%; top: 20%; }
.particle:nth-child(2) { width: 12px; height: 12px; left: 20%; top: 40%; animation-delay: -1s; }
.particle:nth-child(3) { width: 10px; height: 10px; left: 80%; top: 60%; animation-delay: -2s; }

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

/* Floating animation for decorative elements */
.hero-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
}

.floating-element {
    position: absolute;
    background: var(--paypal-light-blue);
    opacity: 0.1;
    border-radius: 50%;
}

.float-1 {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

.float-2 {
    width: 50px;
    height: 50px;
    top: 60%;
    right: 10%;
    animation: float 8s ease-in-out infinite -2s;
}

.float-3 {
    width: 75px;
    height: 75px;
    bottom: 10%;
    left: 20%;
    animation: float 7s ease-in-out infinite -1s;
}

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

/* Typing animation for the title */
.hero-content h1 {
    position: relative;
    width: fit-content;
    margin: 0 auto 15px;
}

.hero-content h1::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    height: 50%;
    width: 2px;
    background: var(--paypal-blue);
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    from, to {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

/* Portfolio Section Styles */
.portfolio {
    padding: 80px 20px;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.portfolio-header {
    text-align: center;
    margin-bottom: 50px;
}

.portfolio h2 {
    font-size: 36px;
    color: var(--paypal-blue);
    margin-bottom: 30px;
    font-weight: 600;
}

/* Filter Buttons */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 12px 24px;
    border: 2px solid transparent;
    border-radius: 25px;
    background: transparent;
    color: var(--paypal-text);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--paypal-light-blue);
    opacity: 0.1;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.filter-btn:hover::before,
.filter-btn.active::before {
    transform: translateX(0);
}

.filter-btn.active {
    color: var(--paypal-blue);
    border-color: var(--paypal-light-blue);
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Portfolio Items */
.portfolio-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    transform: scale(1);
}

.portfolio-item.hidden {
    display: none;
    opacity: 0;
    transform: scale(0.8);
}

.portfolio-content {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.portfolio-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 48, 135, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px;
    text-align: center;
}

.portfolio-content:hover .portfolio-overlay {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-content:hover img {
    transform: scale(1.1);
}

.portfolio-overlay h3 {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 10px;
}

.portfolio-overlay p {
    color: var(--white);
    margin-bottom: 20px;
}

.view-project {
    padding: 10px 20px;
    background: var(--white);
    color: var(--paypal-blue);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.view-project:hover {
    background: var(--paypal-light-blue);
    color: var(--white);
}

/* Animation for items */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.portfolio-item {
    animation: fadeIn 0.5s ease forwards;
}

/* CTA Button */
.cta-button {
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
    padding: 14px 32px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #0099b8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero {
        height: 350px;
        padding: 60px 20px;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .portfolio {
        padding: 50px 20px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 300px;
        padding: 40px 20px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .hero .cta-button {
        padding: 12px 24px;
        font-size: 14px;
    }
}

.stats {
    padding: 80px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-around;
    gap: 30px;
}

.stat-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--paypal-light-blue);
    opacity: 0.7;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 156, 222, 0.1);
}

.stat-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 156, 222, 0.1);
    border-radius: 12px;
    color: var(--paypal-light-blue);
    font-size: 24px;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    background: var(--paypal-light-blue);
    color: white;
    transform: rotate(360deg);
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--paypal-blue);
    margin-bottom: 5px;
    font-family: 'Inter', sans-serif;
    line-height: 1;
}

.stat-content p {
    font-size: 16px;
    color: var(--paypal-text);
    margin: 0;
    opacity: 0.8;
}

/* Animation for numbers */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-number.animate {
    animation: countUp 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
        gap: 20px;
    }

    .stat-item {
        padding: 20px;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-content p {
        font-size: 14px;
    }
}

.testimonials {
    padding: 60px 0;
    background: var(--white);
    position: relative;
}

.testimonials h2 {
    text-align: center;
    color: var(--paypal-blue);
    font-size: 28px;
    margin-bottom: 40px;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 40px;
}

.testimonials-wrapper {
    overflow: hidden;
    width: 100%;
}

.testimonial-track {
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: calc((100% - 50px) / 3);
    background: white;
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05),
                0 8px 16px rgba(0, 156, 222, 0.03);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08),
                0 12px 24px rgba(0, 156, 222, 0.05);
}

.testimonial-card img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin-bottom: 12px;
    border: 2px solid var(--paypal-light-blue);
    object-fit: cover;
    box-shadow: 0 3px 8px rgba(0, 156, 222, 0.15);
}

.stars {
    color: #FFD700;
    font-size: 13px;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.testimonial-card p {
    color: var(--paypal-text);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
    min-height: 63px;
}

.testimonial-card h4 {
    color: var(--paypal-blue);
    font-size: 15px;
    margin: 0 0 4px 0;
    font-weight: 600;
}

.testimonial-card span {
    color: var(--paypal-text);
    font-size: 12px;
    opacity: 0.8;
    display: block;
}

.nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--paypal-blue);
    flex-shrink: 0;
}

.nav-btn:hover {
    background: var(--paypal-light-blue);
    color: white;
    transform: scale(1.1);
}

.nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

@media (max-width: 992px) {
    .testimonial-card {
        min-width: calc((100% - 25px) / 2); /* Show 2 cards on tablets */
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        min-width: 100%; /* Show 1 card on mobile */
    }
    
    .testimonials-container {
        padding: 0 20px;
    }
}

.cta {
    padding: 80px 20px;
    background: var(--white);
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta h2 {
    color: #6C63FF; /* Purple color from the image */
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
}

.cta p {
    color: var(--paypal-text);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.8;
}

.cta-button {
    background: #6C63FF;
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #5b52ff;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cta {
        padding: 60px 20px;
    }

    .cta h2 {
        font-size: 30px;
    }
}

footer {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 80px 0 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
}

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

.social-links a {
    color: var(--text-gray);
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.link-group h4 {
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 600;
}

.link-group ul {
    list-style: none;
    padding: 0;
}

.link-group ul li {
    margin-bottom: 12px;
}

.link-group ul li a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
}

.link-group ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.footer-bottom span {
    color: var(--text-gray);
}

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

.legal-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    footer {
        padding: 60px 0 20px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-brand {
        max-width: 100%;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .link-group ul li a:hover {
        padding-left: 0;
    }
}

/* Optional: Add scroll-margin-top to handle fixed header */
#portfolio {
    scroll-margin-top: 80px; /* Match this with headerOffset in JavaScript */
}

/* Add these styles to your existing CSS */
html {
    scroll-behavior: smooth;
}

#portfolio {
    scroll-margin-top: 80px; /* Adjust this value based on your header height */
}

/* Make sure your section has proper spacing */
.portfolio {
    padding-top: 80px; /* Adjust as needed */
}

/* About Hero Section */

/* Contact Page Styles */
.contact-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    text-align: center;
}

.contact-hero h1 {
    font-size: 48px;
    color: var(--paypal-blue);
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
}

.contact-hero p {
    font-size: 18px;
    color: var(--paypal-text);
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.2s;
}

.contact-section {
    padding: 80px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-info {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.info-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.info-card h2 {
    color: var(--paypal-blue);
    font-size: 28px;
    margin-bottom: 15px;
}

.contact-methods {
    margin: 30px 0;
}

.method {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.method .icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 156, 222, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.method .icon i {
    font-size: 20px;
    color: var(--paypal-blue);
}

.method .details h3 {
    font-size: 16px;
    color: var(--paypal-blue);
    margin-bottom: 5px;
}

.method .details a,
.method .details p {
    color: var(--paypal-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.method .details a:hover {
    color: var(--paypal-blue);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(0, 156, 222, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--paypal-blue);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--paypal-blue);
    color: white;
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--paypal-blue);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(0, 156, 222, 0.1);
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--paypal-light-blue);
    box-shadow: 0 0 0 4px rgba(0, 156, 222, 0.1);
}

.submit-btn {
    background: var(--paypal-blue);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.submit-btn:hover {
    background: var(--paypal-light-blue);
    transform: translateY(-2px);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-section h2 {
    text-align: center;
    color: var(--paypal-blue);
    font-size: 36px;
    margin-bottom: 50px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 156, 222, 0.1);
}

.faq-item h3 {
    color: var(--paypal-blue);
    font-size: 18px;
    margin-bottom: 15px;
}

.faq-item p {
    color: var(--paypal-text);
    font-size: 15px;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info {
        position: static;
    }
}

@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 36px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .contact-form,
    .info-card {
        padding: 30px;
    }
}

/* Additional Navigation Styles */
.nav-links .active {
    color: var(--paypal-blue);
    font-weight: 500;
}

/* Updated Contact Form Styles */
.form-header {
    margin-bottom: 30px;
}

.form-header h2 {
    color: var(--paypal-blue);
    font-size: 24px;
    margin-bottom: 10px;
}

.form-header p {
    color: var(--paypal-text);
    font-size: 15px;
}

.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(0, 156, 222, 0.1);
    border-radius: 8px;
    font-size: 15px;
    color: var(--paypal-text);
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-group select:focus {
    outline: none;
    border-color: var(--paypal-light-blue);
    box-shadow: 0 0 0 4px rgba(0, 156, 222, 0.1);
}

/* Form Success Message */
.success-message {
    display: none;
    background: #e8f7f0;
    color: #2d6a4f;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
}

.success-message.show {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    nav {
        padding: 0 15px;
    }

    .logo img {
        height: 40px;
        width: 60px;
    }

    .logo-text {
        font-size: 18px;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        align-items: center;
        gap: 15px;
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 10px;
    }

    /* Hamburger Menu */
    .menu-toggle {
        display: block;
        cursor: pointer;
        padding: 10px;
        z-index: 1000;
    }

    .menu-toggle span {
        display: block;
        width: 25px;
        height: 2px;
        background: var(--paypal-blue);
        margin: 5px 0;
        transition: all 0.3s ease;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Hide desktop CTA button */
    .cta-button {
        display: none;
    }

    /* Contact Section Mobile Styles */
    .contact-section {
        padding: 40px 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-info {
        position: static;
        margin-top: 20px;
    }

    .info-card {
        padding: 25px;
    }

    .contact-methods {
        margin: 20px 0;
    }

    .method {
        margin-bottom: 20px;
    }

    .method .icon {
        width: 40px;
        height: 40px;
    }

    .contact-form {
        padding: 25px;
    }

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

    /* FAQ Section Mobile Styles */
    .faq-section {
        padding: 40px 0;
    }

    .faq-section h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .faq-item {
        padding: 20px;
    }

    .faq-item h3 {
        font-size: 16px;
    }

    .faq-item p {
        font-size: 14px;
    }

    /* Social Links Mobile Styles */
    .social-links {
        justify-content: center;
    }

    .social-links a {
        width: 35px;
        height: 35px;
    }
}

/* Additional Mobile Adjustments for Smaller Screens */
@media (max-width: 480px) {
    .contact-hero h1 {
        font-size: 32px;
    }

    .contact-hero p {
        font-size: 16px;
    }

    .form-header h2 {
        font-size: 22px;
    }

    .submit-btn {
        width: 100%;
        justify-content: center;
    }

    .method .details h3 {
        font-size: 15px;
    }

    .method .details a,
    .method .details p {
        font-size: 14px;
    }
}
