/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: #334155;
    background-color: #ffffff;
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
    position: relative;
    padding-top: 80px;
}

.main {
    margin-top: 20;
    /* Override any default margins */
    flex-grow: 1;
}

.main p {
    text-align: justify;
}

a:hover {
    color: #00d3b8;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-primary {
    font-family: "Lato", sans-serif;
}
  p {
    text-align: justify;
  }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.2;
    color: #1e293b;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: #0d9488;
    color: white;
}

.btn-primary:hover {
    background: #0f766e;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(13, 148, 136, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #1e293b;
}

.btn-white {
    background: white;
    color: #0d9488;
}

.btn-white:hover {
    background: #f8fafc;
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 1rem 0;
    /* Keep existing padding */
    background: #020a20;
    min-height: 80px;
    /* Add a minimum height */
}

.header.scrolled {
    background: rgba(246, 247, 243, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: #0d9488;
    border-radius: 0.5rem;
    color: white;
}

.logo-text h1 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    transition: color 0.3s ease;
}

.logo-text p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    transition: color 0.3s ease;
}

.header.scrolled .logo-text h1 {
    color: #1e293b;
}

.header.scrolled .logo-text p {
    color: #64748b;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #5eead4;
}

.header.scrolled .nav-link {
    color: #1e293b;
}

.header.scrolled .nav-link:hover {
    color: #0d9488;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.header.scrolled .mobile-menu-toggle {
    color: #1e293b;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px; /* Below the fixed header (height: 80px) */
    width: 300px; /* Fixed width, adjust as needed (e.g., 70vw for responsive) */
    right: 0;
    height: auto; /* Let content determine height */
    max-height: 60vh; /* Limit to 60% of viewport height */
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    overflow-y: auto;
    transform: translateY(-100%); /* Start above viewport for slide-in */
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0); /* Slide into view */
}

.mobile-menu-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    max-width: 1200px; /* Match .container */
    margin: 0 auto; /* Center content */
}

.mobile-nav-link {
    display: block;
    padding: 0.75rem 1rem;
    color: #1e293b;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: background 0.3s ease;
}

.mobile-nav-link:hover {
    background: rgba(13, 148, 136, 0.1);
    color: #0d9488;
}

/* Body scroll lock when mobile menu is open */
body.mobile-menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}
/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background-image: url('https://images.pexels.com/photos/590022/pexels-photo-590022.jpeg?auto=compress&cs=tinysrgb&w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.8) 50%, rgba(13, 148, 136, 0.7) 100%);
}

