/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Color Variables */
:root {
    --primary-red: #dc3545;
    --primary-blue: #007bff;
    --dark-blue: #0056b3;
    --light-blue: #e3f2fd;
    --text-dark: #333;
    --text-light: #666;
    --white: #ffffff;
    --light-gray: #f8f9fa;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background-color: var(--primary-red);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #c82333;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--primary-blue);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--dark-blue);
    transform: translateY(-2px);
}

/* Header */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-top {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 10px 0;
    width: 100%;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.contact-info span {
    margin-right: 20px;
}

.contact-info i {
    margin-right: 5px;
}

.social-icons a {
    color: var(--white);
    margin-left: 15px;
    font-size: 16px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--primary-red);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo h2 {
    color: var(--primary-red);
    font-size: 28px;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-red);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-bottom: 30px;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.7), rgba(0, 123, 255, 0.7));
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
    padding: 140px 40px 30px 40px;
}

.hero-text {
    animation: slideInLeft 1s ease-out;
}

.hero-text h1 {
    font-size: 56px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
}

.hero-text h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-blue));
    border-radius: 2px;
}

.hero-text p {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 35px;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.hero-buttons .btn {
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-buttons .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.hero-buttons .btn:hover::before {
    left: 100%;
}

.form-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 25px 30px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    margin-top: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideInRight 1s ease-out;
    position: relative;
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-blue));
    border-radius: 20px 20px 0 0;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.form-container h3 {
    color: var(--text-dark);
    margin-bottom: 20px;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    position: relative;
}

.form-container h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-blue));
    border-radius: 2px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 15px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
    transform: translateY(-2px);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
    font-weight: 400;
}

.contact-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
}

.contact-form select option {
    color: #333;
    padding: 10px;
}

.contact-form button {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-blue));
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(220, 53, 69, 0.3);
}

.contact-form button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.contact-form button:hover::before {
    left: 100%;
}

/* About Section */
.about {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 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='%23007bff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    opacity: 0.5;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-image {
    position: relative;
    animation: slideInLeft 1s ease-out;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-blue));
    border-radius: 20px;
    z-index: -1;
    opacity: 0.1;
}

.about-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: translateY(-10px);
}

.about-text {
    animation: slideInRight 1s ease-out;
}

.about-text h2 {
    font-size: 42px;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-weight: 800;
    position: relative;
    line-height: 1.2;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-blue));
    border-radius: 2px;
}

.about-text p {
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 25px;
    opacity: 0.8;
}

.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 40px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature i {
    color: var(--primary-blue);
    font-size: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 123, 255, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.feature span {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 16px;
}

/* Banner Section */
.banner {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin: 80px 0;
}

.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: brightness(0.7);
    transition: all 0.3s ease;
}

.banner:hover .banner-bg {
    transform: scale(1.05);
    filter: brightness(0.8);
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.8), rgba(0, 123, 255, 0.8));
    opacity: 0.9;
}

.banner-content {
    position: relative;
    z-index: 3;
    color: var(--white);
    text-align: center;
    max-width: 800px;
    padding: 0 40px;
    animation: fadeInUp 1s ease-out;
}

.banner-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    font-weight: 800;
    line-height: 1.2;
    position: relative;
}

.banner-content h2::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.banner-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.banner-content p {
    font-size: 20px;
    margin-bottom: 35px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    font-weight: 500;
    line-height: 1.6;
    opacity: 0.95;
}

.banner-content .btn {
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.banner-content .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
}

.banner-content .btn:hover::before {
    left: 100%;
}

.banner-content .btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Services Section */
.services {
    padding: 120px 0;
    background: 
        linear-gradient(135deg, #0f0f23 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #0a2a5c 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(220, 53, 69, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(0, 123, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 20% 80%, rgba(220, 53, 69, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(0, 123, 255, 0.2) 0%, transparent 40%);
    animation: pulse 8s ease-in-out infinite;
}

.services::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M50 50m-20 0a20,20 0 1,1 40,0a20,20 0 1,1 -40,0'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    animation: sparkle 12s linear infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

@keyframes sparkle {
    0% { transform: translateX(0px) translateY(0px); }
    100% { transform: translateX(-100px) translateY(-50px); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-10px) rotate(1deg); }
    66% { transform: translateY(5px) rotate(-1deg); }
}

