/* color pallete */

:root {
  /* Rich Black - For footer and text */
  --color-rich-black: #0A0908;

  /* Dark Slate Gray - For navigation and section backgrounds */
  --color-dark-slate: #22333B;

  /* Alabaster - For main background and light UI elements */
  --color-alabaster: #EAE0D5;

  /* Khaki - For accents like icons, badges, or highlights */
  --color-khaki: #C6AC8E;

  /* Umber - For primary buttons and important callouts */
  --color-umber: #5E503F;
}


    * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body {
            color: #0A0908;
            line-height: 1.6;
            background-color: #EAE0D5;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Header */
        .header-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 5px 0;
        flex-wrap: wrap;
        gap: 20px;
        }

        .logo-img {
        height: 80px;
        width: auto;
        }

        .logo{
            color: white;
            font-weight:bold;
        }

        .contact-info {
        display: flex;
        gap: 30px;
        align-items: center;
        }

        .contact-item {
        display: flex;
        align-items: center;
        gap: 10px;
        }

        .contact-item i {
        font-size: 18px;
        color: var(--color-umber);
        border-right:1px solid var(--color-umber);
        padding-right:5px;
        }

        .contact-item span {
        font-size: 13px;
        font-weight: 600;
        }

        .contact-item p {
        margin: 0;
        font-size: 13px;
        }
        
        /* Navigation  ::::::::::: */
       .navbar {
        background: #22333B;
        box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        z-index: 1000;
        position: sticky;
        top: 0;
        }

        .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px;
        }

        .nav-links {
        display: flex;
        gap: 20px;
        list-style: none;
        }

        .nav-links li a {
        text-decoration: none;
        color: var(--color-umber);
        font-weight: 500;
        }

        .hamburger {
        display: none;
        flex-direction: column;
        cursor: pointer;
        gap: 5px;
        }

        .hamburger span {
        width: 25px;
        height: 3px;
        background: var(--color-umber);
        border-radius: 3px;
        transition: 0.3s;
        }

        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }

            .nav-links {
                position: absolute;
                top: 70px;
                right: 0;
                background: white;
                flex-direction: column;
                width: 100%;
                text-align: center;
                padding: 20px 0;
                display: none;
                margin-top:-20px;
            }

            .nav-links.active {
                display: flex;
                background:var(--color-alabaster);
            }

            .nav-links li {
                margin: 0 10px;
                border-bottom: 1px solid var(--color-umber);
                border-radius: 10px;
            }

            .header-top {
                flex-direction: row;
                justify-content: space-around;
                align-items: center;
                gap: 10px;
                flex-wrap: nowrap;
            }

            .contact-info {
                gap: 15px;
            }

            .contact-item {
                gap: 5px;
            }

            .contact-item span,
            .contact-item p {
                font-size: 12px;
            }

            .logo-img {
                height: 60px;
            }
        }

    .hrLine{
        background:linear-gradient(90deg,transparent,var(--color-umber),transparent);
        height:1px;
        width:90%;
        margin-left:5%;
    }
    
     /* Floating Buttons Styles */
  .floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
  }
  
  .floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #EAE0D5;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
  }
  
  .phone-btn {
    background-color: #2ec554;
    border:1px solid black;
  }
  
  .whatsapp-btn {
    color: black;
    border:1px solid black;
  }
  
  .floating-btn:hover {
    transform: translateY(-5px) scale(1.1);
    color: #C6AC8E;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .floating-buttons {
      bottom: 20px;
      right: 20px;
    }
    
    .floating-btn {
      width: 50px;
      height: 50px;
      font-size: 20px;
    }
  }
        
    /* Hero Section */

    .hero-carousel {
    position: relative;
    overflow: hidden;
    background-color: var(--color-dark-slate);
    }

    .carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    /* width: 300%; */
    }

    .hero-slide {
    width: 100%;
    flex-shrink: 0;
        background: 
            linear-gradient(45deg, rgba(34, 51, 59, 0.85), rgba(10, 9, 8, 0.85)), /* Gradient Overlay */
            url(../sights/BynaEmty.jpeg); /* Background Image */
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    
    }

    .hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
    gap: 40px;
    color: var(--color-alabaster);
    flex-wrap: wrap;
    }

    .hero-text {
    flex: 1 1 50%;
    }

    .hero-text .tagline {
    font-size: 14px;
    color: var(--color-khaki);
    margin-bottom: 15px;
    font-weight: bold;
    }

    .hero-text h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--color-alabaster);
    }

    .hero-text .subtext {
    font-size: 16px;
    margin-bottom: 30px;
    color: #ccc;
    }

    .hero-btn {
    background-color: var(--color-umber);
    color: white;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    }

    .hero-btn:hover {
    background-color: #4a3f30;
    }

    .hero-image {
    flex: 1 1 40%;
    text-align: center;
    }

    .hero-image img {
    max-width: 100%;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
    }

    .carousel-indicators {
    text-align: center;
    margin: 15px auto 30px;
    }

    .carousel-indicators .dot {
    height: 12px;
    width: 12px;
    margin: 0 6px;
    background-color: #888;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
    cursor: pointer;
    }

    .carousel-indicators .dot.active {
    background-color: var(--color-khaki);
    }

    /* Responsive */
    @media (max-width: 786px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .hero-btn {
        width: 100%;
    }
    }


    /* Why chose us */
    .why-choose-us {
  background-color: var(--color-alabaster);
  padding: 80px 20px;
}

