/* Poppins font weights used: 300, 400, 500, 600, 700 (Normal style only) */
@font-face {
     font-display: swap;
     font-family: 'Poppins';
     font-style: normal;
     font-weight: 300;
     src: url('../fonts/poppins-v22-latin-300.eot');
     src: url('../fonts/poppins-v22-latin-300.eot?#iefix') format('embedded-opentype'),
          url('../fonts/poppins-v22-latin-300.woff2') format('woff2'),
          url('../fonts/poppins-v22-latin-300.woff') format('woff'),
          url('../fonts/poppins-v22-latin-300.ttf') format('truetype'),
          url('../fonts/poppins-v22-latin-300.svg#Poppins') format('svg');
}

@font-face {
     font-display: swap;
     font-family: 'Poppins';
     font-style: normal;
     font-weight: 400;
     src: url('../fonts/poppins-v22-latin-regular.eot');
     src: url('../fonts/poppins-v22-latin-regular.eot?#iefix') format('embedded-opentype'),
          url('../fonts/poppins-v22-latin-regular.woff2') format('woff2'),
          url('../fonts/poppins-v22-latin-regular.woff') format('woff'),
          url('../fonts/poppins-v22-latin-regular.ttf') format('truetype'),
          url('../fonts/poppins-v22-latin-regular.svg#Poppins') format('svg');
}

@font-face {
     font-display: swap;
     font-family: 'Poppins';
     font-style: normal;
     font-weight: 500;
     src: url('../fonts/poppins-v22-latin-500.eot');
     src: url('../fonts/poppins-v22-latin-500.eot?#iefix') format('embedded-opentype'),
          url('../fonts/poppins-v22-latin-500.woff2') format('woff2'),
          url('../fonts/poppins-v22-latin-500.woff') format('woff'),
          url('../fonts/poppins-v22-latin-500.ttf') format('truetype'),
          url('../fonts/poppins-v22-latin-500.svg#Poppins') format('svg');
}

@font-face {
     font-display: swap;
     font-family: 'Poppins';
     font-style: normal;
     font-weight: 600;
     src: url('../fonts/poppins-v22-latin-600.eot');
     src: url('../fonts/poppins-v22-latin-600.eot?#iefix') format('embedded-opentype'),
          url('../fonts/poppins-v22-latin-600.woff2') format('woff2'),
          url('../fonts/poppins-v22-latin-600.woff') format('woff'),
          url('../fonts/poppins-v22-latin-600.ttf') format('truetype'),
          url('../fonts/poppins-v22-latin-600.svg#Poppins') format('svg');
}

@font-face {
     font-display: swap;
     font-family: 'Poppins';
     font-style: normal;
     font-weight: 700;
     src: url('../fonts/poppins-v22-latin-700.eot');
     src: url('../fonts/poppins-v22-latin-700.eot?#iefix') format('embedded-opentype'),
          url('../fonts/poppins-v22-latin-700.woff2') format('woff2'),
          url('../fonts/poppins-v22-latin-700.woff') format('woff'),
          url('../fonts/poppins-v22-latin-700.ttf') format('truetype'),
          url('../fonts/poppins-v22-latin-700.svg#Poppins') format('svg');
}

:root {
     --primary-color: #0066ff;
     --primary-darker: #004ecc;
     --secondary-color: #6c757d;
     --light-color: #f8f9fa;
     --white-color: #ffffff;
     --dark-color: #1a1a1a;
     --dark-alt-color: #2a2a2a;
     --text-color-light-bg: #444;
     --text-color-dark-bg: #ccc;
     --heading-color-light-bg: #1a1a1a;
     --heading-color-dark-bg: #ffffff;
     --border-color: #3a3a3a;
     --border-color-light: #e1e1e1;
     --font-family: 'Poppins', sans-serif;
     --base-font-size: 16px;
     --line-height: 1.7;
     --container-width: 1170px;
     --section-padding: 80px 0;
     --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
     --card-shadow-dark: 0 5px 15px rgba(0, 0, 0, 0.3);
     --transition-speed: 0.3s;
     --border-radius: 5px;
}

*,
*::before,
*::after {
     box-sizing: border-box;
     margin: 0;
     padding: 0;
}

html {
     scroll-behavior: smooth;
     font-size: var(--base-font-size);
     background-color: var(--dark-color);
     overflow-x: hidden;
}

