* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
        }

        /* Top Bar Styles */
        .top-bar {
            background: linear-gradient(135deg, #ff8a00 0%, #764ba2 100%);
            color: white;
            padding: 8px 0;
            font-size: 13px;
        }

        .top-bar-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .contactinfotbl {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .contactinfotbl span {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .user-actions {
            display: flex;
            gap: 15px;
        }

        .user-actions a {
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: opacity 0.3s;
        }

        .user-actions a:hover {
            opacity: 0.8;
        }

        /* Main Navigation */
        .main-nav {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .nav-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo {
            display: flex;
            align-items: center;
        }

        .logo-img {
            width: 180px;
            height: 50px;
            background-color: #ff8a00;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 14px;
            border-radius: 3px;
        }

               .nav-menu {
            display: flex;
            list-style: none;
            gap: 25px;
            align-items: center;

        }

        .nav-menu a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            padding: 10px 5px;
            transition: color 0.3s;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .nav-menu a:hover {
            color: #ff8a00;
        }


        /* Dropdown Styles */
        .dropdown {
            position: relative;
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: white;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            border-radius: 5px;
            min-width: 200px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 100;
        }

        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-menu li {
            list-style: none;
        }

        .dropdown-menu a {
            padding: 12px 20px;
            border-bottom: 1px solid #f0f0f0;
            display: block;
            color: #555;
        }

         .dropdown-menu a:hover {
            background-color: #f8f9fa;
            color: #ff8a00;
        }

        .dropdown-menu li:last-child a {
            border-bottom: none;
        }

        .chevron {
            font-size: 10px;
            transition: transform 0.3s;
        }
        .dropdown:hover .chevron {
            transform: rotate(180deg);
        }

        /* Right Side Navigation */
        .nav-right {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .search-btn {
            background: none;
            border: none;
            font-size: 18px;
            color: #333;
            cursor: pointer;
            transition: color 0.3s;
        }

        .search-btn:hover {
            color: #ff8a00;
        }

        .shop-now-btn {
            background-color: transparent;
            color: #ff8a00;
            border: 1px solid #ff8a00;
            padding: 8px 20px;
            border-radius: 3px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
        }

        .shop-now-btn:hover {
            background-color: #ff8a00;
            color: white;
        }

        /* Mobile Menu Toggle */
        .mobile-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 3px;
        }

        .mobile-toggle span {
            width: 25px;
            height: 3px;
            background-color: #8b2331;
            transition: all 0.3s;
        }

        .mobile-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .mobile-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }


        /* Search Overlay */
        .search-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            z-index: 2000;
        }

        .search-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .search-input {
            width: 100%;
            padding: 20px;
            font-size: 18px;
            border: none;
            border-radius: 5px;
            outline: none;
        }


        .search-submit {
            position: absolute;
            right: 5px;
            top: 50%;
            transform: translateY(-50%);
            background-color: #8b2331;
            color: white;
            border: none;
            padding: 15px 20px;
            border-radius: 3px;
            cursor: pointer;
        }

        .close-search {
            position: absolute;
            top: 30px;
            right: 30px;
            color: white;
            font-size: 30px;
            cursor: pointer;
        }
     /* Main Content */
        .main-content {
            padding: 40px 0;
            min-height: 60vh;
        }

        .hero-section {
            text-align: center;
            padding: 60px 0;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        }

        .hero-section h1 {
            font-size: 3rem;
            color: #8b2331;
            margin-bottom: 20px;
        }

        .hero-section p {
            font-size: 1.2rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .nav-menu {
                position: fixed;
                top: 0;
                left: -100%;
                width: 80%;
                max-width: 300px;
                height: 100vh;
                background-color: white;
                flex-direction: column;
                align-items: flex-start;
                padding: 80px 0 20px 0;
                box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
                transition: left 0.3s ease;
                overflow-y: auto;
                gap: 0;
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-menu li {
                width: 100%;
                border-bottom: 1px solid #eee;
            }

            .nav-menu a {
                padding: 15px 20px;
                width: 100%;
                justify-content: space-between;
            }

            .dropdown-menu {
                position: static;
                box-shadow: none;
                background-color: #f8f9fa;
                opacity: 1;
                visibility: visible;
                transform: none;
                display: none;
                margin-left: 20px;
                border-left: 3px solid #8b2331;
            }

            .dropdown-menu.active {
                display: block;
            }

            .dropdown-menu a {
                padding: 10px 20px;
                font-size: 14px;
            }

            .mobile-toggle {
                display: flex;
            }

            .nav-right {
                gap: 15px;
            }

            .shop-now-btn {
                padding: 6px 15px;
                font-size: 14px;
            }
        }

        @media (max-width: 768px) {
            .top-bar-content {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }

            .contact-info {
                flex-direction: column;
                gap: 5px;
            }

            .nav-content {
                padding: 10px 0;
            }

            .logo-img {
                width: 150px;
                height: 40px;
                font-size: 12px;
            }

            .hero-section h1 {
                font-size: 2rem;
            }

            .hero-section p {
                font-size: 1rem;
            }
        }

        @media (max-width: 576px) {
            .top-bar {
                font-size: 12px;
            }

            .user-actions {
                flex-wrap: wrap;
                justify-content: center;
                gap: 10px;
            }

            .nav-right {
                gap: 10px;
            }

            .search-btn {
                font-size: 16px;
            }
        }


        /* contact */
        .maincontactsection{
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            /* border: 5px solid coral; */
        }
.contact-container {
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            overflow: auto;
            max-width: 900px;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            height: 650px;
            /* border: 5px solid rgb(99, 67, 56); */
        }
        .contact-info {
            background: linear-gradient(135deg, #34495e 0%, #e38a25 100%);
            color: white;
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .contact-info h2 {
            font-size: 2rem;
            margin-bottom: 20px;
            font-weight: 300;
        }

        .contact-info p {
            margin-bottom: 30px;
            line-height: 1.6;
            opacity: 0.9;
        }
        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .contact-item svg {
            width: 20px;
            height: 20px;
            margin-right: 15px;
            fill: #3498db;
        }

        /* contact form */

        .contact-form {
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            height: 620px;
        }
        .form-title {
            font-size: 1.3rem;
            color: #2c3e50;
            /* margin-bottom: 10px; */
            text-align: center;
            font-weight: 300;
        }

        .form-group {
            margin-bottom: 5px;
            position: relative;
        }
.form-group label {
            display: block;
            margin-bottom: 8px;
            color: #555;
            font-weight: 500;
            font-size: 0.9rem;
        }
  .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 8px;
            border: 2px solid #e1e8ed;
            border-radius: 10px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: #f8f9fa;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #3498db;
            background: white;
            box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 50px;
        }

        .submit-btn {
            background: linear-gradient(135deg, #ff8a00 0%, #2980b9 100%);
            color: white;
            padding: 15px 30px;
            border: none;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(52, 152, 219, 0.3);
        }

        .submit-btn:active {
            transform: translateY(0);
        }
 /* Responsive Design */
        @media (max-width: 768px) {
            .contact-container {
                grid-template-columns: 1fr;
                max-width: 500px;
            }

            .contact-info {
                padding: 30px;
                text-align: center;
            }

            .contact-info h2 {
                font-size: 1.5rem;
            }

            .contact-form {
                padding: 30px;
            }

            .form-title {
                font-size: 1.5rem;
            }
        }

        /* Form validation styles */
        .form-group input:invalid:not(:placeholder-shown),
        .form-group textarea:invalid:not(:placeholder-shown) {
            border-color: #e74c3c;
        }

        .form-group input:valid,
        .form-group textarea:valid {
            border-color: #27ae60;
        }

        /* Loading state */
        .submit-btn:disabled {
            opacity: 0.7;
            cursor: not-allowed;
            transform: none;
        }

        footer{
            height: 200px;
            border: 10px solid red;
            width: 100%;
        }