:root {
    --primary-color: #991b1b;
    --secondary-color: #dc2626 ;
    --background-color: #f5f5f500;
    --dark-color: black;
    --border-color:rgb(0 0 0 / 17%);
}

html, body {
    overflow-x: hidden; 
    margin: 0; 
    padding: 0; 
}

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
    background-color: var(--background-color);
}

header {
    display: flex;
    justify-content: center; 
    align-items: center; 
    background-color: #000000c2; 
    padding: 5px;
    position: sticky;
    top: 0;
    z-index: 1000; 
    width: 100%;
}

.logo {
    text-align: center;
    margin-right: 50px;
}

.logo img {
    height: 50px;
    display: block;
    margin: 0 auto;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 35px;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline;
}

nav ul li a {
    text-decoration: none;
    font-size: 23px;
    color: white;
    font-weight: bold;
    font-style: italic;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--secondary-color);
}

.hamburger {
    display: none; 
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    margin-left: auto;
    position: absolute; 
    right: 20px;
    top: 25px;
}

.hamburger .bar {
    width: 30px;
    height: 4px;
    background-color: white;
}

@media screen and (max-width: 1000px) {
    header {
        display: flex; 
        justify-content: center; 
        padding: 10px 0;
    }

    .logo {
        margin-right: 0;
        flex: 1; 
    }

    nav ul {
        display: none; 
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        background-color: #000000;
        position: absolute;
        top: 70px; 
        left: 0;
        padding: 20px 0;
    }

    nav ul li {
        display: block;
    }

    .hamburger {
        display: flex; 
    }

    nav.active ul {
        display: flex; 
    }
}

.slider {
    position: relative;
    height: 70vh;
    max-width: 100%;
    z-index: 1; 
}

.video-container {
    position: absolute;
    top: -70px;
    left: 0;
    width: 100%;
    height: 110%;
    z-index: 0;
    overflow: hidden;
    background-color: #000; 
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.slideoverlay {
    position: absolute;
    top: -70px;
    left: 0;
    width: 100%;
    height: 110%;
    background-color: rgba(0, 0, 0, 0.5); 
    z-index: 2; 
}

.text {
    position: absolute;
    font-weight: bold;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 3; 
}

.text h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 25px;
    cursor: pointer;
    margin-top: 10px;
    font-weight: bold;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: var(--secondary-color);
}


@media screen and (max-width: 768px) {
    .video-container {
        top: 0; 
        height: 99%; 
    }

    .slideoverlay {
        top: -94px;
    }
}

@media screen and (max-width: 480px) {
    .video-container {
        top: 0;
        height: 99%;
    }

    .slideoverlay {
        top: -94px;
    }
}

@media screen and (max-width: 480px) {
    .slider {
        height: 70vh;
    }

    .text h2 {
        font-size: 11vw;
    }

    .button {
        font-size: 15px;
        padding: 8px 15px;
    }
}

@media screen and (min-width: 481px) and (max-width: 600px) {
    .slider {
        height: 70vh;
    }

    .text h2 {
        font-size: 9vw;
    }

    .button {
        font-size: 15px;
        padding: 10px 20px;
    }
}

@media screen and (min-width: 601px) and (max-width: 768px) {
    .slider {
        height: 70vh;
    }

    .text h2 {
        font-size: 6vw;
    }

    .button {
        font-size: 17px;
        padding: 10px 25px;
    }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
    .slider {
        height: 70vh;
    }

    .text h2 {
        font-size: 5vw;
    }

    .button {
        font-size: 17px;
        padding: 12px 25px;
    }
}

@media screen and (min-width: 1025px) and (max-width: 1366px) {
    .slider {
        height: 70vh;
    }

    .text h2 {
        font-size: 4vw;
    }

    .button {
        font-size: 18px;
        padding: 12px 25px;
    }
}

@media screen and (min-width: 1367px) and (max-width: 1920px) {
    .slider {
        height: 70vh;
    }

    .text h2 {
        font-size: 3vw;
    }

    .button {
        font-size: 18px;
        padding: 12px 30px;
    }
}

@media screen and (min-width: 1921px) and (max-width: 2560px) {
    .slider {
        height: 70vh;
    }

    .text h2 {
        font-size: 3vw;
    }

    .button {
        font-size: 30px;
        padding: 14px 30px;
    }
}

@media screen and (min-width: 2561px) {
    .slider {
        height: 70vh;
    }

    .text h2 {
        font-size: 3vw;
    }

    .button {
        font-size: 30px;
        padding: 14px 30px;
    }
}  


.home-banner{
    min-height: 25vh;
    padding: 1rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-banner h1{
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0;
}


.home-about-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5vw 8vw;
    background: #fff;
    max-width: 1600px;
    margin: auto;
    overflow: hidden; 
}

.home-about-image-container {
    position: relative;
    width: 50%;
    opacity: 0; 
    transform: translateX(-50px); 
    transition: opacity 1s ease, transform 1s ease;
}

.home-about-main-image {
    width: 100%;
    border-radius: 8px;
    opacity: 0; 
    transform: translateY(20px); 
    transition: opacity 1s ease, transform 1s ease;
}

.home-about-overlay-image {
    position: absolute;
    bottom: 20%;
    left: 45%;
    border: 5px solid white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    opacity: 0; 
    transform: translateY(50px); 
    transition: opacity 1s ease, transform 1s ease;
}

.home-about-overlay-image img {
    width: 100%;
    display: block;
    border-radius: 8px;
}

.home-about-content {
    width: 45%;
    opacity: 0; 
    transform: translateX(50px); 
    transition: opacity 1s ease, transform 1s ease;
}

