/* General Reset */

html {
  scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* Header Background */
#header-bg {
    background-image: url(../images/new10.jpg);
    background-position: center;
    background-size: cover;
    height: 100vh;
    /* padding: 2rem 7rem; */
    font-family: 'Times New Roman', Times, serif;
    padding-bottom: 10rem;
    animation: change 20s infinite ease-in-out;
    
}

@keyframes change {
    40% {
        background-image: url(../images/new11.jpg);
    }
}

/* Logo Styling */
.logo {
    text-decoration: none;
    color: white;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 30pt;
    font-weight: 15rem;
}

/* Navigation */
#nav-links {
    padding-top: 0.5rem;
    display: flex;
    list-style: none;
    justify-content: center;
    align-items: center;
    gap: 70px;
    flex-wrap: wrap;
}

.nav {
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 4rem;
    padding-right: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 30px;
    background-color:white;
}

.nav img {
    width: 70px;
    padding-right: 2rem;
}

.nav-item a {
    text-decoration: none;
    color: black;
    font-size: 20px;
}

/* Navigation */
#nav-links {
    display: flex; /* Default display for larger screens */
    list-style: none;
    justify-content: center;
    align-items: center;
    gap: 70px;
    flex-wrap: wrap;
}

.hamburger {
    display: none; /* Hide the hamburger by default */
    cursor: pointer;
}

@media (max-width: 768px) {
    .hamburger {
        display: block; /* Show hamburger menu on mobile */
    }

    #nav-links {
        display: none; /* Hide the navigation links initially on mobile */
        position: absolute;
        top: 70px;
        right: 0;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        gap: 20px;
        padding: 20px 0;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    #nav-links.active {
        display: flex; /* Show navigation links when hamburger is active */
    }

    .nav-item a {
        font-size: 18px;
        color: black;
        padding: 10px 0;
    }
}


.hamburger {
    height: 50px;
    width: 40px;
    margin-left: auto;
    position: relative;
}
.hamburger span {
    height: 5px;
    width: 100%;
    background-color: #00A859;
    border-radius: 25px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: .3s ease;
}
.hamburger span:nth-child(1) {
    top: 25%;
}
.hamburger span:nth-child(3) {
    top: 75%;
}
.hamburger.active span {
    background-color: white;
}
.hamburger.active span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}


/* Header Text */
.header-text {
    color: white;
    font-size: 35px; 
    margin-top: 7rem;
    margin-bottom: 4rem;
    text-align: center;
    line-height: 1.5; 
}

.header-text p {
    font-size: 25px; 
    font-weight: bold;
}

/* Media Queries for Responsive Design */
@media (max-width: 1024px) {
    #header-bg {
        height: 60vh;
        padding: 2rem 5rem;
    }

    .header-text {
        font-size: 28px; 
        margin-top: 6rem;
        margin-bottom: 3rem;
    }

    .header-text p {
        font-size: 20px;
    }

    .logo {
        font-size: 24px;
    }

    #nav-links {
        gap: 20px;
    }

    .nav-item a {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    #header-bg {
        height: 50vh;
        padding: 1rem 3rem;
    }

    .header-text {
        font-size: 22px; /* Smaller font for smaller screens */
        margin-top: 5rem;
        margin-bottom: 2rem;
    }

    .header-text p {
        font-size: 20px;
    }

    .logo {
        font-size: 20px;
    }

    #nav-links {
        flex-direction: column; /* Stack navigation links vertically */
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .header-text {
        font-size: 18px;
        margin-top: 4rem;
        margin-bottom: 2rem;
    }

    .header-text p {
        font-size: 14px;
    }

    .view-btn {
        padding: 10px 20px;
        font-size: 14px; /* Smaller button text */
    }
}

/* Button Styling */
.view-btn {
    color: white;
    background-color: #FFA500;
    padding: 15px 25px;
    border: none;
    border-radius: 10px;
    text-decoration: none;
    font-size: 16px; /* Add consistent font size */
}

.view-btn:hover {
    background-color: #00A859
}

/* Download Section */
.download {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0; /* Add spacing */
}

@media (max-width: 768px) {
    #header-bg {
        height: 50vh; 
        padding: 2rem 3rem; 
    }

    .logo {
        font-size: 20pt; 
    }

    #nav-links {
        flex-direction: column; 
        gap: 15px; 
    }

    .nav img {
        width: 80px; 
    }

    .nav-item a {
        font-size: 16px; 
    }

    .header-text {
        font-size: 20pt; 
        margin-top: 5rem; 
        margin-bottom: 3rem;
    }
}

@media (max-width: 480px) {
    #header-bg {
        height: 40vh;
        padding: 2rem 2rem; 
    }

    .logo {
        font-size: 18pt; 
    }

    #nav-links {
        gap: 10px; 
    }

    .nav img {
        width: 60px;
    }

    .nav-item a {
        font-size: 14px;
    }

    .header-text {
        font-size: 18pt;
        margin-top: 4rem; 
        margin-bottom: 5rem;
    }
}


/* About Section */
.about-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem;
    gap: 2rem;
    background-color: #f5f5f5;
}

.about-content {
    flex: 1;
    padding: 2rem;
}

.about-content h2 {
    font-size: 2.5rem;
    color: black; 
    margin-bottom: 1.5rem;
}

.about-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: black;
}
.about-btn {
    color: white;
    background-color:#045142;
    padding: 15px 35px;
    border: none;
    border-radius: 2rem;
}

.about-image {
    flex: 1;
    text-align: center;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

    .about-content {
        padding: 1rem;
    }

    .about-image img {
        width: 90%;
    }
}


/* Services Section */
.services {
    background-color: #00A859;
}

