/* Base Styles */
:root {
    --primary-color: #0056b3;
    --primary-dark: #004494;
    --primary-light: #3a7dca;
    --secondary-color: #111827;
    --text-color: #333;
    --light-text: #f8f9fa;
    --bg-color: #ffffff;
    --dark-bg: #0f172a;
    --gray-bg: #f5f7fa;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --card-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

.dark-mode {
    --text-color: #e2e8f0;
    --light-text: #e2e8f0;
    --bg-color: #111827;
    --dark-bg: #1e293b;
    --gray-bg: #1f2937;
    --border-color: #2d3748;
    --card-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    transition: var(--transition);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 5px;
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.9rem;
    border-radius: 30px;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-weight: 500;
    transition: var(--transition);
}

.btn-sm:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

section {
    padding: 80px 0;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    z-index: 1000;
    transition: var(--transition);
    padding: 20px 0;
}

header.scrolled {
    background-color: var(--bg-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--light-text);
}

header.scrolled .logo h1 {
    color: var(--text-color);
}

.logo span {
    color: var(--primary-color);
}

nav ul {
    display: flex;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: var(--light-text);
    font-weight: 500;
    position: relative;
}

header.scrolled nav ul li a {
    color: var(--text-color);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

nav ul li a:hover::after {
    width: 100%;
}

.toggle-mode {
    cursor: pointer;
    color: var(--light-text);
    font-size: 1.2rem;
    margin-left: 20px;
    transition: var(--transition);
}

header.scrolled .toggle-mode {
    color: var(--text-color);
}

.toggle-mode:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--light-text);
    margin: 2px 0;
    transition: var(--transition);
}

header.scrolled .hamburger span {
    background-color: var(--text-color);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;
    color: var(--light-text);
}

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
}

.hero-tagline {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 500;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.9;
}

.hero-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    text-align: left;
}

.benefit-item i {
    color: var(--success-color);
    margin-right: 10px;
    font-size: 1.1rem;
}

.benefit-item span {
    font-size: 1.1rem;
    font-weight: 500;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--light-text);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

.hero-credentials {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.credential-divider {
    font-size: 0.8rem;
}

/* About Section */
.about {
    background-color: var(--gray-bg);
}

.trust-elements {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.trust-item {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    background-color: var(--bg-color);
    box-shadow: var(--card-shadow);
    width: 300px;
    margin: 1rem;
    transition: var(--transition);
}

.trust-item:hover {
    transform: translateY(-10px);
}

.trust-item i {
    font-size: 2.5rem;
    color: var(--success-color);
    margin-bottom: 1rem;
}

.trust-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background-color: var(--bg-color);
    border-radius: 10px;
    box-shadow: var(--card-shadow);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--primary-color);
    opacity: 0.05;
    transition: var(--transition);
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card:hover::before {
    height: 100%;
}

.icon-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: rgba(0, 86, 179, 0.1);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.service-card:hover .icon-container {
    background-color: var(--primary-color);
}

.icon-container i {
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.service-card:hover .icon-container i {
    color: white;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.service-card p {
    margin-bottom: 1.5rem;
    color: var(--text-color);
    opacity: 0.8;
}

/* Why Choose Us Section */
.why-us {
    background-color: var(--gray-bg);
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 3rem 0;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    width: 250px;
}

.stat-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.counter {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    position: relative;
}

.counter::after {
    content: '+';
    font-size: 2rem;
    position: absolute;
    right: -20px;
}

/* Service Description Slider Styles */
.service-desc-slider {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
    margin-bottom: 60px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.service-desc-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-desc-slide.active {
    opacity: 1;
    visibility: visible;
}

.service-desc-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    border-top: 4px solid var(--primary-color);
    background: linear-gradient(to bottom, rgba(12, 60, 96, 0.1), rgba(12, 60, 96, 0.02));
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
}

/* Service Description Navigation Dots */
.service-desc-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 20px 0 30px;
    gap: 10px;
    position: relative;
    z-index: 10;
}

.service-desc-dots .dot {
    width: 50px;
    height: 6px;
    background-color: var(--border-color);
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.6;
    margin: 0;
}

.service-desc-dots .dot:hover {
    background-color: var(--primary-light);
    opacity: 0.8;
}

.service-desc-dots .dot.active {
    background-color: var(--primary-color);
    width: 70px;
    opacity: 1;
    box-shadow: 0 0 10px rgba(0, 130, 250, 0.5);
}

.service-icon {
    margin-bottom: 1.5rem;
    display: inline-block;
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
    background-color: rgba(0, 86, 179, 0.1);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: var(--transition);
}

.service-desc-content:hover .service-icon i {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-5px);
}

.service-desc-content h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
}

.service-details p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.service-features {
    margin: 1.5rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
}

.feature-item i {
    color: var(--success-color);
    margin-right: 10px;
    font-size: 1rem;
}

.feature-item span {
    font-size: 1.05rem;
    color: var(--text-color);
}

.service-stat {
    background-color: rgba(0, 86, 179, 0.08);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    border-left: 3px solid var(--primary-color);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-right: 1rem;
}

.stat-desc {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.4;
}

.cta-container {
    text-align: center;
    margin-top: 3rem;
}

/* Contact Section */
.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.contact-info,
.map-container {
    flex: 1;
    min-width: 300px;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item i {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-item a:hover {
    color: var(--primary-color);
}

/* Map Container Styles */
.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 450px;
    border-radius: 10px;
}

.contact-info .cta-container {
    margin-top: 2rem;
}

/* Form Styles - Can be removed or kept for future use */

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: var(--light-text);
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.footer-logo h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Animations */
.animate-text {
    opacity: 0;
    transform: translateY(30px);
}

/* Responsiveness */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .trust-elements,
    .stats-container {
        gap: 1rem;
    }
}

@media (max-width: 768px) {

    nav,
    .toggle-mode {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    section {
        padding: 60px 0;
    }

    .trust-item,
    .service-card {
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .container {
        width: 95%;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Animation keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@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);
    }
}

/* Utility animations */
.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.fadeIn {
    animation-name: fadeIn;
}

.float {
    animation: float 4s ease-in-out infinite;
}

.pulse {
    animation: pulse 2s infinite;
}

/* CTA Container in Why Us Section */
.why-us .cta-container {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    padding: 1rem 0;
}

.why-us .btn {
    padding: 14px 36px;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 15px rgba(0, 86, 179, 0.25);
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.why-us .btn i {
    font-size: 1.2rem;
}

.why-us .btn::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: all 0.6s ease;
    z-index: -1;
}

.why-us .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 86, 179, 0.3);
}

.why-us .btn:hover::before {
    left: 100%;
}

.cta-note {
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.8;
    margin-top: 1rem;
    font-style: italic;
}