@keyframes drift {
    0% { transform: translateX(0px); }
    100% { transform: translateX(-80px); }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.section-header {
    text-align: center;
    margin-bottom: 100px;
    position: relative;
    z-index: 2;
}

.section-header::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: 
        radial-gradient(circle, rgba(220, 53, 69, 0.2) 0%, transparent 40%),
        radial-gradient(circle, rgba(0, 123, 255, 0.2) 20%, transparent 60%);
    border-radius: 50%;
    z-index: -1;
    animation: headerGlow 6s ease-in-out infinite;
}

.section-header::after {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    background: 
        conic-gradient(from 0deg, transparent, rgba(220, 53, 69, 0.1), transparent, rgba(0, 123, 255, 0.1), transparent);
    border-radius: 50%;
    z-index: -2;
    animation: rotate 20s linear infinite;
}

.section-header h2 {
    font-size: 52px;
    color: #ffffff;
    margin-bottom: 30px;
    font-weight: 900;
    position: relative;
    display: inline-block;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(220, 53, 69, 0.3),
        0 0 40px rgba(0, 123, 255, 0.2);
    background: linear-gradient(135deg, #ffffff, #f8f9fa, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShine 3s ease-in-out infinite;
}

.section-header h2::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -120px;
    transform: translateY(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-blue));
    border-radius: 2px;
    box-shadow: 
        0 0 20px rgba(220, 53, 69, 0.6),
        0 0 40px rgba(220, 53, 69, 0.3);
    animation: lineGlow 4s ease-in-out infinite;
}

.section-header h2::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -120px;
    transform: translateY(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-red));
    border-radius: 2px;
    box-shadow: 
        0 0 20px rgba(0, 123, 255, 0.6),
        0 0 40px rgba(0, 123, 255, 0.3);
    animation: lineGlow 4s ease-in-out infinite reverse;
}

.section-header p {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    position: relative;
    padding: 25px 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.section-header p::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-blue), var(--primary-red));
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(220, 53, 69, 0.5);
}

@keyframes headerGlow {
    0%, 100% { opacity: 0.8; transform: translateX(-50%) scale(1); }
    50% { opacity: 1; transform: translateX(-50%) scale(1.1); }
}

@keyframes textShine {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

@keyframes lineGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(220, 53, 69, 0.6), 0 0 40px rgba(220, 53, 69, 0.3); }
    50% { box-shadow: 0 0 30px rgba(220, 53, 69, 0.8), 0 0 60px rgba(220, 53, 69, 0.5); }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: 
        linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.9) 100%);
    border-radius: 25px;
    box-shadow: 
        0 15px 35px rgba(0,0,0,0.1),
        0 5px 15px rgba(0,0,0,0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 2px solid transparent;
    height: 420px;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(20px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: 
        linear-gradient(45deg, 
            var(--primary-red), 
            var(--primary-blue), 
            var(--primary-red), 
            var(--primary-blue)
        );
    border-radius: 27px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: borderRotate 3s linear infinite;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, 
            transparent, 
            rgba(255, 255, 255, 0.4), 
            transparent
        );
    transition: left 0.8s ease;
    z-index: 10;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover::after {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-20px) scale(1.05);
    box-shadow: 
        0 30px 70px rgba(0,0,0,0.2),
        0 15px 35px rgba(220, 53, 69, 0.2),
        0 0 50px rgba(0, 123, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

@keyframes borderRotate {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.service-image {
    position: relative;
    overflow: hidden;
    height: 200px;
    flex-shrink: 0;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1), rgba(0, 123, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-image::after {
    opacity: 1;
}

.service-content {
    padding: 30px 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(248, 249, 250, 0.05));
}

.service-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 25px;
    right: 25px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(220, 53, 69, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-content::before {
    opacity: 1;
}

.service-content h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    line-height: 1.3;
    text-transform: capitalize;
}

.service-content h3::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: linear-gradient(180deg, var(--primary-red), var(--primary-blue));
    border-radius: 2px;
    transition: height 0.4s ease;
}

.service-card:hover .service-content h3::before {
    height: 100%;
}

.service-content h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-blue));
    border-radius: 1px;
    transition: all 0.4s ease;
    box-shadow: 0 0 8px rgba(220, 53, 69, 0.3);
}

