/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Body Styles */
  body {
    font-family: Arial, sans-serif;
    color: #fff;
    background-color: #1b0b16;
  }

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

  /* Header Styles */
  /* Dropdown Menu Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: #290d25;
    top: 100%;
    right: 0;
    min-width: 150px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    z-index: 10;
}

.dropdown-menu a,
.dropdown-menu form {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 10px;
    font-size: 1rem;
}

.dropdown-menu form {
    margin: 0;
    padding: 0;
}

.dropdown-menu form button {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    font-size: 1rem;
    padding: 10px;
    text-align: left;
    cursor: pointer;
}

.dropdown-menu a:hover,
.dropdown-menu form button:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
    display: block;
}


  .header {
    position: fixed;
    width: 100%;
    background-color: #290d25;
    padding: 1rem 2rem;
    display: flex;
    justify-content: center;
  }
  
  .header-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    max-height: 50px;
  }
  
  .header_left {
    display: flex;
    align-items: center;
    gap: .5rem;
  }
  
  .contact-info p {
    font-size: 0.8rem;
  }
  
  .contact-info a {
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
  }
  
  /* Navigation Styles */
  .nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
  
  .nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
  }
  
  .menu-toggle {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #fff;
    display: none;
    cursor: pointer;
  }
  
  .nav.active {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-color: #290d25;
    position: absolute;
    top: 60px;
    right: 20px;
    padding: 1rem;
    border-radius: 8px;
    z-index: 10;
  }
  
  .nav.active a {
    font-size: 1rem;
  }
  
  /* Hero Section */
  .hero {
    background-image: url('/images/image.jfif');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
  }
  
  .hero-content {
    margin: 120px 0;
    max-width: 600px;
    background: rgba(0, 0, 0, 0.5);
    padding: 5rem;
    border-radius: 8px;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .hero-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  
  .hero-content p {
    margin-bottom: 1rem;
    font-size: 1rem;
  }
  
  .cta {
    display: inline-block;
    background-color: #b4004e;
    color: #fff;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-weight: bold;
  }
  
  .area-code {
    margin-top: 1.5rem;
  }
  
  .area-code p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }
  
  .area-code input {
    padding: 0.5rem;
    width: 60%;
    border: none;
    border-radius: 4px;
    margin-right: 0.5rem;
  }
  
  .area-code button {
    padding: 0.5rem 1rem;
    background-color: #b4004e;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-weight: bold;
  }
  

  /* ================================ */
  .cta {
    display: inline-block;
    background-color: #b4004e;
    color: #fff;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-weight: bold;
  }
  
  /* Models Section */
  .models {
    background-color: #1b0b16;
    padding: 2rem;
  }
  
  /* Scrolling Header */
  .scrolling-header {
    overflow-x: auto;
    white-space: nowrap;
    border-bottom: 1px solid #b4004e;
    margin-bottom: 2rem;
  }
  
  .scroll-container {
    display: inline-flex;
    gap: 2rem;
    padding: 0.5rem 0;
  }
  
  .scroll-container span {
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    transition: color 0.3s;
  }
  
  .scroll-container span:hover {
    color: #b4004e;
  }
  
  /* Models Grid */
  .models-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
  }
  
  .model-card {
    background: #1b0b16;
    border: 1px solid #b4004e;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
  }
  
  .model-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .model-card h3 {
    font-size: 1.2rem;
    margin: 0.5rem 0;
  }
  
  .model-card p {
    color: #b4004e;
    font-weight: bold;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .scroll-container {
      gap: 1rem;
    }
  
    .models-grid {
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
  
    .model-card img {
      height: 150px;
    }
  }
  /* Responsive Styles */
  @media (max-width: 768px) {
    .contact-info {
      display: block;
      text-align: center;
      margin-bottom: 1rem;
    }
  
    .nav {
      display: none;
    }
  
    .menu-toggle {
      display: block;
    }
  
    .hero-content {
      padding: 1.5rem;
    }
  
    .hero-content h1 {
      font-size: 2rem;
    }
  
    .hero-content h2 {
      font-size: 1.5rem;
    }
  }
  
  /* =========================== login */
  /* Login Container */
.login-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100%;
}

/* Login Box */
.login-box {
    background: #290d25;
    padding: 30px;
    border-radius: 8px;
    width: 350px;
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.1);
    text-align: center;
}

/* Title */
.login-title {
    color: white;
    font-size: 24px;
    margin-bottom: 20px;
}

/* Form Group */
.form-group {
    margin-bottom: 15px;
    text-align: left;
}

.form-group label {
    color: white;
    font-size: 14px;
    display: block;
    margin-bottom: 5px;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #555;
    border-radius: 5px;
    background: #3a1c32;
    color: white;
    outline: none;
}

.form-group input:focus {
    border-color: #b4004e;
}

/* Error Message */
.error-message {
    color: red;
    font-size: 12px;
    margin-top: 5px;
}

/* Remember Me & Forgot Password */
.remember-forgot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.remember-forgot label {
    color: white;
}

.forgot-password {
    color: #b4004e;
    text-decoration: none;
}

.forgot-password:hover {
    text-decoration: underline;
}

/* Button */
.login-button {
    background: #b4004e;
    color: white;
    border: none;
    padding: 10px;
    width: 100%;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
}

.login-button:hover {
    background: #8e003a;
}

/* Success Message */
.success-message {
    color: green;
    font-size: 14px;
    margin-bottom: 10px;
}

.logreg a{
    color: #b4004e;
    text-decoration: none;

}

.logreg a:hover{
    color: white;
    text-decoration: underline;
}

/* Password Wrapper */
.password-wrapper {
    position: relative;
}

.password-wrapper input {
    width: 100%;
    padding: 10px;
    padding-right: 40px; /* Space for icon */
    border: 1px solid #555;
    border-radius: 5px;
    background: #3a1c32;
    color: white;
    outline: none;
}

.password-wrapper input:focus {
    border-color: #b4004e;
}

/* Toggle Password Icon Inside Input */
.toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #b4004e;
    font-size: 16px;
}

.toggle-password:hover {
    color: white;
}

/* ====================== --price  */


.pricing-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100%;
    background: #290d25;
}

.pricing-box {
    background: #3a1c32;
    padding: 30px;
    border-radius: 8px;
    width: 80%;
    max-width: 900px;
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.1);
    text-align: center;
}

.pricing-title {
    color: white;
    font-size: 24px;
    margin-bottom: 20px;
}

.pricing-plans {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.plan {
    background: #290d25;
    padding: 20px;
    border-radius: 8px;
    width: 30%;
    min-width: 250px;
    box-shadow: 0px 0px 5px rgba(255, 255, 255, 0.1);
    text-align: center;
    margin: 10px;
}

.plan-title {
    color: white;
    font-size: 20px;
    margin-bottom: 10px;
}

.plan-price {
    color: #b4004e;
    font-size: 18px;
    margin-bottom: 10px;
}

.plan-features {
    list-style: none;
    padding: 0;
    color: white;
}

.plan-features li {
    margin: 5px 0;
}

.pricing-button {
    background: #b4004e;
    color: white;
    border: none;
    padding: 10px;
    width: 100%;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
}

.pricing-button:hover {
    background: #8e003a;
}