body {
     font-family: var(--font-family);
     line-height: var(--line-height);
     color: var(--text-color-dark-bg);
     background-color: var(--dark-color);
     -webkit-font-smoothing: antialiased;
     -moz-osx-font-smoothing: grayscale;
     overflow-x: hidden;
     overflow-wrap: break-word;
     word-wrap: break-word;
}

h1,
h2,
h3,
h4,
h5,
h6 {
     font-weight: 600;
     color: var(--heading-color-dark-bg);
     margin-bottom: 0.75em;
     line-height: 1.3;
     overflow-wrap: break-word;
     word-wrap: break-word;
     -webkit-hyphens: auto;
     -moz-hyphens: auto;
     hyphens: auto;
}

h1 {
     font-size: 3.2rem;
     font-weight: 700;
}

h2 {
     font-size: 2.5rem;
     font-weight: 700;
}

h3 {
     font-size: 1.6rem;
}

h4 {
     font-size: 1.2rem;
}

p {
     margin-bottom: 1.2rem;
     color: var(--text-color-dark-bg);
}

a {
     color: var(--primary-color);
     text-decoration: none;
     transition: color var(--transition-speed) ease;
}

a:hover {
     color: var(--primary-darker);
     text-decoration: none;
}

img {
     max-width: 100%;
     height: auto;
     display: block;
}

ul {
     list-style: none;
}

.container {
     width: 100%;
     max-width: var(--container-width);
     margin-left: auto;
     margin-right: auto;
     padding-left: 15px;
     padding-right: 15px;
}

.section-padding {
     padding: var(--section-padding);
}

section {
     background-color: var(--dark-color);
     color: var(--text-color-dark-bg);
}

section h1,
section h2,
section h3,
section h4,
section h5,
section h6 {
     color: var(--heading-color-dark-bg);
}

section p {
     color: var(--text-color-dark-bg);
}

section.alt-bg {
     background-color: var(--light-color);
     color: var(--text-color-light-bg);
}

section.alt-bg h1,
section.alt-bg h2,
section.alt-bg h3,
section.alt-bg h4,
section.alt-bg h5,
section.alt-bg h6 {
     color: var(--heading-color-light-bg);
}

section.alt-bg p {
     color: var(--text-color-light-bg);
}

section.alt-bg .section-title::after {
     background: var(--primary-color);
}

.whatsapp-float-button {
     position: fixed;
     bottom: 25px; /* Adjust vertical position */
     right: 25px; /* Adjust horizontal position */
     width: 55px; /* Button size */
     height: 55px; /* Button size */
     background-color: #25D366; /* WhatsApp green */
     color: #ffffff; /* White icon */
     border-radius: 50%; /* Make it circular */
     display: flex;
     align-items: center;
     justify-content: center;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
     z-index: 999; /* Ensure it's above most content */
     transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
     text-decoration: none; /* Remove underline if any */
 }
 
 .whatsapp-float-button svg {
     width: 28px; /* Adjust icon size */
     height: 28px; /* Adjust icon size */
     display: block; /* Prevents extra space below icon */
 }
 
 .whatsapp-float-button:hover {
     transform: scale(1.1); /* Slightly enlarge on hover */
     box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
     color: #ffffff; /* Keep icon white on hover */
 }

.legal-text {
     max-width: 800px;
     margin: 0 auto;
     font-size: 0.95rem;
     line-height: 1.8;
}

.legal-text h1,
.legal-text h2,
.legal-text h3,
.legal-text h4 {
     margin-top: 1.5em;
     margin-bottom: 0.5em;
}

.legal-text h1 {
     font-size: 2rem;
}

.legal-text h2 {
     font-size: 1.6rem;
}

.legal-text h3 {
     font-size: 1.3rem;
}

.legal-text h4 {
     font-size: 1.1rem;
}

.legal-text ul {
     list-style: disc;
     margin-left: 25px;
     margin-bottom: 1rem;
}

.legal-text a {
     text-decoration: underline;
}

.legal-text a:hover {
     text-decoration: none;
}

section.alt-bg .legal-text p,
section.alt-bg .legal-text li {
     color: var(--text-color-light-bg);
}

section:not(.alt-bg) .legal-text p,
section:not(.alt-bg) .legal-text li {
     color: var(--text-color-dark-bg);
}

