 /* Font imports */
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

        /* Global styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
        }

        a{
            text-decoration: none;
        }

        body {
            color: #333;
            line-height: 1.6;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Header styles */
        header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            border-bottom: 1px solid #eee;
        }

        .logo {
            font-size: 24px;
            font-weight: 700;
            color: #e94e19;
            text-decoration: none;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .header-actions a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            font-size: 14px;
        }

        .header-actions .btn {
            background-color: #e94e19;
            color: white;
            padding: 8px 16px;
            border-radius: 4px;
            font-weight: 600;
        }

        /* Navigation */
        nav {
            padding: 15px 0;
            position: relative;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 25px;
        }

        .nav-menu li {
            position: relative;
        }

        .nav-menu a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            font-size: 15px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .nav-menu a i {
            font-size: 12px;
            display: none;
        }

        /* Mega dropdown menu */
        .mega-dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border-radius: 4px;
            padding: 25px;
            width: 800px;
            display: none;
            z-index: 10;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .mega-dropdown.active {
            display: grid;
        }

        .mega-dropdown-column h4 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 15px;
            color: #e94e19;
        }

        .mega-dropdown-column ul {
            list-style: none;
        }

        .mega-dropdown-column ul li {
            margin-bottom: 10px;
        }

        .mega-dropdown-column a {
            color: #333;
            font-size: 14px;
            text-decoration: none;
            transition: color 0.3s;
        }

        .mega-dropdown-column a:hover {
            color: #e94e19;
        }

        .mega-dropdown-image {
            grid-column: span 1;
            background-color: #f5f5f5;
            border-radius: 8px;
            overflow: hidden;
            height: 200px;
            background-size: cover;
            background-position: center;
        }

        /* Regular dropdown */
        .dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border-radius: 4px;
            padding: 15px;
            min-width: 200px;
            display: none;
            z-index: 10;
        }

        .dropdown a {
            padding: 8px 0;
            display: block;
            color: #333;
            text-decoration: none;
            font-size: 14px;
        }

        .dropdown a:hover {
            color: #e94e19;
        }

        .nav-menu li:hover .dropdown:not(.mega-dropdown) {
            display: block;
        }

        /* Hero slider */
        .hero {
            height: 500px;
            background-color: #f5f5f5;
            position: relative;
            overflow: hidden;
        }

        .slide {
            position: absolute;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        .slide.active {
            opacity: 1;
        }

        .slide-content {
            position: absolute;
            top: 50%;
            left: 10%;
            transform: translateY(-50%);
            max-width: 500px;
            color: #333;
        }

        .slide-content h1 {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .slide-content p {
            font-size: 18px;
            margin-bottom: 30px;
        }

        .btn-primary {
            background-color: #e94e19;
            color: white;
            padding: 12px 24px;
            border-radius: 4px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: background-color 0.3s;
        }

        .btn-primary:hover {
            background-color: #e94e19;
        }

        /* Services section */
        .services {
            padding: 60px 0;
            background-color: white;
        }

        .section-title {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-title h2 {
            font-size: 32px;
            font-weight: 700;
            color: #333;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .service-card {
            background-color: #f9f9f9;
            border-radius: 8px;
            overflow: hidden;
            text-align: center;
            padding: 30px 20px;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .service-card img {
            width: 280px;
            height: px;
            object-fit: contain;
            margin-bottom: 20px;
            aspect-ratio: 1;
            object-fit: cover;
        }

        .service-card h3 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .service-card p {
            font-size: 15px;
            color: #666;
        }

        /* CTA section */
        .cta {
            background-color: #f0f7f6;
            padding: 80px 0;
            text-align: center;
        }

        .cta h2 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .cta p {
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto 30px;
            color: #666;
        }

        /* Footer */
        footer {
            background-color: #222;
            color: white;
            padding: 60px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 12px;
        }

        .footer-column a {
            color: #bbb;
            text-decoration: none;
            font-size: 14px;
        }

        .footer-column a:hover {
            color: white;
        }

        .footer-bottom {
            border-top: 1px solid #444;
            padding-top: 20px;
            text-align: center;
            font-size: 14px;
            color: #bbb;
        }

        /* Mobile Menu Button */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: #333;
            cursor: pointer;
        }

        /* Mobile Responsiveness */
        @media (max-width: 992px) {

            /* Mega dropdown becomes full width */
            .mega-dropdown {
                width: calc(100vw - 30px);
                left: 15px;
                right: 15px;
                grid-template-columns: repeat(2, 1fr);
            }

            .mega-dropdown-image {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .header-top {
                flex-wrap: wrap;
                gap: 15px;
            }

            .header-actions {
                order: 3;
                width: 100%;
                justify-content: space-between;
                padding-top: 15px;
                border-top: 1px solid #eee;
            }

            .mobile-menu-btn {
                display: block;
            }

            nav {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: white;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
                padding: 15px;
            }

            .nav-menu {
                flex-direction: column;
                gap: 15px;
            }

            .dropdown,
            .mega-dropdown {
                position: static;
                box-shadow: none;
                padding: 10px 0 10px 20px;
                width: 100%;
                display: none;
            }

            .mega-dropdown {
                grid-template-columns: 1fr;
            }

            .nav-menu li:hover .dropdown {
                display: none;
            }

            .dropdown.active,
            .mega-dropdown.active {
                display: block;
            }

            .hero {
                height: 400px;
            }

            .slide-content {
                left: 5%;
                right: 5%;
                max-width: 100%;
                text-align: center;
            }

            .slide-content h1 {
                font-size: 32px;
            }

            .slide-content p {
                font-size: 16px;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 480px) {
            .header-actions {
                flex-wrap: wrap;
                gap: 10px;
            }

            .header-actions a:not(.btn) {
                display: none;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .cta h2 {
                font-size: 28px;
            }
        }


        /* Product section  */
  
        /* Inspiration Section */
        .inspiration-section {
            padding: 60px 0;
            position: relative;
        }

        .section-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-header h2 {
            font-size: 36px;
            font-weight: 700;
            color: #222;
            margin-bottom: 15px;
        }

        .section-header p {
            font-size: 18px;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Services Slider */
        .services-slider {
            position: relative;
            width: 100%;
            overflow: hidden;
        }

        .services-track {
            display: flex;
            transition: transform 0.5s ease;
            width: 100%;
        }

        .service-card {
            min-width: 280px;
            flex: 0 0 280px;
            padding: 0 10px;
        }

        .service-content {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            height: 100%;
        }

        .service-image {
            height: 180px;
            background-size: cover;
            background-position: center;
        }

        .service-details {
            padding: 20px;
        }

        .service-details h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 10px;
            color: #222;
        }

        .service-details p {
            font-size: 15px;
            color: #666;
            margin-bottom: 15px;
        }

        /* Slider Navigation */
        .slider-nav {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ddd;
            margin: 0 5px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .slider-dot.active {
            background: #e94e19;
            transform: scale(1.2);
        }

        /* Navigation Arrows */
        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            cursor: pointer;
            z-index: 10;
            opacity: 0.8;
            transition: opacity 0.3s;
        }

        .slider-arrow:hover {
            opacity: 1;
        }

        .slider-arrow.prev {
            left: 10px;
        }

        .slider-arrow.next {
            right: 10px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .service-card {
                /*min-width: 240px;*/
                flex: 0 0 240px;
            }

            .slider-arrow {
                display: none;
            }
        }


       /* portoflio section  */



        .inspiration-section {
            padding: 60px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-header h1 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .section-header p {
            font-size: 18px;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }

        .divider {
            width: 100px;
            height: 2px;
            background-color: #e94e19;
            margin: 30px auto;
        }

        .image-grid {
            margin-bottom: 40px;
        }

        .image-container {
            position: relative;
            margin-bottom: 15px;
            overflow: hidden;
            border-radius: 8px;
        }

        .image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }

        .image-container:hover img {
            transform: scale(1.05);
        }

        .image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 15px;
        }

        .image-overlay h3 {
            font-size: 18px;
            font-weight: 600;
            margin: 0;
        }

        .why-choose-us {
            text-align: center;
            margin-top: 50px;
        }

        .why-choose-us h3 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 30px;
        }

        .slider-btn {
            display: flex;
            justify-content: flex-end;
            margin-bottom: 20px;
        }

        .slider-btn .btn {
            background-color: #e94e19;
            color: white;
            border: none;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .slider-btn .btn:hover {
            background-color: #e94e19;
        }

        /* Slider Modal */
        .slider-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            z-index: 1000;
            overflow: auto;
        }

        .slider-content {
            position: relative;
            max-width: 1200px;
            margin: 50px auto;
            padding: 20px;
        }

        .slider-close {
            position: absolute;
            top: 20px;
            right: 20px;
            color: white;
            font-size: 30px;
            cursor: pointer;
            z-index: 1001;
        }

        .slider-main {
            position: relative;
        }

        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s;
        }

        .slider-arrow:hover {
            background: rgba(255, 255, 255, 0.4);
        }

        .slider-arrow.prev {
            left: 20px;
        }

        .slider-arrow.next {
            right: 20px;
        }

        .slider-slide {
            display: none;
        }

        .slider-slide.active {
            display: block;
        }

        .slider-slide img {
            width: 100%;
            max-height: 80vh;
            object-fit: contain;
        }

        .slider-caption {
            text-align: center;
            color: white;
            margin-top: 20px;
        }

        @media (max-width: 768px) {
            .section-header h1 {
                font-size: 28px;
            }

            .section-header p {
                font-size: 16px;
            }

            .image-overlay h3 {
                font-size: 16px;
            }
        }

   

:root {
    --primary-color: #e94e19;
    --secondary-color: #2d3748;
    --accent-color: #f7fafc;
    --text-color: #4a5568;
}

.why-choose-us {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.benefits-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.benefits-track {
    display: flex;
    transition: transform 0.3s ease; /* Faster transition */
}

.benefit-slide {
    min-width: 25%;
    padding: 0 15px;
    flex: 0 0 25%;
}

.benefit-card {
    background: white;
    border-radius: 12px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.benefit-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-color);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 179, 159, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--primary-color);
    font-size: 28px;
    transition: all 0.3s;
}

.benefit-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1;
}

.benefit-text {
    font-size: 1.1rem;
    color: var(--text-color);
    font-weight: 500;
}

.disclaimer {
    text-align: center;
    margin-top: 50px;
    font-size: 0.85rem;
    color: var(--text-color);
    opacity: 0.7;
}

@media (max-width: 992px) {
    .benefit-slide {
        min-width: 33.33%;
        flex: 0 0 33.33%;
    }
}

@media (max-width: 768px) {
    .why-choose-us {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .benefit-slide {
        min-width: 50%;
        flex: 0 0 50%;
    }
    
    .benefit-card {
        padding: 30px 20px;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .benefit-number {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .benefit-slide {
        min-width: 100%;
        flex: 0 0 100%;
    }
}


/* Calculator */
   
   
        
       .inline-heading {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.4;
}

.cycling-text {
    display: inline-block;
    position: relative;
    width: 200px; /* adjust if needed */
    height: 40px;
    vertical-align: middle;
    overflow: hidden;
}

.cycling-text span {
    position: absolute;
    width: 100%;
    opacity: 0;
    animation: cycleText 9s infinite;
    text-align: left;
}

.cycling-text span:nth-child(1) { animation-delay: 0s; }
.cycling-text span:nth-child(2) { animation-delay: 3s; }
.cycling-text span:nth-child(3) { animation-delay: 6s; }

@keyframes cycleText {
    0%   { opacity: 0; transform: translateY(100%); }
    10%  { opacity: 1; transform: translateY(0); }
    30%  { opacity: 1; transform: translateY(0); }
    40%  { opacity: 0; transform: translateY(-100%); }
    100% { opacity: 0; transform: translateY(-100%); }
}

.card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 15px;
}

.card-icon-left {
    flex-shrink: 0;
}

.icon-bg {
    width: 50px;
    height: 50px;
    background: rgba(0, 179, 159, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ASHIANA INTERIO DECOR-green);
    font-size: 22px;
}

.card-title h3 {
    margin: 0;
    font-size: 18px;
    text-align: left;
    color: var(--dark-gray);
}

.card-icon-right {
    font-size: 20px;
    color: var(--ASHIANA INTERIO DECOR-green);
}

        
        .estimate-section {
            padding: 80px 0;
            background-color: white;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .section-header h1 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .section-header p {
            font-size: 18px;
            color: var(--medium-gray);
            max-width: 700px;
            margin: 0 auto;
        }
        
        .divider {
            width: 100px;
            height: 2px;
            background-color: var(--ASHIANA INTERIO DECOR-green);
            margin: 30px auto;
        }
        
        .estimate-container {
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .cycling-text {
            height: 60px;
            overflow: hidden;
            position: relative;
            text-align: left;
            color: #e94e19;
            /* margin-bottom: 30px; */
        }
        
        .cycling-text h2 {
            font-size: 28px;
            font-weight: 600;
            position: absolute;
            width: 100%;
            opacity: 0;
            animation: cycleText 9s infinite;
        }
        
        .cycling-text h2:nth-child(1) {
            animation-delay: 0s;
        }
        
        .cycling-text h2:nth-child(2) {
            animation-delay: 3s;
        }
        
        .cycling-text h2:nth-child(3) {
            animation-delay: 6s;
        }
        
        @keyframes cycleText {
            0% {
                opacity: 0;
                transform: translateY(20px);
            }
            10% {
                opacity: 1;
                transform: translateY(0);
            }
            30% {
                opacity: 1;
                transform: translateY(0);
            }
            40% {
                opacity: 0;
                transform: translateY(-20px);
            }
            100% {
                opacity: 0;
                transform: translateY(-20px);
            }
        }
        
        .service-cards {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 50px;
        }
        
        .service-card {
            background: white;
            border-radius: 8px;
            padding: 30px;
            width: 100%;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(0, 0, 0, 0.05);
            text-align: center;
            transition: all 0.3s;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .service-card h3 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--dark-gray);
        }
        
        .service-card p {
            font-size: 15px;
            color: var(--medium-gray);
            margin-bottom: 20px;
        }
        
        .btn-calculate {
            background-color:#e94e19;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 4px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s;
        }
        
        .btn-calculate:hover {
            background-color: #e94e19;
            color: white;
        }
        
        .cta-footer {
            text-align: center;
            margin-top: 60px;
            font-size: 18px;
            font-weight: 500;
        }
        
        @media (max-width: 768px) {
            .section-header h1 {
                font-size: 28px;
            }
            
            .cycling-text {
                height: 50px;
            }
            
            .cycling-text h2 {
                font-size: 24px;
            }
            
            .service-cards {
                gap: 20px;
            }
            
            .service-card {
                width: 100%;
                max-width: 350px;
            }
        }
  

   /* cta banner */


       .experience-center-section {
    position: relative;
    text-align: center;
    padding: 80px 20px;
    margin: 40px 0;
    overflow: hidden;
    background-image: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    border-radius: 8px;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.experience-center-section h2 {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.experience-center-section p {
    font-size: 18px;
    margin-bottom: 25px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.find-center-link a {
    display: inline-block;
    padding: 12px 24px;
    background-color: #ff6b6b;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.find-center-link a:hover {
    background-color: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

/* Floating shapes */
.floating-shape {
    position: absolute;
    opacity: 0.2;
    z-index: 1;
}

.floating-shape.circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff9a9e, #fad0c4);
    top: -50px;
    left: -50px;
}

.floating-shape.triangle {
    width: 0;
    height: 0;
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
    border-bottom: 140px solid #a18cd1;
    bottom: -70px;
    right: -40px;
    transform: rotate(15deg);
}

/* Animation for shapes */
@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

.floating-shape {
    animation: float 8s ease-in-out infinite;
}



    /* FAQ Section Styles */
.faq-section {
    padding: 60px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-section h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
    color: #333;
    font-weight: 600;
}

/* Accordion Styles */
.accordion {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.accordion-item {
    border-bottom: 1px solid #e0e0e0;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    width: 100%;
    padding: 18px 20px;
    text-align: left;
    background: white;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    transition: background 0.3s ease;
}

.accordion-header:hover {
    background: #f9f9f9;
}

.accordion-header.active {
    background: #f5f5f5;
}

.accordion-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.accordion-header.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #fcfcfc;
}

.accordion-content p {
    padding: 0 20px 20px;
    margin: 0;
    line-height: 1.6;
    color: #555;
}




    /* Blog & News Section Styles */
.blog-news-section {
    padding: 80px 20px;
    background-color: #f9f9f9;
    /* margin: 40px 0; */
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 32px;
    color: #222;
    margin-bottom: 15px;
    font-weight: 600;
}

.section-header p {
    color: #666;
    font-size: 18px;
    margin-bottom: 20px;
}

.view-all {
    color: #e94e19;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
}

.view-all:hover {
    text-decoration: underline;
    color: #004499;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.article-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.article-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.article-card:hover .article-image img {
    transform: scale(1.05);
}

.category-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255,255,255,0.9);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #333;
}

.article-content {
    padding: 25px;
}

.article-content h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #222;
    line-height: 1.4;
    font-weight: 600;
}

.article-excerpt {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #888;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

@media (max-width: 768px) {
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-news-section {
        padding: 50px 20px;
    }
}



 
    /* Contact Section Styles */
.contact-section {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-details h2 {
    font-size: 32px;
    color: #222;
    margin-bottom: 15px;
}

.subtitle {
    color: #666;
    font-size: 18px;
    margin-bottom: 30px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.icon {
    font-size: 24px;
    background: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.info-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #222;
}

.info-item p {
    color: #666;
    font-size: 15px;
    margin-bottom: 8px;
}

.link {
    color: #e94e19;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
}

.link:hover {
    text-decoration: underline;
}

/* Form Styles */
.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.contact-form h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: #222;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e94e19;
    box-shadow: 0 0 0 2px rgba(0,102,204,0.1);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background-color: #e94e19;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #e94e19;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 30px;
    }
}



/*About Us page*/
/* About Hero */
        .about-hero {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                        url('https://images.unsplash.com/photo-1600121848594-d8644e57abab?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            height: 400px;
            display: flex;
            align-items: center;
            color: white;
            text-align: center;
            position: relative;
        }

        .about-hero .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
        }

        .about-hero h1 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .about-hero p {
            font-size: 20px;
            max-width: 600px;
            margin: 0 auto;
        }

        /* About Content Section */
        .about-content-section {
            padding: 80px 0;
        }

        .about-text h2 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 25px;
            color: #333;
        }

        .about-text p {
            font-size: 16px;
            line-height: 1.8;
            color: #555;
            margin-bottom: 20px;
        }

        .about-image {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        /* Values Section */
        .values-section {
            padding: 80px 0;
            background-color: #f9f9f9;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-header h2 {
            font-size: 36px;
            font-weight: 700;
            color: #333;
            margin-bottom: 15px;
        }

        .section-header p {
            font-size: 18px;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .value-card {
            background: white;
            border-radius: 8px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .value-icon {
            width: 70px;
            height: 70px;
            background: rgba(0, 179, 159, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: #e94e19;
            font-size: 28px;
        }

        .value-card h3 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 15px;
            color: #333;
        }

        .value-card p {
            font-size: 15px;
            color: #666;
            line-height: 1.6;
        }

        /* Team Section */
        .team-section {
            padding: 80px 0;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .team-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .team-image {
            height: 300px;
            overflow: hidden;
        }

        .team-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .team-card:hover .team-image img {
            transform: scale(1.05);
        }

        .team-info {
            padding: 25px;
            text-align: center;
        }

        .team-info h3 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 5px;
            color: #333;
        }

        .team-info p {
            font-size: 16px;
            color: #e94e19;
            margin-bottom: 10px;
            font-weight: 500;
        }

        .team-info .bio {
            color: #666;
            font-size: 14px;
            line-height: 1.6;
        }

        /* Milestones Section */
        .milestones-section {
            padding: 80px 0;
            background-color: #f9f9f9;
        }

        .timeline {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            padding: 40px 0;
        }

        .timeline::before {
            content: '';
            position: absolute;
            width: 2px;
            background-color: #e94e19;
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -1px;
        }

        .timeline-item {
            padding: 10px 40px;
            position: relative;
            width: 50%;
            box-sizing: border-box;
        }

        .timeline-item:nth-child(odd) {
            left: 0;
        }

        .timeline-item:nth-child(even) {
            left: 50%;
        }

        .timeline-item::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            background-color: white;
            border: 3px solid #e94e19;
            border-radius: 50%;
            top: 15px;
            z-index: 1;
        }

        .timeline-item:nth-child(odd)::after {
            right: -10px;
        }

        .timeline-item:nth-child(even)::after {
            left: -10px;
        }

        .timeline-year {
            padding: 8px 15px;
            background-color: #e94e19;
            color: white;
            border-radius: 20px;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 15px;
        }

        .timeline-content {
            padding: 20px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .timeline-content h3 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 10px;
            color: #333;
        }

        .timeline-content p {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
        }

        /* About CTA */
        .about-cta {
            padding: 80px 0;
            background: linear-gradient(135deg, #e94e19 0%, #e94e19 100%);
            color: white;
            text-align: center;
        }

        .about-cta h2 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .about-cta p {
            font-size: 18px;
            max-width: 600px;
            margin: 0 auto 30px;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .timeline::before {
                left: 30px;
            }

            .timeline-item {
                width: 100%;
                padding-left: 70px;
                padding-right: 0;
            }

            .timeline-item:nth-child(even) {
                left: 0;
            }

            .timeline-item::after {
                left: 20px;
            }

            .timeline-item:nth-child(odd)::after {
                right: auto;
                left: 20px;
            }
        }

        @media (max-width: 768px) {
            .about-hero h1 {
                font-size: 36px;
            }

            .about-hero p {
                font-size: 18px;
            }

            .about-text h2 {
                font-size: 28px;
            }

            .section-header h2 {
                font-size: 28px;
            }

            .about-cta h2 {
                font-size: 28px;
            }
        }
        
         /* Service Hero */
        .service-hero {
            background-size: cover;
            background-position: center;
            height: 500px;
            display: flex;
            align-items: center;
            color: white;
            position: relative;
        }

        .full-home-hero {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                        url('https://images.unsplash.com/photo-1618220179428-22790b461013?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
        }

        .service-hero .hero-content {
            max-width: 800px;
        }

        .service-hero h1 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .service-hero p {
            font-size: 20px;
            margin-bottom: 30px;
        }

        /* Service Intro */
        .service-intro {
            padding: 80px 0;
        }

        .intro-text h2 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 25px;
            color: #333;
        }

        .intro-text p {
            font-size: 16px;
            line-height: 1.8;
            color: #555;
            margin-bottom: 20px;
        }

        .feature-list {
            margin-top: 30px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .feature-item i {
            color: #e94e19;
            font-size: 20px;
            margin-right: 15px;
        }

        .feature-item span {
            font-size: 16px;
            color: #333;
        }

        .intro-image {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        /* Process Section */
        .process-section {
            padding: 80px 0;
            background-color: #f9f9f9;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-header h2 {
            font-size: 36px;
            font-weight: 700;
            color: #333;
            margin-bottom: 15px;
        }

        .section-header p {
            font-size: 18px;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }

        .process-steps {
            max-width: 900px;
            margin: 0 auto;
        }

        .process-item {
            display: flex;
            margin-bottom: 30px;
            align-items: flex-start;
        }

        .process-number {
            width: 50px;
            height: 50px;
            background-color: #e94e19;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: 700;
            margin-right: 25px;
            flex-shrink: 0;
        }

        .process-content h3 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 10px;
            color: #333;
        }

        .process-content p {
            font-size: 15px;
            color: #666;
            line-height: 1.6;
        }

        /* Included Section */
        .included-section {
            padding: 80px 0;
        }

        .included-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .included-card {
            background: white;
            border-radius: 8px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .included-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .included-icon {
            width: 70px;
            height: 70px;
            background: rgba(0, 179, 159, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: #e94e19;
            font-size: 28px;
        }

        .included-card h3 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 15px;
            color: #333;
        }

        .included-card p {
            font-size: 15px;
            color: #666;
            line-height: 1.6;
        }

        /* Styles Section */
        .styles-section {
            padding: 80px 0;
            background-color: #f9f9f9;
        }

        .styles-slider {
            display: flex;
            gap: 30px;
            overflow-x: auto;
            padding: 20px 0;
            scroll-snap-type: x mandatory;
        }

        .style-card {
            min-width: 300px;
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            scroll-snap-align: start;
        }

        .style-image {
            height: 250px;
            overflow: hidden;
        }

        .style-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .style-card:hover .style-image img {
            transform: scale(1.05);
        }

        .style-content {
            padding: 20px;
        }

        .style-content h3 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 10px;
            color: #333;
        }

        .style-content p {
            font-size: 15px;
            color: #666;
            margin-bottom: 15px;
            line-height: 1.6;
        }

        .style-link {
            color: #e94e19;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
        }

        .style-link i {
            margin-left: 5px;
            transition: transform 0.3s;
        }

        .style-link:hover i {
            transform: translateX(5px);
        }

        /* Pricing Section */
        .pricing-section {
            padding: 80px 0;
        }

        .pricing-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .pricing-card {
            background: white;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            position: relative;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .pricing-card.featured {
            border: 2px solid #e94e19;
            transform: translateY(-10px);
        }

        .popular-badge {
            position: absolute;
            top: -15px;
            right: 20px;
            background: #e94e19;
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
        }

        .pricing-header {
            text-align: center;
            margin-bottom: 25px;
            padding-bottom: 25px;
            border-bottom: 1px solid #eee;
        }

        .pricing-header h3 {
            font-size: 22px;
            font-weight: 700;
            color: #333;
            margin-bottom: 10px;
        }

        .price {
            font-size: 32px;
            font-weight: 700;
            color: #e94e19;
            margin-bottom: 5px;
        }

        .pricing-header p {
            font-size: 16px;
            color: #666;
        }

        .pricing-features ul {
            list-style: none;
            margin-bottom: 30px;
        }

        .pricing-features li {
            margin-bottom: 15px;
            font-size: 15px;
            color: #333;
            display: flex;
            align-items: flex-start;
        }

        .pricing-features i {
            color: #e94e19;
            margin-right: 10px;
            font-size: 14px;
            margin-top: 3px;
        }

        .btn-outline {
            display: block;
            text-align: center;
            padding: 12px;
            border: 2px solid #e94e19;
            color: #e94e19;
            border-radius: 4px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
        }

        .btn-outline:hover {
            background: #e94e19;
            color: white;
        }

        .pricing-note {
            text-align: center;
            margin-top: 30px;
            font-size: 14px;
            color: #666;
        }

        /* Portfolio Section */
        .portfolio-section {
            padding: 80px 0;
            background-color: #f9f9f9;
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .portfolio-item {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            height: 350px;
        }

        .portfolio-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .portfolio-item:hover img {
            transform: scale(1.05);
        }

        .portfolio-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 25px;
            transform: translateY(100%);
            transition: transform 0.3s;
        }

        .portfolio-item:hover .portfolio-overlay {
            transform: translateY(0);
        }

        .portfolio-overlay h3 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .portfolio-overlay p {
            font-size: 14px;
            margin-bottom: 15px;
            opacity: 0.8;
        }

        .view-btn {
            display: inline-block;
            padding: 8px 20px;
            background: #e94e19;
            color: white;
            border-radius: 4px;
            font-weight: 600;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s;
        }

        .view-btn:hover {
            background: #e94e19;
        }

        .portfolio-cta {
            text-align: center;
            margin-top: 50px;
        }

        /* Testimonials Section */
        .testimonials-section {
            padding: 80px 0;
        }

        .testimonials-slider {
            display: flex;
            gap: 30px;
            overflow-x: auto;
            padding: 20px 0;
            scroll-snap-type: x mandatory;
        }

        .testimonial-card {
            min-width: 350px;
            background: white;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            scroll-snap-align: start;
        }

        .rating {
            color: #ffc107;
            margin-bottom: 20px;
        }

        .testimonial-content p {
            font-size: 16px;
            color: #333;
            line-height: 1.6;
            font-style: italic;
            margin-bottom: 25px;
        }

        .client-info {
            display: flex;
            align-items: center;
        }

        .client-image {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 15px;
        }

        .client-details h4 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 5px;
            color: #333;
        }

        .client-details p {
            font-size: 14px;
            color: #666;
        }

        /* Consultation Form Section */
        .consultation-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #e94e19 0%, #e94e19 100%);
            color: white;
        }

        .consultation-form {
            max-width: 800px;
            margin: 0 auto;
            background: white;
            border-radius: 8px;
            padding: 50px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .form-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .form-header h2 {
            font-size: 32px;
            font-weight: 700;
            color: #333;
            margin-bottom: 15px;
        }

        .form-header p {
            font-size: 18px;
            color: #666;
        }

        .form-row {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
        }

        .form-group {
            flex: 1;
            margin-bottom: 20px;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 16px;
        }

        .form-group textarea {
            height: 120px;
        }

        /* FAQ Section */
        .faq-section {
            padding: 80px 0;
            background-color: #f9f9f9;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .service-hero h1 {
                font-size: 42px;
            }
            
            .intro-text h2,
            .section-header h2 {
                font-size: 32px;
            }
        }

        @media (max-width: 768px) {
            .service-hero {
                height: 400px;
            }
            
            .service-hero h1 {
                font-size: 36px;
            }
            
            .service-hero p {
                font-size: 18px;
            }
            
            .form-row {
                flex-direction: column;
                gap: 0;
            }
            
            .consultation-form {
                padding: 30px;
            }
            
            .portfolio-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 576px) {
            .service-hero h1 {
                font-size: 28px;
            }
            
            .intro-text h2,
            .section-header h2 {
                font-size: 28px;
            }
            
            .pricing-cards {
                grid-template-columns: 1fr;
            }
        }

    
