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

body {
    font-family: 'Kalpurush', 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #e9ecef;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 20px;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 1.5rem;
    color: #2c3e50;
}

.logo img {
    width: 170px;
    height: 80px;
    margin: 6px;
    position: absolute;
	
}

nav a {
    text-decoration: none;
    color: #2c3e50;
    margin-left: 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    background: linear-gradient(135deg, #e53e3e 0%, #7e1830 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #f093fb, #f5576c);
    transition: width 0.3s ease;
}

nav a:hover {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(240, 147, 251, 0.4);
}

nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #2c3e50;
    background: linear-gradient(135deg, #6c1528 0%, #131327 50%, #000000 100%);
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-image: url('./attached_assets/Watch-1_1754211758964.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.1;
    z-index: 1;
    filter: brightness(1.5) contrast(1.2);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    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="20" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></svg>');
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: bold;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #ffffff;
    font-weight: 500;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #e53e3e 0%, #7e1830 100%);
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    border: 2px solid transparent;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(240, 147, 251, 0.6);
    border-color: #ffffff;
}

/* Products Section */
.products {
    padding: 80px 0;
	background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
}

.products h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #ffffff;
    background-clip: text;
}

.product-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.product-card:hover {
    border-color: #667eea;
    box-shadow: 0 15px 60px rgba(102, 126, 234, 0.2);
    transform: translateY(-5px);
}

.product-card:nth-child(even) {
    direction: rtl;
}

.product-card:nth-child(even) .product-info {
    direction: ltr;
}

.product-image {
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #181d35;
    line-height: 1.4;
    text-shadow: 0 0 10px rgba(24, 29, 53, 0.1);
}

.features h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #e53e3e;
}

.features li {
    margin-bottom: 0.8rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #181d35;
	list-style: none;
}

.product-specs {
    background: linear-gradient(135deg, #181d35 0%, #7e1830 100%);
    color: white;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 3rem;
}

.product-specs p {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: white;
}

.description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #181d35;
}