.home-about-content h3 {
    color: var(--primary-color);
    font-size: 1.2vw;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.home-about-content h1 {
    font-size: 3vw;
    font-weight: bold;
    margin-bottom: 15px;
}

.highlight {
    color: var(--secondary-color);
    font-weight: bold;
}

.home-about-content p {
    text-align: justify;
    font-size: 1.1vw;
    line-height: 1.6;
    color: var(--dark-color);
}

.home-about-section.active .home-about-image-container,
.home-about-section.active .home-about-main-image,
.home-about-section.active .home-about-overlay-image,
.home-about-section.active .home-about-content {
    opacity: 1;
    transform: translateX(0);
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .home-about-section {
        flex-direction: column;
        text-align: center;
    }

    .home-about-image-container, .home-about-content {
        width: 100%;
    }

    .home-about-main-image {
        display: none;
    }

    .home-about-overlay-image {
        position: relative;
        margin: 20px auto;
        left: 0;
    }

    .home-about-content h3 {
        font-size: 3vw;
    }

    .home-about-content h1 {
        font-size: 5vw;
    }

    .home-about-content p {
        font-size: 2.5vw;
    }
}
@media (max-width: 768px) {
    .home-about-main-image {
        display: none;
    }

    .home-about-content h3 {
        font-size: 4vw;
    }

    .home-about-content h1 {
        font-size: 6vw;
    }

    .home-about-content p {
        font-size: 3vw;
    }
}

@media (max-width: 480px) {
    .home-about-content h1 {
        font-size: 7vw;
    }

    .home-about-content p {
        font-size: 3.5vw;
    }
}

@media (min-width: 1920px) {
    .home-about-section {
        max-width: 1800px;
    }

    .home-about-content h3 {
        font-size: 24px;
    }

    .home-about-content h1 {
        font-size: 42px;
    }

    .home-about-content p {
        font-size: 18px;
    }
}

.home {
    position: relative;
    width: 100%;
    height: 65vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 7%;
    overflow: hidden;
    opacity: 0; 
    transform: translateX(50px); 
    transition: opacity 0.6s ease, transform 0.6s ease; 
}

.home.show {
    opacity: 1;
    transform: translateX(0); 
}

.home-content {
    max-width: 700px;
    opacity: 0; 
    transform: translateX(50px); 
    transition: opacity 0.6s ease, transform 0.6s ease; 
}

.home-content.show {
    opacity: 1; 
    transform: translateX(0); 
}

.home-content h2 {
    color: var(--primary-color);
    font-size: 35px;
    line-height: 1.2;
}

.home-content p {
    color: var(--dark-color);
    font-size: 20px;
    margin: 15px 0 30px;
}

.home-img {
    position: relative;
    width: 450px;
    height: 450px;
    opacity: 0; 
    transform: rotate(45deg) translateX(50px); 
    transition: opacity 0.6s ease, transform 0.6s ease; 
}

.home-img.show {
    opacity: 1; 
    transform: rotate(45deg) translateX(0); 
}

.home-img .rhombus {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--background-color);
    border: 25px solid var(--secondary-color);
}

.home-img .rhombus img {
    position: absolute;
    top: 80%;
    left: 25%;
    transform: translate(-50%, -50%) rotate(-45deg);
    max-width: 700px; 
    max-height: 320px; 
}

@media (max-width: 1054px) {
    .home {
      flex-direction: column; 
      height: auto; 
      padding: 70px 5%; 
    }
  
    .home-content {
        padding: 30px;
      text-align: center; 
      max-width: 100%; 
      transform: translateX(0); 
    }
  
    .home-content h2 {
      font-size: 30px; 
    }
  
    .home-content p {
      font-size: 18px;
      margin: 10px 0 20px; 
    }
  
    .home-img {
      width: 300px; 
      height: 300px;
      margin-top: 50px; 
    }
  
    .home-img .rhombus {
      border: 15px solid var(--secondary-color); 
    }
  
    .home-img .rhombus img {
        left: 45%;
        top: 50%;
        max-width: 500px;
        max-height: 250px;
    }
}
  
@media (min-width: 260px) and (max-width: 550px) {
    .home {
      padding: 50px 3%; 
    }
  
    .home-content h2 {
      font-size: 25px; 
    }
  
    .home-content p {
      font-size: 16px; 
    }
  
    .home-img {
      width: 200px; 
      height: 200px;
      margin-top: 25px; 
    }
  
    .home-img .rhombus {
      border: 10px solid var(--secondary-color); 
    }
  
    .home-img .rhombus img {
        max-width: 300px;
        left: 50%;
        padding: 0px 0px 25px 0px;
        max-height: 160px;
        top: 50%;
    }
}

@media (min-width: 1330px) and (max-width: 1650px){
    .home {
        padding: 80px 5%; 
        height: 60vh; 
    }

    .home-content {
        max-width: 650px; 
        opacity: 1;
        transform: translateX(0); 
    }

    .home-content h2 {
        font-size: 30px; 
    }

    .home-content p {
        font-size: 18px; 
        margin: 10px 0 20px;
    }

    .home-img {
        width: 400px; 
        height: 400px; 
        opacity: 1;
        transform: rotate(45deg) translateX(0); 
    }

    .home-img .rhombus {
        border: 20px solid var(--secondary-color); 
    }

    .home-img .rhombus img {
        max-width: 575px; 
        max-height: 260px; 
        top: 60%;
        left: 40%;
    }
}
@media (min-width: 1055px) and (max-width: 1150px){
    .home {
        padding: 80px 5%; 
        height: 60vh; 
    }

    .home-content {
        max-width: 650px; 
        opacity: 1;
        transform: translateX(0); 
    }

    .home-content h2 {
        padding: 0 50px 0 0px;
        font-size: 30px; 
    }

    .home-content p {
        font-size: 18px; 
        margin: 10px 165px 20px 0;
    }

    .home-img {
        width: 300px; 
        height: 300px; 
        opacity: 1;
        transform: rotate(45deg) translateX(0); 
    }

    .home-img .rhombus {
        border: 20px solid var(--secondary-color); 
    }

    .home-img .rhombus img {
        max-width: 430px;
        max-height: 200px;
        top: 65%;
        left: 35%;
    }
}

@media (min-width: 1151px) and (max-width: 1329px){
    .home {
        padding: 80px 5%; 
        height: 60vh; 
    }

    .home-content {
        max-width: 650px; 
        opacity: 1;
        transform: translateX(0); 
    }

    .home-content h2 {
        padding: 0 50px 0 0px;
        font-size: 30px; 
    }

    .home-content p {
        font-size: 18px; 
        margin: 10px 165px 20px 0;
    }

    .home-img {
        width: 350px; 
        height: 350px; 
        opacity: 1;
        transform: rotate(45deg) translateX(0); 
    }

    .home-img .rhombus {
        border: 20px solid var(--secondary-color); 
    }

    .home-img .rhombus img {
        max-width: 550px;
        max-height: 280px;
        top: 65%;
        left: 35%;
    }
}

.home-aboutus-image-container {
    position: relative;
    width: 100%;
    height: 500px; 
    overflow: hidden;
}

.home-aboutus-background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.homeaboutusoverlay {
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); 
}

.home-aboutus-content {
    z-index: 99;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    font-size: 18px;
    max-width: 80%;
    line-height: 1.6;
}

