/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #00a6fb;
    --primary-dark: #0582ca;
    --primary-light: #90e0ef;
    --secondary-color: #ff6b6b;
    --dark-color: #333;
    --light-color: #f8f9fa;
    --gray-color: #6c757d;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --max-width: 96%;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Dark Mode Variables */
body.dark-mode {
    --primary-color: #00a6fb;
    --primary-dark: #0582ca;
    --primary-light: #0077b6;
    --secondary-color: #ff6b6b;
    --dark-color: #f8f9fa;
    --light-color: #222;
    --gray-color: #adb5bd;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    background-color: #121212;
    color: #f8f9fa;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

body {
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #fff;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: var(--dark-color);
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

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

.section-header .subtitle {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
    position: relative;
}

.section-header .subtitle i {
    margin: 0 5px;
    color: var(--secondary-color);
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    color: var(--dark-color);
}

.section-header h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
}

.section-header p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--gray-color);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.btn i {
    margin-left: 8px;
}

.btn-primary {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 5px 15px rgba(0, 166, 251, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 166, 251, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 166, 251, 0.3);
}

/* Theme Toggle Container */
.theme-container {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.theme-toggle {
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.theme-toggle i {
    font-size: 1.2rem;
    color: var(--dark-color);
    position: absolute;
    transition: var(--transition);
}

.theme-toggle .fa-sun {
    opacity: 0;
    transform: translateY(20px);
}

.theme-toggle .fa-moon {
    opacity: 1;
    transform: translateY(0);
}

body.dark-mode .theme-toggle .fa-sun {
    opacity: 1;
    transform: translateY(0);
    color: #ffc107;
}

body.dark-mode .theme-toggle .fa-moon {
    opacity: 0;
    transform: translateY(-20px);
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

body.dark-mode .preloader {
    background: #121212;
}

.loader {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader svg {
    width: 100%;
    height: 100%;
    animation: rotate 2s linear infinite;
}

#loader-circle {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 4;
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: dash 2s ease-in-out infinite;
}

@keyframes dash {
    0% {
        stroke-dashoffset: 200;
    }

    50% {
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: -200;
    }
}

.loader-text {
    position: absolute;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 2px;
}

/* Header */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

body.dark-mode .header {
    background-color: #1a1a1a;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-icon {
    width: 40px;
    height: 40px;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    font-size: 1.2rem;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
}

.logo span {
    color: var(--primary-color);
}

nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    margin-right: 30px;
}

.nav-links li {
    margin-left: 10px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 600;
    position: relative;
    padding: 5px 0;
    color: var(--dark-color);
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

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

.nav-buttons {
    display: flex;
    align-items: center;
}

.phone-btn {
    display: flex;
    align-items: center;
    margin-right: 15px;
    font-weight: 600;
    color: var(--dark-color);
}

.phone-btn i {
    width: 40px;
    height: 40px;
    background: rgba(0, 166, 251, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 8px;
    transition: var(--transition);
}

.phone-btn:hover i {
    background: var(--primary-color);
    color: #fff;
}

.quote-btn {
    background: var(--primary-color);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.quote-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 166, 251, 0.3);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    margin: 5px 0;
    transition: var(--transition);
}

body.dark-mode .hamburger span {
    background: var(--dark-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding-top: 180px;
    padding-bottom: 100px;
    position: relative;
    overflow: hidden;
}

body.dark-mode .hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #121212 100%);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-particles::before,
.hero-particles::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary-light);
    animation: float 6s infinite;
}

.hero-particles::before {
    top: 20%;
    left: 10%;
    animation-delay: 1s;
}

.hero-particles::after {
    top: 60%;
    left: 80%;
    animation-delay: 2s;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--gray-color);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.feature {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.feature-icon {
    width: 30px;
    height: 30px;
    background: rgba(0, 166, 251, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}

.feature-text h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-color);
}

.hero-image {
    position: relative;
    z-index: 1;
}

.slideshow-container {
    position: relative;
    width: 500px;
    height: 500px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

body.dark-mode .slideshow-container {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.slideshow-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slideshow-image.active {
    opacity: 1;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    left: -30px;
    width: 120px;
    height: 120px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 20px rgba(0, 166, 251, 0.3);
    animation: pulse 3s infinite;
}

.experience-badge .number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.8rem;
    text-align: center;
}

.hero-shape {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
}

.hero-shape svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}

body.dark-mode .hero-shape svg path {
    fill: #1a1a1a;
}

/* Second Hero Section */
.second-hero {
    background: linear-gradient(135deg, #e9ecef 0%, #f8f9fa 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

body.dark-mode .second-hero {
    background: linear-gradient(135deg, #121212 0%, #1a1a1a 100%);
}

.second-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.second-hero-content h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.second-hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.second-hero-content p {
    font-size: 1.1rem;
    color: var(--gray-color);
    margin-bottom: 30px;
    max-width: 500px;
}

.second-hero-image {
    position: relative;
    z-index: 1;
}

.second-slideshow {
    position: relative;
    width: 500px;
    height: 500px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

body.dark-mode .second-slideshow {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Clients Section */
.clients {
    padding: 50px 0;
    background-color: #fff;
}

body.dark-mode .clients {
    background-color: #1a1a1a;
}

.clients-title {
    text-align: center;
    margin-bottom: 30px;
}

.clients-title h4 {
    font-size: 1.1rem;
    color: var(--gray-color);
}

.clients-slider {
    padding: 20px 0;
}

.clients-slider .swiper-slide {
    text-align: center;
    opacity: 0.6;
    transition: var(--transition);
}

.clients-slider .swiper-slide:hover {
    opacity: 1;
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: var(--light-color);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

body.dark-mode .service-card {
    background: #222;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    z-index: -1;
    transition: var(--transition);
    opacity: 0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

body.dark-mode .service-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before {
    height: 100%;
    opacity: 1;
}

.service-card:hover h3,
.service-card:hover p,
.service-card:hover .service-features li,
.service-card:hover .service-link {
    color: #fff;
}

.service-card:hover .service-icon {
    background: #fff;
    color: var(--primary-color);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 166, 251, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    font-size: 30px;
    transition: var(--transition);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    transition: var(--transition);
    color: var(--dark-color);
}

.service-card p {
    margin-bottom: 20px;
    color: var(--gray-color);
    transition: var(--transition);
}

.service-features {
    margin-bottom: 20px;
}

.service-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    color: var(--gray-color);
    transition: var(--transition);
}

.service-features li i {
    color: var(--primary-color);
    margin-right: 10px;
}

.service-card:hover .service-features li i {
    color: #fff;
}

.service-link {
    display: inline-block;
    font-weight: 600;
    color: var(--primary-color);
    transition: var(--transition);
}

.service-link i {
    margin-left: 5px;
    transition: var(--transition);
}

.service-link:hover i {
    transform: translateX(5px);
}

.services-cta {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background: #fff;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
}

body.dark-mode .services-cta {
    background: #222;
}

.services-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.services-cta p {
    margin-bottom: 20px;
    color: var(--gray-color);
}

.services-shape {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
}

.services-shape svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}

body.dark-mode .services-shape svg path {
    fill: #1a1a1a;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: #fff;
}

body.dark-mode .about {
    background-color: #1a1a1a;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

body.dark-mode .about-image img {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.about-experience {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 20px;
}

body.dark-mode .about-experience {
    background: #222;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.experience-item {
    text-align: center;
}

.experience-item h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.experience-item p {
    font-size: 0.9rem;
    color: var(--gray-color);
}

.about-text .section-header {
    text-align: left;
}

.about-text .section-header h2::after {
    left: 0;
    transform: translateX(0);
}

.about-text p {
    margin-bottom: 20px;
    color: var(--gray-color);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
}

.feature-item .feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 166, 251, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    font-size: 20px;
    flex-shrink: 0;
}

.feature-item .feature-text h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.feature-item .feature-text p {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin-bottom: 0;
}

/* Process Section */
.process {
    padding: 100px 0;
    background-color: var(--light-color);
    position: relative;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.process-steps::before {
    content: "";
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-light);
    z-index: -1;
}

.process-step {
    text-align: center;
    width: 18%;
    position: relative;
}

.step-number {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 4rem;
    font-weight: 800;
    color: rgba(0, 166, 251, 0.1);
    z-index: -1;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: #fff;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    font-size: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

body.dark-mode .step-icon {
    background: #222;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.process-step:hover .step-icon {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-5px);
}

.process-step h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.process-step p {
    font-size: 0.9rem;
    color: var(--gray-color);
}

.process-shape {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
}

.process-shape svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}

body.dark-mode .process-shape svg path {
    fill: #1a1a1a;
}

/* Projects Section */
.projects {
    padding: 100px 0;
    background-color: var(--light-color);
}

.project-filter {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 20px;
    background: #fff;
    border: none;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    margin: 5px;
    transition: var(--transition);
    color: var(--dark-color);
}

body.dark-mode .filter-btn {
    background: #222;
    color: var(--dark-color);
}

.filter-btn.active,
.filter-btn:hover {
    color: var(--dark-color);
}

body.dark-mode .filter-btn {
    background: #222;
    color: var(--dark-color);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 5px 15px rgba(0, 166, 251, 0.3);
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.project-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

body.dark-mode .project-item {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.project-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

body.dark-mode .project-item:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.project-img {
    position: relative;
    overflow: hidden;
}

.project-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.project-item:hover .project-img img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
}

.project-item:hover .project-overlay {
    opacity: 1;
}

.project-category {
    background: var(--primary-color);
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    margin-bottom: 15px;
    transform: translateY(-20px);
    transition: var(--transition);
    transition-delay: 0.1s;
}

.project-item:hover .project-category {
    transform: translateY(0);
}

.project-overlay h3 {
    color: #fff;
    margin-bottom: 15px;
    transform: translateY(20px);
    transition: var(--transition);
    transition-delay: 0.2s;
    text-align: center;
    padding: 0 20px;
}

.project-item:hover .project-overlay h3 {
    transform: translateY(0);
}

.project-link {
    width: 50px;
    height: 50px;
    background: #fff;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
    transition-delay: 0.3s;
}

.project-item:hover .project-link {
    transform: translateY(0);
    opacity: 1;
}

.project-link:hover {
    background: var(--primary-color);
    color: #fff;
}

/* Counter Section */
.counter {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #fff;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.counter-item {
    padding: 20px;
}

.counter-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    font-size: 30px;
}

.counter-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.counter-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background-color: #fff;
    position: relative;
}

body.dark-mode .testimonials {
    background-color: #1a1a1a;
}

.testimonial-slider {
    padding: 30px 0;
    overflow: hidden;
}

.testimonial-card {
    background: var(--light-color);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
}

body.dark-mode .testimonial-card {
    background: #222;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

body.dark-mode .testimonial-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.testimonial-rating {
    margin-bottom: 20px;
    color: var(--warning-color);
}

.testimonial-text {
    margin-bottom: 20px;
}

.testimonial-text p {
    font-style: italic;
    color: var(--dark-color);
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-info h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.author-info p {
    font-size: 0.9rem;
    color: var(--gray-color);
}

.swiper-pagination {
    position: static;
    margin-top: 30px;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--primary-light);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color);
}

.testimonials-shape {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
}

.testimonials-shape svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}

body.dark-mode .testimonials-shape svg path {
    fill: #1a1a1a;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background-color: var(--light-color);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
}

.faq-item {
    background: #fff;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
}

body.dark-mode .faq-item {
    background: #222;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

body.dark-mode .faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--dark-color);
}

.faq-icon {
    width: 30px;
    height: 30px;
    background: rgba(0, 166, 251, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    background: var(--primary-color);
    color: #fff;
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 1000px;
}

.faq-answer p {
    color: var(--gray-color);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: #fff;
    position: relative;
}

body.dark-mode .contact {
    background-color: #1a1a1a;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.info-item {
    display: flex;
    margin-bottom: 30px;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 166, 251, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    font-size: 24px;
    flex-shrink: 0;
}

.info-details h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.info-details p {
    color: var(--gray-color);
    margin-bottom: 5px;
}

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

.social-link {
    width: 60px;
    height: 60px;
    background: rgba(0, 166, 251, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    transition: var(--transition);
}

.social-link i {
    font-size: 24px;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-5px);
}

.contact-form {
    background: var(--light-color);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
}

body.dark-mode .contact-form {
    background: #222;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.map-container {
    margin-top: 50px;
}

.map-container h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
    color: var(--dark-color);
}

.google-map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

body.dark-mode .google-map {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.contact-shape {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
}

.contact-shape svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}

body.dark-mode .contact-shape svg path {
    fill: #333;
}

/* Newsletter Section */
.newsletter {
    padding: 50px 0;
    background-color: #333;
    color: #fff;
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.newsletter-text h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.newsletter-text p {
    color: #ccc;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    width: 100%;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 50px 0 0 50px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 0 30px;
    border: none;
    border-radius: 0 50px 50px 0;
    background: var(--primary-color);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--primary-dark);
}

/* Footer */
.footer {
    background-color: #222;
    color: #fff;
    padding: 100px 0 0;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-about {
    margin-bottom: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo h2 {
    font-size: 1.8rem;
}

.footer-logo span {
    color: var(--primary-color);
}

.footer-about p {
    color: #ccc;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
}

.footer-social a {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    transition: var(--transition);
}

.footer-social a i {
    font-size: 24px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

.footer-links h3,
.footer-services h3,
.footer-contact h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after,
.footer-services h3::after,
.footer-contact h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.footer-links ul li,
.footer-services ul li,
.footer-contact ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.footer-links ul li a,
.footer-services ul li a {
    color: #ccc;
    transition: var(--transition);
}

.footer-links ul li a:hover,
.footer-services ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-links ul li i,
.footer-services ul li i {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-contact ul li i {
    width: 30px;
    height: 30px;
    background: rgba(0, 166, 251, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
}

.footer-contact ul li {
    color: #ccc;
}

.footer-app {
    margin-top: 20px;
}

.footer-app h4 {
    margin-bottom: 15px;
}

.app-buttons {
    display: flex;
    gap: 10px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 20px;
}

.copyright p {
    color: #ccc;
}

.footer-bottom-links a {
    color: #ccc;
    margin-left: 20px;
    transition: var(--transition);
}

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

.footer-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.footer-shape svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 70px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/* Developer Info */
.developer-info {
    text-align: center;
    padding: 10px 0;
    opacity: 0.4;
    transition: var(--transition);
}

.developer-info:hover {
    opacity: 0.8;
}

.developer-info p {
    font-size: 0.8rem;
    color: #ccc;
}

.developer-info a {
    color: #ccc;
    text-decoration: none;
}

.developer-info a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Responsive Styles */