.service-card:hover .service-content h3::after {
    width: 60px;
    box-shadow: 0 0 15px rgba(220, 53, 69, 0.5);
}

.service-content p {
    font-size: 15px;
    color: var(--text-dark);
    opacity: 0.85;
    line-height: 1.7;
    margin-top: 15px;
    font-weight: 400;
    position: relative;
    transition: all 0.3s ease;
}

.service-card:hover .service-content p {
    opacity: 1;
    transform: translateY(-2px);
}

/* Reviews Section */
.reviews {
    padding: 120px 0;
    background: 
        linear-gradient(135deg, #ffffff 0%, #f8f9fa 25%, #e9ecef 50%, #f8f9fa 75%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 25%, rgba(220, 53, 69, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(0, 123, 255, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.8) 0%, transparent 40%),
        radial-gradient(circle at 20% 90%, rgba(248, 249, 250, 0.9) 0%, transparent 40%);
    animation: reviewsFloat 12s ease-in-out infinite;
}

.reviews::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        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='%23007bff' fill-opacity='0.02'%3E%3Cpath d='M30 30m-10 0a10,10 0 1,1 20,0a10,10 0 1,1 -20,0'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    animation: patternMove 15s linear infinite;
}

.reviews .section-header {
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.reviews .section-header h2 {
    font-size: 42px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 800;
    position: relative;
    display: inline-block;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.reviews .section-header h2::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-blue));
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(220, 53, 69, 0.3);
}

.reviews .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-red));
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(0, 123, 255, 0.3);
}

.reviews .section-header p {
    font-size: 18px;
    color: var(--text-dark);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background: 
        linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.9) 100%);
    padding: 40px 35px;
    border-radius: 25px;
    box-shadow: 
        0 15px 40px rgba(0,0,0,0.08),
        0 5px 15px rgba(0,0,0,0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.review-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-blue), var(--primary-red));
    border-radius: 27px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.review-card::after {
    content: '"';
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 60px;
    color: rgba(220, 53, 69, 0.1);
    font-family: serif;
    font-weight: bold;
    z-index: 1;
}

.review-card:hover::before {
    opacity: 1;
}

.review-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 25px 60px rgba(0,0,0,0.15),
        0 10px 25px rgba(220, 53, 69, 0.1),
        0 0 40px rgba(0, 123, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.stars {
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.stars i {
    color: #ffd700;
    font-size: 22px;
    margin: 0 3px;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.review-card:hover .stars i {
    transform: scale(1.1);
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.review-card p {
    font-size: 17px;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 30px;
    font-style: italic;
    position: relative;
    z-index: 2;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.review-card:hover p {
    opacity: 1;
    transform: translateY(-2px);
}

.reviewer {
    position: relative;
    z-index: 2;
}

.reviewer::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-blue));
    border-radius: 1px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.review-card:hover .reviewer::before {
    opacity: 1;
}

.reviewer h4 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.review-card:hover .reviewer h4 {
    color: var(--primary-red);
    transform: translateY(-2px);
}

.reviewer span {
    font-size: 15px;
    color: var(--text-dark);
    opacity: 0.7;
    font-weight: 500;
    transition: all 0.3s ease;
}

.review-card:hover .reviewer span {
    opacity: 0.9;
}

@keyframes reviewsFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-8px) rotate(0.5deg); }
    66% { transform: translateY(4px) rotate(-0.5deg); }
}

