/* primary color: ##ffdf01 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Glassy Navbar */
.glassy-navbar {
    background: rgba(68, 67, 67, 0.153);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(218, 218, 218, 0.766);
    border-radius: 16px;
    width: 80%;
    padding: 20px 20px;
    z-index: 1000;
    position: absolute;
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
    transition: all 0.3s ease-in-out;
}

/* Brand Text */
.brand-text {
    font-size: 30px;
    font-weight: lighter;
    color: white;
}

.glassy-navbar a p {
    color: white;
    font-weight: 400;
    position: relative;
    font-family: sans-serif;
    font-size: 20px;
    top: 10px;
    left: 20px;
}

/* Neon Link */
.neon-link {
    color: white !important;
    position: relative;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.extra-btn {
    background: rgba(42, 41, 41, 0.295);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(12px);
    color: white !important;
    position: relative;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    border: 1px solid whitesmoke;
    border-radius: 10px;
}


.neon-link::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    background: white;
    left: 0;
    bottom: -2px;
    transition: 0.4s ease;
}

.neon-link:hover::after {
    width: 100%;
}

.neon-link:hover {
    color: white !important;
}


#banner-section {
    height: 100vh;
    background: url('../images/main-bg-banner.jpg') no-repeat center center/cover;
}

#banner-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #56021fa9;
    z-index: 1;
}

#banner-section .content {
    width: 95%;
    margin: auto;
    display: flex;
    justify-content: center;
}

#banner-section .content .box {
    width: 50%;
    color: white;
    z-index: 200;
}

#banner-section .content .box1 {
    padding-top: 15%;
}

#banner-section .content .box h1 {
    font-family: "Archivo Black", sans-serif;
    font-weight: 400;
    font-size: 60px;
    text-shadow: 1px 1px 2px rgb(40, 39, 39);
    color: white;
}

#banner-section .content .box h6 {
    font-weight: 500;
    font-size: 30px;
    text-shadow: 1px 1px 2px rgb(40, 39, 39);
}


#banner-section .content .btns button {
    background: white;
    padding: 10px 20px;
    border-radius: 50px;
    margin-top: 20px;
    border: none;
    width: 350px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid black;
    transition: all 0.4s ease;
}

#banner-section .content .btns button::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transform: skewX(-20deg);
    transition: all 0.5s ease;
}


#banner-section .content .btns button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

#banner-section .content .btns button a {
    color: black;
    text-decoration: none;
    font-size: 25px;
    font-weight: bold;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
    display: inline-block;
    transition: all 0.4s ease;
    font-family: sans-serif;
}

#banner-section .content .btns button:hover a {
    letter-spacing: 2px;
}

.box2 {
    width: 100%;
    padding: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    margin: auto;
    font-family: 'Segoe UI', sans-serif;
    transition: transform 0.3s ease;
    display: flex;
    justify-content: center;
    margin-top: 10%;
}

form {
    background: white;
    padding: 30px;
    border-radius: 16px;
    width: 450px;
}

.box2:hover {
    transform: scale(1.01);
}

.form-title {
    font-size: 24px;
    font-weight: 600;
    color: #890c25;
    margin-bottom: 20px;
    text-align: center;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    transition: 0.3s ease;
    font-size: 14px;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #890c25;
    outline: none;
    box-shadow: 0 0 5px rgba(137, 12, 37, 0.2);
}

.submit-btn {
    background-color: #890c25;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    margin-top: 10px;
    transition: 0.3s;
}

.submit-btn:hover {
    background-color: #a0152d;
}

#second-section {
    background-color: #f9f9f9;
    padding: 60px 20px;
}

#second-section .section-title {
    font-size: 32px;
    font-weight: 700;
    color: #56021f;
    margin-bottom: 25px;
}

#second-section .section-text {
    font-size: 18px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 15px;
}

#third-section {
    margin-top: 5%;
    background: #56021f;
    padding: 20px;
}

#third-section .content h2 {
    color: white;
}

#third-section .points {
    display: flex;
    width: 80%;
    margin: auto;
    justify-content: space-around;
    flex-wrap: wrap;
}

#third-section .points .box {
    width: 30%;
    text-align: center;
}

