* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arvo', serif;
    background: #fff;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Navbar (unchanged) */
.navbar {
    background: rgba(51, 51, 51, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    margin: 20px auto;
    max-width: 1200px;
    padding: 15px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    z-index: 100;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.logo {
    font-family: 'Anton', sans-serif;
    color: #fff;
    font-size: 28px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    white-space: nowrap;
    text-decoration: none;
}

.logo i {
    color: #fff;
    font-size: 26px;
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-links a {
    font-family: 'Arvo', serif;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 16px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: #fff;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #fff;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    font-family: 'Arvo', serif;
    background: #fff;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.nav-cta i {
    color: #333;
    font-size: 18px;
    transition: color 0.3s ease;
}

.nav-cta:hover {
    transform: scale(1.05);
    background: #333;
    color: #fff;
}

.nav-cta:hover i {
    color: #fff;
}

.hamburger {
    display: none;
    font-size: 26px;
    color: #fff;
    cursor: pointer;
    background: none;
    border: none;
    position: relative;
    z-index: 101;
}

.hamburger .fa-times {
    display: none;
}

.hamburger.active .fa-bars {
    display: none;
}

.hamburger.active .fa-times {
    display: block;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(51, 51, 51, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 100;
    padding: 20px;
    overflow-y: hidden;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    font-family: 'Arvo', serif;
    color: #fff;
    text-decoration: none;
    font-size: 22px;
    padding: 15px 0;
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Hero Section with Slideshow */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    z-index: 1;
    overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: slideshow 15s infinite;
}

.hero-slide:nth-child(1) {
    background-image: url('https://i.pinimg.com/1200x/f8/61/58/f86158654a8defa0313ff997f46eeee8.jpg');
    animation-delay: 0s;
}

.hero-slide:nth-child(2) {
    background-image: url('https://i.pinimg.com/1200x/d4/a7/d0/d4a7d00d3fe9ff4dcdb92b8440b11807.jpg');
    animation-delay: 5s;
}

.hero-slide:nth-child(3) {
    background-image: url('https://i.pinimg.com/1200x/97/f1/0f/97f10ff98810d92516cb2de8a01f9f22.jpg');
    animation-delay: 10s;
}

/* Overlay */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(51, 51, 51, 0.7), rgba(51, 51, 51, 0.7));
    z-index: 0;
}

@keyframes slideshow {
    0% { opacity: 0; }
    6.67% { opacity: 1; } /* Fade in */
    26.67% { opacity: 1; } /* Stay visible */
    33.34% { opacity: 0; } /* Fade out */
    100% { opacity: 0; }
}

.hero-content {
    max-width: 800px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-family: 'Anton', sans-serif;
    color: #fff;
    font-size: 60px;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-content p {
    font-family: 'Arvo', serif;
    color: #fff;
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.hero-cta {
    font-family: 'Arvo', serif;
    background: #fff;
    color: #333;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 25px;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hero-cta i {
    color: #333;
    font-size: 18px;
    transition: color 0.3s ease;
}

.hero-cta:hover {
    transform: scale(1.05);
    background: #333;
    color: #fff;
}

.hero-cta:hover i {
    color: #fff;
}

/* Stats Section */
.stats {
    background: #333;
    min-height: 40vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.stats-container {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 20px;
    justify-items: center;
}

.stat-item {
    text-align: center;
    color: #fff;
    padding: 20px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, background 0.3s ease;
    width: 100%;
}

.stat-item:hover {
    transform: scale(1.05);
    background: #fff;
    color: #333;
}

.stat-item:hover i,
.stat-item:hover h3,
.stat-item:hover p {
    color: #333;
}

.stat-item i {
    font-size: 32px;
    color: #fff;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.stat-item h3 {
    font-family: 'Anton', sans-serif;
    font-size: 36px;
    margin-bottom: 8px;
    color: #fff;
    transition: color 0.3s ease;
}

.stat-item p {
    font-family: 'Arvo', serif;
    font-size: 16px;
    color: #fff;
    transition: color 0.3s ease;
}

/* About Section */
.about {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.about-content {
    flex: 1;
    max-width: 50%;
}

.about-content h2 {
    font-family: 'Anton', sans-serif;
    color: #333;
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content p {
    font-family: 'Arvo', serif;
    color: #333;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.about-content h3 {
    font-family: 'Anton', sans-serif;
    color: #333;
    font-size: 24px;
    margin-top: 20px;
    margin-bottom: 15px;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.value-item {
    background: rgba(51, 51, 51, 0.1);
    padding: 15px;
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: scale(1.02);
}

.value-item i {
    font-size: 24px;
    color: #333;
    margin-top: 5px;
}

.value-item div {
    flex: 1;
}

.value-item h4 {
    font-family: 'Anton', sans-serif;
    font-size: 18px;
    color: #333;
    margin-bottom: 5px;
}

.value-item p {
    font-size: 16px;
    margin: 0;
}

.about-image-container {
    flex: 1;
    max-width: 50%;
    padding: 10px 0; /* Reduced padding to increase image height */
}

.about-image {
    width: 100%;
    height: 550px; /* Increased height for desktop */
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Services Section */
.services {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.services h2 {
    font-family: 'Anton', sans-serif;
    color: #333;
    font-size: 48px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    background: #333;
    color: #fff;
}

.service-card:hover .service-title,
.service-card:hover .service-title i,
.service-card:hover .service-content p {
    color: #fff;
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-content {
    padding: 20px;
}

.service-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Anton', sans-serif;
    font-size: 22px;
    color: #333;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.service-title i {
    font-size: 24px;
    color: #333;
    transition: color 0.3s ease;
}

.service-content p {
    font-family: 'Arvo', serif;
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    transition: color 0.3s ease;
}

/* Projects Section */
.projects {
    max-width: 1200px;
    margin: 40px;
    padding: 40px 20px;
    overflow: hidden;
}

.projects-header {
    text-align: left;
    margin-bottom: 30px;
}

.projects-header h2 {
    font-family: 'Helvetica', sans-serif;
    color: #333;
    font-size: 48px;
    text-transform: uppercase;
    letter-spacing: 10px;
    margin-bottom: 15px;
}

.projects-header p {
    font-family: 'Helvetica', serif;
    color: #333;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.projects-cta {
    font-family: 'Helvetica', sans-serif;
    background: none;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 10px;
    border-radius: 0px;
    text-align: left;
    margin-top: 20px;
    margin-bottom: 10px;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.projects-cta i {
    color: #333;
    font-size: 18px;
    transition: color 0.3s ease;
}

.projects-cta:hover {
    transform: scale(1.05);
    background: #333;
    color: #fff;
}

.projects-cta:hover i {
    color: #fff;
}

.projects-grid {
    display: flex;
    width: calc(100% * 20 / 2); /* Total width for 20 cards, each taking half viewport */
    animation: autoScroll 40s linear infinite;
    will-change: transform;
}

.projects-grid:hover {
    animation-play-state: paused;
}

.projects-grid::-webkit-scrollbar {
    display: none;
}

.projects-grid {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.project-card {
    flex: 0 0 calc(100% / 2); /* Each card takes half viewport width */
    width: calc(100% / 2);
    height: 400px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: scale(1.02);
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(51, 51, 51, 0.8);
    color: #fff;
    font-family: 'Helvetica', sans-serif;
    font-size: 24px;
    padding: 10px 20px;
    border-radius: 10px;
    text-align: center;
    text-transform: uppercase;
}

@keyframes autoScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% * 10)); /* Scroll through first 10 unique cards */
    }
}

/* Coverage Section */
.coverage {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.coverage-header {
    text-align: center;
    margin-bottom: 30px;
}

.coverage-header h2 {
    font-family: 'Anton', sans-serif;
    color: #333;
    font-size: 48px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.coverage-header p {
    font-family: 'Arvo', serif;
    color: #333;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.coverage-card {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.coverage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    background: #333;
    color: #fff;
}

.coverage-card:hover .coverage-title,
.coverage-card:hover .coverage-title i,
.coverage-card:hover .coverage-list li {
    color: #fff;
}

.coverage-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Anton', sans-serif;
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.coverage-title i {
    font-size: 24px;
    color: #333;
    transition: color 0.3s ease;
}

.coverage-list {
    list-style: none;
    font-family: 'Arvo', serif;
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

.coverage-list li {
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.coverage-list li::before {
    content: '•';
    color: #333;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    transition: color 0.3s ease;
}

.coverage-card:hover .coverage-list li::before {
    color: #fff;
}

/* Why Choose Us Section */
.why-choose-us {
    background: #333;
    min-height: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.why-choose-us-header {
    text-align: center;
    margin-bottom: 30px;
}

.why-choose-us-header h2 {
    font-family: 'Anton', sans-serif;
    color: #fff;
    font-size: 48px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.why-choose-us-header p {
    font-family: 'Arvo', serif;
    color: #fff;
    font-size: 18px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.why-choose-us-grid {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-items: center;
}

.why-choose-us-card {
    text-align: center;
    color: #fff;
    padding: 20px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
    width: 100%;
}

.why-choose-us-card:hover {
    transform: scale(1.05);
    background: #fff;
    color: #333;
}

.why-choose-us-card:hover i,
.why-choose-us-card:hover h3,
.why-choose-us-card:hover p {
    color: #333;
}

.why-choose-us-card i {
    font-size: 32px;
    color: #fff;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.why-choose-us-card h3 {
    font-family: 'Anton', sans-serif;
    font-size: 22px;
    margin-bottom: 8px;
    color: #fff;
    transition: color 0.3s ease;
}

.why-choose-us-card p {
    font-family: 'Arvo', serif;
    font-size: 16px;
    color: #fff;
    line-height: 1.6;
    transition: color 0.3s ease;
}

/* Team Highlights Section */
.team-highlights {
    background: #fff;
    min-height: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.team-highlights-header {
    text-align: center;
    margin-bottom: 30px;
}

.team-highlights-header h2 {
    font-family: 'Anton', sans-serif;
    color: #333;
    font-size: 48px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.team-highlights-header p {
    font-family: 'Arvo', serif;
    color: #333;
    font-size: 18px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.team-highlights-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
}

.team-image-container {
    flex: 1;
    max-width: 50%;
    padding: 10px 0; /* Reduced padding to increase image height */
}

.team-image {
    width: 100%;
    height: 450px; /* Increased height for desktop */
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.team-highlights-grid {
    flex: 1;
    max-width: 50%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.team-card {
    text-align: center;
    color: #333;
    padding: 20px;
    border-radius: 15px;
    background: rgba(51, 51, 51, 0.1);
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.team-card:hover {
    transform: scale(1.05);
    background: #333;
    color: #fff;
}

.team-card:hover i,
.team-card:hover h3,
.team-card:hover p {
    color: #fff;
}

.team-card i {
    font-size: 32px;
    color: #333;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.team-card h3 {
    font-family: 'Anton', sans-serif;
    font-size: 22px;
    margin-bottom: 8px;
    color: #333;
    transition: color 0.3s ease;
}

.team-card p {
    font-family: 'Arvo', serif;
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    transition: color 0.3s ease;
}

/* Licenses & Certifications Section */
.licenses-certifications {
    background: #fff;
    min-height: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.licenses-certifications-header {
    text-align: center;
    margin-bottom: 30px;
}

.licenses-certifications-header h2 {
    font-family: 'Anton', sans-serif;
    color: #333;
    font-size: 48px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.licenses-certifications-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.certificate-container {
    max-width: 300px;
}

.certificate-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.certificate-image:hover {
    transform: scale(1.05);
}

.certificate-writeup {
    text-align: center;
    max-width: 800px;
}

.certificate-writeup p {
    font-family: 'Arvo', serif;
    color: #333;
    font-size: 18px;
    line-height: 1.6;
}

/* Call-to-Action Footer */
.cta-footer {
    background: #333;
    min-height: 30vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.cta-footer-content {
    max-width: 800px;
    text-align: center;
    color: #fff;
}

.cta-footer-content h2 {
    font-family: 'Anton', sans-serif;
    font-size: 48px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.cta-footer-content p {
    font-family: 'Arvo', serif;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-button {
    font-family: 'Arvo', serif;
    background: #fff;
    color: #333;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 25px;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cta-button i {
    font-size: 18px;
    color: #333;
    transition: color 0.3s ease;
}

.cta-button:hover {
    transform: scale(1.05);
    background: #333;
    color: #fff;
}

.cta-button:hover i {
    color: #fff;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .navbar {
        border-radius: 0;
        max-width: 100%;
        margin: 0;
        padding: 10px 0;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        position: absolute;
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
    }

    .logo {
        font-size: 24px;
        justify-content: center;
    }

    .logo i {
        font-size: 22px;
    }

    .nav-links {
        display: none;
    }

    .nav-cta {
        font-size: 14px;
        padding: 6px 12px;
    }

    .nav-cta i {
        font-size: 16px;
    }

    .nav-cta span {
        display: none;
    }

    .nav-cta::after {
        content: 'Contact Us';
    }

    .nav-actions {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 0 20px;
    }

    .hamburger {
        display: block;
    }

    .hero {
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 44px;
    }

    .hero-content p {
        font-size: 20px;
    }

    .stats {
        min-height: auto;
        padding: 30px 20px;
    }

    .stats-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        max-width: 100%;
    }

    .stat-item h3 {
        font-size: 28px;
    }

    .stat-item p {
        font-size: 14px;
    }

    .stat-item i {
        font-size: 28px;
    }

    .about {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin: 20px 0;
        padding: 0;
    }

    .about-content {
        max-width: 100%;
        text-align: center;
        padding: 0 20px;
    }

    .about-content h2 {
        font-size: 40px;
    }

    .about-content p {
        font-size: 16px;
    }

    .about-content h3 {
        font-size: 22px;
    }

    .value-item h4 {
        font-size: 16px;
    }

    .value-item p {
        font-size: 14px;
    }

    .value-item i {
        font-size: 20px;
    }

    .about-image-container {
        max-width: 100%;
        padding: 0;
    }

    .about-image {
        max-width: 100%;
        height: 400px;
        border-radius: 0;
        box-shadow: none;
    }

    .services h2 {
        font-size: 40px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
    }

    .service-card {
        border-radius: 10px;
    }

    .service-image {
        height: 180px;
    }

    .service-title {
        font-size: 20px;
    }

    .service-title i {
        font-size: 22px;
    }

    .service-content p {
        font-size: 14px;
    }

    .projects h2 {
        font-size: 40px;
    }

    .projects-header p {
        font-size: 16px;
    }

    .projects-cta {
        font-size: 14px;
        padding: 8px 16px;
    }

    .projects-cta i {
        font-size: 16px;
    }

    .projects-grid {
        width: calc(100vw * 20);
    }

    .project-card {
        flex: 0 0 100vw;
        width: 100vw;
        height: 300px;
        margin: 0 10px;
    }

    .project-label {
        font-size: 20px;
        padding: 8px 16px;
    }

    .coverage h2 {
        font-size: 40px;
    }

    .coverage-header {
        text-align: center;
    }

    .coverage-header p {
        font-size: 16px;
    }

    .coverage-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
    }

    .coverage-card {
        border-radius: 10px;
        text-align: center;
    }

    .coverage-title {
        font-size: 20px;
        justify-content: center;
    }

    .coverage-title i {
        font-size: 22px;
    }

    .coverage-list {
        font-size: 14px;
    }

    .why-choose-us {
        padding: 30px 20px;
    }

    .why-choose-us-header h2 {
        font-size: 40px;
    }

    .why-choose-us-header p {
        font-size: 16px;
    }

    .why-choose-us-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        max-width: 100%;
    }

    .why-choose-us-card h3 {
        font-size: 20px;
    }

    .why-choose-us-card p {
        font-size: 14px;
    }

    .why-choose-us-card i {
        font-size: 28px;
    }

    .team-highlights {
        padding: 30px 20px;
    }

    .team-highlights-header h2 {
        font-size: 40px;
    }

    .team-highlights-header p {
        font-size: 16px;
    }

    .team-highlights-content {
        flex-direction: column;
        gap: 20px;
    }

    .team-image-container {
        max-width: 100%;
        padding: 0;
    }

    .team-image {
        max-width: 100%;
        height: 300px;
        border-radius: 0;
        box-shadow: none;
    }

    .team-highlights-grid {
        max-width: 100%;
    }

    .team-card h3 {
        font-size: 20px;
    }

    .team-card p {
        font-size: 14px;
    }

    .team-card i {
        font-size: 28px;
    }

    .licenses-certifications {
        padding: 30px 20px;
    }

    .licenses-certifications-header h2 {
        font-size: 40px;
    }

    .certificate-writeup p {
        font-size: 16px;
    }

    .certificate-container {
        max-width: 250px;
    }

    .cta-footer {
        padding: 30px 20px;
    }

    .cta-footer-content h2 {
        font-size: 40px;
    }

    .cta-footer-content p {
        font-size: 16px;
    }

    .cta-button {
        font-size: 14px;
        padding: 10px 20px;
    }

    .cta-button i {
        font-size: 16px;
    }

    @keyframes autoScroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-100vw * 10 - 200px));
        }
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 10px 0;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
    }

    .logo {
        font-size: 22px;
    }

    .logo i {
        font-size: 20px;
    }

    .nav-cta {
        font-size: 13px;
    }

    .nav-actions {
        padding: 0 15px;
    }

    .hero {
        height: 95vh;
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .hero-cta {
        font-size: 14px;
        padding: 10px 20px;
    }

    .stats {
        padding: 20px 15px;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 10px;
        max-width: 100%;
    }

    .stat-item {
        padding: 15px;
        width: 100%;
        max-width: 100%;
    }

    .stat-item h3 {
        font-size: 24px;
    }

    .stat-item p {
        font-size: 13px;
    }

    .stat-item i {
        font-size: 24px;
    }

    .about-content h2 {
        font-size: 32px;
    }

    .about-content p {
        font-size: 14px;
    }

    .about-content h3 {
        font-size: 20px;
    }

    .value-item h4 {
        font-size: 14px;
    }

    .value-item p {
        font-size: 13px;
    }

    .value-item i {
        font-size: 18px;
    }

    .about-image-container {
        max-width: 90%; /* Wider for mobile */
        padding: 10px 0; /* Reduced padding for larger image */
    }

    .about-image {
        width: 100%;
        height: 400px; /* Bigger height for mobile */
        border-radius: 10px; /* Restored slight border-radius for mobile */
    }

    .services h2 {
        font-size: 32px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .service-card {
        border-radius: 10px;
    }

    .service-image {
        height: 200px;
    }

    .service-title {
        font-size: 18px;
    }

    .service-title i {
        font-size: 20px;
    }

    .service-content p {
        font-size: 13px;
    }

    .projects h2 {
        font-size: 32px;
    }

    .projects-header p {
        font-size: 14px;
    }

    .projects-cta {
        font-size: 13px;
        padding: 8px 16px;
    }

    .project-card {
        width: 100vw;
        height: 250px;
        margin: 0 10px;
    }

    .project-label {
        font-size: 18px;
        padding: 6px 12px;
    }

    .coverage h2 {
        font-size: 32px;
    }

    .coverage-header {
        text-align: center;
    }

    .coverage-header p {
        font-size: 14px;
    }

    .coverage-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .coverage-card {
        border-radius: 10px;
        text-align: center;
    }

    .coverage-title {
        font-size: 18px;
        justify-content: center;
    }

    .coverage-title i {
        font-size: 20px;
    }

    .coverage-list {
        font-size: 13px;
    }

    .why-choose-us {
        padding: 20px 15px;
    }

    .why-choose-us-header h2 {
        font-size: 32px;
    }

    .why-choose-us-header p {
        font-size: 14px;
    }

    .why-choose-us-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .why-choose-us-card {
        padding: 15px;
    }

    .why-choose-us-card h3 {
        font-size: 18px;
    }

    .why-choose-us-card p {
        font-size: 13px;
    }

    .why-choose-us-card i {
        font-size: 24px;
    }

    .team-highlights {
        padding: 20px 15px;
    }

    .team-highlights-header h2 {
        font-size: 32px;
    }

    .team-highlights-header p {
        font-size: 14px;
    }

    .team-highlights-content {
        gap: 15px;
    }

    .team-image-container {
        max-width: 90%; /* Wider for mobile */
        padding: 10px 0; /* Reduced padding for larger image */
    }

    .team-image {
        width: 100%;
        height: 350px; /* Bigger height for mobile */
        border-radius: 10px; /* Restored slight border-radius for mobile */
    }

    .team-highlights-grid {
        max-width: 100%;
    }

    .team-card {
        padding: 15px;
    }

    .team-card h3 {
        font-size: 18px;
    }

    .team-card p {
        font-size: 13px;
    }

    .team-card i {
        font-size: 24px;
    }

    .licenses-certifications {
        padding: 20px 15px;
    }

    .licenses-certifications-header h2 {
        font-size: 32px;
    }

    .certificate-writeup p {
        font-size: 14px;
    }

    .certificate-container {
        max-width: 200px;
    }

    .cta-footer {
        padding: 20px 15px;
    }

    .cta-footer-content h2 {
        font-size: 32px;
    }

    .cta-footer-content p {
        font-size: 14px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .cta-button {
        font-size: 13px;
        padding: 10px 20px;
    }

    .cta-button i {
        font-size: 14px;
    }
}