.section-title {
     text-align: center;
     margin-bottom: 50px;
     position: relative;
     padding-bottom: 20px;
}

.section-title::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 50%;
     transform: translateX(-50%);
     width: 70px;
     height: 4px;
     background: var(--primary-color);
     border-radius: var(--border-radius);
}

.section-intro {
     text-align: center;
     max-width: 750px;
     margin-left: auto;
     margin-right: auto;
     margin-bottom: 60px;
     font-size: 1.1rem;
     color: inherit;
     opacity: 0.9;
}

.sr-only {
     position: absolute;
     width: 1px;
     height: 1px;
     padding: 0;
     margin: -1px;
     overflow: hidden;
     clip: rect(0, 0, 0, 0);
     white-space: nowrap;
     border-width: 0;
}

.button {
     display: inline-block;
     padding: 14px 35px;
     font-size: 1rem;
     font-weight: 600;
     text-align: center;
     text-transform: uppercase;
     letter-spacing: 0.5px;
     text-decoration: none;
     border-radius: var(--border-radius);
     cursor: pointer;
     transition: background-color var(--transition-speed) ease, transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
     border: 1px solid transparent;
     position: relative;
     z-index: 1;
     overflow: hidden;
     line-height: 1.5;
}

.button-primary {
     background-color: var(--primary-color);
     color: var(--white-color);
     box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
     border-color: var(--primary-color);
}

.button-primary:hover {
     background-color: var(--primary-darker);
     color: var(--white-color);
     transform: translateY(-3px);
     box-shadow: 0 6px 20px rgba(0, 102, 255, 0.4);
     border-color: var(--primary-darker);
}

.button:not(.button-primary) {
     background-color: var(--secondary-color);
     color: var(--white-color);
     border-color: var(--secondary-color);
}

.button:not(.button-primary):hover {
     background-color: #5a6268;
     border-color: #5a6268;
     color: var(--white-color);
     transform: translateY(-3px);
}

.site-header {
     position: sticky;
     top: 0;
     width: 100%;
     background-color: rgba(26, 26, 26, 0.9);
     backdrop-filter: blur(10px);
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
     z-index: 1000;
     padding: 15px 0;
     transition: padding var(--transition-speed) ease, background-color var(--transition-speed) ease;
}

body.scrolled .site-header {
     background-color: rgba(20, 20, 20, 0.95);
     padding: 10px 0;
}

.header-container {
     display: flex;
     justify-content: space-between;
     align-items: center;
}

.logo a {
     display: inline-block;
     line-height: 0;
}

.logo a:hover {
     opacity: 0.9;
}

.logo-image {
     height: 60px;
     width: auto;
     vertical-align: middle;
     transition: opacity var(--transition-speed) ease;
}

.main-nav ul {
     display: flex;
     gap: 30px;
}

.main-nav a {
     font-weight: 500;
     color: var(--white-color);
     text-decoration: none;
     padding: 5px 0;
     position: relative;
     text-transform: uppercase;
     font-size: 0.9rem;
     letter-spacing: 0.5px;
     white-space: nowrap;
}

.main-nav a::after {
     content: '';
     position: absolute;
     bottom: -5px;
     left: 0;
     width: 0;
     height: 2px;
     background-color: var(--primary-color);
     transition: width var(--transition-speed) ease;
}

.main-nav a:hover,
.main-nav a.active {
     color: var(--primary-color);
}

.main-nav a:hover::after,
.main-nav a.active::after {
     width: 100%;
}

.header-right {
     display: flex;
     align-items: center;
     gap: 25px;
}

.lang-switcher {
     white-space: nowrap;
}

.lang-switcher a {
     font-weight: 600;
     color: var(--white-color);
     opacity: 0.8;
     text-decoration: none;
     padding: 2px 5px;
     border-radius: 3px;
     transition: opacity var(--transition-speed) ease, color var(--transition-speed) ease;
     font-size: 0.9rem;
}

.lang-switcher a:hover {
     opacity: 1;
     color: var(--primary-color);
}

.lang-switcher a.active {
     opacity: 1;
     color: var(--primary-color);
     font-weight: 700;
}

.lang-switcher span {
     color: var(--border-color);
     margin: 0 3px;
}

.mobile-nav-toggle {
     display: none;
     background: none;
     border: none;
     cursor: pointer;
     padding: 5px;
     z-index: 1001;
}