.home-aboutus-content h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--primary-color); 
}

.home-aboutus-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.home-aboutus-content p {
    font-size: 18px;
    color: #fff;
}


@media screen and (max-width: 480px) {
    .home-aboutus-content {
        font-size: 14px;
        max-width: 90%; 
    }

    .home-aboutus-content h2 {
        font-size: 21px;
    }

    .home-aboutus-content h3 {
        font-size: 15px;
    }

    .home-aboutus-content p {
        font-size: 12px;
        color: #fff;
    }

    .home-aboutus-image-container {
        height: 400px;
    }
}

@media screen and (min-width: 481px) and (max-width: 768px) {
    .home-aboutus-content {
        font-size: 16px;
        max-width: 85%; 
    }

    .home-aboutus-content h2 {
        font-size: 30px;
    }

    .home-aboutus-content h3 {
        font-size: 20px;
    }

    .home-aboutus-content p {
        font-size: 18px;
        color: #fff;
    }

    .home-aboutus-image-container {
        height: 450px;
    }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
    .home-aboutus-content {
        font-size: 18px;
        max-width: 80%; 
    }

    .home-aboutus-content h2 {
        font-size: 34px;
    }

    .home-aboutus-content h3 {
        font-size: 28px;
    }

    .home-aboutus-content p {
        font-size: 20px;
        color: #fff;
    }

    .home-aboutus-image-container {
        height: 500px;
    }
}

@media screen and (min-width: 1025px) and (max-width: 1440px) {
    .home-aboutus-content {
        font-size: 18px;
        max-width: 80%;
    }

    .home-aboutus-content h2 {
        font-size: 35px;
    }

    .home-aboutus-content h3 {
        font-size: 30px;
    }

    .home-aboutus-image-container {
        height: 550px;
    }

    .home-aboutus-content p {
        font-size: 20px;
        color: #fff;
    }
}

@media screen and (min-width: 1441px) {
    .home-aboutus-content {
        font-size: 20px;
        max-width: 70%;
    }

    .home-aboutus-content h2 {
        font-size: 40px;
    }

    .home-aboutus-content h3 {
        font-size: 35px;
    }

    .home-aboutus-content p {
        font-size: 25px;
        color: #fff;
    }

    .home-aboutus-image-container {
        height: 600px; 
    }
}

.vin-container {
    width: 100%;
    margin: 0 auto;
    padding: 20px;
}

.image-section {
    text-align: center;
    margin-bottom: 30px;
}

.image-section img {
    max-width: 100%;
    height: auto;
    opacity: 0; 
    transform: translateY(50px); 
    transition: opacity 0.6s ease, transform 0.6s ease; 
}

.image-section img.show {
    opacity: 1; 
    transform: translateY(0); 
}

.factors-section {
    text-align: center;
}

.factors-section h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.factor-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 20px;
    padding: 0 170px 0;
    margin-top: 20px;
}

.factor {
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px 4px var(--border-color);
    opacity: 0; 
    transform: translateY(50px); 
    transition: opacity 0.6s ease, transform 0.6s ease; 
}

.factor.show {
    opacity: 1; 
    transform: translateY(0); 
}

