
        :root {
            --primary: #4361ee;
            --primary-dark: #3a56d4;
            --secondary: #7209b7;
            --accent: #f72585;
            --light: #f8f9fa;
            --dark: #212529;
            --gray: #6c757d;
            --light-gray: #e9ecef;
            --success: #4cc9f0;
            --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }


        body {
            font-family: 'Poppins', sans-serif;
            background-color: #f8fafc;
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
        }

       
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(153, 240, 167, 0.555), rgba(132, 194, 219, 0.507)), url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 6rem 0;
            text-align: center;
            margin-bottom: 4rem;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .hero p {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 0 auto 2rem;
            opacity: 0.9;
        }

        .cta-button {
            display: inline-block;
            background: var(--accent);
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            box-shadow: 0 5px 15px rgba(247, 37, 133, 0.4);
            transition: var(--transition);
            border: none;
            cursor: pointer;
        }

        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(247, 37, 133, 0.5);
            background: #ff0676;
        }

        /* Main Content */
        .content {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 4rem;
            margin-bottom: 5rem;
        }

        @media (max-width: 992px) {
            .content {
                grid-template-columns: 1fr;
            }
            .hero h1{
                margin-top: 10px;

            }
        }

        /* Company Info Card */
        .company-info {
            background: white;
            border-radius: 20px;
            padding: 3rem;
            box-shadow: var(--card-shadow);
            position: relative;
            overflow: hidden;
        }

        .company-info:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, var(--primary), var(--accent));
        }

        .company-info h2 {
            color: var(--primary);
            margin-bottom: 1.5rem;
            font-size: 2.2rem;
            position: relative;
            display: inline-block;
        }

        .company-info h2:after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--accent);
            border-radius: 2px;
        }

        .company-description {
            margin-bottom: 2.5rem;
            color: var(--gray);
            font-size: 1.05rem;
        }

        /* Contact Details */
        .contact-details {
            margin-top: 3rem;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 2rem;
            padding: 1.5rem;
            border-radius: 12px;
            background: var(--light);
            transition: var(--transition);
            border-left: 4px solid transparent;
        }

        .contact-item:hover {
            transform: translateX(5px);
            border-left-color: var(--accent);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .contact-icon {
            background: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1.5rem;
            color: var(--primary);
            font-size: 1.5rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .contact-text h4 {
            color: var(--primary);
            margin-bottom: 0.5rem;
            font-size: 1.2rem;
        }

        .contact-text p {
            color: var(--gray);
        }

        /* Call to Action Buttons */
        .call-to-action {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.2rem;
            margin-top: 2.5rem;
        }

        .cta-button-sm {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1.2rem 1.5rem;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            text-align: center;
        }

        .cta-button-sm i {
            margin-right: 10px;
            font-size: 1.3rem;
        }

        .cta-call {
            background: linear-gradient(135deg, #4ade80, #22c55e);
            color: white;
        }

        .cta-call:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(34, 197, 94, 0.3);
        }

        .cta-email {
            background: linear-gradient(135deg, #60a5fa, #3b82f6);
            color: white;
        }

        .cta-email:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
        }

        .cta-visit {
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            color: white;
        }

        .cta-visit:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3);
        }

        /* Contact Form */
        .contact-form {
            background: white;
            border-radius: 20px;
            padding: 3rem;
            box-shadow: var(--card-shadow);
        }

        .contact-form h2 {
            color: var(--primary);
            margin-bottom: 2rem;
            font-size: 2.2rem;
            position: relative;
            display: inline-block;
        }

        .contact-form h2:after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--accent);
            border-radius: 2px;
        }

        .form-group {
            margin-bottom: 1.8rem;
            position: relative;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.7rem;
            color: var(--dark);
            font-weight: 500;
        }

        .form-control {
            width: 100%;
            padding: 1rem 1.2rem;
            border: 2px solid var(--light-gray);
            border-radius: 10px;
            font-size: 1rem;
            transition: var(--transition);
            font-family: 'Poppins', sans-serif;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.1);
        }

        textarea.form-control {
            min-height: 180px;
            resize: vertical;
        }

        .submit-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            padding: 1.2rem;
            border: none;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            margin-top: 1rem;
        }

        .submit-btn i {
            margin-right: 10px;
            font-size: 1.2rem;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(67, 97, 238, 0.3);
        }

        /* Social Media Section */
        .social-section {
            background: linear-gradient(135deg, #f8fafc 0%, #e9ecef 100%);
            padding: 4rem 0;
            margin: 4rem 0;
            border-radius: 20px;
            text-align: center;
        }

        .social-section h2 {
            color: var(--primary);
            margin-bottom: 1.5rem;
            font-size: 2.2rem;
        }

        .social-section p {
            color: var(--gray);
            max-width: 600px;
            margin: 0 auto 2.5rem;
            font-size: 1.1rem;
        }

        .social-icon-2 {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

        .social-iconss {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: white;
            color: var(--dark);
            font-size: 1.8rem;
            text-decoration: none;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .social-iconss:after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            transform: scale(0);
            transition: var(--transition);
            z-index: 1;
        }

        .social-iconss i {
            position: relative;
            z-index: 2;
        }

        .social-iconss.facebook:after {
            background: #1877f2;
        }

        .social-iconss.twitter:after {
            background: #1da1f2;
        }

        .social-iconss.linkedin:after {
            background: #0a66c2;
        }

        .social-iconss.instagram:after {
            background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
        }

        .social-iconss.youtube:after {
            background: #ff0000;
        }

        .social-iconss.github:after {
            background: #333;
        }

        .social-iconss:hover {
            transform: translateY(-10px);
        }

        .social-iconss:hover:after {
            transform: scale(1);
        }

        .social-iconss:hover i {
            color: white;
        }

        /* Image Gallery */
        .image-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.8rem;
            margin-top: 5rem;
        }

        .gallery-item {
            border-radius: 15px;
            overflow: hidden;
            height: 250px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            position: relative;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-item:after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
            opacity: 0;
            transition: var(--transition);
        }

        .gallery-item:hover:after {
            opacity: 1;
        }

     
        /* Responsive Design */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            nav ul {
                flex-wrap: wrap;
                justify-content: center;
                margin-top: 1rem;
            }
            
            nav ul li {
                margin: 0.5rem;
            }
            
            .company-info, .contact-form {
                padding: 2rem;
            }
            
            .social-iconsss {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }
        }

        @media (max-width: 576px) {
            .header-content {
                flex-direction: column;
                text-align: center;
            }
            
            .logo {
                margin-bottom: 1rem;
            }
            
            .hero {
                padding: 4rem 0;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .call-to-action {
                grid-template-columns: 1fr;
            }
        }
    