.mobile-nav-toggle span {
     display: block;
     width: 25px;
     height: 2px;
     background-color: var(--white-color);
     margin: 6px 0;
     border-radius: var(--border-radius);
     transition: transform var(--transition-speed) ease, opacity var(--transition-speed) ease;
}

.hero-section {
     padding-top: 180px;
     padding-bottom: 120px;
     color: var(--white-color);
     text-align: center;
     position: relative;
     /* Needed for absolute positioning of children */
     background-color: var(--dark-color);
     /* Fallback background color */
     min-height: 70vh;
     display: flex;
     align-items: center;
     justify-content: center;
     overflow: hidden;
     /* Hide any video overflow */
     /* REMOVED background-image, background-size, background-position */
}

.hero-video-background {
     position: absolute;
     top: 50%;
     left: 50%;
     width: 100%;
     height: 100%;
     min-width: 100%;
     /* Ensure coverage */
     min-height: 100%;
     /* Ensure coverage */
     transform: translate(-50%, -50%);
     object-fit: cover;
     /* Cover the area, cropping if needed */
     z-index: 0;
     /* Behind overlay and content */
     pointer-events: none;
     /* Prevent interaction */
}

.hero-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(180deg, rgba(26, 26, 26, 0.6) 0%, rgba(26, 26, 26, 0.85) 100%);
     /* Slightly adjusted gradient for video */
     z-index: 1;
     /* Above video, below content */
}

.hero-content {
     position: relative;
     z-index: 2;
     /* Above video and overlay */
     max-width: 850px;
}

.hero-section h1 {
     color: var(--white-color);
     margin-bottom: 20px;
     text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
     /* Slightly stronger shadow for video */
}

.hero-section .subtitle {
     font-size: 1.3rem;
     margin-bottom: 40px;
     opacity: 0.95;
     /* Slightly more opaque */
     color: var(--light-color);
     font-weight: 300;
     text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
     /* Add subtle shadow */
}

.profile-container {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
     gap: 40px;
     margin-top: 60px;
}

.profile-card {
     background-color: var(--dark-alt-color);
     padding: 35px;
     border-radius: var(--border-radius);
     box-shadow: var(--card-shadow-dark);
     text-align: center;
     transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
     border: 1px solid var(--border-color);
}

.profile-card:hover {
     transform: translateY(-8px);
     box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
     border-color: var(--primary-color);
}

.profile-photo {
     width: 130px;
     height: 130px;
     border-radius: 50%;
     object-fit: cover;
     margin: 0 auto 25px auto;
     border: 5px solid var(--dark-color);
     box-shadow: 0 0 15px rgba(0, 102, 255, 0.2);
}

.profile-card h3 {
     margin-bottom: 10px;
     color: var(--white-color);
     font-weight: 600;
}

.profile-card p {
     color: var(--text-color-dark-bg);
     font-size: 0.95rem;
     margin-bottom: 15px;
}

.profile-link a {
     font-weight: 600;
     color: var(--primary-color);
     text-transform: uppercase;
     font-size: 0.9rem;
     letter-spacing: 0.5px;
     /* Add display flex for icon alignment if needed */
     /* display: inline-flex; */
     /* align-items: center; */
}

.profile-link a:hover {
     color: var(--primary-darker);
}

/* Style for SVGs inside profile links */
.profile-link a svg {
     width: 1em;
     /* Adjust size relative to font size */
     height: 1em;
     margin-right: 0.4em;
     /* Space between icon and text */
     vertical-align: -0.125em;
     /* Fine-tune vertical alignment */
     /* fill: currentColor; */
     /* Inherits color from the link (<a> tag) */
}

.services-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 30px;
     align-items: stretch;
}

.service-card {
     background-color: var(--white-color);
     padding: 35px 30px;
     border-radius: var(--border-radius);
     box-shadow: var(--card-shadow);
     transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease, border-color var(--transition-speed) ease;
     border: 1px solid var(--border-color-light);
     border-bottom: 4px solid transparent;
     display: flex;
     flex-direction: column;
     text-align: center;
}

.service-card:hover {
     transform: translateY(-8px);
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
     border-bottom-color: var(--primary-color);
}

.service-card h3 {
     color: var(--primary-color);
     margin-bottom: 15px;
     font-weight: 600;
     flex-shrink: 0;
}

