body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}



/* navbar start */
/*=============== GOOGLE FONTS ===============*/
/*@import url("https://fonts.googleapis.com/css2?family=Montserrat+Alternates:wght@400;500&display=swap");*/

/*=============== VARIABLES CSS ===============*/
:root {
    --header-height: 3.5rem;

    /*========== Colors ==========*/
    /*Color mode HSL(hue, saturation, lightness)*/
    --white-color: hsl(0, 0%, 100%);
    --black-color: hsl(0, 0%, 0%);

    /*========== Font and typography ==========*/
    /*.5rem = 8px | 1rem = 16px ...*/
    /* --body-font: "Montserrat Alternates", sans-serif; */
    --h1-font-size: 1.5rem;
    --normal-font-size: .938rem;

    /*========== Font weight ==========*/
    --font-regular: 400;
    --font-medium: 500;

    /*========== z index ==========*/
    --z-tooltip: 10;
    --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1150px) {
    :root {
        --normal-font-size: 1rem;
    }
}

/*=============== BASE ===============*/
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

/* body {
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    background-color: var(--white-color);
} */

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
    max-width: 1120px;
    /*margin-inline: 1.5rem;*/
}

/*=============== HEADER & NAV ===============*/
.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background-color: #ffffff;
    /* White background */
    z-index: var(--z-fixed);
}

.nav {
    position: relative;
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    /* White background */
}

.nav__logo {
    color: #c20808;
    /* Update text color to #c20808 */
    font-weight: var(--font-medium);
}

.nav__close,
.nav__toggle {
    display: flex;
    color: #c20808;
    /* Update icon color to #c20808 */
    font-size: 1.5rem;
    cursor: pointer;
}

.nav__menu {
    display: flex;
    justify-content: center;
    /* Center the links horizontally*/
    flex-grow: 1;
    /*  Allow the menu to take up remaining space */
}

/* Navigation for mobile devices */
@media screen and (max-width: 1150px) {
    .nav__menu {
        position: fixed;
        left: -100%;
        top: 0;
        background-color: #ffffff;
        /* White background */
        width: 100%;
        height: 100%;
        padding: 6rem 3.5rem 4.5rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        transition: left .4s;
    }

    .nav__item {
        transform: translateX(-150px);
        visibility: hidden;
        transition: transform .4s ease-out, visibility .4s;
    }

    .nav__item:nth-child(1) {
        transition-delay: .1s;
    }

    .nav__item:nth-child(2) {
        transition-delay: .2s;
    }

    .nav__item:nth-child(3) {
        transition-delay: .3s;
    }

    .nav__item:nth-child(4) {
        transition-delay: .4s;
    }

    .nav__item:nth-child(5) {
        transition-delay: .5s;
    }
}

.nav__list,
.nav__social {
    display: flex;
}

.nav__list {
    flex-direction: column;
    row-gap: 2rem;
}

.nav__link {
    position: relative;
    color: #c20808;
    /* Update text color to #c20808 */
    font-size: var(--h1-font-size);
    font-weight: var(--font-medium);
    display: inline-flex;
    align-items: center;
    transition: opacity .4s;
}

.nav__link i {
    font-size: 2rem;
    color: #c20808;
    /* Update icon color to #c20808 */
    position: absolute;
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s, visibility .4s;
}

.nav__link span {
    position: relative;
    transition: margin .4s;
}

.nav__link span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background-color: #c20808;
    /* Update the underline color to #c20808 */
    transition: width .4s ease-out;
}

/* Animation link on hover */
.nav__link:hover span {
    margin-left: 2.5rem;
}

.nav__link:hover i {
    opacity: 1;
    visibility: visible;
}

.nav__link:hover span::after {
    width: 100%;
}

.nav__list:has(.nav__link:hover) .nav__link:not(:hover) {
    opacity: .4;
}

.nav__close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.nav__social {
    column-gap: 1rem;
}

.nav__social-link {
    color: #c20808;
    /* Update social icon color to #c20808 */
    font-size: 1.5rem;
    transition: transform .4s;
}

.nav__social-link:hover {
    transform: translateY(-.25rem);
}

/* Show menu */
.show-menu {
    left: 0;
}

/* Animation link when displaying menu */
.show-menu .nav__item {
    visibility: visible;
    transform: translateX(0);
}

/*=============== BREAKPOINTS ===============*/
/* For large devices */
@media screen and (min-width: 1150px) {
    .container {
        margin-inline: auto;
    }

    .nav {
        height: calc(var(--header-height) + 2rem);
    }

    .nav__toggle,
    .nav__close {
        display: none;
    }

    .nav__link {
        font-size: var(--normal-font-size);
    }

    .nav__link i {
        font-size: 1.5rem;
    }

    .nav__list {
        flex-direction: row;
        column-gap: 2rem;
    }

    .nav__menu {
        display: flex;
        align-items: center;
        column-gap: 3.5rem;
    }
}



