/* Fonts */
@font-face {
    font-family: 'Monopoly_Regular';
    src: url('fonts/Monopoly_Regular.ttf') format('ttf');
}
@font-face {
    font-family: 'Simplifica';
    src: url('fonts/simplifica.woff') format('woff');
}
@font-face {
    font-family: 'Rebeqa-Bold';
    src: url('fonts/Rebeqa-Bold.woff2') format('woff2');
}
@font-face {
    font-family: 'Age';
    src: url('fonts/age.woff') format('woff');
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Simplifica', sans-serif;
}

body {
    background: rgba(11, 14, 20, 1);
    backdrop-filter: blur(10px);
    min-height: 100vh;
    color: white;
    letter-spacing: 2px;
}
a {
    text-decoration: none;
    Color: white;
}
a:hover {
    Color: red;
    font-size: 18px;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    margin: 20px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo {
    width: 150px;
    height: 150px;
}

.header-title {
    text-align: center;
}

.header-title h1 {
    font-family: 'Age';
    font-size: 5em;
    color: white;
    letter-spacing: 9px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.header-title p {
    font-size: 1.2em;
    color: #ffffff;
    margin-top: 10px;
    letter-spacing: 10px;
    font-family: 'Monopoly';
}

/* Slider Styles */
.slider-container {
    height: 400px;
    position: relative;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s;
    border-radius: 15px;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 97%;
    height: 90%;
    object-fit: cover;
}

    /* Navigation Menu Styling */
    
/* Navigation Specific Adjustments */
.menu-container.glass-panel {
    width: calc(100% - 40px);
    margin: 0 20px;
    background: transparent;
}

.menus ul {
    display: flex;
    list-style-type: none; /* Explicit bullet removal */
    padding-left: 0; /* Remove UL indent */
    margin: 0 auto;
    justify-content: center;
    gap: 1.5rem;
    max-width: 1200px;
}

.menus li {
    list-style: none; /* Double protection for LI */
    margin: 0 10px;
}

/* Improved Navigation Menu Styling */
.menus a {
    padding: 12px 25px; /* Bigger click area */
    font-size: 1.2rem; /* Slightly larger text */
    border: 1px solid rgba(255, 255, 255, 0.3); /* White border */
    border-radius: 8px; /* Rounded corners */
    transition: all 0.3s ease-in-out;
    display: inline-block; /* Better box control */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    letter-spacing: 1.5px;
}

.menus a:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .menus a {
        padding: 10px 18px;
        font-size: 1rem;
    }
    
    .menus ul {
        flex-wrap: wrap; /* Allow items to wrap on mobile */
        gap: 0.8rem;
    }
}

/* Main Content Sections */
.content-section {
    letter-spacing: 2px;
    font-size: 19px;
}
.content-section h1, h2, h4{
    text-align: center;
}

/* Form Styles */
.form-section {
    max-width: 800px;
    margin: 20px auto;
}

.form-section h1 {
    text-align: center;
} 

input, select, textarea {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    background: rgba(255, 255, 255, 0.1)!important;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: white;
    font-size: 16px;
    text-align: left;
    letter-spacing: 3px;
}
.phone-wrapper option {
    background: gray !important;
}
.terms-checkbox {
        text-align: left;
        margin: 15px 0;
    }
    
    .terms-label {
        display: inline-flex;
        align-items: center;
        cursor: pointer;
    }
    
    .terms-checkbox input[type="checkbox"] {
        margin: 0 8px 0 0;
        width: auto;
    }
    
    .terms-checkbox a {
        margin-left: 4px;
    }

button {
    text-align: center;
    background: #ff0000;
    color: white;
    margin-top: 15px;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

button:hover {
    background: #cc0000;
}

/* Matchmaking Process Section */
.process-section {
    padding: 50px 20px;
    background: rgba(11, 14, 20, 1);
    backdrop-filter: blur(10px);
}

.section-title {
    font-family: 'Rebeqa-Bold', sans-serif;
    font-size: 3.5em;
    color: #ffffff;
    letter-spacing: 9px;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    text-align: center;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.step:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.step-icon {
    font-family: 'Monopoly_Regular', sans-serif;
    width: 45px;
    height: 45px;
    background: #ff0000;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4em;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.step h3 {
    font-family: 'Age', sans-serif;
    color: #ffffff;
    font-size: 1.8em;
    letter-spacing: 3px;
    margin-bottom: 12px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.step p {
    font-family: 'Simplifica', sans-serif;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1em;
    line-height: 1.6;
    letter-spacing: 1.5px;
}

.step a {
    color: #ffffff;
    text-decoration: none;
    font-weight: normal;
    transition: all 0.3s ease;
    position: relative;
}

.step a:hover {
    color: #ff0000;
    text-decoration: none;
    transform: translateY(-1px);
}
/* Measurement Tools Section */
.measurement-tools {
    /* Replace @extend with actual glass-panel properties */
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    
    /* Layout properties */
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 30px;
}

.tool-icon {
    width: 200px;
    height: 120px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

/* Rest of the measurement tools styles remain the same */

.skin-tone-image {
    width: 100%;
    height: auto;
    max-height: 120px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .measurement-tools {
        grid-template-columns: 1fr;
        padding: 20px !important;
    }
    
    .tool-icon {
        width: 160px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .tool-icon {
        width: 140px;
        height: 90px;
    }
    
    h1 {
        font-size: 2.2em;
        letter-spacing: 5px;
    }
}

@media (max-width: 768px) {
    .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-title {
        font-size: 2.5em;
        letter-spacing: 5px;
    }
    
    .step {
        padding: 20px;
    }
    
    .step p {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2em;
        letter-spacing: 3px;
    }
    
    .step-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2em;
    }
}


/* Pricing Styles*/
.pricing-section {
  padding: 50px 20px;
}

.package-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 30px;
}

.package-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 30px;
  transition: transform 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.package-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
}

.package-title {
  font-family: 'Rebeqa-Bold', sans-serif;
  color: #ffffff;
  font-size: 1.8em;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.hindi {
  font-family: 'Age', sans-serif;
  font-size: 1.4em;
  display: block;
  margin-bottom: 8px;
}

.package-price {
  font-family: 'Monopoly_Regular', sans-serif;
  color: #ff0000;
  font-size: 2.5em;
  margin: 20px 0;
  text-shadow: 0 0 10px rgba(255,0,0,0.3);
}

.package-features {
  list-style: none;
  padding-left: 0;
}

.package-features li {
  font-family: 'Simplifica', sans-serif;
  color: rgba(255, 255, 255, 0.9);
  padding: 8px 0;
  letter-spacing: 1.2px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.highlight {
  color: #ff0000;
  font-weight: bold;
  font-size: 1.2em;
}

.terms-note {
  margin-top: 40px;
  text-align: center;
  color: rgba(255,255,255,0.7);
  font-family: 'Simplifica', sans-serif;
}

@media (max-width: 768px) {
  .package-container {
    gap: 25px;
  }
  
  .package-card {
    padding: 20px;
  }
  
  .package-price {
    font-size: 2em;
  }
}


/* Footer Styles */
footer {
    display: grid;
    grid-template-columns: 40% 30% 30%;
    padding: 30px;
    gap: 20px;
    text-align: center;
}

.footer-column {
    padding: 15px;
}

.footer-column h1 {
    font-family: 'Age';
}
.footer-column p {
    font-family: 'Monopoly';
}


.footer-logo {
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
    text-align: center;
}

.footer-links {
        list-style: none;
        color: white;
        text-decoration: none;
        font-size: 1.1rem;
        padding: 10px 15px;
        border-radius: 5px;
        transition: all 0.3s ease;
        position: relative;
}


.copyright hr {
    max-width: 97%;
}
.copyright {
    
    grid-column: 1 / -1;
    padding-top: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    .logo {
        margin: 10px 0;
    }

    footer {
        grid-template-columns: 1fr;
    }

    .header-title h1 {
        font-size: 2.5em;
    }

    .slider-container {
        height: 250px;
    }
}

@media (max-width: 768px) {
    /* Target third element in header (right logo) */
    header .logo:nth-child(3) {
        display: none;
    }
    
    /* Adjust header spacing */
    header {
        justify-content: center;
        gap: 10px;
    }
    
    .slider-container {
        height: 250px;
        padding: 10px; /* Mobile-specific padding */
    }
    
    .slide {
        width: calc(100% - 10px); /* Account for container padding */
        height: calc(100%); /* Account for container padding */
        left: 10px;
        top: 10px;
    }
    
    .slide img {
        border-radius: 8px; /* Smaller radius for mobile */
    }
}