.service-card p {
     color: var(--text-color-light-bg);
     font-size: 0.95rem;
     line-height: 1.6;
     margin-bottom: 0;
     overflow: hidden;
     text-overflow: ellipsis;
     display: -webkit-box;
     -webkit-line-clamp: 4;
     -webkit-box-orient: vertical;
}

.service-icon {
     font-size: 3rem;
     color: var(--primary-color);
     margin-bottom: 20px;
     flex-shrink: 0;
}

.stats-section {
     position: relative;
}

.stats-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 30px;
     margin-top: 60px;
     text-align: center;
}

.stat-item {
     background: rgba(255, 255, 255, 0.05);
     padding: 30px 20px;
     border-radius: var(--border-radius);
     border: 1px solid var(--border-color);
     transition: background-color var(--transition-speed) ease;
}

.stat-item:hover {
     background: rgba(255, 255, 255, 0.08);
}

.stat-number {
     display: block;
     font-size: 3.5rem;
     font-weight: 700;
     color: var(--primary-color);
     margin-bottom: 5px;
     line-height: 1;
     white-space: nowrap;
     overflow-wrap: normal;
     word-wrap: normal;
}

.stat-label {
     display: block;
     font-size: 1rem;
     color: var(--text-color-dark-bg);
     font-weight: 500;
}

.contact-content-wrapper {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 50px;
     margin-top: 60px;
}

.contact-form-wrap {}

.contact-details-wrap {
     padding-left: 30px;
     border-left: 1px solid var(--border-color-light);
}

.contact-details-wrap h3 {
     margin-bottom: 25px;
     color: var(--heading-color-light-bg);
}

.contact-details-wrap p {
     margin-bottom: 20px;
     font-size: 1.05rem;
     color: var(--text-color-light-bg);
}

.contact-details-wrap p strong {
     color: var(--heading-color-light-bg);
     margin-right: 5px;
}

.contact-details-wrap a {
     font-weight: 500;
     color: var(--primary-color);
     overflow-wrap: break-word;
     word-wrap: break-word;
     /* Add display flex for icon alignment */
     /* display: inline-flex; /* Use inline-flex if needed, but often not necessary */
     /* align-items: center; */
}

.contact-details-wrap a:hover {
     color: var(--primary-darker);
}

/* Style for SVGs inside contact detail links */
.contact-details-wrap a svg {
     width: 1em;
     /* Adjust size relative to font size */
     height: 1em;
     margin-right: 0.4em;
     /* Space between icon and text */
     vertical-align: -0.125em;
     /* Fine-tune vertical alignment */
     /* fill: currentColor; */
     /* Inherits color from the link (<a> tag) */
}


.form-group {
     margin-bottom: 25px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
     width: 100%;
     padding: 15px 20px;
     border: 1px solid var(--border-color-light);
     border-radius: var(--border-radius);
     font-family: var(--font-family);
     font-size: 1rem;
     transition: border-color var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
     background-color: var(--white-color);
     color: var(--text-color-light-bg);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
     color: #999;
     opacity: 1;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
     outline: none;
     border-color: var(--primary-color);
     box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.15);
}

.form-group textarea {
     resize: vertical;
     min-height: 150px;
}

.form-success {
     color: #155724;
     background-color: #d4edda;
     border: 1px solid #c3e6cb;
     padding: 15px 20px;
     border-radius: var(--border-radius);
     margin-bottom: 20px;
}

.form-error {
     color: #721c24;
     background-color: #f8d7da;
     border: 1px solid #f5c6cb;
     padding: 15px 20px;
     border-radius: var(--border-radius);
     margin-bottom: 20px;
}

.site-footer-bottom {
     background-color: var(--dark-alt-color);
     color: rgba(255, 255, 255, 0.6);
     padding: 30px 0;
     text-align: center;
     font-size: 0.9rem;
     border-top: 1px solid var(--border-color);
}

.site-footer-bottom p {
     margin-bottom: 0;
     color: rgba(255, 255, 255, 0.6);
}

.site-footer-bottom a {
     color: rgba(255, 255, 255, 0.8);
     text-decoration: underline;
}

.site-footer-bottom a:hover {
     color: var(--primary-color);
     text-decoration: none;
}

