/* --- START OF FILE styles.css --- */

/* Base Styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-color: #0a9396;
    /* Professional teal */
    --secondary-color: #232d3f;
    /* Dark charcoal for text and backgrounds */
    --accent-color: #ee9b00;
    /* Warm gold for accents */
    --light-color: #ffffff;
    --gray-color: #f8f9fa;
    --text-color: #343a40;
    --text-light: #6c757d;
    --border-color: #dee2e6;
    --shadow-color: rgba(0, 0, 0, 0.08);
    --gradient-primary: linear-gradient(135deg, #0a9396 0%, #007a7a 100%);
    --gradient-secondary: linear-gradient(135deg, #232d3f 0%, #151b25 100%);
    --transition: all 0.3s ease-in-out;
    --border-radius: 6px;
    --border-radius-lg: 12px;
    --container-width: 1200px;
    --header-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 90px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 750px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    outline: none;
    letter-spacing: 0.5px;
}

.btn span {
    margin-right: 8px;
}

.btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(3px);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--light-color);
    box-shadow: 0 4px 15px rgba(10, 147, 150, 0.25);
}

.btn-primary:hover {
    color: var(--light-color);
    box-shadow: 0 6px 20px rgba(10, 147, 150, 0.35);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-outline:hover {
    background: var(--secondary-color);
    color: var(--light-color);
}

.btn-light {
    background: var(--light-color);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-light:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--light-color);
    box-shadow: 0 2px 10px var(--shadow-color);
    transition: var(--transition);
    height: var(--header-height);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 90px;
    width: auto;
}

.nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    margin-right: 30px;
}

.nav-list li {
    margin: 0 18px;
}

.nav-list a {
    color: var(--secondary-color);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    font-size: 16px;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s;
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 100%;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--primary-color);
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--secondary-color);
    position: absolute;
    left: 0;
    transition: var(--transition);
}

.mobile-toggle span:nth-child(1) {
    top: 0;
}

.mobile-toggle span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.mobile-toggle span:nth-child(3) {
    bottom: 0;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 11px;
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 11px;
}


/* Hero Section */
.hero {
    padding-top: calc(var(--header-height) + 80px);
    background-color: var(--gray-color);
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    max-width: 580px;
    padding-right: 40px;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.25;
    color: var(--secondary-color);
    margin-bottom: 24px;
}

.hero-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    max-width: 100%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Stats Section */
.stats {
    background-color: var(--secondary-color);
    color: var(--light-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.stat-item:hover {
    transform: scale(1.05);
    background-color: rgba(255, 255, 255, 0.1);
}

.stat-icon {
    font-size: 36px;
    color: var(--accent-color);
    margin-bottom: 16px;
}

.stat-content h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--light-color);
    margin-bottom: 8px;
}

.stat-content p {
    font-size: 16px;
    color: var(--light-color);
    opacity: 0.8;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    box-shadow: 0 5px 25px var(--shadow-color);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 35px var(--shadow-color);
    border-color: var(--primary-color);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.service-icon i {
    font-size: 30px;
    color: var(--light-color);
}

.service-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 16px;
}

.service-card p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 0;
}

/* About Section */
.about {
    background-color: var(--gray-color);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 40px var(--shadow-color);
}

.about-text {
    flex: 1;
}

.about-text .section-header {
    text-align: left;
    margin-bottom: 30px;
}

.about-text .section-header h2::after {
    left: 0;
    transform: none;
}

.about-text p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 24px;
}

.about-features {
    margin-top: 30px;
    margin-bottom: 40px;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.feature i {
    color: var(--primary-color);
    margin-right: 12px;
    font-size: 20px;
}

.feature span {
    font-weight: 500;
    font-size: 17px;
}

/* Work Process Section */
.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.process-timeline::after {
    content: '';
    position: absolute;
    width: 3px;
    background: var(--border-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1.5px;
}

.process-step-container {
    padding: 10px 40px;
    position: relative;
    width: 50%;
}

.process-step-container.left {
    left: 0;
}

.process-step-container.right {
    left: 50%;
}

.process-step-container::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: var(--light-color);
    border: 4px solid var(--primary-color);
    top: 30px;
    border-radius: 50%;
    z-index: 1;
}

.process-step-container.right::after {
    left: -10px;
}

.process-content {
    padding: 20px 30px;
    background: var(--light-color);
    position: relative;
    border-radius: var(--border-radius);
    box-shadow: 0 3px 15px var(--shadow-color);
}

.process-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
}

.process-content p {
    font-size: 15px;
    color: var(--text-light);
}

/* Testimonials Section */
.testimonials {
    background-color: var(--gray-color);
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-slide {
    display: none;
}

.testimonial-slide.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0.5;
    }
    to {
        opacity: 1;
    }
}

.testimonial-content {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    padding: 50px;
    box-shadow: 0 5px 25px var(--shadow-color);
    text-align: center;
    border-top: 5px solid var(--primary-color);
}

.testimonial-quote i {
    font-size: 28px;
    color: var(--accent-color);
    opacity: 0.7;
    margin-bottom: 16px;
}

.testimonial-content p {
    font-size: 18px;
    color: var(--text-color);
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.8;
}