.choose-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
  gap: 40px;
}

.choose-image {
  flex: 1 1 45%;
  text-align: center;
}

.choose-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.choose-content {
  flex: 1 1 50%;
  color: var(--color-dark-slate);
}

.choose-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: bold;
  color: var(--color-dark-slate);
}

.choose-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #333;
}

.choose-content ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 30px;
}

.choose-content ul li {
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.5;
}

.choose-content strong {
  color: var(--color-dark-slate);
}

@media (max-width: 786px) {
  .choose-container {
    flex-direction: column;
    text-align: center;
  }

  .choose-content ul {
    text-align: left;
  }

  .choose-content a.hero-btn {
    display: inline-block;
    margin-top: 10px;
  }
}


/* About Us */
.about-stats {
    background: linear-gradient(45deg, rgba(34, 51, 59, 0.85), rgba(10, 9, 8, 0.85)), /* Gradient Overlay */
            url(../sights/map.jpg); /* Background Image */
    background-size: cover;
    background: line;
    padding: 60px 20px;
    border-radius: 16px;
    margin: 40px;
}

.stats-container {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.stat-box {
  flex: 1 1 250px;
  color: var(--color-alabaster);
}

.icon-circle {
  background-color: #f5f5f5;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.icon-circle i {
  width: 40px;
  height: 40px;
  filter: brightness(0) saturate(100%) invert(58%) sepia(76%) saturate(253%) hue-rotate(358deg) brightness(97%) contrast(94%);
}

.stat-box h3 {
  font-size: 32px;
  font-weight: bold;
  color: var(--color-alabaster);
}

.stat-box h3 span {
  font-size: 22px;
  color: var(--color-khaki);
  font-weight: normal;
}

.stat-box p {
  font-size: 16px;
  color: #ccc;
}

/* Responsive */
@media (max-width: 768px) {
  .stats-container {
    flex-direction: column;
    gap: 40px;
  }

  .stat-box {
    display: flex;
    max-width: 208px;
    max-height: 120px;
  }

  .about-stat-text{
    text-align: left;
    margin-left: 10px;
  }
}



        
        
        /* Features Section */
        .features {
            padding: 80px 0;
            background-color: #EAE0D5;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 36px;
            color: #22333B;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: -10px;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: #5E503F;
        }
        
        .section-title p {
            color: #5E503F;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .feature-card {
            background-color: #22333B;
            padding: 30px;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
            transition: all 0.3s;
            color: #EAE0D5;
            animation: fadeIn 1s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            background-color: #5E503F;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        
        .feature-icon {
            font-size: 40px;
            color: #C6AC8E;
            margin-bottom: 20px;
        }
        
        .feature-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
        }
        
        /* Fleet Section */
        .fleet {
            padding: 80px 0;
            background-color: #EAE0D5;
        }
        
        .fleet-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .car-card {
            background-color: #EAE0D5;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s;
            border: 1px solid var(--color-dark-slate);
            animation: fadeInUp 1s ease;
        }
        
        .car-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        
        .car-img {
            height: 200px;
            overflow: hidden;
        }
        
        .car-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s;
            background:#e3e3e3;
        }
        
        .car-card:hover .car-img img {
            transform: scale(1.1);
        }
        
        .car-info {
            padding: 20px;
        }
        
        .car-info h3 {
            font-size: 22px;
            margin-bottom: 10px;
            color: #22333B;
        }
        
        .car-specs {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            color: #5E503F;
        }
        
        .car-price {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .price {
            font-size: 24px;
            font-weight: 700;
            color: #5E503F;
        }
        
        .price span {
            font-size: 16px;
            font-weight: 400;
            color: #5E503F;
        }
        
        /* Testimonials */
        .testimonials {
            padding: 80px 0;
            background-color: #22333B;
        }
        
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .testimonial-card {
            background-color: #5E503F;
            padding: 30px;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            color: #EAE0D5;
            animation: fadeIn 1s ease;
        }
        
        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
        }
        
        .client-info {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .client-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
        }
        
        .client-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .client-name h4 {
            font-size: 18px;
            margin-bottom: 5px;
        }
        
        .client-name p {
            color: #C6AC8E;
            font-size: 14px;
        }
        
        /* Popular Routes */
        .routes {
            padding: 80px 0;
            background-color: #EAE0D5;
        }
        
        .route-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 30px;
            animation: fadeIn 1s ease;
        }
        
        .route-table th, .route-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #C6AC8E;
        }
        
        .route-table th {
            background-color: #22333B;
            color: #EAE0D5;
        }
        
        .route-table tr:hover {
            background-color: rgba(198, 172, 142, 0.1);
        }
        
        /* About Section */
        .about {
            padding: 80px 0;
            background-color:white;
            color: black;
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .about-text {
            /*flex: 1;*/
        }

        .about-text a{
            margin-top:50px;
        }
        
        .about-image {
            /*flex: 1;*/
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            animation: fadeInRight 1s ease;
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        .aboutCard{
            background: var(--color-alabaster);
            padding: 10px;
            border-radius: 10px;
        }

        .aboutCardHeader h4 i{
            color: rgb(74 130 167);
        }

        .aboutCardText{
            padding:10px;
        }

        
        /* FAQ Section */
        .faq {
            padding: 80px 0;
            background-color: #EAE0D5;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border: 1px solid #C6AC8E;
            border-radius: 5px;
            overflow: hidden;
            animation: fadeInUp 1s ease;
        }
        
        .faq-question {
            padding: 15px 20px;
            background-color: #22333B;
            color: #EAE0D5;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s;
        }
        
        .faq-question:hover {
            background-color: #5E503F;
        }
        
        .faq-answer {
            padding: 20px;
            background-color: #fff;
            color: #0A0908;
            display: none;
        }
        
        .faq-question.active {
            background-color: #5E503F;
        }
        
        .faq-question.active + .faq-answer {
            display: block;
            animation: fadeIn 0.5s ease;
        }
        
        /* Footer */
        footer {
            background-color: #0A0908;
            color: #EAE0D5;
            padding: 60px 0 20px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .footer-col h3 {
            font-size: 20px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
            color: #C6AC8E;
        }
        
        .footer-col h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background-color: #5E503F;
        }
        
        .footer-col p {
            margin-bottom: 15px;
            color: #C6AC8E;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #C6AC8E;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .footer-links a:hover {
            color: #EAE0D5;
            padding-left: 5px;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: #5E503F;
            border-radius: 50%;
            color: #EAE0D5;
            transition: all 0.3s;
        }
        
        .social-links a:hover {
            background-color: #C6AC8E;
            color: #0A0908;
            transform: translateY(-5px);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #5E503F;
            color: #C6AC8E;
            font-size: 14px;
        }

        /* Keyframe Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes fadeInUp {
            from { 
                opacity: 0;
                transform: translateY(20px);
            }
            to { 
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInRight {
            from { 
                opacity: 0;
                transform: translateX(20px);
            }
            to { 
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
           
            .nav-links {
                flex-direction: column;
            }
            
            
            .form-row {
                flex-direction: column;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .section-title h2 {
                font-size: 28px;
            }
        }
        