.factor h3 {
    text-align: left;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.factor p {
    color: var(--dark-color);
    padding-right: 25px;
    text-align: left;
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .factor-grid {
        grid-template-columns: 1fr; 
        padding: 0 20px; 
    }

    .image-section img {
        max-width: 90%; 
    }
    .factor h3 {
        text-align: left;
        font-size: 25px;
        color: var(--primary-color);
        margin-bottom: 10px;
    }
    
    .factor p {
        text-align: left;
        font-size: 20px;
        line-height: 1.6;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .factor-grid {
        grid-template-columns: repeat(2, 1fr); 
        padding: 0 50px; 
    }

    .image-section img {
        max-width: 80%; 
    }
    .factor h3 {
        text-align: left;
        font-size: 20px;
        color: var(--primary-color);
        margin-bottom: 10px;
    }
    
    .factor p {
        text-align: left;
        font-size: 16px;
        line-height: 1.6;
    }
}

@media (min-width: 1025px) {
    .factor-grid {
        grid-template-columns: repeat(3, 1fr); 
        padding: 0 170px; 
    }
    .factor h3 {
        text-align: left;
        font-size: 20px;
        color: var(--primary-color);
        margin-bottom: 10px;
    }
    
    .factor p {
        text-align: left;
        font-size: 17px;
        line-height: 1.6;
    }
}
.factor i {
    font-size: 40px;
    text-align: left;
    color: var(--dark-color);  
    margin-bottom: 15px; 
    display: block;
    margin: 0 auto; 
    transition: transform 0.3s ease, color 0.3s ease; 
}


.factor i:hover {
    transform: scale(1.1); 
    color: var(--secondary-color); 
}

@media (max-width: 768px) {
    .factor i {
        font-size: 30px; 
        margin-bottom: 10px; 
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .factor i {
        font-size: 35px; 
        margin-bottom: 12px; 
    }
}


.trusted-sources {
    text-align: center;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0px 4px 8px 4px var(--border-color);
    width: 100%;
    margin: 20px auto;
    border-radius: 8px;
    opacity: 0; 
    transform: translateX(50px); 
    transition: opacity 0.6s ease, transform 0.6s ease; 
}

.trusted-sources.show {
    opacity: 1;
    transform: translateX(0); 
}

.trusted-sources h2 {
    font-size: 25px;
    font-weight: bolder;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.trusted-sources #source_p {
    font-size: 20px;
    font-weight: normal;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.trusted-sources .logos {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.trusted-sources .logos img {
    max-height: 60px;
    width: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trusted-sources .logos img:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 768px) {
    .trusted-sources {
        padding: 15px; 
    }

    .trusted-sources h2 {
        font-size: 20px; 
        margin-bottom: 15px;
    }

    .trusted-sources #source_p {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .trusted-sources .logos {
        gap: 10px;
    }

    .trusted-sources .logos img {
        max-height: 50px; 
    }
}

@media screen and (max-width: 1024px) {
    .trusted-sources {
        padding: 18px; 
    }

    .trusted-sources h2 {
        font-size: 22px;
    }

    .trusted-sources #source_p {
        font-size: 18px; 
    }

    .trusted-sources .logos img {
        max-height: 55px; 
    }
}

.testimonials {
    z-index: 10;
    padding: 40px 0;
    background: var(--background-color);
    color: var(--dark-color);
    text-align: center;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    min-height: 300px;
    overflow: hidden;
    display: block;
}

.testimonials, .reviews {
    will-change: transform, opacity;
}

.testimonials.show {
    opacity: 1;
    transform: translateX(0);
}

.inner {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    display: block;
    overflow: hidden;
}

.border {
    width: 160px;
    height: 5px;
    background: var(--secondary-color);
    margin: 26px auto;
}

.testimonials .inner .row {
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonials .inner .col {
    flex: 33.33%;
    max-width: 33.33%;
    box-sizing: border-box;
    padding: 9px;
    display: flex;
    justify-content: center;
}

.reviews {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px 4px var(--border-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: auto; 
    min-height: 300px;  
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease, transform 0.6s ease; 
}

.reviews.show {
    opacity: 1;
    transform: translateY(0);
}

.reviews img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.name {
    font-size: 20px;
    text-transform: uppercase;
    margin: 20px 0;
}

.stars {
    color: gold;
    margin-bottom: 20px;
}

@media (min-width: 1440px) {
    .testimonials .inner .col {
        flex: 25%;
        max-width: 25%;
    }
}

@media (max-width: 1439px) and (min-width: 1024px) {
    .testimonials .inner .col {
        flex: 33.33%;
        max-width: 33.33%;
    }
}

@media (max-width: 1023px) and (min-width: 768px) {
    .testimonials .inner .col {
        flex: 50%;
        max-width: 50%;
    }
    .reviews {
        padding: 30px;
    }
    .name {
        font-size: 18px;
    }
}

@media (max-width: 767px) and (min-width: 576px) {
    .testimonials .inner .col {
        flex: 100%;
        max-width: 100%;
    }
    .reviews img {
        width: 70px;
        height: 70px;
    }
    .reviews {
        padding: 25px;
    }
    .name {
        font-size: 16px;
    }
}

@media (max-width: 575px) and (min-width: 375px) {
    .testimonials .inner .col {
        flex: 100%;
        max-width: 100%;
    }
    .reviews img {
        width: 60px;
        height: 60px;
    }
    .reviews {
        padding: 20px;
    }
    .name {
        font-size: 14px;
    }
    .border {
        width: 100px;
    }
}

@media (max-width: 374px) {
    .testimonials .inner .col {
        flex: 100%;
        max-width: 100%;
    }
    .reviews img {
        width: 50px;
        height: 50px;
    }
    .reviews {
        padding: 15px;
    }
    .name {
        font-size: 12px;
    }
    .border {
        width: 80px;
    }
}

.carousel-container {
    font-family: Arial, sans-serif;
    background-color: var(--background-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 100%;
    margin: 50px auto;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px 4px var(--border-color);
    position: relative; 
}

.carousel-container h3 {
    font-size: 20px;
    letter-spacing: 1px;
    color: var(--dark-color);
    margin-bottom: 5px;
    text-transform: uppercase;
}

.carousel-container h2 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.country-carousel {
    display: flex;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.carousel-items {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%; 
}

.carousel-item {
    flex: 0 0 30%; 
    margin: 0 10px;  
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-item img {
    width: 70%;  
    height: 180px;  
}

.carousel-arrow {
    display: none;
}

@media (max-width: 1024px) {
    .carousel-item {
        flex: 0 0 45%; 
    }

    .carousel-item img {
        width: 60%;  
        height: 160px;  
    }
}

@media (max-width: 600px) {
    .carousel-item {
        flex: 0 0 100%; 
    }

    .carousel-item img {
        width: 60%;  
        height: 150px;  
    }
}

footer {
    position: relative;
    background-image: url('Img/footerbg.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 40px 0;
    overflow: hidden;
}

footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); 
    z-index: 1;
}

.footercontainer {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footerLeft,
.footerCenter,
.footerRight {
    padding: 50px 20px 0;
    flex: 1;
    text-align: left;
}

.footerLogo,
.footerDVLA {
    width: 150px;
    margin-bottom: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.footerDescription {
    font-size: 18px;
    margin: 20px 0;
    line-height: 1.6;
}

.footeremail p {
    font-size: 18px;
    margin: 10px 0;
}

.footeremail li {
    text-decoration: none;
    list-style: none;
}

.footeremail span {
    color: var(--secondary-color);
    font-weight: bold;
}

.footerCenter {
    font-style: italic;
    text-align: center;
    font-weight: bold;
}

.footerCenter h3 {
    font-size: 26px;
    color: var(--secondary-color);
}

.footerCenter ul {
    text-decoration: none;
    list-style: none;
    padding: 15px 0 0;
    margin: 0;
}

.footerCenter li {
    margin: 10px 0;
}

.footerCenter a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    transition: color 0.3s ease;
}

.footerCenter a:hover {
    color: var(--secondary-color);
}

.footerRight {
    text-align: right;
}

.footerRight p {
    text-align: center;
    font-size: 18px;
    margin: 10px 0;
}

.footerbottom {
    color: var(--secondary-color);
    position: relative;
    z-index: 2;
    text-align: center;
    font-size: 18px;
    padding: 15px 0;
    background: rgba(0, 0, 0, 0.7);
}

@media (max-width: 1024px) {
    .footercontainer {
        flex-direction: column;
        align-items: center;
    }

    .footerLeft,
    .footerCenter,
    .footerRight {
        padding-top: 20px;
        text-align: center;
        margin-bottom: 20px;
    }

    .footerCenter ul {
        padding: 0;
    }
}

@media (max-width: 768px) {
    .footerDescription,
    .footeremail p,
    .footerCenter h3,
    .footerCenter a,
    .footerRight p,
    .footerbottom {
        font-size: 16px;
    }

    .footerLogo,
    .footerDVLA {
        width: 130px;
    }
}

@media (max-width: 480px) {
    .footerDescription,
    .footeremail p,
    .footerCenter h3,
    .footerCenter a,
    .footerRight p,
    .footerbottom {
        font-size: 14px;
    }

    .footerLogo,
    .footerDVLA {
        width: 110px;
    }
}

@media (min-width: 1920px) {
    .footercontainer {
        max-width: 1600px;
    }

    .footerDescription,
    .footeremail p,
    .footerCenter h3,
    .footerCenter a,
    .footerRight p,
    .footerbottom {
        font-size: 22px;
    }

    .footerLogo,
    .footerDVLA {
        width: 180px;
    }
}

@media (min-width: 1920px) {
    .footercontainer {
        max-width: 1800px;
    }

    .footerDescription,
    .footeremail p,
    .footerCenter h3,
    .footerCenter a,
    .footerRight p,
    .footerbottom {
        font-size: 24px;
    }

    .footerLogo,
    .footerDVLA {
        width: 200px;
    }
}

.about-us {
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 50px 10%;
    background-color: var(--background-color);
    opacity: 0; 
    transform: translateY(20px); 
    transition: opacity 0.6s ease, transform 0.6s ease; 
}

.about-us.active {
    opacity: 1; 
    transform: translateY(0); 
}

.about-us h2 {
    font-size: 35px;
    color: var(--primary-color);
    position: relative;
    margin-bottom: 25px;
    opacity: 0; 
    transform: translateX(100%); 
    transition: transform 0.5s ease, opacity 0.5s ease; 
}

.about-us h2.active {
    transform: translateX(0); 
    opacity: 1;
}

.about-us p {
    color: var(--dark-color);
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0;
    transform: translateX(100%); 
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.about-us p.active {
    transform: translateX(0); 
    opacity: 1;
}

.aboutimage {
    flex: 1;
    margin-right: 40px;
    overflow: hidden;
    opacity: 0; 
    transform: translateX(100%); 
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.aboutimage img {
    max-width: 100%;
    height: auto;
    display: block;
}

.aboutimage.active {
    opacity: 1; 
    transform: translateX(0); 
}

.our-mission {
    position: relative;
    width: 100%;
    height: auto; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; 
    padding: 50px 10%;
    overflow: hidden;
    opacity: 0; 
    transform: translateX(50px); 
    transition: opacity 0.6s ease, transform 0.6s ease; 
}

.our-mission.show {
    opacity: 1; 
    transform: translateX(0); 
}

.our-mission-content {
    max-width: 700px;
    opacity: 0; 
    transform: translateX(50px); 
    transition: opacity 0.6s ease, transform 0.6s ease; 
}

.our-mission-content.show {
    opacity: 1; 
    transform: translateX(0); 
}

.our-mission-content h2 {
    font-size: 35px;
    color: var(--primary-color);
    line-height: 1.2;
}

.our-mission-content p {
    color: var(--dark-color);
    font-size: 20px;
    margin: 15px 0 30px;
}

.our-mission-img {
    position: relative;
    width: 450px;
    height: 450px;
    opacity: 0; 
    transform: translateX(50px); 
    transition: opacity 0.6s ease, transform 0.6s ease; 
}

.our-mission-img.show {
    opacity: 1; 
    transform: translateX(0); 
}

.our-mission-img img {
    position: absolute;
    left: -280px;
    max-width: 750px;
    transition: transform 0.6s ease; 
}

.aboutus-image-container {
    padding: 10px 0 50px;
    position: relative;
    max-width: 100%;
    height: 600px;
    overflow: hidden;
    opacity: 0; 
    transform: translateY(20px); 
    transition: opacity 0.6s ease, transform 0.6s ease; 
}

.aboutus-image-container.active {
    opacity: 1; 
    transform: translateY(0); 
}

.aboutus-background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aboutoverlay {
    position: absolute;
    left: 0;
    width: 100%;
    height: 90%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.aboutus-content {
    font-size: 18px;
    position: absolute;
    top: 50%; 
    left: 50%;
    transform: translate(-50%, -50%); 
    text-align: center;
    color: white;
    z-index: 2;
    opacity: 0; 
    transform: translateY(20px); 
    transition: opacity 0.6s ease, transform 0.6s ease; 
}

.aboutus-content.active {
    opacity: 1; 
    transform: translate(-50%, -50%) translateY(0); 
}

.aboutus-content span {
    font-weight: bold;
}

@media (max-width: 426px) {
    .about-us {
        padding: 20px 5%; 
    }

    .about-us h2 {
        font-size: 28px; 
    }

    .about-us p {
        font-size: 18px;
        margin-bottom: 20px; 
    }

    .aboutimage {
        margin-right: 0; 
        margin-top: 20px; 
        width: 100%; 
        transform: translateX(0); 
    }

    .about-us .aboutus-image-container {
        height: 400px; 
    }

    .our-mission {
        flex-direction: column; 
        padding: 20px 5%; 
    }

    .our-mission-content, 
    .our-mission-img {
        max-width: 100%; 
        width: 100%;
        margin-bottom: 20px; 
    }

    .our-mission-img {
        max-height: 200px; 
    }

    .our-mission-content {
        margin-bottom: 20px; 
    }

    .aboutus-content {
        width: 80%; 
        transform: translateY(0); 
    }

    .our-mission-img img {
        width: 100%; 
        height: auto; 
        object-fit: cover; 
        left: 0px;
    }
}

@media (min-width: 768px) and (max-width: 1200px) {
    .about-us {
        padding: 40px 7%; 
    }

    .about-us h2 {
        font-size: 32px; 
    }

    .about-us p {
        font-size: 18px;
        margin-bottom: 25px;
    }

    .aboutimage {
        margin-right: 20px; 
    }

    .about-us .aboutus-image-container {
        height: 500px; 
    }

    .our-mission {
        padding: 40px 7%; 
    }

    .our-mission-content, 
    .our-mission-img {
        max-width: 90%;
        width: 100%;
        margin-bottom: 25px; 
    }

    .our-mission-img {
        max-height: 500px; 
    }
    .our-mission-img img {
        left: 0px;
        width: 100%;
        height: auto; 
        object-fit: cover; 
    }
}

@media (min-width: 427px) and (max-width: 767px) {
    .about-us {
        padding: 40px 7%; 
    }

    .about-us h2 {
        font-size: 32px; 
    }

    .about-us p {
        font-size: 18px;
        margin-bottom: 25px;
    }

    .aboutimage {
        margin-right: 20px; 
    }

    .about-us .aboutus-image-container {
        height: 500px; 
    }

    .our-mission {
        padding: 0px 7%; 
    }

    .our-mission-content, 
    .our-mission-img {
        max-width: 100%;
        width: 100%;
        margin-bottom: 25px; 
    }

    .our-mission-img {
        max-height: 300px; 
    }
    .our-mission-img img {
        left: 0px;
        width: 100%;
        height: auto; 
        object-fit: cover; 
    }
}

@media (min-width: 1201px) and (max-width: 1750px) {
    .about-us {
        padding: 40px 7%; 
    }

    .about-us h2 {
        font-size: 32px; 
    }

    .about-us p {
        font-size: 18px;
        margin-bottom: 25px;
    }

    .aboutimage {
        margin-right: 20px; 
    }

    .about-us .aboutus-image-container {
        height: 500px; 
    }

    .our-mission {
        padding: 0px 7%; 
    }

    .our-mission-content, 
    .our-mission-img {
        max-width: 100%;
        width: 100%;
        margin-bottom: 25px; 
    }

    .our-mission-img {
        max-height: 500px; 
    }
    .our-mission-img img {
        left: 180px;
        width: 100%;
        height: auto; 
        object-fit: cover; 
    }
}

@media (min-width: 1751px) and (max-width: 2180px) {
    .about-us {
        padding: 60px 15%;
    }

    .about-us h2 {
        font-size: 40px;
    }

    .about-us p {
        font-size: 22px;
        margin-bottom: 40px;
    }

    .aboutimage img {
        max-width: 120%;
        height: auto;
    }

    .our-mission {
        padding: 0px 15%;
    }

    .our-mission-content h2 {
        font-size: 40px;
        position: relative;
        right: 100px;
    }

    .our-mission-content p {
        font-size: 30px;
        position: relative;
        right: 100px;
    }

    .our-mission-img {
        width: 500px;
        height: 500px;
    }

    .our-mission-content {
        right: 50px;
    }

    .our-mission-img img {
        width: 150%;
        left: -100px;
    }
}

@media (min-width: 2181px) and (max-width: 3840px) {
    .about-us {
        padding: 80px 20%;
    }

    .about-us h2 {
        font-size: 50px;
    }

    .about-us p {
        font-size: 28px;
        margin-bottom: 50px;
    }

    .aboutimage img {
        max-width: 140%;
        height: auto;
    }

    .our-mission {
        padding: 0px 20%;
    }

    .our-mission-content h2 {
        font-size: 50px;
        position: relative;
        right: 50px;
    }

    .our-mission-content p {
        font-size: 28px;
        position: relative;
        right: 50px;
    }

    .our-mission-img {
        width: 600px;
        height: 600px;
    }

    .our-mission-img img {
        width: 150%;
        left: -50px;
    }
}


.upper-section {
    background-color: #FFFFFF;
    color: var(--primary-color);
    text-align: center;
    padding: 40px 20px;
    border-bottom: 4px solid var(--secondary-color);
    opacity: 0; 
    transform: translateY(20px); 
    transition: opacity 0.6s ease, transform 0.6s ease; 
}
.upper-section span{
    font-weight: bold;
}

.upper-section.active {
    opacity: 1; 
    transform: translateY(0); 
}

.upper-section h1,
.upper-section p {
    opacity: 0; 
    transform: translateX(100%); 
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.upper-section h1.active,
.upper-section p.active {
    transform: translateX(0); 
    opacity: 1; 
}
.upper-section p.active{
    color: var(--dark-color);
}
.cta-button {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: var(--secondary-color);
}

.container h2 {
    text-align: center;
    margin-top: 40px;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.PricePlancontainer {
    padding: 40px 20px;
}

.section-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto; 
    min-height: 200px;
    margin: 20px 0;
    overflow: hidden;
}

.category-image {
    max-width: 100%;
    max-height: 100%;
    border-radius: 8px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
}

.category-image.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 600px) {
    .image-container {
        min-height: 150px; 
        margin: 10px 0;
    }

    .category-image {
        max-width: 90%; 
        max-height: 90%;
    }
}

@media (min-width: 601px) and (max-width: 1024px) {
    .image-container {
        min-height: 250px; 
    }

    .category-image {
        max-width: 80%; 
        max-height: 80%;
    }
}

@media (min-width: 1025px) and (max-width: 1440px) {
    .image-container {
        min-height: 300px; 
    }

    .category-image {
        max-width: 70%; 
        max-height: 70%;
    }
}

@media (min-width: 1441px) {
    .image-container {
        min-height: 400px; 
    }

    .category-image {
        max-width: 60%; 
        max-height: 60%;
    }
}

/* === Override Default Package Styles === */
.package {
  background-color: #991b1b;
  padding: 2.5rem;
  width: 400px;
  border-radius: 12px;
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
}

.package h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  font-weight: 500;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.package h3 .popular-label {
  background: #000;
  color: #fff;
  font-size: 0.875rem;
  padding: 0.375rem 1rem;
  border-radius: 6px;
  font-weight: 600;
}

.package h3 span:first-child {
  background: #fff;
  color: #000;
  font-size: 0.875rem;
  padding: 0.375rem 1rem;
  border-radius: 6px;
  font-weight: 600;
}

/* Price & Duration (no HTML structure change) */
.price {
  font-size: 3rem;
  font-weight: bold;
  color: #fff;
  line-height: 1;
  text-align: left;
}

.duration {
  font-size: 0.9rem;
  color: #f5f5f5;
  text-align: left;
}

/* Buy Button */
.package .buy-button {
  background: #fff;
  color: #000;
  font-weight: 600;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1.2rem;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.3s ease;
  margin-bottom: 2rem;
  margin-top: 2rem;
  width: 100%;
}

.package .buy-button:hover {
  background: #f3f3f3;
}

/* Scrollable Description */
.scrollable-description {
  background: #fff;
  color: #333;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: left;
  max-height: 15rem;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #ccc #f1f1f1;
}

.scrollable-description::-webkit-scrollbar {
  width: 6px;
}
.scrollable-description::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.scrollable-description::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}
.scrollable-description::-webkit-scrollbar-thumb:hover {
  background: #999;
}

.scrollable-description ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.scrollable-description li {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.checkmark {
  color: #22c55e;
  font-size: 1rem;
  margin-right: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .section-container {
    flex-direction: column;
    align-items: center;
  }

  .package {
    width: 100%;
    padding: 1.5rem;
  }
}

main {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    background-color: white;
    box-shadow: 0px 4px 8px 4px var(--border-color);
    opacity: 0; 
    transform: translateY(20px); 
    transition: opacity 0.6s ease, transform 0.6s ease; 
}

main.active {
    opacity: 1; 
    transform: translateY(0); 
}

.Heading h2 {
    padding-top: 15px;
    justify-content: center;
    font-size: 35px;
    display: flex;
    color: var(--primary-color);
    opacity: 0; 
    transform: translateX(100%); 
    transition: transform 0.5s ease, opacity 0.5s ease; 
}

.Heading h2.active {
    transform: translateX(0); 
    opacity: 1;
}

.Heading p {
    font-size: 15px; 
    color: var(--dark-color); 
    line-height: 1.6; 
    margin: 10px 0; 
    text-align: center; 
    opacity: 0; 
    transform: translateX(100%); 
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.Heading p span {
    font-weight: bold; 
    display: inline; 
    margin: 0; 
    padding-left: 3px; 
}

.Heading p br {
    display: inline; 
}

.Heading p.active {
    transform: translateX(0); 
    opacity: 1;
}

.Subheading h2 {
    color: var(--secondary-color);
    font-size: 20px;
    opacity: 0; 
    transform: translateX(100%); 
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.Subheading h2.active {
    transform: translateX(0); 
    opacity: 1;
}

.Subheading p {
    color: var(--dark-color);
    font-size: 15px;
    line-height: 1.6;
    opacity: 0; 
    transform: translateX(100%); 
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.Subheading p.active {
    transform: translateX(0); 
    opacity: 1;
}

@media (max-width: 768px) {
    main {
        padding: 10px; 
    }

    .Heading h2 {
        font-size: 28px; 
        text-align: center; 
    }

    .Heading p {
        font-size: 14px; 
    }
    .Heading p span {
        padding-left: 2px; 
        font-weight: bold; 
    }

    .Subheading h2 {
        font-size: 18px; 
    }

    .Subheading p {
        font-size: 14px; 
    }
}

@media (max-width: 1024px) {
    main {
        padding: 20px; 
    }

    .Heading h2 {
        font-size: 30px; 
    }

    .Heading p {
        font-size: 15px; 
    }

    .Subheading h2 {
        font-size: 19px; 
    }

    .Subheading p {
        font-size: 15px; 
    }
    .Heading p span {
        font-weight: bold; 
        padding-left: 3px; 
    }
}

.checkoutcontainer {
    display: flex;
    max-width: 90%;
    justify-content: center;
    padding: 50px 20px;
    margin: 60px auto;
    background-color: var(--background-color);
    box-shadow: 0px 4px 8px 4px var(--border-color);
    border-radius: 10px;
}

.info-section {
    font-size: 20px;
    background-color: var(--primary-color);
    color: white;
    padding: 20px;
    flex: 1;
}

.form-section {
    padding: 20px;
    flex: 2;
    background-color: var(--background-color);
}

.form-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 15px;
    gap: 10px;
}

.form-group input,
.form-group select {
    width: 48%;
    padding: 10px;
    border: 1px solid var(--dark-color);
    border-radius: 4px;
}

.form-group button {
    width: 100%;
    padding: 12px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

.form-group button:hover {
    background-color: var(--secondary-color);
}

.terms-section {
    margin-top: 20px;
    padding: 15px;
    background-color: #f9f9f9;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.terms-section h3 {
    margin-bottom: 10px;
    font-size: 18px;
    color: var(--secondary-color);
}

.terms-section .term-item {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start; 
}

.terms-section input[type="checkbox"] {
    margin-right: 10px;
    cursor: pointer; 
    margin-top: 4px; 
}

.terms-section .term-description {
    font-size: 14px;
    color: var(--dark-color);
    margin: 0; 
}

.terms-section input[type="checkbox"]:required:invalid {
    border-color: red; 
}

.terms-section input[type="checkbox"]:required:valid {
    border-color: green; 
}

@media (max-width: 1200px) {
    .checkoutcontainer {
        flex-direction: column;
        max-width: 80%;
    }

    .info-section {
        margin-bottom: 20px;
    }

    .form-group input,
    .form-group select {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .checkoutcontainer {
        max-width: 95%;
        padding: 30px 10px;
    }

    .info-section {
        text-align: center;
    }

    .form-section {
        padding: 15px;
    }

    .form-group {
        flex-direction: column;
        gap: 15px;
    }

    .form-group input,
    .form-group select {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .checkoutcontainer {
        padding: 20px 5px;
    }

    .form-group button {
        font-size: 14px;
        padding: 10px;
    }

    .terms-section {
        padding: 10px;
    }

    .terms-section h3 {
        font-size: 16px;
    }

    .terms-section p {
        font-size: 12px;
    }
}

.contact-upper-section {
    background-color: #FFFFFF;
    color: var(--primary-color);
    text-align: center;
    padding: 40px 20px;
    border-bottom: 4px solid var(--secondary-color);
}

.contact-upper-section h1 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.contact-upper-section p {
    font-size: 1rem;
    text-align: left;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.contact-upper-section span {
    font-weight: bold;
}

.contact-upper-section span #website {
    padding-left: 5px;
}

.contactus-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.contact-section {
    display: flex;
    width: 80%;
    max-width: 1200px;
    background-color: var(--background-color);
    box-shadow: 0px 4px 8px 4px var(--border-color);
    overflow: hidden;
}

.contact-info {
    flex: 1;
    padding: 40px;
}

label {
    display: inline-block;
    padding-top: 5px;
    font-weight: bold;
}

.required {
    color: red;
    font-weight: bold;
    margin-left: 5px;
}

.contact-form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.contact-form-group input,
.contact-form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--dark-color);
    border-radius: 4px;
    font-size: 1em;
}

input[type="submit"] {
    padding: 12px 20px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1em;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: var(--secondary-color);
}

.error {
    color: red;
    font-size: 0.9em;
    margin-top: 5px;
}

.contact-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: var(--background-color);
}

.contact-image img {
    width: 130%;
    height: auto;
    object-fit: cover;
}

@media (max-width: 768px) {
    .contact-upper-section {
        padding: 20px 10px;
    }

    .contact-upper-section h1 {
        font-size: 1.5rem;
    }

    .contact-upper-section p {
        font-size: 0.9rem;
        text-align: center; 
    }

    .contactus-container {
        flex-direction: column; 
        padding: 20px 10px;
    }

    .contact-section {
        flex-direction: column; 
        width: 100%;
    }

    .contact-info {
        padding: 20px;
    }

    .contact-image {
        width: 100%;
        padding: 20px 0;
    }

    .contact-image img {
        width: 95%; 
        height: auto;
        object-fit: cover;
    }

    .contact-form-group input,
    .contact-form-group textarea {
        font-size: 0.9em;
    }

    input[type="submit"] {
        padding: 10px 15px;
    }
}

@media (min-width: 769px) and (max-width: 1200px) {
    .contact-upper-section {
        padding: 30px 15px;
    }

    .contact-upper-section h1 {
        font-size: 1.8rem;
    }

    .contact-upper-section p {
        font-size: 1rem;
    }

    .contactus-container {
        flex-direction: row; 
        padding: 30px 15px;
    }

    .contact-section {
        flex-direction: row;
        width: 90%;
    }

    .contact-info {
        padding: 30px;
    }

    .contact-image img {
        height: 482px;
        width: 237%; 
    }
}

@media (min-width: 1201px) {
    .contact-upper-section {
        padding: 60px 30px;
    }

    .contact-upper-section h1 {
        font-size: 2.5rem;
    }

    .contact-upper-section p {
        font-size: 1.2rem;
    }

    .contactus-container {
        padding: 60px 30px;
    }

    .contact-section {
        width: 70%;
    }

    .contact-info {
        padding: 50px;
    }

    .contact-image img {
        width: 272%;
        height: 560px;
        max-width: 1400px;
    }

    .contact-form-group input,
    .contact-form-group textarea {
        font-size: 1.2em;
    }

    input[type="submit"] {
        padding: 15px 25px;
        font-size: 1.2em;
    }
}

#tawkchat {
    position: fixed;
    bottom: 20px; 
    right: 20px;  
    z-index: 9999; 
    transition: all 0.3s ease;
}

#tawkchat iframe {
    border: none; 
    width: 350px; 
    height: 500px; 
}

@media (max-width: 1024px) {
    #tawkchat iframe {
        width: 300px; 
        height: 400px; 
    }
}

@media (max-width: 767px) {
    #tawkchat iframe {
        width: 250px; 
        height: 350px; 
    }
}

@media (max-width: 576px) {
    #tawkchat iframe {
        width: 220px; 
        height: 300px;
    }
}

@media (max-width: 767px) {
    #tawkchat {
        bottom: 10px; 
        right: 10px;  
    }
}

#tawkchat-button {
    background-color: var(--secondary-color); 
    width: 60px;
    height: 60px;
    border-radius: 50%; 
}

#tawkchat-button:hover {
    background-color: var(--primary-color); 
}


html {
    scroll-behavior: smooth;
}

.card-info {
    margin-top: 20px;
}

.card-info label {
    display: block;
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: bold;
}

.card-info input {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 100%;
    font-size: 16px;
}

#payment-method {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.payment-section {
    margin-top: 15px;
    display: none;
}

#card-element {
    width: 100%;
    height: 40px;
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 4px;
}

.error-message {
    color: #ff0000;
    font-size: 14px;
    margin-top: 10px;
}

#verification-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}


.popup-content h3 {
    margin-bottom: 10px;
    font-size: 24px;
    color: var(--dark-color);
}

.popup-content p {
    margin-bottom: 20px;
    font-size: 16px;
    color: var(--dark-color);
}

.popup-content input {
    width: 80%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    color: var(--dark-color);
}

.popup-content button {
    background-color: var(--primary-color); 
    color: #fff;
    border: none;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.popup-content button:hover {
    background-color: var(--secondary-color);
}

#close-popup {
    background-color: var(--primary-color); 
}

#close-popup:hover {
    background-color: var(--secondary-color); 
}

#resend-btn {
    background-color: var(--primary-color); 
}

#resend-btn:hover {
    background-color: var(--secondary-color); 
}