.hero-container {
    position: relative;
    z-index: 10;
    padding: 5rem 1rem;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title-accent {
    display: block;
    color: #5eead4;
}

.hero-subtitle {
    display: block;
    font-size: 1.5rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 600px;
    text-align: justify;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.hero-feature i {
    color: #5eead4;
    width: 1.25rem;
    height: 1.25rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-card-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.hero-card-header h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.hero-card-header p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.hero-card-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-card-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.hero-card-item .accent {
    color: #5eead4;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: #f8fafc;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-text h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.about-description {
    color: #475569;
    line-height: 1.7;
    text-align: justify;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: #0d9488;
    color: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px rgba(13, 148, 136, 0.3);
}

.badge-title {
    font-weight: 700;
    font-size: 1.125rem;
    margin: 0;
}

.badge-subtitle {
    color: #5eead4;
    margin: 0;
}

/* Stats */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background: rgba(13, 148, 136, 0.1);
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    background: #0d9488;
    transform: scale(1.1);
}

.stat-icon i {
    width: 2rem;
    height: 2rem;
    color: #0d9488;
    transition: color 0.3s ease;
}

.stat-item:hover .stat-icon i {
    color: white;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #64748b;
    font-weight: 500;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background: rgba(13, 148, 136, 0.1);
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: #0d9488;
    transform: scale(1.1);
}

.service-icon i {
    width: 2rem;
    height: 2rem;
    color: #0d9488;
    transition: color 0.3s ease;
}

.service-card:hover .service-icon i {
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: #0d9488;
}

.service-card p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #475569;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.service-features li::before {
    content: '';
    width: 0.5rem;
    height: 0.5rem;
    background: #0d9488;
    border-radius: 50%;
    flex-shrink: 0;
}

.service-footer {
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.service-link {
    background: none;
    border: none;
    color: #0d9488;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: #0f766e;
    text-decoration: underline;
}

/* Why Choose Us Section */
.why-choose-us {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

.why-choose-us-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
}

.why-choose-us-background::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
}

.why-choose-us .container {
    position: relative;
    z-index: 10;
}

.why-choose-us .section-header h2 {
    color: white;
}

.why-choose-us .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.reason-item {
    text-align: center;
}

.reason-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.reason-item:hover .reason-icon {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.reason-icon i {
    width: 2.5rem;
    height: 2.5rem;
    color: white;
}

.reason-item h3 {
    color: white;
    margin-bottom: 1rem;
}

.reason-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.cta-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-section h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

.cta-info {
    color: white;
}

.cta-info p {
    margin: 0.5rem 0;
    font-weight: 600;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: #f8fafc;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.contact-form-container {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.contact-form-container h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.75rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.75rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0d9488;
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.contact-info-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background: rgba(13, 148, 136, 0.1);
    border-radius: 0.75rem;
    flex-shrink: 0;
}

.contact-info-icon i {
    color: #0d9488;
    width: 1.5rem;
    height: 1.5rem;
}

.contact-info-item h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-info-item p {
    color: #64748b;
    margin: 0;
}

.office-locations {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.office-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
}

.office-card h4 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.office-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.office-info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #475569;
}

.office-info-item i {
    color: #0d9488;
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

/* Footer */
.footer {
    background: #203954;
    padding: 30px 0;
    color: #ccc7c7;
    font-size: 14px;
    width: 100%;
    margin-top: auto;
}

.footer-content {
  max-width: 1200px; /* control max width */
  margin: 0 auto;    /* center it */
  padding: 0 20px;   /* horizontal spacing */
  display: grid;
   grid-template-columns: 2fr 1fr 1fr; /* Apply fixed column widths */
  gap: 2rem;
  margin-bottom: 1rem;
}

.footer-company {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background: #0d9488;
    border-radius: 0.75rem;
    color: white;
}

.footer-logo h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-logo p {
    color: #94a3b8;
    margin: 0;
}

.footer-description {
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #cbd5e1;
}

.footer-contact-item i {
    color: #5eead4;
    width: 1.25rem;
    height: 1.25rem;
}

.footer-section h4 {
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #5eead4;
}

.footer-locations {
    margin-top: 2rem;
}

.footer-locations h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.footer-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #94a3b8;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.footer-location i {
    color: #5eead4;
    width: 1rem;
    height: 1rem;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 0.8rem;
    padding-bottom: 0;
}

.footer-bottom-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.footer-bottom-content p {
    color: #94a3b8;
    margin: 0;
    font-size: 0.875rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #5eead4;
}

.footer-bottom-links i {
    width: 0.75rem;
    height: 0.75rem;
}

/* Responsive Design */
@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }

    .mobile-menu-toggle {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr 400px;
    }

    .about-content {
        grid-template-columns: 1fr 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr 1fr;
    }

    .form-row {
        grid-template-columns: 1fr 1fr;
    }

    .footer-content {
        grid-template-columns: 6fr 1fr 1fr;
    }

    .hero-title {
        font-size: 4rem;
    }

    .hero-subtitle {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .mobile-menu {
        display: block;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-card {
        display: none;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-features {
        gap: 0.75rem;
    }

    .hero-feature {
        font-size: 0.875rem;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 1.5rem;
    }

    .contact-form-container,
    .contact-info-card,
    .office-card {
        padding: 1.5rem;
    }

    .cta-section {
        padding: 2rem 1.5rem;
    }

    .footer {
        padding: 3rem 0 1.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling enhancement */
html {
    scroll-padding-top: 80px;
}

/* Focus styles for accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid #0d9488;
    outline-offset: 2px;
}

/* Print styles */
@media print {

    .header,
    .mobile-menu,
    .hero-buttons,
    .btn,
    .contact-form {
        display: none;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }

    .hero {
        min-height: auto;
        padding: 2rem 0;
    }

    .section-header h2 {
        font-size: 18pt;
    }
}

/* Dropdown Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    /* Increased to avoid overlap */
    min-width: 180px;
    padding: 0;
    margin: 0;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-item {
    display: block;
    padding: 8px 16px;
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    cursor: pointer;
    /* Ensure cursor indicates clickability */
}

.dropdown-item:hover {
    background-color: #f0f0f0;
}

.tagline {
    font-family: "Bradley Hand ITC", cursive;
    font-style: italic;
    font-size: 0.75rem;
}

/* General Main Section */
.main {
    padding-top: 80px;
    /* Adjusts for fixed header height */
    position: relative;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
    padding: 60px 0;
    scroll-margin-top: 90px;
    overflow: clip;
    background: linear-gradient(rgba(1, 41, 42, 0.7), rgba(7, 56, 57, 0.7)), url('../img/office.jpg') center center no-repeat;
    background-size: cover;
    background-attachment: fixed;
    /* Parallax effect */
    color: #fff;
    /* Text color for readability */
}

.services .service-item {
    position: relative;
    padding-top: 20px;
}

.services .service-item .icon {
    background-color: #020a20;
    width: 72px;
    height: 72px;
    position: relative;
    margin-right: 15px;
    line-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: ease-in-out 0.3s;
}

.services .service-item .icon i {
    color: #43aea0;
    font-size: 32px;
}

.services .service-item .title {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 18px;
}

.services .service-item .title a {
    color: #073839;
}

.services .service-item .title a:hover {
    color: #43aea0;
}

.services .service-item .description {
    font-size: 14px;
}

.services .service-item:hover .icon {
    background-color: #70b9b0;
}

.services .service-item:hover .icon i {
    color: #fff;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list .service-item {
    margin-bottom: 20px;
}


/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
    background-color: var(--surface-color);
    padding: 10px 30px;
    border: 10px solid color-mix(in srgb, var(--default-color), transparent 90%);
    margin-bottom: 20px;
    padding-top: 80px;
}

.service-details .services-list a {
    display: block;
    line-height: 1;
    padding: 8px 0 8px 15px;
    border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
    margin: 20px 0;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    transition: 0.3s;
    text-decoration: none;
    /* Ensure no underline */
}

.service-details .services-list a:hover {
    color: var(--accent-color);
    /* Match hover behavior */
}

.service-details .services-list a.active {
    color: var(--heading-color);
    font-weight: 700;
    border-color: var(--accent-color);
}

.service-details .services-list a:hover {
    border-color: var(--accent-color);
}

.service-details .services-img {
    margin-bottom: 20px;
}

.service-details h3 {
    font-size: 26px;
    font-weight: 700;
}

.service-details h4 {
    font-size: 20px;
    font-weight: 700;
}

.service-details p {
    font-size: 15px;
}

.service-details ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.service-details ul li {
    padding: 5px 0;
    display: flex;
    align-items: center;
}

.service-details ul i {
    font-size: 20px;
    margin-right: 8px;
    color: var(--accent-color);
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
:root {
  --default-color: #413f3f;
  --accent-color: #0d0e0d;
  --heading-color: #073839;
  --surface-color: #d4dedc;
}

.page-title {
  position: fixed;
  top: 100px; /* adjust as needed */
  left: 0;
  z-index: 1000;
  padding: 0.5rem 1rem;
  background: white;
  box-sizing: border-box;
  white-space: nowrap;  /* keeps breadcrumb on one line */
  max-width: 28vw;      /* prevents it from getting too wide */
  /* no fixed width, so it grows with content */
 }

.page-title .heading {
  padding: 0px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 25%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}


/* AOS Animation for Fade-Up */
[data-aos="fade-up"] {
    opacity: 0;
    transition-property: opacity, transform;
    transition-duration: 1s;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos-delay="100"] {
    transition-delay: 100ms;
}

/* Cookie Consent Popup */
.cookie-consent {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border-radius: 5px;
    text-align: center;
}

.cookie-consent .cookie-content {
    margin-bottom: 15px;
}

.cookie-consent .cookie-content p {
    font-size: 14px;
    color: #333;
    margin: 0;
}

.cookie-consent .cookie-content a {
    color: #9cd5ce;
    text-decoration: underline;
}

.cookie-consent .cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.cookie-consent .cookie-btn {
    padding: 8px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.cookie-consent .cookie-accept {
    background: #9cd5ce;
    color: #fff;
}

.cookie-consent .cookie-decline {
    background: #ddd;
    color: #333;
}

.cookie-consent.active {
    display: block;
}



/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
    background-color: var(--surface-color);
    padding: 10px 30px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    margin-bottom: 20px;
}

.service-details .services-list a {
    display: block;
    line-height: 1;
    padding: 8px 0 8px 15px;
    border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
    margin: 20px 0;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    transition: 0.3s;
    text-decoration: none;
    /* Ensure no underline */
}

.service-details .services-list a:hover {
    color: var(--accent-color);
    /* Match hover behavior */
}

.service-details .services-list a.active {
    color: var(--heading-color);
    font-weight: 700;
    border-color: var(--accent-color);
}

.service-details .services-list a:hover {
    border-color: var(--accent-color);
}

.service-details .services-img {
    margin-bottom: 20px;
}

.service-details h3 {
    font-size: 26px;
    font-weight: 700;
}

.service-details h4 {
    font-size: 20px;
    font-weight: 700;
}

.service-details p {
    font-size: 15px;
}

.service-details ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.service-details ul li {
    padding: 5px 0;
    display: flex;
    align-items: center;
}

.service-details ul i {
    font-size: 20px;
    margin-right: 8px;
    color: var(--accent-color);
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
:root {
    --default-color: #413f3f;
    --accent-color: #0d0e0d;
    --heading-color: #073839;
    --surface-color: #ecf7f5;
}

.page-title {
    position: fixed;
    top: 60px;
    /* Adjust based on header height */
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--background-color);
    color: var(--default-color);
}

.page-title .heading {
    padding: 0px 0;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
    font-size: 38px;
    font-weight: 700;
}

.page-title nav {
    background-color: color-mix(in srgb, var(--default-color), transparent 95%);
    padding: 20px 0;
}

.page-title nav ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.page-title nav ol li+li {
    padding-left: 10px;
}

.page-title nav ol li+li::before {
    content: "/";
    display: inline-block;
    padding-right: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.services-box {
  display: flex;
  align-items: flex-start;
  width: 100%;
  gap: 20px;
}

/* Left Column = list + content */
.services-left {
  width: 25%; /* Adjust as needed */
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.services-list {
  background-color: var(--surface-color);
  padding: 20px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
}


/* Right column with image */
.services-image {
  flex: 1; /* take remaining space */
  height: 100%;
}

.services-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}


/*--------------------------------------------------------------
# WhatsApp Button
--------------------------------------------------------------*/
.whatsapp-btn {
  position: fixed;
  bottom: 5px;
  right: 20px;
  background-color: #25d366;
  color: white;
  padding: 15px 25px;
  border-radius: 30px;
  font-size: 14px;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-btn i {
  margin-right: 8px;
  font-size: 20px;
}

.whatsapp-btn:hover {
  padding: 20px 40px;
  font-size: 18px;
  background-color: #128c7e;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 65px;
  z-index: 99999;
  background: #70b9b0;
  width: 40px;
  height: 40px;
  border-radius: 3px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  position: absolute;
  top: 8px;
  left: 8px;
}

.scroll-top:hover {
  background: #8bc6bf;
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 0px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

.section-bg {
  background-color: #203954;
  color: #fff;
}

.section-bg a,
.section-bg h2 {
  color: #fff !important;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: black;
  font-weight: bold;
}

.section-title p {
  margin-bottom: 0;
}

.section-title h6 {
  color: rgb(10, 10, 10);
  text-align: left;
  font-size: 1.25rem;
  font-weight: bold;
  font-style: italic;
  margin-top: 20px;
}
/* Scoped to only the privacy content area */
main.main .vc_row {
  padding: 2rem 1rem;
  font-family: 'Inter', sans-serif;
  background-color: #f9f9f9;
  color: #333;
  font-size: 0.875rem; /* Small print */
  line-height: 1.6;
}

/* Section title */
main.main .section-title h2 {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 1rem;
  color: #1E3A8A;
}

/* Paragraphs */
main.main .service-description {
  margin-bottom: 1rem;
}

/* Bullet Lists inside main only */
main.main .wpb_wrapper ul {
  padding-left: 1.2rem;
  margin-bottom: 1.5rem;
}

main.main .wpb_wrapper ul li {
  margin-bottom: 0.5rem;
  list-style-type: disc;
}

/* Headings inside paragraphs */
main.main .service-description strong {
  color: #1E3A8A;
}

/* Email links */
main.main a[href^="mailto:"] {
  color: #1E3A8A;
  text-decoration: underline;
}

main.main a[href^="mailto:"]:hover {
  text-decoration: none;
}

/* Container responsiveness */
@media (min-width: 768px) {
  main.main .container-fluid {
    max-width: 960px;
    margin: auto;
  }
}
