
@import url("https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap");
/* **********************************************Universal Code************************************ */
:root {
    --primary-color: #f27d00;
    --hover-light-primary-color: #fca428;
    --text-dark: #0f172a;
    --text-light: #475569;
    --extra-light: #f2f2f2;
    --white: #ffffff;
    --max-width: 1200px;
    --gradient: linear-gradient(to bottom, #f27d00,  #fca428);
    --black: #000000;
    /* --green: #51ff00; */
  }
  

* {
padding: 0;
margin: 0;
box-sizing: border-box;
}

html {
font-size: 1rem;
}

body {
font-family: "Mulish", sans-serif !important;
scroll-behavior: smooth;

background-color: var(--white);
transition: background-color 0.3s;
}

/* **********************************************Header Code************************************ */


header {
    position: fixed;
    width: 100%;
    z-index: 1000;
    background-color: var(--primary-color);
    /* background-color: #251402; */
    transition: background-color 0.3s;
}

#navbar-color {
height: 3.85rem; /* 76px */
display: flex;
align-items: center;

}


.navbar-nav {
margin-left: auto;
display: flex;
}

.header-button {
background-color: var(--white);
color: var(--white);
border: none;
border-radius: 0.5rem; /* 5px */
padding: 0.625rem 1.25rem; /* 10px 20px */
font-size: 1rem; 
font-weight: bold;
cursor: pointer;
transition: background-color 0.3s;
width: 10.5rem; /* 200px */
height: 2.25rem; /* 36px */
}
  
  
.container 
{
    padding-top: 1rem;
}
.btn {
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 0.5rem; 
    padding: 0.625rem 1.25rem; 
    font-size: 1rem; 
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 10.5rem; 
    height: 2.25rem; 
}
.btn:hover {
    
    background: var(--hover-light-primary-color);
    background-color: var(--hover-light-primary-color);
    border: var(--extra-light);
    color: var(--white);
    transform: scale(1.01);

}
.btn.btn-secondary {
    background: var(--primary-color);
    border-color: var(--primary-color);
}
.btn.btn-secondary:hover {
    
    background: var(--hover-light-primary-color);
    background-color: var(--hover-light-primary-color);
    border: var(--extra-white);
    transform: scale(1.01);
}

  
@media screen and (max-width: 1024px) {
#navbar-color {
    padding: 0 1rem;
}

}
#logo img {
    margin: 0;
    margin-top: -1.05rem;
    width: 9.5rem; 
    height: 3rem;
    padding-top: 0 !important;
}

.header-button {
    font-size: 0.875rem;
    width: 10rem; 
}


@media (min-width: 990px) {
    #logo img {
        margin-left: -2.5rem;
        width: 8.5rem;
        /* height: 2rem; */
    }
}

@media screen and (max-width: 768px) {
.navbar-nav {
    flex-direction: column;
    align-items: flex-end;
}

.header-button {
    margin-top: 0.5rem;
}

.container {
    margin-top:  -0.5rem;
}

.container #sticky-btn a{
 width: 100%;   
 
}

#logo img {
    margin-left: 1rem;
    width: 7rem;
    height: 2.5rem;
}

#navbar-color {
    height: 3.3rem; /* 76px */

    
    }
}

#sticky-btn .btn{
    background-color: var(--white);
    color: var(--primary-color);
}


/* Topbar */
.topbar {
    background-color: var(--primary-color);
    color: var(--white);
    padding: -2.5rem 0;
    font-size: 0.9rem;
    height: 40px;
    margin: -1rem 5rem 0rem 0rem;
}

.topbar .topbar-left {
    display: flex;
    gap: 1rem;
}

.topbar .topbar-right a {
    color: var(--white);
    font-size: 1.2rem;
    text-decoration: none;
}

.topbar-right {
    display: flex;
   
    margin: 0rem -1.5rem 0rem 0rem;
    gap: 1.5rem; 
}

.topbar .topbar-right a:hover {
    color: var(--primary-color);
}



/* Hide Email on Smaller Screens */
@media screen and (max-width: 768px) {
    .topbar .email {
        display: none;  /* Hide email */
    }

    .topbar .phone {
        font-size: 0.9rem; /* Adjust font size if needed */
    }

    .topbar .topbar-right {
        gap: 1rem; /* Reduce gap for icons */
       
        margin: 0rem -5rem 0rem 0rem;
    }

    .topbar .topbar-right a {
        font-size: 1rem; /* Reduce icon size */
    }
}

/* **********************************************Header Code************************************ */

/******************************************* Quiz Section********************************************* */
.quiz {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem ;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
}

.subtitle_large {
    font-size: 1.5rem !important;
    font-weight: 800;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 1.5rem;
}

.subtitle_large span {
    color: var(--primary-color);
}
/* Step 1 */
#step-1{
    padding: 2rem 16rem ;
}

#step-2{
    padding: 2rem 14rem;
}
.option-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 0 auto;
    justify-content: center;
}