.delivery-info {
    background: linear-gradient(135deg, #e53e3e 0%, #7e1830 100%);
    color: white;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.delivery-info p {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: white;
}

.price-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #ffeaa7 100%);
    border-radius: 15px;
    border: 2px solid #e53e3e;
    text-align: center;
    box-shadow: 0 5px 15px rgba(229, 62, 62, 0.2);
}

.price-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.original-price {
    font-size: 1.2rem;
    color: #6c757d;
    text-decoration: line-through;
}

.current-price {
    font-size: 2rem;
    font-weight: bold;
    color: #181d35;
    text-shadow: 0 0 10px rgba(24, 29, 53, 0.3);
}

.discount {
    background: linear-gradient(45deg, #e53e3e, #7e1830);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.order-section {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.order-now-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    background: linear-gradient(45deg, #181d35, #7e1830);
    color: white;
    flex: 2;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    font-family: 'Kalpurush', 'Roboto', Arial, sans-serif;
    box-shadow: 0 5px 15px rgba(24, 29, 53, 0.3);
}

.order-now-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.order-now-btn:hover::before {
    left: 100%;
}

.call-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 15px 25px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1rem;
    background: linear-gradient(45deg, #e53e3e, #7e1830);
    color: white;
    flex: 1;
    border: 2px solid transparent;
}

.order-now-btn:hover, .call-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(229, 62, 62, 0.4);
}

.call-btn:hover {
    background: linear-gradient(45deg, #7e1830, #e53e3e);
    border-color: #ffffff;
}

/* Order Form Section */
.order-form-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #ffffff 0%, #ffeaa7 100%);
    min-height: 100vh;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #181d35;
    text-shadow: 1px 1px 2px rgba(24, 29, 53, 0.1);
}

.form-header p {
    font-size: 1.2rem;
    color: #181d35;
}

.order-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.order-form-wrapper {
    background: linear-gradient(135deg, #ffffff 0%, #ffeaa7 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(24, 29, 53, 0.1);
    overflow: hidden;
    border: 2px solid #e53e3e;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.contact-image {
    margin-bottom: 1rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(229, 62, 62, 0.2);
}

.contact-image img {
    width: 100%;
    height: 173px;
    object-fit: cover;
    filter: brightness(1.1) contrast(1.1);
}

.contact-card {
    background: linear-gradient(135deg, #181d35 0%, #7e1830 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(24, 29, 53, 0.3);
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-card h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-align: center;
    color: white;
}

.contact-subtitle {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    opacity: 0.9;
    color: white;
}

.phone-numbers {
    margin-bottom: 2rem;
}

.phone-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.phone-item i {
    margin-right: 0.5rem;
    color: white;
}

.phone-item a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-item a:hover {
    color: #f093fb;
}

.service-hours {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
}

.service-hours h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: white;
}

.expert-message {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-style: italic;
    opacity: 0.9;
    color: white;
}

.quick-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.feature-item i {
    margin-right: 1rem;
    color: white;
    font-size: 1.2rem;
    width: 20px;
}

.order-form {
    padding: 2rem;
}

.form-group {
    margin-bottom: 0.8rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #181d35;
    font-size: 1.1rem;
}

.form-group label i {
    color: #e53e3e;
    margin-right: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.5rem 1.5rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Kalpurush', 'Roboto', Arial, sans-serif;
    transition: all 0.3s ease;
    background: white;
    color: #2c3e50;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e53e3e;
    background: white;
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

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

.delivery-options {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, #181d35 0%, #7e1830 100%);
    border-radius: 15px;
    color: white;
}

.delivery-options h4 {
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.3rem;
}

.delivery-options h4 i {
    color: white;
    margin-right: 0.5rem;
}

.delivery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.delivery-option {
    cursor: pointer;
}

.delivery-option input[type="radio"] {
    display: none;
}

.delivery-card {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid transparent;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: #181d35;
}

.delivery-option input[type="radio"]:checked + .delivery-card {
    border-color: #e53e3e;
    background: linear-gradient(135deg, #e53e3e 0%, #7e1830 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(229, 62, 62, 0.3);
}

.delivery-title {
    font-weight: 600;
    font-size: 1.1rem;
}

.delivery-charge {
    font-size: 1.3rem;
    font-weight: bold;
    color: #e53e3e;
}

.delivery-option input[type="radio"]:checked + .delivery-card .delivery-charge {
    color: white;
}

.submit-order-btn {
    width: 100%;
    background: linear-gradient(45deg, #e53e3e, #7e1830);
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
    font-family: 'Kalpurush', 'Roboto', Arial, sans-serif;
    box-shadow: 0 5px 15px rgba(229, 62, 62, 0.3);
}

.submit-order-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(229, 62, 62, 0.4);
}

.submit-order-btn:active {
    transform: translateY(-1px);
}

.order-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, #181d35 0%, #7e1830 100%);
    color: white;
    border-radius: 10px;
}

.order-note p {
    margin: 0;
    color: white;
    font-weight: 500;
}

.order-note i {
    color: white;
    margin-right: 0.5rem;
}

/* Order Total Calculation */
.order-total {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #ffeaa7 100%);
    border-radius: 15px;
    border: 2px solid #e53e3e;
    box-shadow: 0 5px 15px rgba(229, 62, 62, 0.2);
}

.order-total h4 {
    margin-bottom: 1.5rem;
    color: #181d35;
    font-size: 1.3rem;
    text-align: center;
}

.total-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.total-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
}

.total-item:last-child {
    border-bottom: none;
    font-weight: bold;
    font-size: 1.2rem;
    color: #7e1830;
    border-top: 2px solid #e53e3e;
    padding-top: 1rem;
}

.total-label {
    font-weight: 500;
    color: #181d35;
}

.total-value {
    font-weight: bold;
    color: #7e1830;
}

.order-success {
    padding: 3rem 2rem;
    text-align: center;
}

.success-content i {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 1rem;
}

.success-content h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.success-content p {
    font-size: 1.2rem;
    color: #495057;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #181d35 0%, #7e1830 50%, #e53e3e 100%);
    color: white;
}

.contact h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: white;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.contact-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.5);
}

.contact-item i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.contact-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.contact-item p {
    font-size: 1.1rem;
    color: white;
}

/* Footer */
footer {
    background: #181d35;
    color: white;
    text-align: center;
    padding: 2rem 0;
    border-top: 3px solid #e53e3e;
}

footer p {
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .product-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .product-card:nth-child(even) {
        direction: ltr;
    }

    .products h2 {
        font-size: 2rem;
    }

    .product-info h3 {
        font-size: 1.5rem;
    }

    .order-section {
        flex-direction: column;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    nav a {
        margin-left: 0.2rem;
        font-size: 0.9rem;
        padding: 8px 15px;
    }

    .order-form-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .order-form {
        padding: 1.5rem;
    }

    .contact-card {
        padding: 2rem;
    }

    .form-header h2 {
        font-size: 2rem;
    }

    .delivery-grid {
        grid-template-columns: 1fr;
    }

    .delivery-card {
        padding: 1rem;
    }

    .logo img {
        width: 60px;
        height: 60px;
    }

    .contact-image {
        display: none;
    }
}

@media (max-width: 480px) {
	header .container {
		padding: 1.3rem 20px !important;
	}
    .hero h1 {
        font-size: 2rem;
    }

    .product-info {
        padding: 1rem;
    }

    .features li {
        font-size: 0.9rem;
    }

    .logo img {
        width: 80px;
        height: 60px;
		margin: 0px;
    }
}

/* Loading Animation */
@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

.product-card {animation: pulse 3s ease-in-out infinite;
}

.product-card:nth-child(2) {
    animation-delay: 0.5s;
}

.product-card:nth-child(3) {
    animation-delay: 1s;
}

.product-card:nth-child(4) {
    animation-delay: 1.5s;
}