
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            background: white;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #1a365d;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            font-weight: bold;
            color: #333;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: #fd7a28;
        }

        .btn {
            background: #fd7a28;
            color: white;
            padding: 12px 24px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .btn:hover {
            background: #d97706;
            transform: translateY(-2px);
        }
        .mobile-menu{
            display: none;
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            background: url("/images/image.png"); 
            background-size: cover;
           
            background-position: center;
            height: 100vh;
            min-height: 600px;
            display: flex;
            align-items: center;

            position: relative;
            overflow: hidden;
        }

        .hero-content {
            max-width: 1000px;
            animation: slideInLeft 1s ease-out;
            position:absolute;
            top: 30%;
            left: 10%;
        }
        .home-hero-image{
            opacity: 0.3;
            
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            line-height: 1.2;
            color: white;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
            color: rgb(164, 124, 55)
        }

        .hero-stats {
            position: absolute;
            bottom: 50px;
            right: 50px;
            display: flex;
            gap: 3rem;
            background: rgb(159, 97, 4);
            padding: 2rem;
            border-radius: 10px;
            backdrop-filter: blur(10px);
        }

        .stat {
            text-align: center;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            color:#fd7a28;
        }

        .stat-label {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        /* About Section */
        .about {
            padding: 100px 0;
            background: #f8fafc;
            margin-top: 0;
            position: relative;
            z-index: 10;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-text h2 {
            font-size: 2.5rem;
            color: #1a365d;
            margin-bottom: 1rem;
        }

        .about-text p {
            margin-bottom: 1.5rem;
            color: #666;
            line-height: 1.8;
        }

        .about-image {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .about-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        /* Services Section */
        .services {
            padding: 100px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: #1a365d;
            margin-bottom: 1rem;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .service-card:hover::before {
            left: 100%;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .service-icon {
            font-size: 3rem;
            color: #fd7a28;
            margin-bottom: 1rem;
        }

        .service-card h3 {
            font-size: 1.5rem;
            color: #1a365d;
            margin-bottom: 1rem;
        }

        /* Quality Section */
        .quality {
            background: #1a365d;
            color: white;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .quality::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%23f59e0b" opacity="0.1"/></svg>');
            background-size: 50px 50px;
            animation: float 20s infinite linear;
        }

        .quality-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .quality-text h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
        }

        .quality-features {
            list-style: none;
        }

        .quality-features li {
            padding: 0.5rem 0;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .quality-features i {
            color: #fd7a28;
        }

        .quality-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }

        .quality-stat {
            text-align: center;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            backdrop-filter: blur(10px);
        }

        .quality-stat-number {
            font-size: 3rem;
            font-weight: bold;
            color: #fd7a28;
        }

        /* Projects Section */
        .projects {
            padding: 100px 0;
            background: #f8fafc;
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .project-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .project-image {
            height: 250px;
            background: linear-gradient(45deg, #1a365d, #f59e0b);
            position: relative;
            overflow: hidden;
        }

        .project-card:nth-child(1) .project-image {
            background: linear-gradient(45deg, #1a365d, #2563eb);
        }

        .project-card:nth-child(2) .project-image {
            background: linear-gradient(45deg, #059669, #f59e0b);
        }

        .project-card:nth-child(3) .project-image {
            background: linear-gradient(45deg, #7c3aed, #f59e0b);
        }

        .project-card:nth-child(4) .project-image {
            background: linear-gradient(45deg, #dc2626, #f59e0b);
        }

        .project-info {
            padding: 2rem;
        }

        .project-info h3 {
            color: #1a365d;
            margin-bottom: 1rem;
        }

        /* Journey Section */
        .journey {
            padding: 100px 0;
        }

        .journey-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .journey-steps {
            list-style: none;
        }

        .journey-step {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 2rem;
            padding: 1.5rem;
            background: #f8fafc;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        

        .step-number {
            background-color: white;
            color: #fd7a28;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .journey-step:hover .step-number {
            background-color: #fd7a28;
            color: white;
            transform: scale(1.1);
        }

        /* Testimonials */
        .testimonials {
            padding: 100px 0;
            background: #f8fafc;
        }

        .testimonial-card {
            background: white;
            padding: 3rem;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            text-align: center;
            max-width: 600px;
            margin: 0 auto;
        }

        .testimonial-text {
            font-size: 1.2rem;
            font-style: italic;
            margin-bottom: 2rem;
            color: #666;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: #fd7a28;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            font-weight: bold;
        }

        /* News Section */
        .news {
            padding: 100px 0;
        }

        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .news-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .news-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .news-image {
            height: 200px;
            background: linear-gradient(45deg, #1a365d, #f59e0b);
        }

        .news-content {
            padding: 2rem;
        }

        .news-date {
            color: #f59e0b;
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
        }

        .news-content h3 {
            color: #1a365d;
            margin-bottom: 1rem;
        }

        /* Newsletter */
        .newsletter {
            background: #f59e0b;
            color: white;
            padding: 80px 0;
            text-align: center;
        }

        .newsletter h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .newsletter-form {
            display: flex;
            max-width: 500px;
            margin: 2rem auto 0;
            gap: 1rem;
        }

        .newsletter-form input {
            flex: 1;
            padding: 15px;
            border: none;
            border-radius: 5px;
            font-size: 1rem;
        }

        .newsletter-form button {
            background: #1a365d;
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        .newsletter-form button:hover {
            background: #2c5282;
        }

        /* Footer */
        footer {
            background: #1a365d;
            color: white;
            padding: 2px;
            padding-bottom: 0px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .footer-section h3 {
            color: #fd7a28;
            margin-bottom: 0rem;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom:3px;
        }

        .footer-section ul li a {
            color: #cbd5e0;
            text-decoration: none;
            transition: color 0.3s ease;
            margin: 1px;
        }

        .footer-section ul li a:hover {
            color: fd7a28;
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            border-top: 1px solid #2d3748;
            padding-top: 2rem;
            text-align: center;
            color: #a0aec0;
        }
        .nav-links2{
            display: none;
        }

        /* Animations */
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes float {
            from {
                transform: translateX(-100%);
            }
            to {
                transform: translateX(100%);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            body{
                padding: 10px;
            }
            .hero h1 {
                margin-top: 100px;
                font-size: 100px;
            }

            .hero-stats {
                position: static;
                margin-top: 3rem;
                justify-content: center;
            }

            .about-content,
            .quality-content,
            .journey-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .nav-links {
                display: none;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .container {
                padding: 0 15px;
            }
            .hero-container{
                margin-top: 120px;
                font-size: small;
                padding: 50px;
            }
            .section-title{
                margin-bottom: 2rem;
            }
            .section-title h1{
                font-size: 1rem;
            }
            .mobile-menu {
                display: block;
                color: #fd7a28;
                font-size: 1.5rem;
                padding-right: 20px;
            }
            .nav-links {
                display: flex;
                flex-direction: column; /* Stack items vertically */
                align-items: flex-start; /* Align items to left */
                gap: 10px; /* Space between links */
                transition: all 0.3s ease;
                }
            .nav-links a {
                display: block;
                padding: 10px 15px;
                color: #333;
                text-decoration: none;
                font-weight: bold;
                transition: color 0.3s ease;
            }
            .reasons{
                text-align: center;
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            }
            .reasons div {
                margin-left: 500px;
                width: 150px;
                height: 150px;
                padding: 10px;
                font-size: small;
            }
            
            
        }




        /* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5aa0;
}

.nav-logo i {
    margin-right: 10px;
    color: #ffc107;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #2c5aa0;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding-top: 100px;
    display: flex;
    align-items: center;
    margin-top: 100px;
   
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: #ffc107;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: #666;
    font-size: 0.95rem;
}

.hero-description {
    color: #666;
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-signature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.signature-line {
    width: 60px;
    height: 2px;
    background: #ffc107;
}

.signature-info strong {
    display: block;
    color: #1e3a5f;
    font-weight: 600;
}

.signature-info span {
    color: #666;
    font-size: 0.9rem;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.construction-scene {
    position: relative;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3a5f 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.construction-icon {
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.1);
}

.construction-crane {
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 4rem;
    color: #ffc107;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.reasons1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 80px;
}
.reasons{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 2fr));
    justify-content: center;
    align-items: center;
    padding: 10px;

}
.reasons div{
    padding: 50px;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 200px;
    height: 200px;
    padding: 20px;
    margin: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-radius:20px;
    transition: transform 0.3s ease , box-shadow 0.3s ease,background-color 0.3s ease;
    font-size: larger;
    font-weight:600;
    color: #1e3a5f;
    

}
.reasons div:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background-color: #f59e0b;;
   
}
   

   
/* Statistics Section */
.stats-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5aa0 100%);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffc107;
    margin-bottom: 0.5rem;
}

.stat-number::after {
    content: '+';
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Values Section */
.values-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.value-icon.blue {
    background: linear-gradient(135deg, #2c5aa0, #1e3a5f);
}

.value-icon.yellow {
    background: linear-gradient(135deg, #ffc107, #ff9800);
}

.value-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: 1rem;
}

.value-card p {
    color: #666;
    line-height: 1.7;
}

/* Footer */
.footer {
    background: #1e3a5f;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo i {
    margin-right: 10px;
    color: #ffc107;
}

.footer-section h4 {
    color: #ffc107;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffc107;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-info i {
    color: #ffc107;
    margin-right: 10px;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .construction-scene {
        width: 300px;
        height: 300px;
    }
    
    .construction-icon {
        font-size: 6rem;
    }
    
    .construction-crane {
        font-size: 3rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
    }
    
    .timeline-year {
        width: 60px;
        height: 60px;
        font-size: 1rem;
        margin-left: 0;
        margin-right: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .construction-scene {
        width: 250px;
        height: 250px;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    .value-card {
        padding: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}





.main-content {
            padding: 80px 0;
            background: #f8f9fa;
            margin-top: 100px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .content-wrapper {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            
        }

        .left-section h3 {
            color: #f39c12;
            font-size: 16px;
            margin-bottom: 10px;
            font-weight: normal;
        }

        .left-section h2 {
            font-size: 36px;
            color: #2c3e50;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .left-section p {
            color: #666;
            margin-bottom: 40px;
            line-height: 1.6;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            padding: 20px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .contact-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            font-size: 24px;
            color: white;
        }

        .address-icon { background: #f39c12; }
        .phone-icon { background: #f39c12; }
        .email-icon { background: #f39c12; }

        .contact-details h4 {
            color: #2c3e50;
            margin-bottom: 5px;
            font-size: 18px;
        }

        .contact-details p {
            color: #666;
            margin: 0;
        }

        /* Form Section */
        .form-section h2 {
            color: #2c3e50;
            font-size: 28px;
            margin-top: 100px;

        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #f39c12;
            box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.1);
        }

        .form-group textarea {
            height: 120px;
            resize: vertical;
        }

        .submit-btn {
            background: #f39c12;
            color: white;
            padding: 15px 30px;
            border: none;
            border-radius: 5px;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            background: #e67e22;
            transform: translateY(-2px);
        }

        /* Map Section */
        .map-section {
            margin: 60px 0;
        }

        .map-container {
            width: 100%;
            height: 400px;
            background: #e9ecef;
            border-radius: 8px;
            position: relative;
            overflow: hidden;
        }

        /* slider iframe */
        .slider{
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
            gap: 90px;
            margin-left: 50px;
            margin-right: 50px;
        } 
        
        .slider div img{
            padding: 30px;
            
            width: 170px;
            height: 150px;
            object-fit: cover;
            border-radius: 10px;
        }
        .main-slider h1{
            text-align: center;
        }
        .main-slider a{
            display: inline-block;
            margin-top: 20px;
            margin-left: 50%;
            margin-right: 40%;
            text-decoration: none;
            color: #fff;
            background-color: #f39c12;
            padding: 10px 20px;
            border-radius: 5px;
            transition: background-color 0.3s ease;
        }
        .main-slider a:hover {
            background-color: #dd8b44;
        }