/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #444;
    background-color: #f4f4f4;
     font-size: 14px !important;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Header */
.heading {
    background: linear-gradient(135deg, #4b8c74, #35524a);
    padding: 4rem 1.5rem;
    text-align: center;
    color: #fff;
    border-radius: 10px;
}

.heading h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.heading p {
    font-size: 1.2rem;
    font-style: italic;
}

/* Section Styling */
section {
    background: #fff;
    margin-top: 2rem;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

h2 {
    font-size: 2rem;
    color: #333;
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
}

h2::after {
    content: '';
    width: 80px;
    height: 3px;
    background: #4b8c74;
    display: block;
    margin: 0.5rem auto;
    border-radius: 5px;
}

/* Introduction */
.introduction p {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #333;
}

/* Founder Section */
/* Founder Section */
.founder {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}

.founder h2 {
    text-align: center;
    font-size: 2rem;
    color: #333;
    margin-bottom: 1.5rem;
    position: relative;
}

.founder h2::after {
    content: '';
    width: 60px;
    height: 3px;
    background: #4b8c74;
    display: block;
    margin: 0.5rem auto;
    border-radius: 5px;
}

.founder-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.founder-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #333;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.founder-info div {
    flex: 1;
    max-width: 600px;
    color: #333;
    font-size: 1.1rem;
    line-height: 1.6;
}

.founder-info p {
    margin: 0;
}

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

    .founder-photo {
        margin-bottom: 1rem;
    }
}
/*.footer {
    background-color: #2b2b2b;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-bottom: 20px;
}

.footer-about,
.footer-contact,
.footer-social {
    flex: 1 1 300px;
    margin: 10px;
}

.footer h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #f39c12;
}

.footer p {
    font-size: 1em;
    line-height: 1.6;
    color: #ccc;
}

.footer-link {
    color: #f39c12;
    text-decoration: none;
}

.footer-link:hover {
    text-decoration: underline;
}

.social-links a {
    margin: 0 10px;
    font-size: 30px;
    color: #f39c12;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 20px;
    font-size: 0.9em;
}

.footer-bottom .footer-link {
    margin: 0 5px;
} */
.whatsapp-button {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background-color: #25D366; /* WhatsApp green */
    color: white;
    border: none;
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    z-index: 1000; /* High z-index to ensure it stays on top */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  }
  .whatsapp-button img {
    height: 24px; /* Icon size */
    margin-right: 10px; /* Spacing between icon and text */
  }
  @media (max-width: 768px) {
  .whatsapp-button {
      right: 50%;
      bottom: 20px;
      transform: translateX(50%);
  }
  }

/* Vehicles Section */
.vehicles {
    text-align: center;
}

.vehicle-gallery {
    display: flex;
    gap: 1.5rem;
    justify-content: space-evenly;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.vehicle-item {
    width: 30%;
    text-align: center;
    transition: transform 0.3s;
}

.vehicle-item:hover {
    transform: translateY(-5px);
}

.vehicle-item img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s;
}

.vehicle-item p {
    font-weight: bold;
    margin-top: 0.5rem;
    color: #35524a;
}

/* Guides Section */
.guides p {
    text-align: center;
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* Values & Commitment Section */
.values p {
    text-align: center;
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* Gallery Section */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.photo-grid img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    transition: transform 0.3s;
}

.photo-grid img:hover {
    transform: scale(1.05);
}

/* Footer */
.footer {
    background: #35524a;
    color: #fff;
    padding: 2rem;
    text-align: center;
    margin-top: 3rem;
    border-radius: 10px;
}

.footer p {
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.footer a {
    color: #4b8c74;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.footer a:hover {
    color: #fff;
}

/* Buttons and Links */
a.button, .footer a.button {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.8rem 2rem;
    color: #fff;
    background-color: #4b8c74;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

a.button:hover, .footer a.button:hover {
    background-color: #35524a;
}
#google_translate_element {
    position: fixed;
    right: 20px;
    bottom: 80px;
    z-index: 1001;
    font-size: 16px;
    font-family: Arial, sans-serif;
    color: #4285F4;
}

/* Styling the Google Translate Dropdown */
.goog-te-gadget-simple {
    background-color: #4285F4;
    color: green;
    border-radius: 50px;
    padding: 10px 20px;
    text-align: center;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s;
}

.goog-te-gadget-simple:hover {
    background-color: #357ae8;
}

.goog-te-gadget-icon {
    display: none; /* Hides the default Google icon */
}

/* Dropdown styling */
.goog-te-combo {
    margin-left: 8px;
    padding: 5px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    background-color: white;
    color: #4285F4;
    cursor: pointer;
}

/* Adjust mobile display */
@media (max-width: 768px) {
    #google_translate_element {
        right: 50%;
        bottom: 80px;
        transform: translateX(50%);
    }
    .whatsapp-button {
        right: 50%;
        bottom: 20px;
        transform: translateX(50%);
    }
}