@keyframes patternMove {
    0% { transform: translateX(0px) translateY(0px); }
    100% { transform: translateX(-60px) translateY(-30px); }
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: 
        linear-gradient(135deg, #0f0f23 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #0a2a5c 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(220, 53, 69, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 123, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
    animation: contactFloat 10s ease-in-out infinite;
}

.contact::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M40 40m-15 0a15,15 0 1,1 30,0a15,15 0 1,1 -30,0'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    animation: contactDrift 20s linear infinite;
}

.contact .section-header {
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.contact .section-header h2 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 25px;
    font-weight: 900;
    position: relative;
    display: inline-block;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(220, 53, 69, 0.3),
        0 0 40px rgba(0, 123, 255, 0.2);
    background: linear-gradient(135deg, #ffffff, #f8f9fa, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact .section-header h2::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -100px;
    transform: translateY(-50%);
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-blue));
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(220, 53, 69, 0.5);
}

.contact .section-header h2::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -100px;
    transform: translateY(-50%);
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-red));
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.5);
}

.contact .section-header p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.contact-form-container {
    background: 
        linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.9) 100%);
    padding: 50px 45px;
    border-radius: 25px;
    box-shadow: 
        0 20px 60px rgba(0,0,0,0.2),
        0 10px 30px rgba(0,0,0,0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-blue), var(--primary-red));
    border-radius: 27px;
    z-index: -1;
    opacity: 0.3;
    animation: formBorderGlow 4s ease-in-out infinite;
}

.contact-form-container h3 {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-weight: 700;
    text-align: center;
    position: relative;
}

.contact-form-container h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-blue));
    border-radius: 2px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.contact-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 16px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 50px;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.1);
    transform: translateY(-2px);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form button {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-blue));
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-form button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.contact-form button:hover::before {
    left: 100%;
}

.contact-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 25px;
    background: 
        linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(248, 249, 250, 0.05) 100%);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    background: 
        linear-gradient(145deg, rgba(255, 255, 255, 0.15) 0%, rgba(248, 249, 250, 0.1) 100%);
}

.contact-item i {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-blue));
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 10px 25px rgba(220, 53, 69, 0.3);
    transition: all 0.3s ease;
}

.contact-item:hover i {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(220, 53, 69, 0.4);
}

.contact-item h4 {
    color: #ffffff;
    margin-bottom: 8px;
    font-size: 20px;
    font-weight: 700;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 500;
}

@keyframes contactFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-15px) scale(1.05); }
}

@keyframes contactDrift {
    0% { transform: translateX(0px) translateY(0px); }
    100% { transform: translateX(-80px) translateY(-40px); }
}

@keyframes formBorderGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--primary-red);
    margin-bottom: 20px;
    font-size: 24px;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-red);
}

.contact-details p {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #ccc;
}

.contact-details i {
    margin-right: 10px;
    color: var(--primary-red);
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 20px;
    text-align: center;
    color: #ccc;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    left: 30px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    color: white;
}

.whatsapp-float i {
    line-height: 1;
}

/* Browser Compatibility & Prefixes */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* Flexbox Fallbacks for IE */
.hero-content {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    display: grid;
}

