/* CSS Reset & Base Styles */
    :root {
        --primary-color: #2196F3;
        --primary-light: #E8F5E9;
        --secondary-color: #4CAF50;
        --secondary-light: #E3F2FD;
        --text-color: #333;
        --text-light: #666;
        --bg-color: #FFFFFF;
        --border-radius: 8px;
        --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        --transition: all 0.3s ease;
    }
    
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    html {
        scroll-behavior: smooth;
    }
    
    body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.6;
        color: var(--text-color);
        background-color: var(--bg-color);
        overflow-x: hidden;
    }
    
    img {
        max-width: 100%;
        height: auto;
        display: block;
    }
    
    a {
        text-decoration: none;
        color: inherit;
    }
    
    ul {
        list-style: none;
    }
    
    /* Typography */
    h1, h2, h3, h4, h5, h6 {
        line-height: 1.2;
        margin-bottom: 1rem;
        font-weight: 600;
    }
    
    h1 {
        font-size: clamp(2.5rem, 5vw, 3.5rem);
    }
    
    h2 {
        font-size: clamp(2rem, 4vw, 2.8rem);
        text-align: center;
        margin-bottom: 2.5rem;
        position: relative;
    }
    
    h2:after {
        content: '';
        display: block;
        width: 80px;
        height: 4px;
        background: var(--primary-color);
        margin: 1rem auto 0;
        border-radius: 2px;
    }
    
    h3 {
        font-size: clamp(1.5rem, 3vw, 1.8rem);
    }
    
    p {
        margin-bottom: 1.5rem;
        color: var(--text-light);
        font-size: 1rem;
    }
    
    .text-center {
        text-align: center;
    }
    
    /* Layout */
    .container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1.5rem;
    }
    
    section {
        padding: 5rem 0;
    }
    
    .section-subtitle {
        text-align: center;
        max-width: 700px;
        margin: 0 auto 3rem;
        color: var(--text-light);
    }
    
    /* Buttons */
    .btn {
        display: inline-block;
        padding: 0.8rem 2rem;
        border-radius: var(--border-radius);
        font-weight: 600;
        cursor: pointer;
        transition: var(--transition);
        border: none;
        font-size: 1rem;
    }
    
    .btn-primary {
        background-color: var(--primary-color);
        color: white;
    }
    
    .btn-primary:hover {
        background-color: #3d8b40;
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(76, 175, 80, 0.2);
    }
    
    .btn-secondary {
        background-color: var(--primary-color);
        color: white;
    }
    
    .btn-secondary:hover {
        background-color: #0d8bf2;
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(33, 150, 243, 0.2);
    }
    
    .btn-outline {
        background-color: transparent;
        border: 2px solid var(--primary-color);
        color: var(--primary-color);
    }
    
    .btn-outline:hover {
        background-color: var(--primary-color);
        color: white;
    }
    
    /* Header & Navigation */
    header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        transition: var(--transition);
    }
    
    header.scrolled {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
    
    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1.5rem 0;
    }
    
    .logo {
        font-size: 1.5rem;
        font-weight: 700;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    .logo span {
        color: var(--primary-color);
    }
    
    .nav-links {
        display: flex;
        gap: 2rem;
    }
    
    .nav-links a {
        font-weight: 500;
        transition: var(--transition);
        position: relative;
    }
    
    .nav-links a:hover {
        color: var(--primary-color);
    }
    
    .nav-links a:after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--primary-color);
        transition: var(--transition);
    }
    
    .nav-links a:hover:after {
        width: 100%;
    }
    
    .hamburger {
        display: none;
        cursor: pointer;
        font-size: 1.5rem;
    }
    
    /* Hero Section */
   .hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: flex-start;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-light) 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
   
    padding: 2rem 2.5rem;
    border-radius: 16px;
    

}
    
    
    .hero h1 {
        margin-bottom: 1.5rem;
        animation: fadeInUp 1s ease;
    }
    
    .hero p {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
        animation: fadeInUp 1s ease 0.2s forwards;
        opacity: 0;
    }
    
    .hero-btns {
        display: flex;
        gap: 1rem;
        animation: fadeInUp 1s ease 0.4s forwards;
        opacity: 0;
    }
    
    .hero-image {
        position: absolute;
        right: 0;
        bottom: 0;
        width: 50%;
        max-width: 700px;
        animation: fadeInRight 1s ease;
    }
    
    /* Features Section */
    .features {
        background-color: #f9f9f9;
    }
    
    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
    
    .feature-card {
        background-color: white;
        border-radius: var(--border-radius);
        padding: 2rem;
        box-shadow: var(--box-shadow);
        transition: var(--transition);
        text-align: center;
        opacity: 0;
        transform: translateY(20px);
    }
    
    .feature-card.visible {
        opacity: 1;
        transform: translateY(0);
    }
    
    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    }
    
    .feature-card:hover .feature-icon,
    .service-card:hover .feature-icon {
        color: var(--secondary-color);
        transition: color 0.3s;
    }
    
    .feature-icon {
        font-size: 2.5rem;
        color: var(--primary-color);
        margin-bottom: 1.5rem;
    }
    
    /* Services Section */
    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
    
    .service-card {
        background: #fff;
        border-radius: var(--border-radius);
        overflow: hidden;
        box-shadow: var(--box-shadow);
        transition: var(--transition);
        opacity: 0;
        transform: translateY(20px);
    }
    
    .service-card.visible {
        opacity: 1;
        transform: translateY(0);
    }
    
    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    }
    
    .service-card:hover .feature-icon,
    .service-card:hover .service-img {
        transform: scale(1.05);
        transition: transform 0.3s;
    }
    
    .service-img {
        height: 200px;
        width: 100%;
        object-fit: cover;
    }
    
    .service-content {
        padding: 1.5rem;
    }
    
    .service-content h3 {
        margin-bottom: 0.5rem;
    }
    
    .service-content .price {
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--primary-color);
        margin-bottom: 1rem;
    }
    
    /* Testimonials Section */
    .testimonials {
        background-color: #f9f9f9;
    }
    
    .testimonial-slider {
        max-width: 800px;
        margin: 0 auto;
        position: relative;
        overflow: hidden;
    }
    
    .testimonial-track {
        display: flex;
        transition: transform 0.5s ease;
    }
    
    .testimonial-card {
        min-width: 100%;
        padding: 2rem;
        background-color: white;
        border-radius: var(--border-radius);
        box-shadow: var(--box-shadow);
        text-align: center;
    }
    
    .testimonial-card .quote {
        font-size: 1.2rem;
        font-style: italic;
        margin-bottom: 1.5rem;
        color: var(--text-color);
    }
    
    .client-info {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }
    
    .client-img {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        object-fit: cover;
    }
    
    .client-name {
        font-weight: 600;
        margin-bottom: 0.25rem;
    }
    
    .client-title {
        color: var(--text-light);
        font-size: 0.9rem;
    }
    
    .slider-nav {
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .slider-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: #ddd;
        cursor: pointer;
        transition: var(--transition);
    }
    
    .slider-dot.active {
        background-color: var(--primary-color);
    }
    
    /* Contact Section */
    .contact-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 3rem;
    }
    
    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    
    .contact-item {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .contact-icon {
        font-size: 1.5rem;
        color: var(--primary-color);
        margin-top: 0.25rem;
    }
    
    .contact-form {
        background-color: white;
        padding: 2rem;
        border-radius: var(--border-radius);
        box-shadow: var(--box-shadow);
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        font-weight: 500;
    }
    
    .form-control {
        width: 100%;
        padding: 0.8rem 1rem;
        border: 1px solid #ddd;
        border-radius: var(--border-radius);
        font-family: inherit;
        font-size: 1rem;
        transition: var(--transition);
    }
    
    .form-control:focus {
        outline: none;
        border-color: var(--primary-color);
        box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.2);
    }
    
    textarea.form-control {
        min-height: 150px;
        resize: vertical;
    }
    
    .form-submit {
        width: 100%;
    }
    
    .error-message {
        color: #f44336;
        font-size: 0.875rem;
        margin-top: 0.25rem;
        display: none;
    }
    
    /* Footer */
    footer {
        background-color: #023568e8;
        color: #fff;
        padding: 4rem 0 2rem;
    }
    
    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .footer-logo {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    .footer-logo span {
        color: var(--primary-color);
    }
    
    .footer-about p {
        color: #fff !important;
        margin-bottom: 1.5rem;
    }
    
    .social-links {
        display: flex;
        gap: 1rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
    }
    
    .social-link:hover {
        background-color: var(--primary-color);
        transform: translateY(-3px);
    }
    
    .footer-links h3 {
        color: white;
        margin-bottom: 1.5rem;
        font-size: 1.2rem;
    }
    
    .footer-links ul {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .footer-links a {
        color: #fff !important;
        transition: var(--transition);
    }
    
    .footer-links a:hover {
        color: #fff !important;
        padding-left: 5px;
    }
    
    .footer-bottom {
        text-align: center;
        padding-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        color: #aaa;
        font-size: 0.9rem;
        
    }
    .footer-bottom,
.footer-bottom p {
    color: #fff !important;
}
    
    /* Animations */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes fadeInRight {
        from {
            opacity: 0;
            transform: translateX(20px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    .fade-in {
        opacity: 0;
        transition: opacity 0.6s ease, transform 0.6s ease;
    }
    
    .fade-in.visible {
        opacity: 1;
    }
    
   
    
    
    @keyframes spin {
        to {
            transform: rotate(360deg);
        }
    }
    
    /* Responsive Styles */
    @media (max-width: 992px) {
        .hero-image {
            opacity: 0.3;
        }
        
        .hero-content {
            max-width: 100%;
        }
    }
    
    @media (max-width: 768px) {
        section {
            padding: 3rem 0;
        }
        
        .nav-links {
            position: fixed;
            top: 108px;
            left: 0;
            width: 100%;
            background-color: white;
            flex-direction: column;
            align-items: center;
            padding: 2rem 0;
            gap: 1.5rem;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            transform: translateY(-150%);
            transition: var(--transition);
        }
        
        .nav-links.active {
            transform: translateY(0);
        }
        
        .hamburger {
            display: block;
        }
        
        .hero {
            min-height: calc(100vh - 80px); /* 80px = header height */
            padding-top: 80px;
            align-items: flex-start;
        }
        
        .hero-btns {
            flex-direction: column;
        }
        
        .hero-image {
            display: none;
        }
        
    }
    
    @media (max-width: 576px) {
        .btn {
            width: 100%;
            text-align: center;
        }
        
        .contact-container {
            grid-template-columns: 1fr;
        }
    }
.contact-strip {
        width: 100%;
        background: #2196F3;
        color: #fff;
        position: sticky;
        top: 0;
        z-index: 999;
        font-size: 1rem;
        box-shadow: 0 2px 8px rgba(33,150,243,0.08);
    }
    .contact-strip-container {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        padding: 0.5rem 0;
        flex-wrap: wrap;
    }
    .contact-strip-item {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-weight: 500;
        font-size: 1rem;
    }
    .contact-strip-item i {
        font-size: 1.1em;
    }
    /* Mobile: Make strip fit on one line, shrink text/icons, reduce gap */
@media (max-width: 600px) {
    .contact-strip-container {
        gap: 0.7rem;
        padding: 0.3rem 0.2rem;
        flex-wrap: nowrap;
        flex-direction: row;
    }
    .contact-strip-item {
        font-size: 0.85rem;
        gap: 0.3rem;
        white-space: nowrap;
    }
    .contact-strip-item i {
        font-size: 1em;
    }
    .contact-strip {
        font-size: 0.9rem;
    }
}