* { 
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

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

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: white;
            padding: 15px 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            border-bottom: 1px solid #eee;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: bold;
            font-size: 1.2rem;
            color: #4CAF50;
            text-decoration: none;
        }

        .logo-icon {
            width: 40px;
            height: 30px;
            position: relative;
            overflow: hidden;
        }

        .logo-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }


        .nav-links {
            display: flex;
            list-style: none;
            gap: 40px;
            margin: 0;
        }

        .nav-links a {
            text-decoration: none;
            color: #666;
            font-weight: 500;
            font-size: 1rem;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: #7B1FA2;
        }

        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #7B1FA2;
        }

        /* Main Content */
        .main-content {
            padding: 120px 0 80px 0;
            min-height: 100vh;
            background: #ffffff;
            position: relative;
            z-index: 1;
        }

        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 20px;
            width: 100%;
            position: relative;
            z-index: 2;
        }

        /* Header Section */
        .contact-header {
            text-align: left;
            margin-top: 60px;
        }

        .contact-header h1 {
            font-size: 2.8rem;
            color: #4D2A65;
            margin-bottom: 5px;
            font-weight: bold;
            font-family: 'Inria Sans', sans-serif;
        }

        .contact-header p {
            font-size: 1.1rem;
            color: #666;
            line-height: 1.5;
            max-width: 600px;
        }

        /* Contact Content */
        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: start;
            margin-top: 20px;
        }

        .contact-details{
            margin-top: 120px;
        }



        /* Contact Details */
        .contact-details h2 {
            font-size: 2rem;
            color: #4D2A65;
            margin-bottom: 30px;
            font-family: 'Inria Sans', sans-serif;
        }

        .company-info {
            margin-bottom: 40px;
        }

        .company-info p {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 8px;
            line-height: 1.0;
        }

        .contact-info {
            margin-top: 30px;
        }

        .contact-info p {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 10px;
            line-height: 1.0;
        }

        .contact-info strong {
            color: #4D2A65;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        /* Contact Form */
        .contact-form-section {
            background: #eae8eb57;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 4px 4px #A88B8B;
        }

        .contact-form-section h2 {
            font-size: 2.5rem;
            color: #4D2A65;
            font-family: 'Inria Sans', sans-serif;
        }

        .contact-form-section .subtitle {
            font-size: 1rem;
            color: #666;
            margin-bottom: 45px;
        }

        .form-group {
            margin-bottom: 10px;
            width: 100%;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            border-radius: 25px;
            background-color:#eae8eb57; ;
            font-size: 1rem;
            transition: box-shadow 0.3s ease;
            border-color:#66666680 ;
            border-width: 0.3px;;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: #999;
        }

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

        .submit-btn {
            width: 50%;
            background: #8BC34A;
            color: white;
            padding: 15px;
            border: none;
            border-radius: 25px;
            font-size: 1.1rem;
            font-weight: 500;
            cursor: pointer;
            transition: background 0.3s ease;
            margin-top: 20px;
        }

        .submit-btn:hover {
            background: #7CB342;
        }

        /* Footer - Same as homepage */
        .footer {
            background: #333;
            color: white;
            padding: 60px 0 30px 0;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: #8BC34A;
        }

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

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

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

        .footer-section a:hover {
            color: #8BC34A;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: #8BC34A;
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            color: white;
            transition: background 0.3s ease;
        }

        .social-links a:hover {
            background: #7CB342;
        }

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

        .footer-bottom p {
            margin-bottom: 10px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            /* navbar */
            .navbar {
                padding: 10px 0;
            }

            .nav-container {
                padding: 0 10px;
            }

            .logo {
                font-size: 0.6rem;
                gap: 10px;
            }

            .logo-icon {
                width: 26px;
                height: 22px;
            }

            .nav-links {
                gap: 11px;
            }

            .nav-links a {
                font-size: 0.6rem;
                font-weight: 600;
            }

            .contact-header h1 {
                font-size: 2.2rem;
            }

            .contact-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .contact-form-section {
                padding: 30px 20px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }
        
        @media (max-width: 480px) {
            .nav-container {
                padding: 0 10px;
            }

            .logo {
                font-size: 0.8rem;
                gap: 4px;
            }

            .logo-icon {
                width: 24px;
                height: 18px;
            }

            .nav-links {
                gap: 10px;
            }

            .nav-links a {
                font-size: 0.65rem;
                font-weight: 700;
            }
        }


        /* Animations */
        .fade-in {
            opacity: 1;
            transform: translateY(0);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }