/*===================
  Global Reset and Base Styles
===================*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    text-align: center;
}

/*===================
  Hero Section Styles
===================*/
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 100vh;
    background: url('hero1.jpg') no-repeat center center;
    background-size: cover;
    animation: heroImage 10s infinite alternate;
}

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

.hero-text {
    text-align: center;
    color: white;
    z-index: 2;
}

.hero-text h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    opacity: 0;
    animation: textFadeIn 9s infinite;
    font-weight: bold;
}

.hero-text p {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    opacity: 0;
    font-weight: bold;
}

.hero-text p:nth-child(2) {
    animation: textFadeIn 9s infinite 3s;
}

.hero-text p:nth-child(3) {
    animation: textFadeIn 9s infinite 6s;
}

@keyframes textFadeIn {
    0%, 100% {
        opacity: 0;
        transform: translateY(20px);
    }
    33% {
        opacity: 1;
        transform: translateY(0);
    }
    66% {
        opacity: 0;
        transform: translateY(-20px);
    }
}

/*===================
  Hero Left Section Styles
===================*/
.hero-left {
    position: absolute;
    top: -30px;
    left: 20px;
    color: rgb(255, 241, 241);
    display: flex;
    align-items: center;
}

.hero-left .logo {
    width: 250px;
    height: auto;
    margin-right: 20px;
    filter: brightness(1.5) drop-shadow(0 3px 6px rgba(0, 0, 0, 0));
    transition: transform 0.3s ease;
    padding: 5px;
}

.footer-left img {
    width: 250px;
    height: auto;
    margin-bottom: 25px;
    filter: drop-shadow(0 3px 6px rgba(255, 255, 255, 0.5));
    padding: 5px;
}

.hero-left h1 {
    font-size: 46px;
    z-index: 2; /* Ensures the text stays on top */
}

/*===================
  Navigation Menu Bar Styles
===================*/
.menu-bar {
    position: absolute;
    top: 15px;
    right: 90px;
    display: flex;
    gap: 20px;
}

.menu-bar a {
    color: white;
    font-size: 18px;
    text-decoration: none;
    padding: 10px;
    border-radius: 5px;
    background-color: #5a5959;
    transition: background-color 0.3s;
}

.menu-bar a:hover {
    background-color: #333;
}

/*===================
  Mobile Menu Icon Styles
===================*/
.menu-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    z-index: 2;
}

.menu-icon .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: white;
    transition: 0.3s;
}

/*===================
  Mobile Menu Panel Styles
===================*/
.menu-panel {
    display: none;
    position: absolute;
    top: 60px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.9);
    padding: 10px 0;
    border-radius: 8px;
    z-index: 3;
    min-width: 200px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.menu-panel a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    font-size: 16px;
    transition: all 0.3s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-panel a:last-child {
    border-bottom: none;
}

.menu-panel a:hover {
    color: #00bbdc;
}

/*===================
  Call-to-Action Button Styles
===================*/
.book-slot-btn {
    position: absolute;
    top: 80%;
    right: 10%;
    padding: 15px 85px;
    background-color: #00bbdc;
    color: white;
    border-radius: 30px;
    font-size: 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 3;
}

.book-slot-btn i {
    margin-left: 10px;
}

/*===================
  Brand Showcase Section Styles
===================*/
.trusted-brands {
    padding: 50px 20px;
    background-color: #00bbdc;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.brand-logos {
    display: flex;
    gap: 50px; /* Adjust gap between logos */
    animation: scroll-left-to-right 20s linear infinite; /* Continuous scrolling effect */
    margin-top: 40px; /* Added space */
    position: relative; /* Needed for absolute positioning of cloned logos */
}

.brand-logos img {
    width: 150px; /* Increased size */
    height: auto;
}

/* Keyframes for continuous scrolling */
@keyframes scroll-left-to-right {
    0% {
        transform: translateX(50%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/*===================
  Features and Benefits Section Styles
===================*/
.why-us {
    background-color: #00bbdc;
    padding: 70px;
}

.why-us h2 {
    font-size: 40px;
    margin-bottom: 30px; /* Added space */
}

.why-us-points {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.point {
    background-color: #fffafa;
    color: rgb(0, 0, 0);
    padding: 20px;
    border-radius: 10px;
    width: 30%;
}

.point h3 {
    font-size: 20px;
}

/*===================
  Contact and Company Information Section Styles
===================*/
.about-contact {
    background-color: #00bbdc;
    display: flex;
    justify-content: space-between;
    padding: 40px;
}

.about-us, .get-in-touch {
    width: 45%;
}

.about-us img, .get-in-touch img {
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(222, 5, 5, 0.1);
    transition: box-shadow 0.3s ease;
    width: 100%;
}

/*===================
  Fixed Position Contact Elements Styles
===================*/
.contact-buttons {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 1000;
}

.contact-button {
    background-color: #00bbdc;
    color: #fffcfc;
    padding: 15px;
    text-decoration: none;
    border-radius: 50%;
    font-size: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-button:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Divider Line Below Why Choose US */
.divider {
    width: 200%;
    border-top: 2px solid #000000;
    margin: 0px 0;
}

/* New Company Info Section */
footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
    background-color: #00bbdc;
}

/*===================
  Footer Contact Information Styles
===================*/
.footer-contact {
    padding: 40px;
}

.contact-row {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.contact-label {
    width: 100px;
    text-align: left;
    font-weight: bold;
}

.contact-value {
    text-align: left;
    padding-left: 40px;
    min-width: 150px;
}

/*===================
  Footer Content Styles
===================*/
.footer-left {
    text-align: left;
    max-width: 600px;
    padding-right: 20px;
}

.footer-left img {
    width: 150px;
    margin-bottom: 15px;
}

.footer-left p {
    margin-bottom: 15px;
    line-height: 1.4;
    color: #000000;
}

.left-aligned-text {
    text-align: left;
}

.footer-right {
    display: flex;
    flex-direction: column;
    text-align: left;
}

/*===================
  Footer Select Styles
===================*/
.footer-select {
    padding: 5px;
    border: none;
    background-color: transparent;
    color: #333;
    font-size: 14px;
    cursor: pointer;
    outline: none;
}

.footer-select option {
    background-color: #1a1a1a;
    color: #00bbdc;
}

.footer-select:hover {
    background-color: #2a2a2a;
}

.footer-select:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 220, 255, 0.2);
}

.footer-select option:disabled {
    color: #666;
}

/* Divider Line Styles */
.divider {
    width: 100%;
    border-top: 1px solid #5c5e5f;
    margin: 0;
}

/*===================
  Social Media Integration Styles
===================*/
.social-media {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    padding: 20px;
    background-color: #00bbdc;
}

.social-icon {
    font-size: 30px;
    color: #333;
    transition: color 0.3s;
}

.social-icon:hover {
    color: #00dcff;
}

/*===================
  FAQ Section Styles
===================*/
.faq {
    padding: 50px 20px;
    background-color: #f5f5f5;
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-header h1 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
}

.faq-header h2 {
    font-size: 1.5em;
    color: #666;
    margin-bottom: 30px;
}

#faq-search {
    width: 80%;
    max-width: 600px;
    padding: 15px;
    border: 2px solid #00bbdc;
    border-radius: 30px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s;
}

#faq-search:focus {
    border-color: #00dcff;
}

.faq-content {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-session {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.faq-category {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.faq-category h3 {
    color: #00bbdc;
    font-size: 1.3em;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #00bbdc;
}

.faq-item {
    margin-bottom: 20px;
    cursor: pointer;
}

.faq-question {
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.faq-answer {
    color: #666;
    display: none;
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 5px;
    margin-top: 5px;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item:hover .faq-question {
    color: #00bbdc;
}

.faq-footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background-color: #f0f0f0;
    border-radius: 10px;
}

.contact-info h5 {
    color: #666;
    margin-bottom: 10px;
}

.contact-info h6 {
    color: #00bbdc;
}

/*===================
  Page Header Component Styles
===================*/
.main-header {
    text-align: center;
    padding: 20px;
    background-color: #00bbdc;
    color: #fff;
    border-radius: 10px;
    margin-bottom: 20px;
}

.main-header h1 {
    margin: 0;
    font-size: 36px;
}

.main-nav {
    margin-top: 10px;
}

.main-nav a {   /* Main Header / Home, About Us, Contact */     
    margin: 0 10px;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}

.main-nav a:hover {
    text-decoration: underline;
}

/*===================
  FAQ Section Component Styles
===================*/
.faq {
    padding: 20px;
    background-color: #00bbdc;
    border-radius: 10px;
    color: #333;
}

.faq-header {
    text-align: center;
    margin-bottom: 20px;
}

.faq-header h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

#faq-search {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.faq-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.faq-session {
    display: flex;
    flex: 1;
    gap: 20px;
}

.faq-category {
    flex: 1;
}

.faq-category h3 {
    font-size: 28px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-item h4 {
    font-size: 22px;
    margin-bottom: 5px;
    cursor: pointer;
}

.faq-answer {
    display: none;
    background-color: #00bbdc;
    padding: 10px;
    border-radius: 5px;
    margin-top: 5px;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-footer {
    text-align: center;
    margin-top: 20px;
}

/*===================
  Testimonials Section Styles
===================*/
.testimonials {
    background-color: #f5f5f5;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonials-content {
    flex: 1;
    text-align: left;
    padding-right: 50px;
}

.stats-content {
    flex: 1;
    text-align: left;
}

.testimonials h2 {
    font-size: 40px;
    margin-bottom: 40px;
}

.testimonial-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.testimonial-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #00bbdc, #00dcff);
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.testimonial-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    color: #333;
    font-style: italic;
    padding-left: 40px;
}

.testimonial-content p::before {
    content: '\201C';
    font-size: 60px;
    color: #00bbdc;
    position: absolute;
    left: -10px;
    top: -20px;
    opacity: 1;
}

.testimonial-content h4 {
    color: #00bbdc;
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 15px;
    padding-left: 40px;
}

/*===================
  Stats Section Styles
===================*/
.stats-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stats-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.stats-box:hover {
    transform: translateY(-5px);
}

.stats-box h3 {
    color: #333;
    font-size: 20px;
    margin-bottom: 15px;
}

.counter {
    font-size: 40px;
    font-weight: bold;
    color: #00bbdc;
    display: inline-block;
}

.plus {
    font-size: 40px;
    font-weight: bold;
    color: #00bbdc;
    display: inline-block;
    margin-left: 5px;
}

.testimonial-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    color: #333;
    font-style: italic;
    quotes: "\201C" "\201D";
}

.testimonial-content p::before {
    content: open-quote;
    font-size: 60px;
    color: #00bbdc;
    position: absolute;
    left: -20px;
    top: -20px;
    opacity: 0.3;
}

.testimonial-content h4 {
    color: #00bbdc;
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 15px;
}

/* Page Footer Component Styles */
footer {
    padding: 10px;
    background-color: #333;
    color: white;
}

/*===================
  Contact Form Styles
===================*/
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.contact-form h2 {
    color: #333;
    text-align: center;
    margin-bottom: 35px;
    font-size: 32px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.contact-form h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #00bbdc;
    border-radius: 2px;
}

.form-group {
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-group:nth-child(1) { animation-delay: 0.1s; }
.form-group:nth-child(2) { animation-delay: 0.2s; }
.form-group:nth-child(3) { animation-delay: 0.3s; }
.form-group:nth-child(4) { animation-delay: 0.4s; }
.form-group:nth-child(5) { animation-delay: 0.5s; }

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: #555;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.form-group:focus-within label {
    color: #00bbdc;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
    color: #333;
}

.form-group input:hover,
.form-group textarea:hover {
    border-color: #00bbdc;
    background-color: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00bbdc;
    box-shadow: 0 0 0 3px rgba(0, 187, 220, 0.1);
    background-color: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #00bbdc;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 187, 220, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    background-color: #00bbdc;
    color: white;
    padding: 16px 40px;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.submit-btn:hover {
    background-color: #009db8;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 187, 220, 0.3);
}

.submit-btn:hover::before {
    width: 300px;
    height: 300px;
}

.submit-btn:active {
    transform: translateY(1px);
    box-shadow: 0 2px 8px rgba(0, 187, 220, 0.3);
}

/* Page Footer Component Styles */
footer {
    padding: 10px;
    background-color: #333;
    color: white;
}

/* Responsive Design Media Queries */
@media screen and (max-width: 768px) {
    .hero {
        height: 100vh;
    }

    .hero-left {
        top: -20px;
        left: 20%;
        transform: translateX(-50%);
    }

    .hero-left .logo {
        width: 150px;
    }

    .hero-text {
        padding: 0 20px;
    }

    .hero-text h2 {
        font-size: 1.8em;
        padding: 0 15px;
        margin-top: 60px;
    }

    .hero-text p {
        font-size: 1.2em;
        padding: 0 15px;
    }

    .menu-bar {
        display: none;
    }

    .why-us {
        padding: 30px 15px;
    }

    .why-us h2 {
        font-size: 24px;
        text-align: center;
    }

    .why-us-points {
        flex-direction: column;
        gap: 25px;
    }

    .point {
        width: 100%;
        margin-bottom: 0;
        padding: 15px;
    }

    .about-contact {
        flex-direction: column;
        padding: 15px;
        gap: 25px;
    }

    .about-us, .get-in-touch {
        width: 100%;
        margin-bottom: 0;
    }

    .testimonials-container {
        flex-direction: column;
        padding: 15px;
    }

    .testimonials-content,
    .stats-content {
        padding: 0;
        margin-bottom: 30px;
    }

    .testimonial-card {
        padding: 15px;
        margin: 10px 0;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 15px;
    }

    .stats-box {
        padding: 15px;
    }

    .contact-form {
        padding: 20px 15px;
        margin: 15px;
        width: calc(100% - 30px);
    }

    .footer-container {
        flex-direction: column;
        padding: 15px;
    }

    .footer-left,
    .footer-right {
        width: 100%;
        text-align: center;
        padding: 15px 0;
    }

    .footer-left img {
        width: 120px;
        margin: 0 auto 15px;
        display: block;
    }

    .social-media {
        justify-content: center;
        padding: 15px;
        gap: 15px;
    }

    .contact-buttons {
        right: 10px;
        bottom: 20px;
    }

    .contact-button {
        padding: 10px;
        font-size: 16px;
        margin-bottom: 10px;
    }

    .faq-session {
        flex-direction: column;
        padding: 15px;
    }

    .faq-category {
        margin-bottom: 20px;
        width: 100%;
    }

    .menu-panel {
        width: 100%;
        right: 0;
        top: 70px;
        border-radius: 0;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }

    .menu-panel a {
        padding: 15px 20px;
        font-size: 16px;
    }
}

@media screen and (max-width: 480px) {
    .hero-text h2 {
        font-size: 1.5em;
    }

    .hero-text p {
        font-size: 1em;
    }

    .hero-left .logo {
        width: 150px;
    }

    .stats-box .counter {
        font-size: 2em;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 14px;
        padding: 8px;
    }

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

@media screen and (max-width: 480px) {
    .hero-text h2,
    .hero-text p {
        font-size: 1.5em;
    }

    .book-slot-btn {
        padding: 10px 30px;
        font-size: 14px;
    }

    .contact-buttons {
        right: 10px;
    }

    .contact-button {
        padding: 10px;
        font-size: 16px;
    }

    .faq-category {
        padding: 15px;
    }

    .faq-header h1 {
        font-size: 2em;
    }
}

.faq-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.faq-session {
    display: flex;
    flex: 1;
    gap: 20px;
}

.faq-category {
    flex: 1;
}

.faq-category h3 {
    font-size: 28px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-item h4 {
    font-size: 22px;
    margin-bottom: 5px;
    cursor: pointer;
}

.faq-answer {
    display: none;
    background-color: #00bbdc;
    padding: 10px;
    border-radius: 5px;
    margin-top: 5px;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-footer {
    text-align: center;
    margin-top: 20px;
}

/* Page Footer Component Styles */
footer {
    padding: 10px;
    background-color: #333;
    color: white;
}
