/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1a6bc4;
    --primary-dark: #2f5994;
    --secondary: #ca8d43;
    --secondary-dark: #e68900;
    --dark: #333;
    --light: #f8f9fa;
    --gray: #6c757d;
    --light-gray: #e9ecef;
    --transition: all 0.3s ease;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 10px 25px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: #fff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

/* Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.section-title h2 {
    font-size: 2rem;
    color: var(--primary);
    display: inline-block;
    position: relative;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: var(--secondary);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-title p {
    max-width: 700px;
    margin: 15px auto 0;
    color: var(--gray);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: 'Montserrat', sans-serif;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background-color: var(--secondary);
    color: white;
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background-color: #1da851;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Header */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding-top: 10px;
    padding-bottom: 10px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 50px;
    width: auto;
    border-radius: 6px;
    margin-left: 12px;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 30px;
    color: var(--primary);
    line-height: 1.1;
}

.logo-text span {
    display: block;
    font-size: 12px;
    font-weight: 400;
    color: blue;
}

.header-phone {
    display: none;
}

.phone-link {
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.phone-link:hover {
    color: var(--primary-dark);
}

/* Navigation */
.mobile-menu-btn {
    display: block;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: var(--transition);
}

.mobile-menu-btn:hover {
    background-color: var(--light);
}

nav {
    display: none;
}

nav.active {
    display: block;
}

nav ul {
    position: fixed;
    top: 74px;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 20px;
    z-index: 9999;
    list-style: none;
}

nav ul li {
    margin-bottom: 15px;
}

nav ul li:last-child {
    margin-bottom: 0;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid var(--light-gray);
}

nav ul li a:hover {
    color: var(--primary);
    padding-left: 10px;
}

.nav-phone-item {
    padding-top: 15px;
    margin-top: 15px;
    border-top: 2px solid var(--light-gray);
}

.nav-phone-item a {
    border-bottom: none !important;
    padding-left: 0 !important;
}

.nav-phone-item .phone-link {
    font-size: 1.1rem;
}

/* Hero Section */
.hero-section {
    padding-top: 100px;
    padding-bottom: 60px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
    position: relative;
    overflow: hidden;
}

.hero-slider {
    margin-top: 80px;
    height: 280px;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.slide {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    transition: left 0.8s ease-in-out;
}

.slide.active {
    left: 0;
}

.slide-content {
    padding: 25px;
    max-width: 500px;
    border-radius: 8px;
    margin: 0 15px;
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-content h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: white;
}

.slide-content p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: white;
}

.slide-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.slide-buttons .btn {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* Services Section */
.services-section {
    background-color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-img-container {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.service-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease-in-out;
    opacity: 0;
}

.service-img.active {
    opacity: 1;
    z-index: 2;
}

.service-img.fade {
    opacity: 0;
    z-index: 1;
}

.service-title-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
    color: white;
    padding: 15px;
    z-index: 3;
}

.service-title-overlay h3 {
    margin-top: 10px;
    font-size: 1.8rem;
    text-align: center;
}

.service-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content p {
    color: var(--gray);
    margin-bottom: 15px;
    flex-grow: 1;
    font-size: 0.95rem;
}

.service-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: auto;
    font-size: 0.95rem;
}

.service-link:hover {
    color: var(--primary-dark);
}

/* About Section */
.about-section {
    background: var(--light);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.about-content h1 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.about-content p {
    margin-bottom: 15px;
    color: var(--dark);
}

.about-img {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
    height: 300px;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-overlay {
    position: absolute;
    bottom: 100px;
    right: 15px;
    background: var(--primary);
    color: white;
    padding: 15px;
    border-radius: 6px;
    text-align: center;
    z-index: 2;
    box-shadow: var(--shadow);
}

.experience-overlay h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.experience-overlay p {
    font-size: 0.8rem;
    opacity: 0.9;
    margin: 0;
}

.experience-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid var(--secondary);
}

.experience-icon {
    background: var(--primary);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.experience-text h3 {
    color: var(--primary);
    margin-bottom: 5px;
    font-size: 1.5rem;
}

/* Why Choose Section */
.why-choose-section {
    background-color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.feature-card {
    text-align: center;
    padding: 25px 15px;
    border-radius: 10px;
    background: var(--light);
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.feature-card:hover {
    transform: translateY(-5px);
    background: var(--primary);
    color: white;
    box-shadow: var(--shadow-hover);
}

.feature-card:hover h3,
.feature-card:hover p {
    color: white;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    color: white;
    transform: scale(1.1);
}

/* Team Section */
.team-section {
    background-color: var(--light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.team-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.team-img {
    height: 300px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-img img {
    transform: scale(1.1);
}

.team-info {
    padding: 20px;
}

.team-info h3 {
    color: var(--primary);
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.team-position {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.team-info p {
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: var(--gray);
}

.team-tag {
    display: inline-block;
    background: var(--secondary);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    margin-top: 10px;
}

/* Equipment Section */
.equipment-section {
    background-color: white;
}

.equipment-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.equipment-icons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.equipment-icon {
    text-align: center;
    padding: 15px;
    background: var(--light);
    border-radius: 8px;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.equipment-icon:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    background: var(--primary);
    color: white;
}

.equipment-icon:hover i {
    color: white;
}

.equipment-icon i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 10px;
    transition: var(--transition);
}

.equipment-icon h4 {
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.equipment-icon p {
    font-size: 0.8rem;
    opacity: 0.8;
}

.equipment-content h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.equipment-content p {
    margin-bottom: 20px;
    color: var(--dark);
}

.equipment-features {
    margin-top: 20px;
}

.equipment-feature {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    align-items: flex-start;
}

.equipment-feature i {
    color: var(--secondary);
    font-size: 1rem;
    margin-top: 5px;
    flex-shrink: 0;
}

.equipment-feature p {
    font-size: 0.95rem;
    margin: 0;
}

/* Projects Section */
.projects-section {
    background-color: var(--light);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.project-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
    height: 200px;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 107, 196, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
    padding: 15px;
    text-align: center;
    color: white;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-overlay h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: white;
}

.project-overlay p {
    font-size: 0.9rem;
    margin: 0;
}

/* Areas Section */
.areas-section {
    background-color: white;
}

.areas-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
}

.area-item {
    background: var(--light);
    padding: 15px;
    border-radius: 6px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--light-gray);
    font-weight: 500;
}

.area-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--light);
}

.testimonial-slider {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonial {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin: 0 15px;
    text-align: center;
    display: none;
    position: relative;
}

.testimonial.active {
    display: block;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-text {
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 15px;
    color: var(--dark);
    position: relative;
    padding: 0 15px;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    font-size: 2rem;
    color: var(--secondary);
    position: absolute;
    opacity: 0.3;
}

.testimonial-text::before {
    top: -15px;
    left: 0;
}

.testimonial-text::after {
    bottom: -30px;
    right: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.testimonial-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--light-gray);
}

.testimonial-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info h4 {
    color: var(--primary);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.testimonial-info p {
    font-size: 0.9rem;
    color: var(--gray);
    margin: 0;
}

.stars {
    color: var(--secondary);
    margin: 10px 0;
}

.stars i {
    margin: 0 2px;
    font-size: 0.9rem;
}

.testimonial-slider-controls {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.testimonial-slider-controls button {
    background: var(--light-gray);
    border: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-slider-controls button.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* Emergency Section */
.emergency-section {
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85));
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

.emergency-content h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 15px;
}

.emergency-content p {
    max-width: 700px;
    margin: 0 auto 20px;
    font-size: 1rem;
    opacity: 0.9;
}

.emergency-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.emergency-buttons .btn {
    padding: 10px 20px;
    font-size: 0.95rem;
}



/* Contact Section */
.contact-section {
    background-color: white;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.contact-form {
    background: var(--light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: var(--dark);
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 107, 196, 0.1);
}

.contact-info {
    padding: 10px 0;
}

.contact-info h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-icon {
    background: var(--primary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-right: 12px;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.contact-item p {
    font-size: 0.9rem;
    color: var(--gray);
    margin: 2px 0;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: white;
    padding: 50px 0 15px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 15px;
}

.footer-logo span {
    color: var(--secondary);
}

.footer-about p {
    margin-bottom: 15px;
    opacity: 0.8;
    line-height: 1.6;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-links h3,
.footer-services h3,
.footer-contact h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

.footer-links h3::after,
.footer-services h3::after,
.footer-contact h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background: var(--secondary);
    bottom: 0;
    left: 0;
}

.footer-links ul,
.footer-services ul {
    list-style: none;
}

.footer-links ul li,
.footer-services ul li {
    margin-bottom: 10px;
}

.footer-links ul li a,
.footer-services ul li a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-links ul li a:hover,
.footer-services ul li a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    opacity: 0.8;
    font-size: 0.9rem;
}

.footer-contact i {
    color: var(--secondary);
    margin-right: 8px;
    width: 18px;
}

.footer-bottom {
    padding-top: 15px;
    border-top: 1px solid #333;
}

.footer-bottom-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.85rem;
}

.footer-bottom-links a:hover {
    color: var(--secondary);
}

.copyright {
    text-align: center;
    opacity: 0.7;
    font-size: 0.85rem;
}

.copyright span {
    color: var(--secondary);
}

/* Responsive Design */
@media (min-width: 576px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-slider {
        height: 450px;
    }
    
    .slide-content {
        margin: 0 30px;
    }
    
    .equipment-icons {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .header-phone {
        display: block;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    nav {
        display: block;
    }
    
    nav ul {
        position: static;
        display: flex;
        background: none;
        box-shadow: none;
        padding: 0;
        gap: 20px;
        align-items: center;
    }
    
    nav ul li {
        margin-bottom: 0;
    }
    
    nav ul li a {
        padding: 5px 0;
        border-bottom: none;
        font-size: 0.95rem;
    }
    
    nav ul li a:hover {
        padding-left: 0;
    }
    
    .nav-phone-item {
        display: none;
    }
    
    .header-container {
        padding: 15px 0;
    }
    
    .hero-section {
        padding-top: 120px;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .slide-content h2 {
        font-size: 2rem;
    }
    
    .slide-content {
        max-width: 550px;
    }
    
    .about-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .about-img {
        height: 350px;
    }
    
    .contact-container {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
}

@media (min-width: 992px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 80px 0;
    }
    
    .hero-section {
        padding-top: 140px;
        padding-bottom: 80px;
    }
    
    .hero-slider {
        height: 500px;
    }
    
    .slide-content {
        margin-left: 50px;
        max-width: 600px;
        padding: 40px;
    }
    
    .slide-content h2 {
        font-size: 2.2rem;
    }
    
    .slide-content p {
        font-size: 1.1rem;
    }
    
    .section-title {
        margin-bottom: 50px;
    }
    
    .section-title h2 {
        font-size: 2.5rem;
    }
    
    .services-grid {
        gap: 30px;
    }
    
    .about-container {
        gap: 50px;
    }
    
    .about-img {
        height: 400px;
    }
    
    nav ul {
        gap: 30px;
    }
    
    nav ul li a {
        font-size: 1rem;
    }
}

@media (min-width: 1200px) {
    .hero-slider {
        height: 550px;
    }
    
    .slide-content {
        margin-left: 70px;
    }
    
    .about-img {
        height: 450px;
    }
}

/* Additional Animations */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}