@media (max-width: 768px) {
    .popup-content {
        padding: 15px;
        width: 90%;
        max-width: 350px;
    }

    .popup-content h3 {
        font-size: 20px;
    }

    .popup-content p {
        font-size: 14px;
    }

    .popup-content input {
        width: 90%;
        font-size: 14px;
    }

    .popup-content button {
        width: 100%;
        font-size: 14px;
    }
}

#paypal-button-container {
    margin-top: 15px;
    text-align: center;
    width: 100%;
}

.payment-section {
    display: block;
}

#paypal-button-container button {
    background-color: #48CFCB; 
    border: none;
    color: white;
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
}

#paypal-button-container button:hover {
    background-color: #229799;
}

#paypal-section label {
    font-weight: bold;
    margin-bottom: 8px;
    display: block;
    color: #424242; 
}

.container-home-page-price {
  text-align: center;
  padding: 40px;
  background: #ffffff;
}

.container-home-page-price h1 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 40px;
}

.home-scrollable-packages {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  flex-wrap: wrap;
}

.package-home {
  background-color: #991b1b; /* deep red */
  padding: 2.5rem;
  width: 400px;
  border-radius: 12px;
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
}

.package-home h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  font-weight: 500;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.package-home h3 .badge {
  background: #ffffff;
  color: #000;
  font-size: .875rem;
  line-height: 1.25rem;
  padding: .375rem 1rem;
  border-radius: 6px;
  font-weight: 600;
}

