:root {
            --primary-color: #8B4513; /* Saddle Brown - like cardboard boxes */
            --primary-dark: #654321; /* Dark Brown */
            --secondary-color: #D2B48C; /* Tan - lighter cardboard color */
            --accent-color: #CD853F; /* Peru - medium cardboard tone */
            --dark-color: #1a1a1a; /* Rich Black */
            --light-cardboard: #F5DEB3; /* Wheat - very light cardboard */
            --success-color: #228B22; /* Forest Green */
            --warning-color: #FF8C00; /* Dark Orange */
        }
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
        }

        /* Header Styles */
        .header {
            /*background: rgba(255, 255, 255, 0.95);*/
           /* background: linear-gradient(135deg,#2c3e50, #34495e);*/
            background: url("Image/View.png") center/cover no-repeat; 
            backdrop-filter: blur(10px);
            padding: 20px 0;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        }

        .header::after {
        content: "";
        position: absolute;
        top: 0; left:0;
        width:100%;
        height: 100%;
        background: rgba(0,0,0,0.2);
        z-index: 0;

        }

        .header img, p, .line {
            position: relative;
            z-index: 1;
        }

        .line {
            background-color: white;
            height: 3px;
            border: none;
            width: 80%;
            position: relative;
            z-index: 1;
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .logo {
            width: 100%;
            max-width: 800px;
            height: auto;
            display: flex;
            flex-direction: column !important;
            align-items: center;
            gap: 15px;
        }

        .logo img {
            max-width: 100%;
            max-height: 120px;
            height: auto;
            object-fit: contain;
        }



        .logo-text {
            font-size: 1.4rem;
            font-weight: 500;
            color: white;/* #2c3e50;*/
            position: relative;
            z-index: 1;
            text-align: center;
            letter-spacing: 0.5px;
        }

        .logo-text-title {
            font-size: 1.4rem;
            font-weight: 600;
            color: white;/* #2c3e50;*/
            position: relative;
            z-index: 1;
            text-align: center;
            letter-spacing: 0.5px;
        }

        .call-btn {
            background: linear-gradient(135deg, #667eea, #764ba2);
            text-align: center;
            position: relative;
            text-decoration: none;
            color: white;
            padding: 12px 24px;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 50%;
            margin-top: 5px;
            z-index: 1;
           

        }


        .call-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
            background-color: #228B22;
        }

        .call-btn:active {
            transform: translateY(0);
        }


        /* Main Container */
        .main-container {
            max-width: 800px;
            margin: 40px auto;
            padding: 0 20px;
        }

        .form-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }

        .form-header {
            background: linear-gradient(135deg, #2c3e50, #34495e);
            color: white;
            padding: 15px;
            text-align: center;
        }

        .form-header h1 {
            font-size: 2.5rem;
            margin-bottom: 10px;
            font-weight: 300;
        }

        .form-header p {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        .form-container {
            padding: 40px;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-row {
            display: flex;
            gap: 20px;
            margin-bottom: 25px;
        }

        .form-row .form-group {
            flex: 1;
            margin-bottom: 0;
        }

        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #555;
            font-size: 0.95rem;
        }

        .required {
            color: #e74c3c;
        }

        input[type="text"],
        input[type="email"],
        input[type="tel"],
        input[type="date"],
        select,
        textarea {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: #fafafa;
        }

        input:focus,
        select:focus,
        textarea:focus {
            outline: none;
            border-color: #667eea;
            background: white;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }

        select {
            cursor: pointer;
        }

        textarea {
            resize: vertical;
            min-height: 100px;
        }

        .submit-btn {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            padding: 15px 40px;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            margin-top: 20px;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
        }

        .submit-btn:active {
            transform: translateY(0);
        }

        /* Success Message Styles */
        .success-message {
            background: linear-gradient(135deg, #2ecc71, #27ae60);
            color: white;
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            margin-bottom: 30px;
            box-shadow: 0 10px 25px rgba(46, 204, 113, 0.3);
            display: none;
            animation: slideIn 0.5s ease-out;
        }

        .success-message.show {
            display: block;
        }

        .success-message h3 {
            margin-bottom: 10px;
            font-size: 1.3rem;
        }

        .success-message p {
            margin: 0;
            opacity: 0.95;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .form-container.submitted {
            display: none;
        }

        /* Footer Styles */
        .footer {
            background: rgba(44, 62, 80, 0.95);
            color: white;
            padding: 40px 0 20px;
            margin-top: 60px;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 30px;
        }

        .footer-section h3 {
            margin-bottom: 20px;
            color: #667eea;
            font-size: 1.2rem;
        }

        .footer-section p,
        .footer-section li {
            margin-bottom: 10px;
            opacity: 0.9;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: #667eea;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            opacity: 0.7;
        }

        @media (max-width: 768px) {
            .logo img {
                max-height: 80px;
            }

            .logo-text {
                font-size: 1.2rem;
            }

            .form-row {
                flex-direction: column;
                gap: 0;
            }

            .form-header h1 {
                font-size: 2rem;
            }

            .form-container {
                padding: 30px 20px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }

        @media (max-width: 480px) {
            .logo img {
                max-height: 60px;
            }

            .logo-text {
                font-size: 1rem;
            }

            .call-btn{
                font-size:1rem;
            }
        }