@media (max-width: 991px) {
     h1 {
          font-size: 2.8rem;
     }

     h2 {
          font-size: 2.2rem;
     }

     :root {
          --section-padding: 60px 0;
     }

     .container {
          max-width: 960px;
     }

     .profile-container {
          grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     }

     .services-grid {
          grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     }

     .stats-grid {
          grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
     }

     .contact-content-wrapper {
          grid-template-columns: 1fr;
          gap: 30px;
     }

     .contact-details-wrap {
          padding-left: 0;
          border-left: none;
          margin-top: 30px;
     }
}

@media (max-width: 767px) {
     :root {
          --section-padding: 45px 0;
     }

     h1 {
          font-size: 2.0rem;
     }

     h2 {
          font-size: 1.8rem;
     }

     h3 {
          font-size: 1.3rem;
     }

     .container {
          padding-left: 10px;
          padding-right: 10px;
     }

     .section-title {
          margin-bottom: 30px;
          padding-bottom: 15px;
     }

     .section-title::after {
          width: 60px;
          height: 3px;
     }

     .section-intro {
          margin-bottom: 30px;
          font-size: 1rem;
     }

     .hero-section {
          padding-top: 120px;
          padding-bottom: 70px;
          min-height: 60vh;
          /* Adjust min-height for mobile if needed */
     }

     .hero-section h1 {
          font-size: 2.0rem;
     }

     .hero-section .subtitle {
          font-size: 1.05rem;
          margin-bottom: 30px;
     }

     .mobile-nav-toggle {
          display: block;
     }

     .main-nav {
          position: fixed;
          top: 0;
          right: -100%;
          width: 80%;
          max-width: 300px;
          height: 100vh;
          background-color: var(--dark-alt-color);
          box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
          padding-top: 70px;
          transition: right var(--transition-speed) ease-in-out;
          z-index: 999;
          overflow-y: auto;
     }

     .main-nav.active {
          right: 0;
     }

     .main-nav ul {
          flex-direction: column;
          align-items: flex-start;
          gap: 0;
          padding: 0 15px;
     }

     .main-nav li {
          width: 100%;
          border-bottom: 1px solid var(--border-color);
     }

     .main-nav li:last-child {
          border-bottom: none;
     }

     .main-nav a {
          display: block;
          padding: 15px 10px;
          color: var(--white-color);
          text-align: left;
          width: 100%;
          font-size: 0.95rem;
          white-space: normal;
     }

     .main-nav a:hover {
          background-color: rgba(0, 102, 255, 0.1);
          color: var(--primary-color);
     }

     .main-nav a::after {
          display: none;
     }

     body.nav-active .mobile-nav-toggle span {
          background-color: var(--primary-color);
     }

     body.nav-active .mobile-nav-toggle span:nth-child(1) {
          transform: translateY(8px) rotate(45deg);
     }

     body.nav-active .mobile-nav-toggle span:nth-child(2) {
          opacity: 0;
     }

     body.nav-active .mobile-nav-toggle span:nth-child(3) {
          transform: translateY(-8px) rotate(-45deg);
     }

     .profile-container,
     .services-grid,
     .stats-grid {
          grid-template-columns: 1fr;
          gap: 25px;
     }

     .profile-card {
          padding: 25px;
     }

     .service-card {
          padding: 30px 20px;
     }

     .stat-item {
          padding: 25px 15px;
     }

     .stat-number {
          font-size: 3rem;
     }

     .stat-label {
          font-size: 0.9rem;
     }

     .form-group input[type="text"],
     .form-group input[type="email"],
     .form-group textarea {
          padding: 12px 15px;
          font-size: 0.95rem;
     }

     .form-group textarea {
          min-height: 120px;
     }

     .button {
          padding: 12px 25px;
          font-size: 0.9rem;
     }

     .contact-details-wrap p {
          font-size: 1rem;
     }
}

@media (max-width: 480px) {
     h1 {
          font-size: 1.8rem;
     }

     h2 {
          font-size: 1.6rem;
     }

     .hero-section {
          padding-top: 100px;
          padding-bottom: 60px;
          min-height: 55vh;
          /* Adjust min-height for smaller mobile if needed */
     }

     .hero-section h1 {
          font-size: 1.8rem;
     }

     .hero-section .subtitle {
          font-size: 1rem;
     }

     .profile-photo {
          width: 110px;
          height: 110px;
     }

     .stat-number {
          font-size: 2.5rem;
     }
}