.testimonial-author {
    display: inline-block;
}

.author-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 4px;
}

.author-info p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

.testimonial-prev,
.testimonial-next {
    background: var(--light-color);
    border: 1px solid var(--border-color);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: var(--primary-color);
    color: var(--light-color);
    border-color: var(--primary-color);
}

.testimonial-dots {
    display: flex;
    margin: 0 20px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--border-color);
    margin: 0 6px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.testimonial-dot.active {
    background-color: var(--primary-color);
    transform: scale(1.3);
}


/* CTA Section */
.cta {
    background: var(--gradient-secondary);
    color: var(--light-color);
    position: relative;
    overflow: hidden;
}

.cta .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-content {
    max-width: 800px;
}

.cta-content h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    opacity: 0.9;
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 80px 0 30px;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 1;
    min-width: 300px;
}

.footer-logo img {
    height: 100px;
    margin-bottom: 20px;
}

.footer-logo p {
    font-size: 15px;
    opacity: 0.8;
    line-height: 1.8;
    max-width: 400px;
}

.footer-nav {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-col {
    flex: 1;
    min-width: 180px;
}

.footer-col h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--light-color);
    position: relative;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.contact-info li i {
    margin-right: 12px;
    margin-top: 5px;
    color: var(--primary-color);
}

.contact-info li a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.6;
}

/* Contact Page Styles */
.contact-hero {
    background: var(--gradient-primary);
    color: var(--light-color);
    padding: calc(var(--header-height) + 60px) 0 80px;
    position: relative;
    overflow: hidden;
}

.contact-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact-hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-hero-content p {
    font-size: 18px;
    opacity: 0.9;
}

.contact-section {
    padding: 90px 0;
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.contact-info>p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.contact-methods {}

.contact-method {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.method-icon {
    width: 60px;
    height: 60px;
    background: var(--gray-color);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.method-icon i {
    font-size: 22px;
    color: var(--primary-color);
}

.method-details h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.method-details p,
.method-details p a {
    color: var(--text-light);
    transition: var(--transition);
}

.method-details p a:hover {
    color: var(--primary-color);
}


.contact-form-wrapper {
    flex: 1.5;
    min-width: 300px;
}

.contact-form {
    background-color: var(--light-color);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: 0 10px 40px var(--shadow-color);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    transition: var(--transition);
    background-color: var(--gray-color);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(10, 147, 150, 0.1);
    background-color: var(--light-color);
}

.contact-form .btn {
    grid-column: span 2;
    margin-top: 10px;
}


/* Popup */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(35, 45, 63, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s;
}

/* Add this to styles.css */

.header.scrolled {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(5px);
}

.popup {
    transition: opacity 0.3s ease, visibility 0s 0.3s;
}

.popup.visible {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease;
}

.popup.visible .popup-content {
    transform: scale(1);
}
.popup-content {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.popup-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.popup-content p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
}


/* Page Content (For Terms/Privacy) */
.page-content {
    padding: calc(var(--header-height) + 60px) 0 80px;
    background-color: var(--gray-color);
}

.page-container {
    background-color: var(--light-color);
    padding: 50px 60px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 5px 25px var(--shadow-color);
    max-width: 900px;
    margin: 0 auto;
}

.page-header {
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 30px;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 16px;
}

.breadcrumbs {
    font-size: 14px;
    color: var(--text-light);
}

.breadcrumbs a {
    color: var(--primary-color);
    font-weight: 500;
}

.breadcrumbs i {
    font-size: 10px;
    margin: 0 10px;
}

.content-wrapper h2 {
    font-size: 26px;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}

.content-wrapper p {
    font-size: 16px;
    margin-bottom: 20px;
}

.content-wrapper ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.content-wrapper ul li {
    font-size: 16px;
    margin-bottom: 10px;
    list-style-type: disc;
    padding-left: 10px;
}

.last-updated {
    font-style: italic;
    color: var(--text-light);
    margin-top: 40px;
    text-align: right;
    font-size: 14px;
}


/* Responsive Styles */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 60px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .stats-grid,
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content {
        flex-direction: column;
        gap: 60px;
    }

    .about-image {
        order: -1;
    }

    .about-text .section-header {
        text-align: center;
    }

    .about-text .section-header h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .process-timeline::after {
        left: 20px;
    }
    
    .process-step-container {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    .process-step-container.right {
        left: 0%;
    }
    
    .process-step-container::after {
        left: 10px;
    }

    .cta .container {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-content {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 70px 0;
    }
    .section-header h2 {
        font-size: 32px;
    }
    .hero-content h1 {
        font-size: 40px;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--light-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease-in-out;
        padding-top: var(--header-height);
    }

    .nav.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        margin: 0;
    }

    .nav-list li {
        margin: 0;
    }

    .nav-list a {
        font-size: 20px;
    }

    .nav .btn {
        margin-top: 40px;
    }
    
    .mobile-toggle {
        display: block;
        z-index: 1001;
    }
    
    .stats-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-top,
    .footer-nav {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .form-group.full-width, .contact-form .btn {
        grid-column: span 1;
    }
    .page-container {
        padding: 30px;
    }
}
/* --- END OF FILE styles.css --- */