#third-section .points .box .image {
    border-radius: 10px;
    overflow: hidden;
    object-fit: cover;
    width: 80%;
    margin: auto;
}

#third-section .points .box .image img {
    width: 100%;
}

#third-section .points .box .text h4 {
    color: white;
    margin-top: 5px;
    font-style: italic;
    font-size: 25px;
    font-weight: 500;
}


#how-it-works {
    margin-top: 5%;
    background: linear-gradient(to right, #fff8f6, #fce7e0);
    border-top: 8px solid #56021f;
    border-bottom: 8px solid #56021f;
}

.section-title {
    font-size: 38px;
    font-weight: 700;
    color: #56021f;
    position: relative;
}

.step-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.step-box {
    flex: 1 1 250px;
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 25px;
    margin: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.step-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.step-number {
    background-color: #56021f;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    line-height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(137, 12, 37, 0.3);
}

.step-title {
    font-size: 20px;
    color: #56021f;
    font-weight: 600;
    margin-bottom: 15px;
}

.step-desc {
    font-size: 16px;
    color: #444;
    line-height: 1.7;
}



.cta-section {
    background: #56021f;
    margin-top: 5%;
}

.cta-content {
    max-width: 750px;
}

.cta-title {
    font-size: 36px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 18px;
    color: whitesmoke;
    line-height: 1.8;
    margin-bottom: 30px;
}

.cta-btn {
    background-color: #56021f;
    color: #fff;
    padding: 15px 35px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 30px;
    transition: background 0.3s ease, transform 0.3s ease;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(137, 12, 37, 0.25);
}

.cta-btn:hover {
    background-color: #a6122d;
    transform: translateY(-3px);
}

.service-section {
    background: linear-gradient(to right, #fff3ef, #ffdfd2);
    border-top: 6px solid #56021f;
}

.service-heading {
    font-size: 38px;
    color: #56021f;
    font-weight: 800;
    letter-spacing: 1px;
}

.service-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px 20px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.07);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 50px;
    color: #56021f;
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(8deg);
}

.service-title {
    font-size: 20px;
    color: #56021f;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-desc {
    font-size: 15.5px;
    color: #444;
    line-height: 1.7;
}

.why-choose-us {
    background: linear-gradient(to right, #FFEEE2, #ffffff);
    padding: 80px 30px;
    font-family: 'Segoe UI', sans-serif;
}

.why-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: auto;
}

.why-text {
    flex: 1 1 500px;
    animation: slideInLeft 1s ease-in-out;
}

.why-text h2 {
    font-size: 2.8rem;
    color: #56021f;
    margin-bottom: 20px;
}

.why-text h2 span {
    color: #111;
}

.why-text p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.7;
}

.features {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.features li {
    background: #fff;
    border: 1px solid #f0d4d4;
    padding: 15px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: #444;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease;
}

.features li:hover {
    transform: translateY(-5px);
}

.features i {
    color: #56021f;
    font-size: 1.3rem;
    margin-right: 15px;
}

.why-image {
    flex: 1 1 500px;
    animation: float 3s ease-in-out infinite;
}

.why-image img {
    width: 100%;
    max-width: 650px;
    filter: drop-shadow(10px 10px 25px rgba(0, 0, 0, 0.1));
    border-radius: 20px;
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .why-container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .features {
        grid-template-columns: 1fr;
    }
}

#testimonial {
    position: relative;
    height: 100vh;
    background: url('../images/main-bg-banner.jpg') no-repeat center center/cover;
    padding: 30px;

}

#testimonial .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(239, 239, 239, 0.807);
    z-index: 1;
}

#testimonial .content {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1200px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: auto;
}

#testimonial .content .box {
    flex: 1 1 400px;
}


#testimonial .content .image-box img {
    width: 70%;
}

#testimonial .content .box .text-box h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #000;
}

#testimonial .content .box .text-box p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #000;
}
    
#testimonial .testi-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    position: relative;
    z-index: 2;
    width: 100%;
}

#testimonial .testi-section .boxy{
    width: 20%;
}

#testimonial .testi-section .boxy h2{
    font-weight: 700;
    font-size: 25px;
}

#testimonial .testi-section .boxy p span{
font-weight: 700;
font-size: 16px;
}