.package-home h3 .badge:last-child {
  background: #000;
  color: #fff;
}

.price-home {
  font-size: 3rem;
  line-height: 1;
  font-weight: bold;
  margin: 10px 0;
  color: #fff;
  text-align: left;
}

.duration-home {
  font-size: 0.9rem;
  color: #f5f5f5;
}


.price-duration-wrap{
    display: flex;
    align-items: baseline;
    gap:2px;
}
.buy-button {
     background: #fff;
    color: #000;
    font-weight: 600;
    border: none;
    padding: .75rem 1.5rem;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: .375rem;
    transition: background 0.3s ease;
    margin-bottom: 2.5rem;
    margin-top: 2.5rem;
    width: 100%;
}

.buy-button:hover {
  background: #f3f3f3;
}

.home-scrollable-description {
  background: #fff;
  color: #333;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: left;
  max-height: 15rem;
  overflow-y: auto;
  scrollbar-width: thin;             /* Firefox */
  scrollbar-color: #ccc #f1f1f1;     /* Firefox */
}

/* Chrome, Edge, Safari Scrollbar */
.home-scrollable-description::-webkit-scrollbar {
  width: 6px;
}

.home-scrollable-description::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.home-scrollable-description::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}

.home-scrollable-description::-webkit-scrollbar-thumb:hover {
  background: #999;
}

.home-scrollable-description ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.home-scrollable-description li {
  font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 500;
      --tw-space-y-reverse: 0;
    margin-bottom: calc(1rem * var(--tw-space-y-reverse));
    margin-top: calc(1rem * (1 - var(--tw-space-y-reverse)));
  display: flex;
  align-items: center;
}

.home-checkmark {
  color: #22c55e; /* green check */
  font-size: 1rem;
  margin-right: 10px;
}

/* Responsive Styling */
@media (max-width: 768px) {
  .home-scrollable-packages {
    flex-direction: column;
    align-items: center;
  }

  .package-home {
    width: 100%;
    padding: 1.5rem;
  }
}
