:root {
            --primary: #8e44ad;
            --secondary: #e74c3c;
            --accent: #f39c12;
            --light: #f9f9f9;
            --dark: #2c3e50;
            --text: #333;
            --gray: #95a5a6;
            --success: #27ae60;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text);
            line-height: 1.6;
            background-color: #f5f3ff;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            color: var(--primary);
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Header Styles */
        header {
            background-color: white;
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo h1 {
            font-size: 1.4rem;
            margin-left: 10px;
            color: var(--primary);
        }
        
        .logo-icon {
            font-size: 2.5rem;
            color: var(--primary);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 25px;
        }
        
        nav ul li a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            font-size: 1.1rem;
            transition: color 0.3s;
            position: relative;
            padding-bottom: 5px;
        }
        
        nav ul li a:hover {
            color: var(--primary);
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            transition: width 0.3s;
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--primary);
        }
        
       
        /* Hero Section */
           /*
           background: linear-gradient(rgba(142, 68, 173, 0.8), rgba(142, 68, 173, 0.8)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%238e44ad" opacity="0.1"/><path d="M0 0L100 100M100 0L0 100" stroke="%238e44ad" stroke-width="1" opacity="0.2"/></svg>');
        
           */ 

        .hero {
            background: linear-gradient(rgba(142, 68, 173, 0.8), rgba(142, 68, 173, 0.8)), url('../images/illustrations/bg-hero.jpeg');
            background-size: cover;
            color: white;
            padding: 100px 0;
            text-align: center;
            position: relative;
        }
        
        .hero h2 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: white;
            animation: fadeInDown 1s ease;
        }
        
        .hero p {
            font-size: 1.5rem;
            max-width: 700px;
            margin: 0 auto 30px;
            animation: fadeInUp 1s ease;
        }
        
        .btn {
            display: inline-block;
            background-color: var(--secondary);
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
        }
        
        .btn:hover {
            background-color: #c0392b;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
        }
        
        .btn-outline {
            background: transparent;
            border: 2px solid white;
            margin-left: 15px;
        }
        
        .btn-outline:hover {
            background: white;
            color: var(--primary);
        }
        
        /* Services Section */
        .section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--secondary);
            border-radius: 2px;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .service-icon {
            height: 180px;
            background-color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: transparent;
            font-size: 4rem;
        }
        
        
        .service-content {
            padding: 25px;
        }
        
        .service-content h3 {
            margin-bottom: 15px;
            font-size: 1.5rem;
        }
        
        .service-content ul {
            list-style: none;
            margin-top: 15px;
        }
        
        .service-content ul li {
            padding: 5px 0;
            padding-left: 25px;
            position: relative;
        }
        
        .service-content ul li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--success);
            font-weight: bold;
        }
        
        /* USP Section */
        .usp {
            background: linear-gradient(to right, #f8f9fa, #e9ecef);
        }
        
        .usp-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 25px;
        }
        
        .usp-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }
        
        .usp-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .usp-icon {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .usp-card h3 {
            margin-bottom: 15px;
            font-size: 1.4rem;
        }
        
        /* Booking Section */
        .booking {
            background: linear-gradient(to bottom, #8e44ad, #6c3483);
            color: white;
        }
        
        .booking .section-title h2 {
            color: white;
        }
        
        .booking-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }
        
        .calendar-container {
            background: white;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        
        #calendar {
            background: white;
            border-radius: 8px;
            overflow: hidden;
        }
        
        .booking-form {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        
        .booking-form h3 {
            color: var(--dark);
            margin-bottom: 20px;
            text-align: center;
            font-size: 1.8rem;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--dark);
        }
        
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        
        .form-control:focus {
            border-color: var(--primary);
            outline: none;
        }
        
        /* Order Tracking */
        .tracking {
            background-color: var(--light);
        }
        .hidden{
            display: none;
        }
        .tracking-container {
            max-width: 800px;
            margin: 0 auto;
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }
        
        .tracking-form {
            margin-bottom: 30px;
        }
        
       .status-container {
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    background: #fafafa;
    display: none;
}

.status-bar {
    height: 6px;
    background: #ddd;
    border-radius: 3px;
    margin: 20px 0;
    position: relative;
}

.status-progress {
    height: 100%;
    background: var(--success);
    border-radius: 3px;
    width: 50%;
}

.status-steps {
    display: flex;
    flex-direction: column; /* Change to column layout */
    gap: 20px; /* Space between steps */
    position: relative;
}

.status-step {
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-step.active .step-icon {
    background: var(--success);
    color: white;
}

.status-step.active > div:not(.step-icon) {
    color: var(--success, #28a745); /* Use your desired color */
    transition: color 0.3s ease;
}

.status-step.active > div:not(.step-icon)::after {
    content: "\f046"; /* Unicode for Font Awesome check-circle */
    font-family: "Font Awesome 5 Free"; /* or your FA version name */
    font-weight: 900; /* Required for solid icons */
    margin-left: 8px;
    color: var(--success, #28a745);
}

.step-icon {
    width: 30px;
    height: 30px;
    background: #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    flex-shrink: 0;
}

        
        /* Location Section */
        .location {
            background: white;
        }
        
        .location-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }
        
        ul:not(#navMenu) {
            padding: 10px 38px;
        }
        .no_decor{
            color: inherit;
            text-decoration: none;
        }
        .map-container {
            height: 400px;
            background: #eee;
            border-radius: 10px;
            overflow: hidden;
            position: relative;
        }
        
        .map-placeholder {
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(45deg, #8e44ad, #6c3483);
            color: white;
            font-size: 1.2rem;
            text-align: center;
        }
        
        /* Footer */
        footer {
            background: linear-gradient(45deg, #6f0ba9, #2c3e50); /*var(--dark);*/
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-col h3 {
            color: white;
            margin-bottom: 20px;
            font-size: 1.5rem;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-col h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: var(--secondary);
        }
        
        .footer-col ul {
            list-style: none;
        }
        
        .footer-col ul li {
            margin-bottom: 10px;
        }
        
        .footer-col ul li a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-col ul li a:hover {
            color: var(--secondary);
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            color: white;
            border-radius: 50%;
            transition: all 0.3s;
        }
        
        .social-links a:hover {
            background: var(--light);
            transform: translateY(-3px);
            
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: #bbb;
        }
        
        /* Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .booking-container, .location-container {
                grid-template-columns: 1fr;
            }
            
            .hero h2 {
                font-size: 2.8rem;
            }
        }
        
        @media (max-width: 768px) {
            nav ul {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: white;
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 10px 15px rgba(0,0,0,0.1);
            }
            
            nav ul.active {
                display: flex;
            }
            
            nav ul li {
                margin: 10px 0;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero h2 {
                font-size: 2.3rem;
            }
            
            .hero p {
                font-size: 1.2rem;
            }
        }
        
        @media (max-width: 576px) {
            .container {
            width: 100%;
        }
            .section {
                padding: 60px 0;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .btn {
                display: block;
                width: 100%;
                margin-bottom: 15px;
            }
            
            .btn-outline {
                margin-left: 0;
            }
        }
        
        .tops-bg{
            background: linear-gradient(rgb(191 153 207 / 11%), rgb(167 8 234 / 37%)), url('../images/illustrations/tops.jpg');
            background-size: cover;
        }
        
        .bottoms-bg{
            background: linear-gradient(rgb(191 153 207 / 11%), rgb(167 8 234 / 37%)), url('../images/illustrations/bottoms.jpg');
            background-size: cover;
        }
        .sarees-bg{
            background: linear-gradient(rgb(191 153 207 / 11%), rgb(167 8 234 / 37%)), url('../images/illustrations/sarees.jpeg');
            background-size: cover;
        }
        .quick-alterations-bg{
            background: linear-gradient(rgb(191 153 207 / 11%), rgb(167 8 234 / 37%)), url('../images/illustrations/quick-alterations.jpeg');
            background-size: cover;
        }
        .service-icon:hover{
            background:var(--primary);
            color:white;
        }

/* Auth Modal Styles */
.auth-modal {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 101;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

/* Show modal when 'show' class is added */
.auth-modal.show {
    display: flex; /* Show modal with flex */
}

/* Modal Content */
.auth-modal .auth-modal-content {
    width: 50%;  /* Adjust width of the modal */
    max-width: 500px;  /* Max width for larger screens */
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative; /* Positioning context for the close button */
}

/* Close Button */
.close-modal {
    position: absolute;
    top: 10px; /* Adjust distance from the top */
    right: 10px; /* Adjust distance from the right */
    font-size: 1.8rem;
    cursor: pointer;
    color: #888; /* Light gray color */
    transition: color 0.3s ease; /* Smooth color transition */
}

.close-modal:hover {
    color: #333; /* Darker color on hover */
}

/* Fade-in animation */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}


.auth-tabs {
    display: flex;
    margin-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.auth-tab {
    padding: 10px 20px;
    cursor: pointer;
    font-weight: 500;
    background: none;
    border: none;
    color: var(--gray);
    position: relative;
    transition: var(--transition);
}

.auth-tab.active {
    color: var(--primary);
}

.auth-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
}

.auth-tab-content {
    display: none;
}

.auth-tab-content.active {
    display: block;
}

.auth-form .form-group {
    margin-bottom: 20px;
}

.auth-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark);
}

.auth-form .form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: var(--transition);
}

.auth-form .form-control:focus {
    border-color: var(--primary);
    outline: none;
}

.btn-block {
    display: block;
    width: 100%;
    padding: 12px;
}

.remember-me, .terms-agree {
    display: flex;
    align-items: center;
    margin: 15px 0;
}

.remember-me input, .terms-agree input {
    margin-right: 10px;
}

.remember-me label, .terms-agree label {
    margin-bottom: 0;
    font-weight: 400;
}

.terms-agree a {
    color: var(--primary);
    text-decoration: none;
}

.terms-agree a:hover {
    text-decoration: underline;
}

.auth-divider {
    position: relative;
    margin: 25px 0;
    text-align: center;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #eee;
    z-index: 1;
}

.auth-divider span {
    position: relative;
    padding: 0 15px;
    background-color: white;
    z-index: 2;
    color: var(--gray);
}

.social-login {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-radius: 5px;
    border: 1px solid #ddd;
    background: white;
    cursor: pointer;
    transition: var(--transition);
}

.social-btn i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.social-btn:hover {
    background-color: #f9f9f9;
}

.fb-btn {
    color: #3b5998;
    border-color: #3b5998;
}

.google-btn {
    color: #db4437;
    border-color: #db4437;
}

.back-to-login {
    text-align: center;
    margin-top: 20px;
}

.back-to-login a {
    color: var(--primary);
    text-decoration: none;
}

.back-to-login a:hover {
    text-decoration: underline;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .auth-modal-content {
        padding: 20px;
    }
    
    .auth-tabs {
        margin-bottom: 15px;
    }
    
    .auth-tab {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
}


.contact-actions {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.contact-actions li {
  display: inline-block;
}

.action-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background-color: #e91e63; /* Customizable */
  color: white;
  border-radius: 4px;
  text-decoration: none;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.action-btn:hover {
  background-color: #ad1457;
}

/* Visually hide the text while keeping it accessible */
.hidden-label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