.option-card {
    background: var(--white);
    border: 2px solid transparent;
    border-radius: 8px;
    padding: 0;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center; /* Center the image horizontally */
    overflow: hidden; /* Ensure content doesn't overflow the card */
    height: 100%; /* Consistent card height */
}

.option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.option-card.selected {
    border-color: var(--primary-color);
    background: var(--light-primary-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}



.option-card img {
    width: 100%;
    height: auto;
    max-height: 100%; /* Ensure the image doesn't exceed the card height */
    flex-grow: 1; /* Allow the image to take up available space */
    object-fit: cover; /* Ensure proper scaling of the image */
    display: block;
    margin: 0 auto; /* Center the image horizontally */
    padding-top: 0.3rem;
}

.option-card p.subtitle_small {
    margin: 0;
    padding: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    background: var(--white);
    border-top: 1px solid var(--extra-light); /* Add a subtle border */
    width: 100%; /* Ensure text spans the width of the card */
    text-align: center;
}

.navigation-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn {
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    background-color: var(--primary-color);
    color: var(--white);
    transition: background-color 0.3s ease, padding 0.3s ease;
}

.btn:disabled {
    visibility: hidden !important;
    cursor: not-allowed;
}


@media (max-width: 1024px) {
    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    #step-1 {
        padding: 2rem 0rem;
    }


    .option-group {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .option-card img {
        max-width: 100px;
    }
}

@media (max-width: 768px) {
    .quiz {
        padding: 0.1rem;
    }

    .option-group {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
    }

    .option-card img {
        max-width: 100px !important;
    }

    .subtitle_large {
        font-size: 1.3rem;
    }

    .btn {
        font-size: 0.9rem !important;
        padding: 0.5rem 1rem !important;
        /* width: auto !important; Ensure buttons remain inline */
        margin-top: -0.5rem !important;
    }

    .navigation-buttons {
        flex-direction: row !important;
        flex-wrap: nowrap !important; /* Force buttons to remain in a row */
        gap: 0.5rem !important;
    }
}

@media (max-width: 480px) {
    .option-group {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2rem !important;
    }

    .btn {
        padding: 0.1rem 0.4rem !important;
        font-size: 0.8rem !important;
    }

    .navigation-buttons {
        flex-wrap: nowrap !important; /* Ensure row layout */
        gap: 0.4rem !important;
        align-items: center;
    }
}


/* **************************************************FAQ's************************** */

/* ******************************FAQ section code****************************** */
.faq-section {
    max-width: var(--max-width);
    margin: 0rem auto;
    padding: 2rem;
    padding-bottom: 5rem;
    margin-top: -2rem;
}
.faq-section .container{
    padding: 0 !important;
}
.faq-header {
    text-align: center;
    margin-bottom: 2rem;
}
.faq-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}
.faq-item {
    background: var(--extra-light);
    border-radius: 8px;
    padding: 1rem;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
    display: flex;
    flex-direction: column;
}
.faq-item.active {
    background: var(--primary-color);
    /* background: rgb(206, 182, 59); */
    color: var(--white);
}
.faq-question {
    font-size: 1.2rem;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-answer {
    display: none;
    margin-top: 0.5rem;
    font-size: 1rem;
    color: var(--text-dark);
  
}
.faq-answer ul {
    list-style: none; /* Removes bullet points */
    padding-left: 0; /* Removes default padding */
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s;
}

/*****************************************Dimension Options Section (Step 2) ***********************************/
/* Layout Details Section */
.layout-details-container {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
}

/* Left Section: Image and Title */
.layout-left {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.layout-image {
    width: 100%;
    max-width: 250px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.layout-label {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-top: 0.5rem;
}

/* Right Section: Inputs Section */
.layout-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Inputs Container */
.input-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Individual Dimension Input */
.dimension-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.dimension-item label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    min-width: 50px;
}

.dimension-item input {
    padding: 0.5rem;
    font-size: 1rem;
    border: 1px solid var(--text-light);
    border-radius: 5px;
    background: var(--white);
    width: 150px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    #step-2{
        padding: 2rem 2rem 0rem 2rem;
 
    }
    .layout-details-container {
        flex-direction: column;
        gap: 2rem;
        padding: 1rem;
    }

    .layout-left {
        align-items: left;
    }

    .layout-image {
        margin: 0 auto;
    }

    .layout-label {
        text-align: center;
    }

    .layout-details {
        flex-direction: column;
    }

    .dimension-item {
        flex-direction: row; /* Ensures label and input are side by side */
        align-items: center;
        gap: 1rem;
    }

    .dimension-item label,
    .dimension-item input {
        width: auto; /* Set width to auto for labels and inputs to be side by side */
    }

    .dimension-item label {
        min-width: 50px; /* Maintain consistent label width */
    }

    .dimension-item input {
        width: 100%; /* Inputs will expand to take remaining space */
    }
}



/*****************************************Package Options Section (Step 3) ***********************************/
.package-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Display 3 columns on larger screens */
    gap: 2rem; /* Space between the cards */
    margin-top: 2rem;
    padding: 0 2rem; /* Padding for spacing around content */
}

