/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #008B8B;
    --secondary-color: #1e3a8a;
    --accent-color: #10b981;
    --light-blue: #3b82f6;
    --white: #ffffff;
    --light-gray: #f8fafc;
    --dark-gray: #64748b;
    --text-dark: #1e293b;
    --gradient-primary: linear-gradient(135deg, #008B8B 0%, #10b981 100%);
    --gradient-secondary: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
    font-weight: 600;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    animation: textGlow 3s ease-in-out infinite alternate;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo .logo {
    height: 50px;
    width: auto;
    margin-right: 10px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section - Consolidated with enhanced hero below */

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--dark-gray);
    font-weight: 500;
}

.hero-image {
    display: flex;
    justify-content: center;
}

.hero-img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
}



/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--dark-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Overview */
.services-overview {
    padding: 80px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.service-link:hover {
    gap: 1rem;
}

/* Why Choose Us */
.why-choose {
    padding: 80px 0;
    background: var(--light-gray);
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-choose-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.why-choose-text>p {
    font-size: 1.125rem;
    color: var(--dark-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.feature h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.feature p {
    color: var(--dark-gray);
    line-height: 1.5;
}

.feature-img {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--primary-color);
}

.testimonial-content p {
    font-style: italic;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1.125rem;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-info h4 {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.author-info p {
    color: var(--dark-gray);
    font-size: 0.875rem;
}

.stars {
    color: #fbbf24;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: var(--gradient-secondary);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta .btn-primary {
    background: var(--white);
    color: var(--secondary-color);
}

.cta .btn-secondary {
    border-color: var(--white);
    color: var(--white);
}

.cta .btn-secondary:hover {
    background: var(--white);
    color: var(--secondary-color);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo .logo {
    height: 60px;
    margin-bottom: 1rem;
}

.footer-logo p {
    color: #94a3b8;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.contact-info p {
    color: #94a3b8;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info i {
    color: var(--primary-color);
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: #94a3b8;
}

/* Responsive Design */
@media (max-width: 1024px) {

    .hero-container,
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        overflow-x: hidden;
    }

    .nav-menu.active {
        left: 0;
    }

    /* Custom scrollbar for mobile nav menu */
    .nav-menu::-webkit-scrollbar {
        width: 6px;
    }

    .nav-menu::-webkit-scrollbar-track {
        background: rgba(0, 139, 139, 0.1);
        border-radius: 10px;
    }

    .nav-menu::-webkit-scrollbar-thumb {
        background: var(--primary-color);
        border-radius: 10px;
    }

    .nav-menu::-webkit-scrollbar-thumb:hover {
        background: var(--accent-color);
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .service-card,
    .testimonial-card {
        padding: 1.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.testimonial-card,
.feature {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus States for Accessibility */
.btn:focus,
.nav-link:focus,
.social-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, #0a192f 0%, #1e3a8a 50%, #008B8B 100%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.about-hero-subtitle {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.6;
}

/* Floating 3D Elements Container */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 2px 4px rgba(255, 255, 255, 0.1);
    animation: slowFloat 15s ease-in-out infinite;
    transition: all 0.3s ease;
}

/* Glassy Bubble Shapes */
.floating-element:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 18%;
    left: 12%;
    animation-delay: 0s;
    animation-duration: 16s;
}

.floating-element:nth-child(2) {
    width: 140px;
    height: 140px;
    bottom: 30%;
    right: 8%;
    animation-delay: -4s;
    animation-duration: 20s;
}

.floating-element:nth-child(3) {
    width: 80px;
    height: 80px;
    top: 35%;
    right: 30%;
    animation-delay: -8s;
    animation-duration: 18s;
}

.floating-element:nth-child(4) {
    width: 120px;
    height: 120px;
    bottom: 15%;
    left: 25%;
    animation-delay: -12s;
    animation-duration: 22s;
}

/* Slower, Smoother 3D Floating Animation */
@keyframes slowFloat {

    0%,
    100% {
        transform: translateY(0px) translateX(0px) rotateZ(0deg) scale(1);
        opacity: 0.7;
    }

    25% {
        transform: translateY(-20px) translateX(15px) rotateZ(5deg) scale(1.05);
        opacity: 0.9;
    }

    50% {
        transform: translateY(-35px) translateX(-8px) rotateZ(-3deg) scale(0.95);
        opacity: 1;
    }

    75% {
        transform: translateY(-15px) translateX(-20px) rotateZ(8deg) scale(1.02);
        opacity: 0.8;
    }
}

/* Enhanced content positioning */
.about-hero-content {
    position: relative;
    z-index: 2;
}

/* Gradient text glow animation defined in main gradient-text class above */

@keyframes textGlow {
    from {
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    }

    to {
        text-shadow: 0 0 40px rgba(255, 255, 255, 0.5);
    }
}

/* Subtle glassy highlight effect */
.floating-element::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 20%;
    width: 40%;
    height: 40%;
    background: radial-gradient(ellipse at top left, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
    border-radius: 50%;
    animation: subtlePulse 8s ease-in-out infinite;
}

/* Subtle bottom reflection */
.floating-element::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 25%;
    width: 30%;
    height: 20%;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: subtlePulse 8s ease-in-out infinite reverse;
}

@keyframes subtlePulse {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 0.3;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .floating-element:nth-child(n+3) {
        display: none;
        /* Keep only 2 bubbles on mobile */
    }

    .floating-element {
        opacity: 0.6;
        /* Make them even more subtle on mobile */
    }
}

/* Our Story */
.our-story {
    padding: 80px 0;
    background: var(--white);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.story-text p {
    font-size: 1.125rem;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.story-img {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

/* Mission Vision Values */
.mission-vision {
    padding: 80px 0;
    background: var(--light-gray);
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.mvv-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
}

.mvv-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.mvv-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.mvv-icon i {
    font-size: 2rem;
    color: var(--white);
}

.mvv-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.mvv-card p {
    color: var(--dark-gray);
    line-height: 1.6;
}

/* Why Us Section */
.why-us {
    padding: 80px 0;
    background: var(--white);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.why-us-item {
    display: grid;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 12px;
    transition: all 0.3s ease;
    justify-items: center;
}

.why-us-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.why-us-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-us-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.why-us-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.why-us-item p {
    color: var(--dark-gray);
    line-height: 1.5;
}

/* Expertise Section */
.expertise {
    padding: 80px 0;
    background: var(--light-gray);
}

.expertise-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.expertise-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.expertise-text>p {
    font-size: 1.125rem;
    color: var(--dark-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.expertise-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.expertise-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.expertise-item i {
    color: var(--accent-color);
    font-size: 1.25rem;
}

.expertise-item span {
    font-weight: 500;
    color: var(--text-dark);
}

.expertise-img {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: var(--gradient-secondary);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.stat-label {
    font-size: 1.25rem;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.stat-description {
    font-size: 0.875rem;
    opacity: 0.8;
    color: var(--white);
}

/* Process Section */
.our-process {
    padding: 80px 0;
    background: var(--white);
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-step {
    display: flex;
    grid-template-columns: 100px 1fr;
    gap: 2rem;
    align-items: center;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 16px;
    position: relative;
}

.process-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.process-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.process-content p {
    color: var(--dark-gray);
    line-height: 1.6;
}

/* Responsive Design for About Page */
@media (max-width: 1024px) {

    .story-content,
    .expertise-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .about-hero-content h1 {
        font-size: 2.5rem;
    }

    .mvv-grid,
    .why-us-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

}

@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2rem;
    }

    .story-text h2,
    .expertise-text h2 {
        font-size: 2rem;
    }

    .mvv-grid,
    .why-us-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .why-us-item {
        flex-direction: column;
        text-align: center;
    }

    .expertise-list {
        gap: 0.75rem;
    }
}

/* Services Page Styles */
.services-hero {
    background: linear-gradient(135deg, #0a192f 0%, #1e3a8a 50%, #008B8B 100%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
}

.services-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.services-hero-subtitle {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.6;
}

/* Services Navigation */
.services-nav {
    background: var(--white);
    padding: 5px 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 80px;
    z-index: 100;
}

.services-nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    max-width: 100%;
    margin: 0 auto;
}

.service-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    text-decoration: none;
    color: var(--text-dark);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-nav-item:hover {
    background: var(--light-gray);
    border-color: var(--primary-color);
}

.service-nav-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.service-nav-item span {
    font-weight: 500;
    text-align: center;
    font-size: 0.875rem;
}

/* Service Sections */
.service-section {
    padding: 80px 0;
    background: var(--white);
}

.service-section.alt {
    background: var(--light-gray);
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.service-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.service-description {
    font-size: 1.125rem;
    color: var(--dark-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.service-features h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    padding: 0.5rem 0;
}

.features-list i {
    color: var(--accent-color);
    font-size: 1rem;
    flex-shrink: 0;
}

.features-list span {
    color: var(--text-dark);
    font-weight: 400;
}

.service-results {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.result-item {
    text-align: center;
}

.result-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.result-label {
    font-size: 0.875rem;
    color: var(--dark-gray);
    font-weight: 500;
}

.service-img {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

/* Additional Services */
.additional-services {
    padding: 80px 0;
    background: var(--white);
}

.additional-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.additional-service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.additional-service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.additional-service-card .service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.additional-service-card .service-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.additional-service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.additional-service-card p {
    color: var(--dark-gray);
    line-height: 1.6;
}

/* Service Process */
.service-process {
    padding: 80px 0;
    background: var(--light-gray);
}

.process-steps {
    display: flex;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.process-step {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
}

.process-step h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.process-step p {
    color: var(--dark-gray);
    line-height: 1.6;
}

/* Responsive Design for Services Page */
@media (max-width: 1024px) {
    .service-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .services-hero-content h1 {
        font-size: 2.5rem;
    }

    .service-text h2 {
        font-size: 2rem;
    }

    .services-nav-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .service-results {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 2rem;
    }

    .service-text h2 {
        font-size: 1.75rem;
    }

    .services-nav-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .additional-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .services-nav-grid {
        grid-template-columns: 1fr;
    }

    .service-section {
        padding: 60px 0;
    }

    .service-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }
}

/* Portfolio Page Styles */
.portfolio-hero {
    background: linear-gradient(135deg, #0a192f 0%, #1e3a8a 50%, #008B8B 100%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
}

.portfolio-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.portfolio-hero-subtitle {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.6;
}

/* Portfolio Filter */
.portfolio-filter {
    background: var(--white);
    padding: 15px 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 80px;
    z-index: 100;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
}

/* Case Studies */
.case-studies {
    padding: 80px 0;
    background: var(--light-gray);
}

.case-study {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 4rem;
    overflow: hidden;
}

.case-study.featured-case {
    border: 3px solid var(--primary-color);
}

.case-study-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
}

.case-study-content.reverse {
    grid-template-columns: 1fr 1fr;
}

.case-study-text {
    padding: 3rem;
}

.case-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.case-study h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.case-description {
    font-size: 1.125rem;
    color: var(--dark-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.case-challenge,
.case-solution {
    margin-bottom: 2rem;
}

.case-challenge h4,
.case-solution h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.case-challenge i {
    color: #ef4444;
}

.case-solution i {
    color: var(--accent-color);
}

.case-challenge p,
.case-solution p {
    color: var(--dark-gray);
    line-height: 1.6;
}

.case-solution ul {
    list-style: none;
    margin-top: 0.75rem;
}

.case-solution li {
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.case-solution li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.case-results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.case-result {
    text-align: center;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 12px;
}

.case-result .result-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.case-result .result-label {
    font-size: 0.875rem;
    color: var(--dark-gray);
    font-weight: 500;
}

.case-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Portfolio Grid */
.portfolio-grid-section {
    padding: 80px 0;
    background: var(--white);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.portfolio-item.hidden {
    display: none;
}

.portfolio-image {
    position: relative;
    overflow: hidden;
}

.portfolio-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 139, 139, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-info {
    text-align: center;
    color: var(--white);
    padding: 2rem;
}

.portfolio-info h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.portfolio-info p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.portfolio-tags {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Client Results */
.client-results {
    padding: 80px 0;
    background: var(--light-gray);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.result-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.result-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.result-icon i {
    font-size: 2rem;
    color: var(--white);
}

.result-stat .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.result-stat .stat-label {
    display: block;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.result-card p {
    color: var(--dark-gray);
    line-height: 1.6;
}

/* Industries */
.industries {
    padding: 80px 0;
    background: var(--white);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.industry-item {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--light-gray);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.industry-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.industry-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.industry-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.industry-item p {
    color: var(--dark-gray);
    font-size: 0.875rem;
}

/* Responsive Design for Portfolio Page */
@media (max-width: 1024px) {

    .case-study-content,
    .case-study-content.reverse {
        grid-template-columns: 1fr;
    }

    .case-study-text {
        padding: 2rem;
    }

    .portfolio-hero-content h1 {
        font-size: 2.5rem;
    }

    .case-results-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .portfolio-hero-content h1 {
        font-size: 2rem;
    }

    .case-study h3 {
        font-size: 1.5rem;
    }

    .case-results-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .results-grid,
    .industries-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .filter-buttons {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }

    .portfolio-filter {
        position: static;
    }
}

@media (max-width: 480px) {
    .case-study-text {
        padding: 1.5rem;
    }

    .filter-buttons {
        flex-direction: column;
        align-items: center;
    }

    .industries-grid {
        grid-template-columns: 1fr;
    }
}


/* Enhanced Mobile Footer Alignment */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        /* Reduced gap for mobile */
    }

    /* Center social links properly */
    .social-links {
        justify-content: center;
    }

    /* Center contact info and maintain icon alignment */
    .contact-info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact-info p {
        justify-content: center;
        max-width: 280px;
        /* Prevent text from being too wide */
    }

    /* Ensure footer sections are properly spaced */
    .footer-section {
        margin-bottom: 1.5rem;
    }

    /* Center footer section headings */
    .footer-section h3 {
        text-align: center;
    }

    /* Center footer lists */
    .footer-section ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
}

/* Additional fix for very small screens */
@media (max-width: 480px) {
    .footer-content {
        gap: 1.5rem;
        padding: 0 10px;
        /* Add some padding on very small screens */
    }

    .social-links {
        gap: 0.75rem;
        /* Slightly reduce gap between social icons */
    }

    .social-link {
        width: 36px;
        /* Slightly smaller on very small screens */
        height: 36px;
    }
}



/* Enhanced Hero Section with Glassmorphism + Parallax */

.hero {
    background: linear-gradient(135deg, #0a192f 0%, #1e3a8a 50%, #008B8B 100%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
    padding: 100px 0 60px;
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Floating Background Elements */
.hero-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(59, 130, 246, 0.1));
    backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: floatShape 20s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 10%;
    animation-delay: -5s;
    animation-duration: 30s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 15%;
    animation-delay: -10s;
    animation-duration: 20s;
}

.shape-4 {
    width: 250px;
    height: 250px;
    top: 40%;
    right: 25%;
    animation-delay: -15s;
    animation-duration: 28s;
}

.shape-5 {
    width: 180px;
    height: 180px;
    bottom: 30%;
    left: 40%;
    animation-delay: -20s;
    animation-duration: 22s;
}

@keyframes floatShape {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.3;
    }

    25% {
        transform: translate(30px, -30px) rotate(90deg) scale(1.1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-20px, 40px) rotate(180deg) scale(0.9);
        opacity: 0.4;
    }

    75% {
        transform: translate(40px, 20px) rotate(270deg) scale(1.05);
        opacity: 0.6;
    }
}

/* Particle Canvas */
.particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Hero Container */
.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Hero Content */
.hero-content {
    transition: transform 0.1s ease-out;
}

.hero-title {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.1;
    color: var(--white);
}

/* Gradient text consolidated above - removed duplicate definition */

@keyframes textShine {

    0%,
    100% {
        filter: brightness(1) drop-shadow(0 0 20px rgba(16, 185, 129, 0.3));
    }

    50% {
        filter: brightness(1.2) drop-shadow(0 0 30px rgba(16, 185, 129, 0.5));
    }
}

.typing-cursor {
    display: inline-block;
    width: 3px;
    height: 1.2em;
    background: #10b981;
    margin-left: 5px;
    animation: blink 1s step-end infinite;
    vertical-align: text-bottom;
}

@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

.hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

/* Fade In Up Animation */
.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-subtitle {
    animation-delay: 0.3s;
}

.hero-buttons {
    animation-delay: 0.5s;
}

.hero-stats {
    animation-delay: 0.7s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    font-size: 0.95rem;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn span,
.btn i {
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* Glass Card Stats */
.hero-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.stat.glass-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.stat.glass-card:hover::before {
    left: 100%;
}

.stat.glass-card:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #10b981;
    text-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Glass Image Card */
.hero-image-wrapper {
    display: flex;
    justify-content: center;
    transition: transform 0.1s ease-out;
}

.glass-image-card {
    position: relative;
    width: 100%;
    max-width: 420px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(30px);
    border-radius: 24px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    overflow: hidden;
}

.glass-image-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(16, 185, 129, 0.4);
}

/* Animated Glow Behind Card */
.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.3) 0%, transparent 70%);
    animation: rotateGlow 10s linear infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes rotateGlow {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Card Shine Effect */
.card-shine {
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: linear-gradient(45deg,
            transparent 30%,
            rgba(255, 255, 255, 0.1) 50%,
            transparent 70%);
    animation: shine 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shine {

    0%,
    100% {
        transform: translate(-100%, -100%);
    }

    50% {
        transform: translate(50%, 50%);
    }
}

.hero-img {
    width: 100%;
    border-radius: 20px;
    display: block;
    position: relative;
    z-index: 1;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 3;
    opacity: 0;
    animation: fadeIn 1s ease-out 1.5s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 13px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s ease-out infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(16px);
    }
}

.arrow-down {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.arrow-down span {
    width: 12px;
    height: 12px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    border-right: 2px solid rgba(255, 255, 255, 0.5);
    transform: rotate(45deg);
    animation: arrowDown 2s ease-out infinite;
}

.arrow-down span:nth-child(2) {
    animation-delay: 0.2s;
}

@keyframes arrowDown {

    0%,
    100% {
        opacity: 0;
        transform: rotate(45deg) translateY(-10px);
    }

    50% {
        opacity: 1;
        transform: rotate(45deg) translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 0 80px;
        min-height: auto;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .hero-stats {
        gap: 1rem;
    }

    .stat.glass-card {
        padding: 1rem 1.5rem;
        flex: 1;
        min-width: 120px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .floating-shape {
        opacity: 0.3;
    }

    .shape-4,
    .shape-5 {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .stat.glass-card {
        padding: 0.75rem 1rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }
}

/* ============================================
   NEW ELEMENTS CSS - ADD TO END OF styles.css
   ============================================ */

/* 1. CLIENT LOGOS SECTION */
.client-logos-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    overflow: hidden;
}

.logos-marquee {
    overflow: hidden;
    padding: 20px 0;
    position: relative;
    mask-image: linear-gradient(to right,
            transparent,
            black 10%,
            black 90%,
            transparent);
    -webkit-mask-image: linear-gradient(to right,
            transparent,
            black 10%,
            black 90%,
            transparent);
}

.logos-track {
    display: flex;
    gap: 4rem;
    animation: marqueeScroll 30s linear infinite;
    width: fit-content;
}

.logos-track:hover {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.logo-item {
    flex-shrink: 0;
    width: 150px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.logo-item:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 139, 139, 0.15);
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: filter 0.3s ease;
}

.logo-item:hover img {
    filter: grayscale(0%) opacity(1);
}

/* 2. TESTIMONIALS CAROUSEL */
.testimonials-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.carousel-container {
    overflow: hidden;
    border-radius: 20px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-card-carousel {
    min-width: 100%;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-color);
    position: relative;
}

.testimonial-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    position: relative;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.verified-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #10b981;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

.verified-badge i {
    color: white;
    font-size: 0.7rem;
}

.quote-icon {
    text-align: center;
    margin-bottom: 1rem;
}

.quote-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.3;
}

.testimonial-content p {
    font-style: italic;
    color: var(--dark-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.125rem;
    text-align: center;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.author-info {
    text-align: left;
}

.author-info h4 {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.author-info p {
    color: var(--dark-gray);
    font-size: 0.875rem;
}

.stars {
    color: #fbbf24;
    font-size: 1rem;
}

.stars i {
    margin: 0 2px;
    animation: starPulse 2s ease-in-out infinite;
}

.stars i:nth-child(1) {
    animation-delay: 0s;
}

.stars i:nth-child(2) {
    animation-delay: 0.1s;
}

.stars i:nth-child(3) {
    animation-delay: 0.2s;
}

.stars i:nth-child(4) {
    animation-delay: 0.3s;
}

.stars i:nth-child(5) {
    animation-delay: 0.4s;
}

@keyframes starPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

/* Carousel Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 139, 139, 0.3);
}

.carousel-btn:hover {
    background: var(--accent-color);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 139, 139, 0.4);
}

.prev-btn {
    left: -25px;
}

.next-btn {
    right: -25px;
}

.carousel-btn i {
    font-size: 1.2rem;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 6px;
}

.carousel-dot:hover {
    background: var(--primary-color);
    opacity: 0.7;
}

/* 3. FLOATING CONTACT BUTTONS */
.floating-contact-buttons {
    position: fixed;
    top: 50%;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    animation: floatButton 3s ease-in-out infinite;
}

.floating-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    animation-delay: 0s;
}

.phone-btn {
    background: linear-gradient(135deg, #008B8B 0%, #006666 100%);
    animation-delay: 0.5s;
}

.email-btn {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    animation-delay: 1s;
}

@keyframes floatButton {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Pulse Animation for WhatsApp */
.whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    animation: pulse 2s ease-out infinite;
    opacity: 0;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* Tooltip */
.btn-tooltip {
    position: absolute;
    right: 70px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.875rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-tooltip::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 5px solid rgba(0, 0, 0, 0.8);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

.floating-btn:hover .btn-tooltip {
    opacity: 1;
    right: 75px;
}

/* Icon Animation */
.floating-btn i {
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

/* Responsive Design for New Elements */
@media (max-width: 1024px) {
    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }
}

@media (max-width: 768px) {

    /* Client Logos */
    .client-logos-section {
        padding: 40px 0;
    }

    .logos-track {
        gap: 2rem;
    }

    .logo-item {
        width: 120px;
        height: 60px;
    }

    /* Testimonials */
    .testimonial-card-carousel {
        padding: 2rem 1.5rem;
    }

    .testimonial-content p {
        font-size: 1rem;
    }

    .testimonial-author {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .author-info {
        text-align: center;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .prev-btn {
        left: 5px;
    }

    .next-btn {
        right: 5px;
    }

    /* Floating Buttons */
    .floating-contact-buttons {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .btn-tooltip {
        display: none;
    }
}

@media (max-width: 480px) {
    .logo-item {
        width: 100px;
        height: 50px;
    }

    .testimonial-card-carousel {
        padding: 1.5rem 1rem;
    }

    .floating-contact-buttons {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }

    .floating-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Our Story */
.our-story-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.story-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.story-text-content p {
    font-size: 1.125rem;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Device Mockups Container */
.story-devices-container {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-device {
    position: absolute;
    transition: transform 0.3s ease;
}

.story-device img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

/* Laptop - Center and largest */
.story-laptop {
    width: 380px;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: floatLaptopDevice 6s ease-in-out infinite;
}

/* Tablet - Left side */
.story-tablet {
    width: 200px;
    z-index: 2;
    left: 10%;
    top: 55%;
    transform: translateY(-50%);
    animation: floatTabletDevice 6s ease-in-out infinite 1s;
}

/* Phone - Right side */
.story-phone {
    width: 140px;
    z-index: 3;
    right: 15%;
    top: 45%;
    transform: translateY(-50%);
    animation: floatPhoneDevice 6s ease-in-out infinite 2s;
}

/* Floating Animation */
@keyframes floatDevice {

    0%,
    100% {
        transform: translate(-50%, -50%) translateY(0px);
    }

    50% {
        transform: translate(-50%, -50%) translateY(-20px);
    }
}

@keyframes floatDevice {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Tablet float animation */
.story-tablet {
    animation: floatTabletDevice 6s ease-in-out infinite 1s;
}

@keyframes floatTabletDevice {

    0%,
    100% {
        transform: translateY(-50%) translateY(0px);
    }

    50% {
        transform: translateY(-50%) translateY(-15px);
    }
}

/* Phone float animation */
.story-phone {
    animation: floatPhoneDevice 6s ease-in-out infinite 2s;
}

@keyframes floatPhoneDevice {

    0%,
    100% {
        transform: translateY(-50%) translateY(0px);
    }

    50% {
        transform: translateY(-50%) translateY(-18px);
    }
}

/* Laptop float animation */
.story-laptop {
    animation: floatLaptopDevice 6s ease-in-out infinite;
}

@keyframes floatLaptopDevice {

    0%,
    100% {
        transform: translate(-50%, -50%) translateY(0px);
    }

    50% {
        transform: translate(-50%, -50%) translateY(-20px);
    }
}

/* Hover effects */
.story-device:hover {
    z-index: 10;
    transform: scale(1.05);
}

.story-laptop:hover {
    transform: translate(-50%, -50%) scale(1.05);
}

.story-tablet:hover {
    transform: translateY(-50%) scale(1.05);
}

.story-phone:hover {
    transform: translateY(-50%) scale(1.05);
}

/* Responsive Design */
@media (max-width: 968px) {
    .story-content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .story-devices-container {
        height: 400px;
    }

    .story-laptop {
        width: 300px;
    }

    .story-tablet {
        width: 160px;
        left: 5%;
    }

    .story-phone {
        width: 110px;
        right: 10%;
    }
}

@media (max-width: 640px) {
    .story-text-content h2 {
        font-size: 2rem;
    }

    .story-text-content p {
        font-size: 1rem;
    }

    .story-devices-container {
        height: 350px;
    }

    .story-laptop {
        width: 250px;
    }

    .story-tablet {
        width: 130px;
        left: 0;
    }

    .story-phone {
        width: 90px;
        right: 5%;
    }
}


.roi-calculator-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

/* Floating Background Elements */
.calculator-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.calc-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 139, 139, 0.05), rgba(16, 185, 129, 0.05));
    backdrop-filter: blur(40px);
    animation: floatCalcShape 20s ease-in-out infinite;
}

.calc-shape-1 {
    width: 250px;
    height: 250px;
    top: 10%;
    left: 5%;
    animation-duration: 25s;
}

.calc-shape-2 {
    width: 180px;
    height: 180px;
    bottom: 15%;
    right: 8%;
    animation-duration: 30s;
    animation-delay: -5s;
}

@keyframes floatCalcShape {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(20px, -20px) rotate(90deg);
    }

    50% {
        transform: translate(-15px, 30px) rotate(180deg);
    }

    75% {
        transform: translate(30px, 15px) rotate(270deg);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--dark-gray);
    max-width: 600px;
    margin: 0 auto;
}

.calculator-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Input Section */
.calculator-inputs {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(0, 139, 139, 0.1);
}

.input-group {
    margin-bottom: 2rem;
}

.input-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.input-group label i {
    color: var(--primary-color);
    font-size: 1rem;
}

.select-wrapper {
    position: relative;
}

.select-wrapper select {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    color: var(--text-dark);
    background: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23008B8B' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.select-wrapper select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 139, 139, 0.1);
}

.slider-container {
    position: relative;
}

.slider-value-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.slider-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.slider-range {
    font-size: 0.875rem;
    color: var(--dark-gray);
}

input[type="range"] {
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: linear-gradient(to right, var(--primary-color) 0%, var(--primary-color) 50%, #e2e8f0 50%, #e2e8f0 100%);
    outline: none;
    -webkit-appearance: none;
    cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--primary-color);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 139, 139, 0.3);
    transition: all 0.3s ease;
}

input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(0, 139, 139, 0.5);
}

input[type="range"]::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--primary-color);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 139, 139, 0.3);
    transition: all 0.3s ease;
}

input[type="range"]::-moz-range-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(0, 139, 139, 0.5);
}

.service-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.service-pill {
    padding: 0.75rem 1.25rem;
    border: 2px solid #e2e8f0;
    border-radius: 25px;
    background: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: var(--dark-gray);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-pill i {
    font-size: 0.9rem;
}

.service-pill:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.service-pill.active {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 139, 139, 0.3);
}

/* Results Section */
.calculator-results {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(0, 139, 139, 0.1);
    position: sticky;
    top: 100px;
}

.results-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #e2e8f0;
}

.results-header h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.results-header p {
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.result-card {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 1.5rem;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.result-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.result-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--dark-gray);
    margin-bottom: 0.75rem;
}

.result-label i {
    color: var(--primary-color);
}

.result-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.result-description {
    font-size: 0.85rem;
    color: var(--dark-gray);
    line-height: 1.5;
}

.roi-highlight {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    margin-top: 1.5rem;
    box-shadow: 0 8px 20px rgba(0, 139, 139, 0.3);
}

.roi-highlight-label {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.roi-highlight-value {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.roi-highlight-description {
    font-size: 0.85rem;
    opacity: 0.9;
}

.cta-button {
    width: 100%;
    padding: 1rem;
    background: var(--gradient-secondary);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.4);
}

.disclaimer {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(0, 139, 139, 0.05);
    border-radius: 12px;
    font-size: 0.8rem;
    color: var(--dark-gray);
    text-align: center;
    line-height: 1.5;
}

/* Progress Bar */
.progress-bar-container {
    margin-top: 1rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 10px;
    transition: width 0.5s ease;
}

/* Animation for results */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.result-card {
    animation: countUp 0.5s ease-out;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .calculator-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .calculator-results {
        position: static;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .calculator-inputs,
    .calculator-results {
        padding: 1.5rem;
    }

    .service-pills {
        gap: 0.5rem;
    }

    .service-pill {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .result-value {
        font-size: 1.75rem;
    }

    .roi-highlight-value {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.75rem;
    }

    .result-value {
        font-size: 1.5rem;
    }

    .roi-highlight-value {
        font-size: 2rem;
    }
}



/* ========================================
   DROPDOWN MENU STYLES
   Add this to your existing styles.css
   ======================================== */

/* Dropdown Container */
.nav-item.has-dropdown {
    position: relative;
}

.nav-item.has-dropdown>.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-icon {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.nav-item.has-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 320px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1000;
    list-style: none;
    padding: 0.75rem 0;
    margin: 0;
    border: 1px solid rgba(0, 139, 139, 0.1);
}

/* Show dropdown on hover */
.nav-item.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dropdown Items */
.dropdown-menu li {
    margin: 0;
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-link:hover {
    background: linear-gradient(90deg, rgba(0, 139, 139, 0.08) 0%, rgba(0, 139, 139, 0.02) 100%);
    border-left-color: var(--primary-color);
    padding-left: 1.75rem;
}

.dropdown-link i {
    font-size: 1.25rem;
    color: var(--primary-color);
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.dropdown-link>div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.dropdown-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.dropdown-desc {
    font-size: 0.8rem;
    color: var(--dark-gray);
    opacity: 0.8;
}

.dropdown-link:hover .dropdown-title {
    color: var(--primary-color);
}

.dropdown-link:hover .dropdown-desc {
    opacity: 1;
}

/* Animation for dropdown items */
.dropdown-menu li {
    animation: fadeInDown 0.3s ease-out backwards;
}

.dropdown-menu li:nth-child(1) {
    animation-delay: 0.05s;
}

.dropdown-menu li:nth-child(2) {
    animation-delay: 0.1s;
}

.dropdown-menu li:nth-child(3) {
    animation-delay: 0.15s;
}

.dropdown-menu li:nth-child(4) {
    animation-delay: 0.2s;
}

.dropdown-menu li:nth-child(5) {
    animation-delay: 0.25s;
}

.dropdown-menu li:nth-child(6) {
    animation-delay: 0.3s;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Divider between items (optional) */
.dropdown-menu li:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Mobile Dropdown Styles */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        min-width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        border: none;
        background: transparent;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0;
    }

    .nav-item.has-dropdown.active .dropdown-menu {
        max-height: 600px;
        padding: 0.5rem 0;
    }

    .dropdown-link {
        padding: 0.875rem 2rem;
        background: rgba(0, 139, 139, 0.03);
        margin: 0.25rem 1rem;
        border-radius: 8px;
        border-left: none;
    }

    .dropdown-link:hover {
        padding-left: 2rem;
        background: rgba(0, 139, 139, 0.08);
    }

    .dropdown-menu li:not(:last-child) {
        border-bottom: none;
    }

    /* Mobile toggle icon */
    .nav-item.has-dropdown>.nav-link {
        justify-content: space-between;
        width: 100%;
    }

    .nav-item.has-dropdown.active .dropdown-icon {
        transform: rotate(180deg);
    }
}

/* Desktop-only hover effect enhancement */
@media (min-width: 769px) {
    .dropdown-menu::before {
        content: '';
        position: absolute;
        top: -8px;
        left: 20px;
        width: 0;
        height: 0;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-bottom: 8px solid var(--white);
        filter: drop-shadow(0 -2px 2px rgba(0, 0, 0, 0.05));
    }

    /* Prevent dropdown from closing when hovering over the gap */
    .nav-item.has-dropdown::after {
        content: '';
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        height: 20px;
    }
}

/* Active state for dropdown parent */
.nav-item.has-dropdown .nav-link.active {
    color: var(--primary-color);
}

/* Smooth transition for all states */
.dropdown-menu,
.dropdown-link,
.dropdown-icon {
    transition: all 0.3s ease;
}

/* ========================================== */
/* Portfolio Page - Project Cards Layout */
/* ========================================== */

/* Fully Responsive Design for Desktop & Mobile */
.case-studies .projects-grid {
    display: grid;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.project-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: #cbd5e1;
}

.project-badge {
    display: inline-block;
    background: #20B2AA;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.project-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 2.5rem;
    align-items: start;
}

.project-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.project-description {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.detail-box {
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid;
    margin-bottom: 1rem;
}

.challenge-box {
    background: #fef2f2;
    border-left-color: #ef4444;
}

.solution-box {
    background: #f0fdf4;
    border-left-color: #22c55e;
}

.detail-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    color: #374151;
}

.challenge-box .detail-header i {
    color: #ef4444;
}

.solution-box .detail-header i {
    color: #22c55e;
}

.detail-box p {
    color: #64748b;
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

.detail-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-box li {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 0.3rem;
    color: #64748b;
    font-size: 0.875rem;
}

.detail-box li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: 600;
    font-size: 0.8rem;
}

.project-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.metric-chip {
    text-align: center;
    padding: 1rem 0.5rem;
}

.metric-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, #20B2AA 0%, #32CD32 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
}

.metric-label {
    color: #64748b;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.2;
}

.project-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #20B2AA;
    color: white;
    padding: 0.875rem 1.75rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(32, 178, 170, 0.25);
}

.project-cta:hover {
    background: #1a9994;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(32, 178, 170, 0.35);
}

/* Enhanced Image Container */
.project-image {
    align-self: center;
    margin-top: 0.5rem;
}

.image-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    transition: all 0.3s ease;
}

.image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(32, 178, 170, 0.1), rgba(50, 205, 50, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.project-card:hover .image-container {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.project-card:hover .image-container::before {
    opacity: 1;
}

.project-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.project-card:hover .project-img {
    transform: scale(1.03);
}

/* Mobile Responsive Design */
@media (max-width: 1024px) {
    .case-studies .projects-grid {
        max-width: 95%;
    }

    .project-layout {
        grid-template-columns: 1fr 300px;
        gap: 2rem;
    }

    .project-img {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .case-studies .projects-grid {
        gap: 2rem;
        padding: 0 1rem;
    }

    .project-card {
        padding: 1.5rem;
    }

    .project-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .project-title {
        font-size: 1.25rem;
    }

    .project-description {
        font-size: 0.9rem;
    }

    .detail-box {
        padding: 0.75rem;
        margin-bottom: 0.75rem;
    }

    .detail-box p,
    .detail-box li {
        font-size: 0.8rem;
    }

    .project-metrics {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .metric-chip {
        padding: 0.75rem;
    }

    .metric-number {
        font-size: 1.5rem;
    }

    .metric-label {
        font-size: 0.7rem;
    }

    .project-cta {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
    }

    .project-img {
        height: 200px;
    }

    .image-container {
        margin-top: 0;
    }
}

@media (max-width: 480px) {
    .case-studies .projects-grid {
        padding: 0 0.5rem;
    }

    .project-card {
        padding: 1.25rem;
    }

    .project-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }

    .project-title {
        font-size: 1.1rem;
        line-height: 1.4;
    }

    .project-description {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .detail-box {
        padding: 0.6rem;
    }

    .detail-header {
        font-size: 0.8rem;
    }

    .project-cta {
        padding: 0.65rem 1.25rem;
        font-size: 0.8rem;
        width: 100%;
        justify-content: center;
    }

    .project-img {
        height: 180px;
    }

    .metric-number {
        font-size: 1.25rem;
    }
}

/* Enhanced Hover Effects for Desktop */
@media (min-width: 769px) {
    .project-card:hover .project-title {
        color: #20B2AA;
        transition: color 0.3s ease;
    }

    .project-card:hover .project-badge {
        transform: translateX(3px);
        transition: transform 0.3s ease;
    }
}

/* Smooth Animations */
.project-card,
.project-title,
.project-badge,
.image-container,
.project-img {
    transition: all 0.3s ease;
}

/* Focus States for Accessibility */
.project-cta:focus {
    outline: 2px solid #20B2AA;
    outline-offset: 2px;
}

.project-card:focus-within {
    box-shadow: 0 0 0 3px rgba(32, 178, 170, 0.1);
}

/* Hero Form Styles - About Page */
.hero-form-card {
    padding: 2.5rem;
    height: auto;
}

.hero-contact-form {
    width: 100%;
}

.form-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-subtitle {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 1.5rem;
}

.form-group {
    position: relative;
    margin-bottom: 1.2rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.9rem 1rem 0.9rem 2.8rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    font-size: 0.95rem;
    color: #fff;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group select {
    appearance: none;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.5);
}

.form-group select:valid {
    color: #fff;
}

.form-group select option {
    background: #1a1a2e;
    color: #fff;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #667eea;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.2);
}

.form-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    pointer-events: none;
    transition: color 0.3s ease;
}

.form-group input:focus~.form-icon,
.form-group select:focus~.form-icon {
    color: #667eea;
}

.form-submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.form-submit-btn i {
    transition: transform 0.3s ease;
}

.form-submit-btn:hover i {
    transform: translateX(5px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-form-card {
        padding: 2rem 1.5rem;
        margin-top: 2rem;
    }

    .form-title {
        font-size: 1.5rem;
    }
}

/* Success/Error Message Styles */
.form-message {
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    animation: slideDown 0.3s ease-out;
    display: none;
}

.form-message.show {
    display: block;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.1);
    border: 2px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Contact Page Styles */
.contact-methods {
    padding: 80px 0;
    background: #fff;
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 3rem;
}

.contact-method {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 139, 139, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-method:hover {
    transform: translateY(-5px);
    background: rgba(0, 139, 139, 0.05);
    border-color: #008b8b;
    box-shadow: 0 8px 30px rgba(0, 139, 139, 0.2);
}

.method-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #008b8b, #20b2aa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: #fff;
}

.contact-method h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-method p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-link {
    color: #008b8b;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #20b2aa;
}

.chat-btn {
    background: linear-gradient(135deg, #008b8b, #20b2aa);
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.chat-btn:hover {
    background: linear-gradient(135deg, #20b2aa, #008b8b);
    transform: translateY(-2px);
}

.availability {
    display: block;
    color: #999;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.contact-forms {
    padding: 80px 0;
    background: #f8f9fa;
}

.forms-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.form-section {
    background: #fff;
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 139, 139, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-header h2 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.form-header p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    color: #333;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: #333;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
    font-family: 'Inter', sans-serif;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #008b8b;
    background: rgba(0, 139, 139, 0.05);
    box-shadow: 0 0 0 3px rgba(0, 139, 139, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group select option {
    background: #fff;
    color: #333;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    cursor: pointer;
    font-size: 0.9rem;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #008b8b;
}

.submit-btn {
    margin-top: 1rem;
    width: 100%;
}

.quick-quote {
    background: rgba(0, 139, 139, 0.05);
    border-color: rgba(0, 139, 139, 0.4);
}

.faq-section {
    padding: 80px 0;
    background: #fff;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border: 1px solid rgba(0, 139, 139, 0.2);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
    border-color: #008b8b;
    box-shadow: 0 4px 20px rgba(0, 139, 139, 0.1);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 139, 139, 0.05);
}

.faq-question h4 {
    color: #333;
    font-weight: 600;
    font-size: 1.1rem;
}

.faq-question i {
    color: #008b8b;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    display: none;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.office-location {
    padding: 80px 0;
    background: #f8f9fa;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.location-info h2 {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.location-info>p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.office-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.office-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.office-detail i {
    color: #008b8b;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.office-detail h4 {
    color: #333;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.office-detail p {
    color: #666;
    line-height: 1.6;
}

.office-detail a {
    color: #008b8b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.office-detail a:hover {
    color: #20b2aa;
}

.map-container {
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 139, 139, 0.2);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 139, 139, 0.1), rgba(0, 139, 139, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder-content {
    text-align: center;
    color: #333;
}

.map-placeholder-content i {
    font-size: 3rem;
    color: #008b8b;
    margin-bottom: 1rem;
}

.map-placeholder-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.map-placeholder-content p {
    color: #666;
    margin-bottom: 0.5rem;
}

.map-note {
    font-size: 0.9rem;
    color: #999;
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 6px;
    font-weight: 600;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Contact Page Responsive */
@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2.5rem;
    }

    .contact-hero-subtitle {
        font-size: 1.1rem;
    }

    .contact-methods-grid {
        grid-template-columns: 1fr;
    }

    .forms-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-section {
        padding: 2rem;
    }

    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 100px 0 60px;
    }

    .contact-hero h1 {
        font-size: 2rem;
    }

    .contact-methods,
    .contact-forms,
    .faq-section,
    .office-location {
        padding: 60px 0;
    }

    .form-section {
        padding: 1.5rem;
    }

    .contact-method {
        padding: 2rem 1.5rem;
    }
}