/* Default styling for the login button */
.login-button {
    display: flex;
    align-items: center;
    background-color: #1f6e35;
    color: white;
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    position: absolute;
    /* Positioning it absolutely */
    right: 1.5rem;
    /* Push it to the right side */
    transition: 0.3s;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}

/* Hover effect */
.login-button:hover {
    background-color: #1f6e35;
}

/* Icon inside the button */
.login-button .icon {
    width: 35px;
    height: 30px;
    background-color: white;
    color: #1f6e35;
    border-radius: 50%;
    border: solid #1f6e35 2px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}

/* Icon color */
.login-button i {
    color: #1f6e35;
}

/* Mobile view adjustments */
@media screen and (max-width: 768px) {
    .login-button {
        padding: 8px 15px;
        /* Smaller padding for mobile */
        font-size: 14px;
        /* Smaller font size */
        width: 100%;
        /* Full width on smaller screens */
        max-width: 100px;
        /* Limiting max width */
        margin-top: 250px;
        right: 209px;

    }

    .login-button .icon {
        left: -15px;
        /* Adjust icon position */
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
}



/* navbar end */

/* header start */
.header-button-style {
    background-color: #1f6e35;
    color: white;
    border-radius: 30px;
    padding: 10px 30px;
    border: none;
    transition: background-color 0.3s, color 0.3s;
    text-decoration: none; /* Remove underline */
    border: solid;
}

.header-button-style:hover {
    background-color: white;
    color: #1f6e35;
}

.header-section-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.header-section-content img {
    max-width: 100%;
    height: auto;
    animation: header-shakeVertical 6s ease-in-out infinite; /* Faster up-down shake */
    margin-top:71px;
}

@keyframes header-shakeVertical {
    0% {
        transform: translateY(0); /* Start position */
    }
    25% {
        transform: translateY(-10px); /* Move up */
    }
    50% {
        transform: translateY(10px); /* Move down */
    }
    75% {
        transform: translateY(-10px); /* Move up */
    }
    100% {
        transform: translateY(10px); /* Move down */
    }
}

.header-text-content {
    max-width: 500px;
    text-align: center;
    margin-top: 20px;
    font-weight: bold;
}

.header-heading {
    font-weight: bold;
    font-size: 3rem; /* Increased font size */
    color: #c20808;
}

.header-text-content p {
    font-size: 1.5rem; /* Increased font size for the paragraph */
    color: #c20808;
}

@media (max-width: 768px) {
    .header-section-content {
        flex-direction: column;
    }

    .header-text-content {
        text-align: center;
        margin-top: 20px;
    }
}

/* header end */


/* second section start */
/* Main Section */
.second-section {

    background-image: url('images/bgimages/1.png');
    /* Background Image */
    background-size: contain;
    background-position: center;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #c20808;
}

/* Main Heading */
.second-heading h1 {
    margin-top: 250px;
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Paragraph */
.second-paragraph {
    color: #c20808;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 30px;
    max-width: 800px;
    line-height: 1.6;
    text-align: center;
    /* Centers the text inside the paragraph */
    margin-left: auto;
    /* Centers the paragraph horizontally */
    margin-right: auto;
    /* Centers the paragraph horizontally */
}

/* Cards Container */
.second-cards-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Single Card */
.second-card {
    /* background: linear-gradient(to bottom, #c20808, rgba(255, 255, 255, 0.8)); */
    /* background: linear-gradient(to right, #c20909, #f06565); */
    background: #c20808;
    width: 250px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
}

.second-card:hover {
    transform: scale(1.05);
}

.second-card-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin-bottom: 15px;
    border-radius: 50%;
}

.second-card-heading {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 10px;
}

.second-card-text {
    font-size: 0.9rem;
    color: white;
    line-height: 1.4;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .second-heading h1 {
        font-size: 2rem;
    }

    .second-section {
        margin-top: 200px;
    }

    .second-paragraph {
        font-size: 1rem;
    }

    .second-cards-container {
        flex-direction: column;
        align-items: center;
    }

    .second-card {
        width: 80%;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .second-heading h1 {
        font-size: 1.5rem;
    }

    .second-paragraph {
        font-size: 0.9rem;
    }

    .second-card {
        width: 82%;
    }
}


/* second section end */

/* about section start */
/* The section container */
.about-section {

    text-align: center;
    /*padding: 20px;*/
    background-color: #fff;
    margin: 20px auto;
    max-width: 1200px;
    /* Container width */
}

/* Main heading styling */
.about-section h1 {
    margin-top: 250px;
    font-size: 4rem;
    color: #c20808;
    /* Red color */
    margin-bottom: 20px;
}

/* Image styling */
.about-section img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* Paragraph styling */
.about-section p {
    font-size: 1.6rem;
    color: #c20808;
    /* Red color */
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .about-section h1 {

        font-size: 2rem;
        margin-top: 330px;
    }

    .about-section {
        margin-top: 200px;
    }


    .about-section p {
        font-size: 0.9rem;
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .about-section h1 {
        font-size: 1.5rem;
    }
}

/* about section end  */


/* fourth section start */
.fouth-section {
    background-image: url(images/app_bg.png);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 130vh;
    background-size: cover;
    background-position: center;
    padding: 0 200px;
    position: relative;
}
 
.fouth-content-left {
    max-width: 50%;
    color: white;
    z-index: 2; /* Ensure content appears above the background image */
}
 
.fouth-title {
    font-size: 36px;
    font-weight: bold;
}
 
.fouth-app-name {
    color: white;
}
 
.fouth-paragraph {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.5;
}
 
.fouth-download-links {
    margin-top: 20px;
    display: flex;
    gap: 20px;
}
 
.fouth-download-links img {
    width: 150px;
    height: auto;
}
 
.fouth-download-btn {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 18px;
    background-color:#1f6e35;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}
 
.fouth-content-right {
    max-width: 40%;
}
 
.fouth-mobile-image {
    width: 100%;
    height: auto;
}

/* Button styling */
.responsive-btn {
    background-color: #1f6e35;
    color: white;
    font-size: 16px;
    padding: 10px 20px;
    border: 2px solid #1f6e35;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: auto;
    /* Default width, will adjust based on content */
    margin-top: 20px;
    /* Adds space between the button and the paragraph */
}

/* Button hover effect */
.responsive-btn:hover {
    background-color: white;
    color: #1f6e35;
    border-color: #1f6e35;
}
 
@media (max-width: 1024px) {
    .fouth-section {
        padding: 0 100px; /* Reduce padding for larger tablets */
    }
    /* Button hover effect */
.responsive-btn:hover {
    background-color: white;
    color: #1f6e35;
    border-color: #1f6e35;
}
@media (max-width: 768px) {
    .responsive-btn {
        font-size: 14px;
        padding: 8px 16px;
        width: 50%;
        /* Full width on smaller screens */
    }
}

@media (max-width: 480px) {
    .responsive-btn {
        font-size: 12px;
        padding: 6px 12px;
        height: 38px;
    }
}
 
    .fouth-content-left {
        max-width: 60%;
    }
 
    .fouth-content-right {
        max-width: 35%;
    }
 
    .fouth-title {
        font-size: 30px;
    }
 
    .fouth-paragraph {
        font-size: 14px;
    }
 
    .fouth-download-links img {
        width: 130px;
    }
}
 
@media (max-width: 768px) {
    .fouth-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 20px;
        height: auto; /* Allow height to adjust on smaller screens */
    }
 
    .fouth-content-left {
        max-width: 100%;
        margin-bottom: 20px;
        z-index: 2; /* Ensure content is on top */
    }
 
    .fouth-title {
        font-size: 28px;
        margin-top: 20px;
    }
 
    .fouth-paragraph {
        font-size: 14px;
        margin-top: 10px;
    }
 
    .fouth-download-links {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-top: 10px;
    }
 
    .fouth-download-links img {
        width: 120px;
    }
 
    .fouth-download-btn {
        width: 60%;
        margin-top: 15px;
    }
 
    .fouth-content-right {
        max-width: 60%;
        margin-top: 20px;
    }
 
    .fouth-mobile-image {
        width: 100%;
        height: auto;
    }
}
 
@media (max-width: 480px) {
    .fouth-section {
        background-image: none;
        background-color: #c20808; /* Apply solid background color */
        padding: 0 10px;
    }
 
    .fouth-title {
        font-size: 24px;
    }
 
    .fouth-paragraph {
        font-size: 12px;
    }
 
    .fouth-download-links {
        margin-top: 15px;
    }
 
    .fouth-download-links img {
        width: 100px;
    }
 
    .fouth-download-btn {
        width: 70%;
        padding: 12px;
        font-size: 16px;
    }
 
    .fouth-content-right {
        max-width: 80%;
        margin-top: 10px;
    }
 
    .fouth-mobile-image {
        width: 100%;
        height: auto;
    }
}
 
/* fourth section end */





/* fifth section start */

/* Section styles */
.fifth-section {
    margin-top: 100px;
    background-image: url('images/bgimages/6.png');
    /* Replace with actual image URL */
    background-size: 40% auto;
    /* Image ko 40% width me chhota karega */
    background-position: center;
    padding: 100px 20px;
    color: white;
    text-align: center;
}


/* Container and Heading */
.fifth-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.fifth-heading {
    font-size: 5em;
    margin-bottom: 20px;
}

.fifth-paragraph {
    color: #c20808;
    font-size: 1.5rem;
    /* font-weight: bold; */
    margin-bottom: 30px;
    max-width: 800px;
    line-height: 1.6;
    text-align: center;
    /* Centers the text inside the paragraph */
    margin-left: auto;
    /* Centers the paragraph horizontally */
    margin-right: auto;
    /* Centers the paragraph horizontally */
}

/* Card Rows */
.fifth-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
}

.fifth-row.centered {
    justify-content: center;
}

.fifth-card {
    /* background: linear-gradient(to right, #c20909, #f06565); */
    background-color: #c20808;
    border-radius: 8px;
    padding: 20px;
    width: 48%;
    /* width: 40%; */
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.fifth-card:hover {
    transform: translateY(-10px);
}

.fifth-card-img {
    width: 13%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

.fifth-card-heading {
    font-size: 1.5em;
    margin-bottom: 15px;
}

.fifth-card-text {
    font-size: 1em;
    line-height: 1.6;
}

/* Media Queries for responsiveness */
@media (max-width: 1024px) {
    .fifth-row {
        justify-content: center;
    }

    .fifth-card {
        width: 45%;
    }
}

@media (max-width: 768px) {
    .fifth-heading {
        font-size: 2.5em;
        margin-top: -139px;
    }

    .fifth-paragraph {
        font-size: 1em;
    }

    .fifth-row {
        flex-direction: column;
        align-items: center;
    }

    .fifth-card {
        width: 80%;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .fifth-heading {
        font-size: 2em;
    }

    .fifth-paragraph {
        font-size: 0.9em;
    }
}

/* fifth section end */



/* footer start */

/* include hua wa ha index.php par */

/* footer end */



/* faq start */
   /* Main Heading */
   .faq-heading {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #c20808;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.0s ease;
  }

  .faq-heading:hover {
    color: #c20808;
    text-decoration: underline;
  }

  /* Flex container for FAQ and image */
  .faq-wrapper {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center;     /* Center vertically */
    max-width: 1000px;
    width: 90%;
    margin: 20px auto;       /* Center the wrapper itself */
    gap: 30px;               /* Add some space between FAQ and Image */
}

  /* FAQ Container */
  .faq-container {
    max-width: 600px;
    width: 100%;
    background: #c20808; /* Changed from white to red */
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding-top: 20px;
  }

  .faq-item {
    border-bottom: 1px solid #e0e0e0;
    transition: all 0.0s ease;
  }

  .faq-item:last-child {
    border-bottom: none;
  }

  .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    background-color: #c20808; /* Changed from white to red */
    color: white; /* Changed from red to white */
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.0s ease, color 0.0s ease;
  }

  /* .faq-question:hover {
    background-color: #f8f8f8;
  } */

  .faq-question:hover {
    background-color: #a53b3b;
  }

  .faq-question i {
    font-size: 20px;
    transition: transform 0.0s ease, color 0.0s ease;
  }

  .faq-question.open {
    background-color: white; /* Changed from red to white */
    color: #c20808; /* Changed from white to red */
  }

  .faq-question.open i {
    transform: rotate(180deg);
    color: #c20808; /* Changed from white to red */
  }

  .faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.0s ease, padding 0.0s ease;    
    background-color: white; /* Changed from red to white */
    color: #555;
    line-height: 1.6;
  }

  .faq-answer.open {
    padding: 20px;
    max-height: 500px;
    background-color: #c20808; /* Changed from white to red */
    color: white;
  }

  .faq-answer ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-top: 10px;
  }

  .faq-answer ul li {
    margin-bottom: 8px;
  }

  /* Image on the right */
  .faq-image {
    max-width: 400px;
    width: 100%;
    display: block;
    object-fit: cover;
    border-radius: 10px;
    margin-left: 20px;
}

  /* Responsive Design */
  @media (max-width: 768px) {
    .faq-wrapper {
        flex-direction: column;  /* Stack the FAQ and image on smaller screens */
        gap: 20px;               /* Reduced gap for mobile */
    }

    .faq-container {
      max-width: 100%;
    }

    .faq-image {
        max-width: 80%;
        margin-top: 20px;
    }
}
/* faq end */