.hero-buttons {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

/* Transform Prefixes for All Browsers */
.service-card:hover {
    -webkit-transform: translateY(-20px) scale(1.05);
    -moz-transform: translateY(-20px) scale(1.05);
    -ms-transform: translateY(-20px) scale(1.05);
    -o-transform: translateY(-20px) scale(1.05);
    transform: translateY(-20px) scale(1.05);
}

.review-card:hover {
    -webkit-transform: translateY(-15px) scale(1.02);
    -moz-transform: translateY(-15px) scale(1.02);
    -ms-transform: translateY(-15px) scale(1.02);
    -o-transform: translateY(-15px) scale(1.02);
    transform: translateY(-15px) scale(1.02);
}

/* Gradient Prefixes for Older Browsers */
.services {
    background: -webkit-linear-gradient(135deg, #0f0f23 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #0a2a5c 100%);
    background: -moz-linear-gradient(135deg, #0f0f23 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #0a2a5c 100%);
    background: -o-linear-gradient(135deg, #0f0f23 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #0a2a5c 100%);
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #0a2a5c 100%);
}

.contact {
    background: -webkit-linear-gradient(135deg, #0f0f23 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #0a2a5c 100%);
    background: -moz-linear-gradient(135deg, #0f0f23 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #0a2a5c 100%);
    background: -o-linear-gradient(135deg, #0f0f23 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #0a2a5c 100%);
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #0a2a5c 100%);
}

/* Animation Prefixes for Cross-Browser Support */
@-webkit-keyframes pulse {
    0%, 100% { opacity: 1; -webkit-transform: scale(1); }
    50% { opacity: 0.8; -webkit-transform: scale(1.05); }
}

@-moz-keyframes pulse {
    0%, 100% { opacity: 1; -moz-transform: scale(1); }
    50% { opacity: 0.8; -moz-transform: scale(1.05); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

/* Responsive Design - Mobile First Approach */

/* Extra Large Screens (1400px and up) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    
    .hero-text h1 {
        font-size: 64px;
    }
    
    .services .section-header h2 {
        font-size: 56px;
    }
    
    .contact .section-header h2 {
        font-size: 52px;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Large Screens (1200px to 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
    .container {
        max-width: 1140px;
    }
    
    .hero-text h1 {
        font-size: 58px;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Medium Large Screens (992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .container {
        max-width: 960px;
        padding: 0 20px;
    }
    
    .hero-text h1 {
        font-size: 52px;
    }
    
    .services .section-header h2 {
        font-size: 42px;
    }
    
    .contact .section-header h2 {
        font-size: 42px;
    }
    
    .services .section-header h2::before,
    .services .section-header h2::after {
        width: 60px;
    }
    
    .contact .section-header h2::before,
    .contact .section-header h2::after {
        width: 60px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-content {
        gap: 40px;
    }
}

/* Tablets (768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .container {
        max-width: 720px;
        padding: 0 20px;
    }
    
    .header-top {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .contact-info span {
        display: block;
        margin: 5px 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        padding: 120px 20px 40px 20px;
    }
    
    .hero-text h1 {
        font-size: 46px;
    }
    
    .hero-text h1::after {
        left: 50%;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .form-container {
        margin-top: 30px;
        padding: 30px 25px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-text {
        text-align: center;
    }
    
    .about-text h2::after {
        left: 50%;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .services .section-header h2::before,
    .services .section-header h2::after {
        width: 50px;
    }
    
    .contact .section-header h2::before,
    .contact .section-header h2::after {
        width: 50px;
    }
}

/* Mobile Large (576px to 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .container {
        max-width: 540px;
        padding: 0 15px;
    }
    
    .header-top {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
        padding: 100px 15px 30px 15px;
    }
    
    .hero-text h1 {
        font-size: 38px;
        line-height: 1.2;
    }
    
    .hero-text h1::after {
        left: 50%;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        width: 80px;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .hero-buttons .btn {
        padding: 14px 28px;
        font-size: 15px;
    }
    
    .form-container {
        margin-top: 25px;
        padding: 25px 20px;
    }
    
    .form-container h3 {
        font-size: 22px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .services .section-header h2 {
        font-size: 36px;
    }
    
    .contact .section-header h2 {
        font-size: 36px;
    }
    
    .services .section-header h2::before,
    .services .section-header h2::after {
        width: 40px;
        left: -60px;
        right: -60px;
    }
    
    .contact .section-header h2::before,
    .contact .section-header h2::after {
        width: 40px;
        left: -70px;
        right: -70px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-card {
        height: auto;
        min-height: 380px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Mobile Small (up to 575px) */
@media (max-width: 575px) {
    .container {
        padding: 0 15px;
    }
    
    .header-top {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero {
        min-height: 70vh;
        padding-bottom: 20px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 25px;
        padding: 80px 15px 20px 15px;
    }
    
    .hero-text h1 {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .hero-text h1::after {
        left: 50%;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
    }
    
    .hero-text p {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .hero-buttons .btn {
        padding: 12px 24px;
        font-size: 14px;
        min-width: 140px;
    }
    
    .form-container {
        margin-top: 20px;
        padding: 20px 15px;
    }
    
    .form-container h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .contact-form input,
    .contact-form textarea,
    .contact-form select {
        padding: 12px 15px;
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-header h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .section-header p {
        font-size: 16px;
    }
    
    .services .section-header h2 {
        font-size: 32px;
    }
    
    .contact .section-header h2 {
        font-size: 32px;
    }
    
    .services .section-header h2::before,
    .services .section-header h2::after {
        display: none;
    }
    
    .contact .section-header h2::before,
    .contact .section-header h2::after {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        height: auto;
        min-height: 350px;
    }
    
    .service-image {
        height: 180px;
    }
    
    .service-content {
        padding: 20px 15px;
    }
    
    .service-content h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .service-content p {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-image img {
        height: 250px;
    }
    
    .about-text {
        text-align: center;
    }
    
    .about-text h2 {
        font-size: 28px;
    }
    
    .about-text h2::after {
        left: 50%;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feature {
        padding: 15px;
    }
    
    .reviews .section-header h2::before,
    .reviews .section-header h2::after {
        width: 40px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .review-card {
        padding: 25px 20px;
    }
    
    .review-card::after {
        font-size: 40px;
        top: 10px;
        left: 15px;
    }
    
    .contact {
        padding: 80px 0;
    }
    
    .contact .section-header {
        margin-bottom: 50px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-form-container {
        padding: 30px 20px;
    }
    
    .contact-form-container h3 {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-form input,
    .contact-form textarea,
    .contact-form select {
        padding: 14px 16px;
        font-size: 15px;
        border-radius: 12px;
    }
    
    .contact-form button {
        padding: 16px;
        font-size: 16px;
    }
    
    .contact-info-container {
        gap: 20px;
    }
    
    .contact-item {
        padding: 20px;
        gap: 15px;
    }
    
    .contact-item i {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .contact-item h4 {
        font-size: 18px;
    }
    
    .contact-item p {
        font-size: 14px;
    }
    
    .footer {
        padding: 40px 0 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 25px;
    }
    
    .footer-section h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .footer-section h4 {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .banner-content h2 {
        font-size: 24px;
    }
}

/* Extra Small Screens (320px to 479px) */
@media (max-width: 479px) {
    .hero-text h1 {
        font-size: 28px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .services .section-header h2 {
        font-size: 28px;
    }
    
    .contact .section-header h2 {
        font-size: 28px;
    }
    
    .hero-buttons .btn {
        padding: 10px 20px;
        font-size: 13px;
        min-width: 120px;
    }
    
    .service-card {
        min-height: 320px;
    }
    
    .service-image {
        height: 160px;
    }
    
    .about-image img {
        height: 220px;
    }
    
    .banner-content h2 {
        font-size: 20px;
    }
}

/* Very Small Screens (up to 319px) */
@media (max-width: 319px) {
    .hero-text h1 {
        font-size: 24px;
    }
    
    .section-header h2 {
        font-size: 22px;
    }
    
    .hero-buttons .btn {
        padding: 8px 16px;
        font-size: 12px;
        min-width: 100px;
    }
    
    .form-container {
        padding: 15px 10px;
    }
    
    .contact-form-container {
        padding: 20px 15px;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-slider img,
    .service-image img,
    .about-image img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Internet Explorer Specific Fixes */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .service-card {
        display: block;
    }
    
    .contact-form-container {
        display: block;
    }
}

/* Print Styles */
@media print {
    .hamburger,
    .whatsapp-float,
    .hero-slider,
    .contact-form {
        display: none !important;
    }
    
    .hero,
    .services,
    .contact {
        background: white !important;
        color: black !important;
    }
    
    .section-header h2 {
        color: black !important;
    }
}