#testimonial .testi-section .boxy .g-logo{
    width: 20vh;
}

#testimonial .testi-section .boxy .g-logo img{
    width: 100%;
}

#testimonial .testi-section .boxy .image{
    display: flex;
    justify-content: start;
    -ms-grid-row-span: 3px;
}
#testimonial .testi-section .boxy .image img{
    width: 3.5vh;
}


#testimonial .testi-section .boxy2 {
    width: 70%;
    overflow: hidden;
    position: relative;
  }
  
  .reviews-container {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
    width: calc(33.33% * 5); /* 5 reviews */
  }
  
  .reviews {
    width: 33.33%;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
    background: white;
  }
  
  .reviews img {
    border-radius: 50%;
    width: 80px;
    height: 80px;
  }
  
  .stars {
    color: gold;
    font-size: 20px;
  }





.faq-section {
    background: #fff8f7;
    padding: 80px 30px;
    font-family: 'Segoe UI', sans-serif;
}

.faq-title {
    text-align: center;
    font-size: 2.5rem;
    color: #56021f;
    margin-bottom: 50px;
}

.faq-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    max-width: 1200px;
    margin: auto;
}

.faq-column {
    flex: 1 1 500px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-box {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 15px 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-box h4 {
    margin: 0;
    font-size: 1.1rem;
    color: #56021f;
    position: relative;
}

.faq-box h4::after {
    content: "+";
    position: absolute;
    right: 0;
    font-weight: bold;
    color: #56021f;
    transition: transform 0.3s;
}

.faq-box.active h4::after {
    content: "-";
}

.faq-answer {
    display: none;
    margin-top: 10px;
    color: #444;
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-box.active .faq-answer {
    display: block;
}

@media (max-width: 768px) {
    .faq-container {
        flex-direction: column;
        align-items: center;
    }
}



.footer {
    background: linear-gradient(135deg, #56021f, #ff5e7e);
    color: #fff;
    padding: 60px 30px 30px;
    font-family: 'Segoe UI', sans-serif;
    margin-top: 5%;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 40px;
}

.brand {
    flex: 1 1 300px;
}

.brand h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #fff;
}

.brand p {
    color: #f0f0f0;
    font-size: 1rem;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: #fff;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin: 10px 0;
}

.footer-links a {
    color: #f5dada;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    padding-left: 5px;
    color: #fff;
}

.footer-contact p {
    font-size: 0.95rem;
    margin: 10px 0;
}

.footer-contact p a{
    color: white;
    text-decoration: none;
}

.social-icons a {
    margin-right: 15px;
    font-size: 1.2rem;
    color: #fff;
    transition: transform 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.2);
    color: #ffe;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.footer-bottom ul {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;
}

.footer-bottom a {
    color: #f0e0e0;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}


.contact-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    font-family: 'Segoe UI', sans-serif;
}

.popup-wrapper {
    display: flex;
    width: 90%;
    max-width: 1000px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    backdrop-filter: blur(20px);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.6);
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 28px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    z-index: 99;
}

/* Left Side */
.popup-left {
    flex: 1;
    padding: 2rem;
    background: #56021f;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.popup-left h1 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 15px;
}

.popup-left p {
    font-size: 16px;
    margin-bottom: 10px;
}

.popup-left .highlight {
    font-weight: bold;
    font-size: 18px;
    color: #ffe3e3;
}

/* Right Side */
.popup-right {
    flex: 1.2;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.popup-right h2 {
    font-size: 24px;
    margin-bottom: 1.5rem;
    text-align: center;
}

.popup-right form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.popup-right input,
.popup-right textarea {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(83, 83, 83, 0.623);
    padding: 10px;
    border-radius: 10px;
    color: black;
    font-size: 15px;
    outline: none;
}

.popup-right input::placeholder,
.popup-right textarea::placeholder {
    color: rgb(59, 59, 59);
}

.popup-right button {
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: #56021f;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    transition: 0.3s ease;
    cursor: pointer;
}

.popup-right button:hover {
    background: #3b0113;
}

.contact-info {
    margin-top: 1.5rem;
    font-size: 14px;
    color: #ddd;
}

.contact-info i {
    margin-right: 10px;
}