.services-text {
    padding-top: 4rem;
    padding-bottom: 3rem;
    text-align: center;
    font-size: 40px;
    color: white;
}

.services-img h3 {
    color: white;
    font-size: 18px;
    text-align: left;
    padding-top: 4rem;
    padding: 5px 5px;
    padding-bottom: 3rem;
}

.services-images {
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 4rem;
    padding-left: 5rem;
    padding-right: 3rem;
}

.services-images img {
    border-radius: 10px;
    transition: transform 0.6s;
}

.services-images img:hover {
    transform: scale(1.1);
}

.services-images img {
    width: 100%;
    height: 80%;
    /* background-color: white; */
    /* color: white; */
    box-shadow: 0 4px 8px;
}

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

/* Footer Styling */
.footer {
    background-color: #00A859;
    color: #fff;
    padding: 40px 0;
}

.main {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding: 0 20px;
}

.list {
    width: 30%;
}

.list h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: white;
    border-bottom: 2px solid white;
    padding-bottom: 10px;
}

.list ul {
    list-style-type: none;
    padding: 0;
}

.list ul li {
    margin: 10px 0;
}

.list ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.list ul li a:hover {
    color: #ff9f00;
}

.social-media a {
    font-size: 20px;
    color: #fff;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.social-media a:hover {
    color: #ff9f00;
}

/* End Text */
.endText {
    text-align: center;
    background-color: #1f1f1f;
    padding: 10px 0;
    color: #fff;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .list {
        width: 80%;
        text-align: center;
    }

    .social-media a {
        font-size: 18px;
        margin-right: 10px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 0;
    }

    .list h4 {
        font-size: 16px;
    }

    .list ul li a {
        font-size: 14px;
    }

    .endText {
        font-size: 12px;
    }
}

.social a:hover {
    transform: scale(1.06);
}

/* Testimonials Section */
.testimonials-section {
    margin-top: 7rem;
    text-align: center;
    padding: 50px 20px;
    background-color: #f5f5f5;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: bold;
}

.swiper-container {
    width: 90%;
    max-width: 600px;
    margin: 0 auto;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.car-content {
    background-color: #045142bd;
    width: 100%;
    max-width: 500px;
    height: 200px;
    color: black;
    border-radius: 20px;
    text-align: center;
    padding: 20px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.car-content h5 {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
}

.car-content p {
    font-size: 16px;
    line-height: 1.5;
    color: white;
}

.testimonials-swiper {
    position: relative;
}

.testimonials-swiper .swiper-button-next,
.testimonials-swiper .swiper-button-prev {
    color: #045142bd;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.testimonials-swiper .swiper-button-next {
    right: 10px;
}

.testimonials-swiper .swiper-button-prev {
    left: 10px;
}

/* Container for Form and Image */
.container {
    margin-top: 7rem;
    display: flex;
    height: 100vh;
}

.image-container {
    flex: 1;
    background-color: #f0f0f000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 7rem;
}

.image-container img {
    width: 60%;
    max-width: 500px;
    border-radius: 10px;   
}


.form-container {
    flex: 1;
    padding: 20px;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 25px;
}

input, textarea {
    padding: 10px;
    margin-bottom: 20px;
}

button {
    padding: 10px 20px;
    background-color: #00A859;
    color: white;
    border: none;
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
    #header-bg {
        padding: 2rem 3rem;
        height: 50vh;
    }

    .logo {
        font-size: 20pt;
    }

    #nav-links {
        flex-direction: column;
        gap: 20px;
    }

    .about {
        flex-direction: column;
        padding: 2rem;
    }

    .about img {
        width: 100%;
        height: auto;
    }

    .services-images {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .container {
        flex-direction: column;
        height: auto;
    }

    .image-container, .form-container {
        flex: none;
        width: 100%;
        padding: 1rem;
    }

    .social a {
        height: 30px;
        width: 30px;
        font-size: 16px;
    }
}

/* Section Title */
.mission {
    text-align: center;
    margin-bottom: 30px;
    padding-top: 8rem;
    padding-bottom: 5rem;
  }
  
  .mission h2 {
    font-size: 40px;
    font-weight: bold;
    color: black;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
  }
  
  /* Flip Box Container */
  .flip-box-container {
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    gap: 20px;
    padding: 20px;
    flex-wrap: wrap; 
    padding-bottom: 8rem;
  }
  
  /* Flip Box Styling */
  .flip-box {
    width: 300px;
    height: 350px; 
    perspective: 1000px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); 
    overflow: hidden;
    background-color: #fff;
  }
  
  /* Inner Box */
  .flip-box-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.8s ease-in-out;
    border-radius: 15px;
  }
  
  /* Front and Back Sides */
  .flip-box-front,
  .flip-box-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 30px; 
    font-family: Arial, sans-serif;
    box-sizing: border-box;
    border-radius: 15px;
  }
  
  /* Front Side */
  .flip-box-front {
    background-color: #ffa600ad;
    border: 1px solid #ddd;
  }
  
  /* Back Side */
  .flip-box-back {
    background-color: #00A859; 
    color: white;
    transform: rotateY(180deg);
  }
  
  /* Flip Effect on Hover */
  .flip-box:hover .flip-box-inner {
    transform: rotateY(180deg);
  }
  
  /* Text Styling */
  .flip-box h3 {
    font-size: 22px; 
    font-weight: bold;
    margin-bottom: 15px;
  }
  
  .flip-box p {
    font-size: 18px; 
    line-height: 1.6; 
    margin: 0;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .flip-box-container {
      flex-direction: column; 
      gap: 15px;
    }
  
    .flip-box {
      width: 100%; 
      max-width: 400px; 
    }
  
    .section-title h2 {
      font-size: 24px;
    }
  }
 
 