/* Individual Package Card */
.package-card {
    background: var(--white);
    border: 2px solid var(--extra-light);
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
}


/* Selected Package Card */
.package-card.selected {
    transform: translateY(-10px);
    border: 2px solid var(--primary-color);
    background-color: var(--light-primary-color);
}


/* Header Section of Package Card */
.package-card .header {
    /* background: var(--primary-color); */
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    padding: 1rem;
    /* text-transform: uppercase; */
}

.package-card-img-class{
    /* border: 2px solid red; */
    padding: 1rem 1rem;

}
/* Image Section */
.package-card img {
    width: 100%;
    height: 180px; /* Fixed image height to ensure uniformity */
    object-fit: cover; /* Crop and center the image to maintain aspect ratio */
    border-bottom: 1px solid var(--extra-light);
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    
}

/* Description Section */
.package-card ul {
    list-style: none;
    margin: 1rem 0;
    padding: 0 1.5rem; /* Padding for inner content */
}

.package-card ul li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.package-card ul li i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Button Section */
.package-card button {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    background: var(--primary-color);
    border: none;
    border-radius: 0 0 12px 12px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.package-card button:hover {
    background: var(--hover-light-primary-color);
}

/* Adjustments for smaller screens */
@media (max-width: 768px) {
    .package-options {
        grid-template-columns: 1fr; /* Stack cards in a single column on small screens */
        padding: 0rem  0rem 0rem 0rem; 
    }

    /* Adjust image size and card height for smaller screens */
    .package-card img {
        height: 150px; /* Slightly smaller image */
    }

    .package-card button {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
}
/* Step 4 Form Container */
/*****************************************User detail Form  Section (Step 4) ***********************************/
.form-container-3 {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 2rem auto; 
    text-align: left;
}

/* Header Styling */
.form-container-3 h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.form-container-3 h2 span {
    color: var(--primary-color);
    
}

/* Form Group Styling */
.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    width: 100%;
    height: 3rem;
    padding: 0.5rem;
    border: 1px solid var(--extra-light);
    border-radius: 8px;
    font-size: 1rem;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    outline: none;
}

.form-control::placeholder {
    color: var(--text-light);
}

/* Checkbox Styling */
.form-check {
    display: flex;
    align-items: center;
    justify-content: start;
    margin-bottom: 1rem;
}

.form-check-input {
    position: relative;
    width: 18px;
    height: 18px;
    margin-right: 0.5rem;
    cursor: pointer;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    background-color: transparent;
    transition: background-color 0.3s, border-color 0.3s;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-input:checked::after {
    content: '\2713'; /* Checkmark */
    color: white;
    font-size: 14px;
    position: absolute;
    top: -2px;
    left: 2px;
}

.form-check-label {
    font-size: 1rem;
    color: var(--text-dark);
    cursor: pointer;
}

/* Disclaimer Text */
small {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 1rem;
}

small a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

small a:hover {
    text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .form-container-3 {
        padding: 1rem;
    }

    .form-container-3 h2 {
        font-size: 1.8rem;
    }

    .form-control {
        height: 2.8rem;
        font-size: 0.95rem;
    }

    .form-check-label {
        font-size: 0.9rem;
    }
}



.hidden {
    display: none;
}

/* General responsive adjustments for small screens */
@media (max-width: 768px) {
    .quiz {
      margin: 1rem;
      box-shadow: none;
    }
  
    .quiz-section {
      padding: 1.5rem;
    }
  
    .subtitle_large {
      font-size: 1.25rem;
    }
  
    .body_default {
      font-size: 0.9rem;
    }
  
    .option-group {
      grid-template-columns: 1fr; /* One column on small screens */
      gap: 0.75rem;
      padding: 0 1rem !important; /* Reduce padding for smaller screens */
    }
  
    .option-card {
      padding: 0.75rem;
    }
  
    .option-card img {
      max-width: 80px;
    }
  
    .subtitle_small {
      font-size: 0.9rem;
    }
  
    .navigation-buttons {
      flex-direction: column;
      gap: 1rem;
    }
  
    .btn {
      width: 100%;
      font-size: 0.9rem;
    }
  
    .dimensions-block {
      flex-direction: column;
      gap: 0.75rem;
    }
  
    .dimension-item label {
      font-size: 0.9rem;
    }
  
    .dimension-item select {
      font-size: 0.9rem;
    }
  
    .package-options {
      grid-template-columns: 1fr;
      gap: 0.75rem;
    }
  
    .package-card {
      padding: 0.75rem;
    }
  
    .package-card .header {
      font-size: 1.1rem;
    }
  
    .package-card p.description {
      font-size: 0.85rem;
    }
  
    .package-card ul {
      font-size: 0.85rem;
    }
  }
  