
/* ================= HERO ================= */

/* 🔥 HERO SECTION */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

/* VIDEO */
.hero-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.1) contrast(1.1); /* 🔥 makes video clear */
}

/* 🔥 OVERLAY */
.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.8) 20%,
        rgba(0,0,0,0.45) 55%,
        rgba(0,0,0,0.12) 100%
    );
}

/* CONTAINER */
.hero-container {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 30px;
}

/* CONTENT LEFT */
.hero-content {
    max-width: 620px;
    color: #fff;
    z-index: 2;
}

/* 🔥 PREMIUM FONT */
.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 5vw, 5.2rem);
    line-height: 1.02;
    margin-bottom: 16px;
    color: #fff;
    letter-spacing: -0.04em;
    text-shadow: 0 20px 40px rgba(0,0,0,0.35);
}

/* SUB TITLE */
.hero-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.2rem, 2.2vw, 2rem);
    font-weight: 500;
    margin-bottom: 22px;
    color: #f1f1f1;
    line-height: 1.4;
    text-shadow: 0 12px 25px rgba(0,0,0,0.25);
}

/* TEXT */
.hero-content p {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1rem, 1.25vw, 1.1rem);
    margin-bottom: 30px;
    line-height: 1.8;
    color: rgba(255,255,255,0.88);
    max-width: 520px;
}

/* BUTTONS */
.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: 0.3s;
}

/* COLORS */
.primary { background: #ff4d4d; color: #fff; }
.secondary { background: #00b894; color: #fff; }
.third { background: #0984e3; color: #fff; }

/* HOVER */
.btn:hover {
    transform: translateY(-3px) scale(1.05);
}

/* 📱 MOBILE */
@media(max-width: 768px) {

    .hero {
        min-height: 85vh;
    }

    .hero-container {
        justify-content: center;
        padding: 0 20px;
    }

    .hero-content {
        text-align: center;
        margin: auto;
    }

    .hero-content h1 {
        font-size: clamp(2.4rem, 8vw, 3.6rem);
        letter-spacing: -0.03em;
    }

    .hero-content h2 {
        font-size: clamp(1.1rem, 4vw, 1.6rem);
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .hero-buttons {
        justify-content: center;
    }
}

/* ================= COUNTER ================= */

/* 🔥 SECTION */
.counter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f9f9f9, #eef2f3);
}

/* 🔥 HEADER */
.counter-header {
    text-align: center;
    margin-bottom: 50px;
}

/* SMALL TITLE */
.section-title {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ff4d4d;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: "";
    width: 50px;
    height: 2px;
    background: #ff4d4d;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -6px;
}

/* MAIN TITLE */
.main-title {
    font-size: 32px;
    font-weight: 700;
    margin-top: 15px;
    text-transform: uppercase;
    color: #222;
}

/* 🔥 LAYOUT */
.counter-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

/* 🖼 IMAGE FRAME */
.counter-image {
    flex: 1;
    position: relative;
}

.counter-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    border: 5px solid #fff;
}

/* ✨ FRAME EFFECT */
.counter-image::before {
    content: "";
    position: absolute;
    top: -15px;
    left: -15px;
    width: 100%;
    height: 100%;
    border: 3px solid #ff4d4d;
    border-radius: 20px;
    z-index: -1;
}

/* 📊 COUNTERS */
.counter-boxes {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* CARD */
.counter {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: 0.3s;
}

/* HOVER */
.counter:hover {
    transform: translateY(-8px);
}

/* ICON */
.counter i {
    font-size: 30px;
    color: #ff4d4d;
    margin-bottom: 10px;
}

/* NUMBER */
.counter h2 {
    font-size: 28px;
    margin: 10px 0;
}

/* TEXT */
.counter p {
    font-size: 14px;
    color: #666;
}

/* 🔥 SCROLL ANIMATION */
.reveal-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.8s ease;
}

.reveal-right {
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.8s ease;
}

.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* 📱 RESPONSIVE */
@media(max-width: 768px) {

    .counter-container {
        flex-direction: column;
    }

    .counter-boxes {
        grid-template-columns: 1fr;
    }

    .main-title {
        font-size: 24px;
    }
}



/* IMPORT GOOGLE FONTS */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Poppins:wght@300;400;500;600&display=swap');


/* ABOUT SECTION */
.start-about-section{
    width:100%;
    padding:80px 8%;
    background:#f8f9fb;
    font-family:'Poppins', sans-serif;
}

.start-about-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
    flex-wrap:wrap;
}

/* LEFT CONTENT */
.start-about-content{
    flex:1;
    min-width:320px;
}

/* SMALL TITLE */
.start-about-subtitle{
    color:#ff6600;
    font-size:15px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:18px;
    display:inline-block;
    position:relative;
    font-family:'Playfair Display', serif;
    padding-bottom:10px;
}

/* RED LINE BELOW SMALL TITLE */
.start-about-subtitle::after{
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    width:70px;
    height:3px;
    background:red;
    border-radius:10px;
}

/* MAIN TITLE */
.start-about-content h2{
    font-size:42px;
    line-height:1.3;
    margin-bottom:30px;
    color:#111;
    font-weight:700;
    position:relative;
    display:inline-block;
    font-family:'Playfair Display', serif;
    padding-bottom:15px;
}

/* RED LINE BELOW MAIN TITLE */
.start-about-content h2::after{
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    width:100px;
    height:4px;
    background:red;
    border-radius:10px;
}

/* SHORT CONTENT */
.start-about-short{
    font-size:18px;
    color:#444;
    font-weight:500;
    margin-bottom:20px;
    line-height:1.9;
    font-family:'Poppins', sans-serif;
}

/* MAIN CONTENT */
.start-about-content p{
    font-size:16px;
    color:#555;
    line-height:1.9;
    margin-bottom:20px;
    font-family:'Poppins', sans-serif;
}

/* BUTTON */
.start-about-btn{
    display:inline-block;
    padding:14px 32px;
    background:#ff6600;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-size:16px;
    font-weight:600;
    transition:0.3s ease;
    margin-top:15px;
    font-family:'Poppins', sans-serif;
}

.start-about-btn:hover{
    background:#111;
}

/* RIGHT IMAGE */
.start-about-image{
    flex:1;
    min-width:320px;
    text-align:center;
}

.start-about-image img{
    width:100%;
    max-width:550px;
    border-radius:20px;
    box-shadow:0 10px 35px rgba(0,0,0,0.15);
}

/* MOBILE RESPONSIVE */
@media(max-width:991px){

    .start-about-container{
        flex-direction:column-reverse;
    }

    .start-about-content h2{
        font-size:32px;
    }

}


/* ================= ABOUT ================= */

/* 🔥 ABOUT SECTION */
.about-section {
    padding: 80px 0;
    background: #fff;
}

/* LAYOUT */
.about-container {
    display: flex;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-content {
    flex: 1;
}

/* 🔥 TITLE (SCOPED - NO CONFLICT) */
.about-content .section-title {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #ff4d4d;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

.about-content .section-title::after {
    content: "";
    width: 50px;
    height: 2px;
    background: #ff4d4d;
    position: absolute;
    bottom: -6px;
    left: 0;
}

/* MAIN TITLE */
.about-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 15px 0;
    text-transform: uppercase;
}

/* TEXT */
.about-content p {
    font-size: 15px;
    color: #666;
    margin-bottom: 25px;
}

/* SERVICES */
.about-services {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.service-item {
    padding: 10px 16px;
    border-radius: 30px;
    background: #f5f5f5;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.service-item:hover {
    background: #ff4d4d;
    color: #fff;
}

.service-item i {
    color: #ff4d4d;
}

.service-item:hover i {
    color: #fff;
}

/* BUTTON */
.about-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background: #ff4d4d;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

.about-btn:hover {
    transform: scale(1.05);
}

/* 🔥 IMAGE SECTION */
.about-image {
    flex: 1;
    position: relative;
    padding: 20px; /* space for frame */
}

/* IMAGE */
.about-image img {
    width: 100%;
    border-radius: 20px;
    display: block;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* 🔥 SAFE FRAME (NO COLLAPSE) */
.about-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 85%;
    height: 85%;
    border: 3px solid #ff4d4d;
    border-radius: 20px;
    z-index: 1;
}

/* FLOAT BOX */
.floating-box {
    position: absolute;
    background: #fff;
    padding: 10px 15px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.floating-box i {
    color: #ff4d4d;
}

/* POSITIONS */
.floating-box.driver { top: 30px; left: 30px; }
.floating-box.years { bottom: 30px; right: 30px; }

/* ================= RESPONSIVE ================= */

@media(max-width: 768px) {

    .about-container {
        flex-direction: column;
    }

    .about-content h2 {
        font-size: 24px;
    }

    /* REMOVE FRAME IN MOBILE (avoid overlap) */
    .about-image::before {
        display: none;
    }
}


/* Service Section */

/* SECTION */
.services-section {
  padding: 80px 20px;
  background: linear-gradient(120deg, #f5f7fb, #eef1ff);
  text-align: center;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: auto;
    margin-bottom: 50px;
}

/* SMALL TITLE */
.section-title {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ff4d4d;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: "";
    width: 50px;
    height: 2px;
    background: #ff4d4d;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -6px;
}

/* MAIN TITLE */
.main-title {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    margin: 15px 0;
}

/* TEXT */
.section-header p {
    color: #666;
    font-size: 15px;
}

.branches-section .branches-inner {
    display: grid;
    gap: 24px;
}

.branches-section .branch-list ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.branches-section .branch-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 18px;
    border-radius: 22px;
    color: #1f1f1f;
    font-weight: 600;
    border: 1px solid rgba(255,77,77,0.12);
    box-shadow: 0 16px 30px rgba(0,0,0,0.04);
}

.branches-section .branch-list li:nth-child(4n+1) {
    background: linear-gradient(135deg, #ffe8f0, #fff3f7);
}

.branches-section .branch-list li:nth-child(4n+2) {
    background: linear-gradient(135deg, #fff3e6, #fff8f0);
}

.branches-section .branch-list li:nth-child(4n+3) {
    background: linear-gradient(135deg, #e8f4ff, #f2f9ff);
}

.branches-section .branch-list li:nth-child(4n) {
    background: linear-gradient(135deg, #eaf7e9, #f5fff0);
}

.branches-section .branch-list li i {
    color: #ff4d4d;
    font-size: 18px;
}

.branches-section .branch-contact {
    text-align: center;
    margin-top: 0;
    padding: 28px 26px;
    border-radius: 26px;
    background: linear-gradient(135deg, #ff4d4d, #ff857a);
    color: #ffffff;
    box-shadow: 0 18px 45px rgba(255,77,77,0.2);
}

.branches-section .branch-contact p {
    margin: 0 0 12px;
    font-size: 16px;
    line-height: 1.8;
}

.branches-section .branch-contact p:last-child {
    margin-bottom: 0;
}

.branches-section .branch-contact a {
    color: #ffffff;
    text-decoration: underline;
    font-weight: 700;
}

.branches-section .branch-contact a:hover {
    opacity: 0.9;
}

/* HEADER */
.section-header h4 {
  color: #6c63ff;
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: 32px;
  margin-bottom: 15px;
}



/* GRID */
/* 🔥 GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* CARD */
.service-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

/* 🔥 HOVER EFFECT */
.service-card:hover {
    transform: translateY(-10px);
}

/* GRADIENT BORDER */
.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(45deg, #ff4d4d, #ff9f43);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

/* ICON BOX */
/* ICON */
.icon-box {
    width: 70px;
    height: 70px;
    margin: auto;
    margin-bottom: 15px;
    background: #ff4d4d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box i {
    color: #fff;
    font-size: 28px;
}

/* TITLE */
.service-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

/* TEXT */
.service-card p {
    font-size: 14px;
    color: #666;
}


/* HOVER */
.service-card:hover {
  transform: translateY(-12px) scale(1.04);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-card:hover .icon-box {
  transform: rotate(10deg) scale(1.1);
}

.service-card:hover .icon-box i {
  color: #ff6584;
}

/* CTA BUTTON */
.cta {
  margin-top: 50px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;

  background: linear-gradient(45deg, #6c63ff, #ff6584);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);

  position: relative;
  overflow: hidden;
  transition: 0.4s;
}

.btn i {
  font-size: 18px;
}

.btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.btn::before {
  content: "";
  position: absolute;
  width: 300%;
  height: 300%;
  background: rgba(255,255,255,0.2);
  top: -100%;
  left: -100%;
  transform: rotate(45deg);
  transition: 0.5s;
}

.btn:hover::before {
  top: 0;
  left: 0;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 24px;
  }
}

/* testimonal */

/* 🔥 TESTIMONIAL */
.testimonial-section {
    padding: 80px 0;
    background: radial-gradient(circle at top, rgba(255,255,255,0.08), transparent 40%), #111316;
    text-align: center;
    color: #f5f5f5;
}

.testimonial-section .section-title {
    color: #ff8c00;
}

.testimonial-section .main-title {
    font-size: 36px;
    margin-bottom: 40px;
    color: #ffffff;
}

.testimonial-wrapper {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.testimonial-slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;
    scrollbar-width: none;
}

.testimonial-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    min-width: 320px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 28px;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
    text-align: center;
    backdrop-filter: blur(10px);
}

.testimonial-card p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #e2e8f0;
}

.testimonial-card h4 {
    color: #ffffff;
    margin-bottom: 8px;
}

.stars {
    color: #ffd166;
    margin-top: 10px;
    letter-spacing: 2px;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 12px 14px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.nav-btn:hover {
    background: rgba(255,255,255,0.18);
    transform: translateY(-50%) scale(1.05);
}

.prev { left: 10px; }
.next { right: 10px; }

@media(max-width: 992px) {
    .testimonial-section {
        padding: 60px 0;
    }

    .testimonial-card {
        min-width: 280px;
    }
}

@media(max-width: 768px) {
    .testimonial-card {
        min-width: 260px;
    }

    .nav-btn {
        display: none;
    }
}

/* MOBILE */
@media(max-width: 768px) {
    .testimonial-card {
        min-width: 250px;
    }
}

/* why yo choose us */

/* 🔥 WHY SECTION */
.why-section {
    padding: 80px 0;
    background: #fff;
}

.why-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

/* IMAGE */
.why-image {
    flex: 1;
}

.why-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* CONTENT */
.why-content {
    flex: 1;
}

/* TITLE */
.section-title {
    font-size: 14px;
    color: #ff4d4d;
    position: relative;
    margin-bottom: 10px;
    display: inline-block;
}

.section-title::after {
    content: "";
    width: 40px;
    height: 3px;
    background: #ff4d4d;
    position: absolute;
    left: 0;
    bottom: -5px;
}

.why-content h2 {
    font-size: 32px;
    margin: 15px 0 25px;
}

/* BOXES */
.why-box {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* ITEM */
.why-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 12px;
    transition: 0.3s;
    border-left: 4px solid transparent;
}

/* ICON */
.why-item i {
    font-size: 20px;
    color: #ff4d4d;
    margin-top: 5px;
    transition: 0.3s;
}

/* TEXT */
.why-item h4 {
    margin: 0;
    font-size: 16px;
}

.why-item p {
    font-size: 13px;
    color: #666;
}

/* HOVER EFFECT 🔥 */
.why-item:hover {
    background: #fff;
    border-left: 4px solid #ff4d4d;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transform: translateX(5px);
}

.why-item:hover i {
    transform: scale(1.2);
}

/* 📱 RESPONSIVE */
@media(max-width: 768px) {
    .why-container {
        flex-direction: column;
    }
}

/* founder section */

/* FOUNDERS SECTION */
.founder-section {
  background-image: url('../images/chruch.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 80px 0;
}

.founder-overlay {
  background: rgba(0, 0, 0, 0.65);
  padding: 60px 20px;
}

.founder-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* LEFT SIDE IMAGE */   
.founder-image {
  flex: 0 0 320px;   /* 🔥 controls image block size */
  text-align: center;
  color: #fff;
}

.founder-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  border: 4px solid #f4b41a;
  margin-bottom: 15px;
}

/* NAME */
.founder-name {
  font-size: 22px;
  font-weight: 600;
  margin: 8px 0 4px;
}

/* ROLE */
.founder-role {
  font-size: 14px;
  opacity: 0.85;
}

/* RIGHT CONTENT */
.founder-content {
  flex: 1;
  color: #fff;
}

.founder-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #f4b41a;
}

.founder-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* BUTTON */
.founder-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 28px;
  border: 2px solid #fff;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.founder-btn:hover {
  background: #f4b41a;
  border-color: #f4b41a;
  color: #000;
}

/* MOBILE */
@media (max-width: 768px) {
  .founder-container {
    flex-direction: column;
    text-align: center;
  }

  .founder-image {
    flex: unset;
    width: 100%;
  }

  .founder-content h2 {
    font-size: 26px;
  }
}


/* =====================================================
   DRIVER TARIFF - FINAL CLEAN VERSION (ZIG-ZAG PERFECT)
===================================================== */

/* HERO SECTION */
.hero-modern {
    background: linear-gradient(135deg, #e60023, #111);
    color: #fff;
    padding: 60px 0 90px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-modern h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.hero-modern p {
    font-size: 16px;
    opacity: 0.9;
}

/* CURVE */
.hero-modern::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 100px;
    background: #f5f7fa;
    border-top-left-radius: 100% 100px;
    border-top-right-radius: 100% 100px;
}

/* SECTION BACKGROUND */
.zigzag-section {
    padding: 70px 0;
    background: #f5f7fa;
}

/* ROW SPACING */
.zigzag-row {
    margin-bottom: 60px;
}

/* IMAGE SIDE */
.zig-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: 0.3s;
}

.zig-img:hover {
    transform: scale(1.03);
}

/* CONTENT CARD */
.zig-card {
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    height: 100%;
}

/* TITLE */
.section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e60023;
    font-weight: 700;
    margin-bottom: 18px;
    font-size: 22px;
}

/* UNDERLINE */
.section-title::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background: #e60023;
    margin-top: 8px;
}

/* TABLE */
.custom-table {
    width: 100%;
}

.custom-table td {
    padding: 12px 10px;
    border-bottom: 1px solid #eee;
    font-size: 15px;
}

.custom-table td:last-child {
    text-align: right;
    font-weight: 600;
}

/* BUTTON */
.btn-danger {
    background: linear-gradient(45deg, #ff4d4d, #e60023);
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
}

.btn-danger:hover {
    background: linear-gradient(45deg, #e60023, #ff4d4d);
}

/* MONTHLY TABLE */
.table-section {
    padding: 80px 0;
}

.table-section h2 {
    font-size: 28px;
    font-weight: 700;
}

/* TABLE HEADER */
.table thead {
    background: linear-gradient(135deg, #e60023, #ff4d4d);
    color: #fff;
}

/* MOBILE */
@media (max-width: 768px) {

    .zig-img {
        height: 220px;
        margin-bottom: 20px;
    }

    .zig-card {
        text-align: center;
    }

    .section-title {
        justify-content: center;
    }

    .zigzag-row {
        margin-bottom: 40px;
    }
}

/* vehicle */

 /* ================= OUR VEHICLE / TARIFF ================= */

.vehicle-section{
  padding:80px 15px;
  background:#f9fbff;
}

.vehicle-title{
  text-align:center;
  margin-bottom:40px;
}

.vehicle-title small{
  color:#1f6fb2;
  font-weight:600;
  letter-spacing:2px;
}

.vehicle-title h2{
  font-size:35px;
  margin:10px 0;
  font-weight:700;
}

.vehicle-title p{
  max-width:900px;
  margin:0 auto 15px;
  color:#555;
  font-size:14px;
  line-height:1.6;
}

.extra-note{
  display:inline-block;
  background:#1f6fb2;
  color:#fff;
  padding:6px 14px;
  border-radius:4px;
  font-size:15px;
}

/* ===== GRID ===== */
.vehicle-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(4,1fr); /* DESKTOP */
  gap:25px;
}

/* ===== CARD ===== */
.vehicle-card{
  border:3px solid #1f6fb2;
  border-radius:20px;
  padding:20px;
  background:#fff;
  display:flex;
  flex-direction:column;
  text-align:center;
}

.vehicle-card img{
  width:100%;
  max-height:140px;
  object-fit:contain;
  margin-bottom:10px;
}

.vehicle-card h4{
  color:#1f6fb2;
  margin:10px 0 15px;
  font-size:18px;
  font-weight:600;
}
/* FOOTER */
.card-footer{
  margin-top:auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.book-btn{
  background:#138808;
  color:#fff;
  padding:8px 14px;
  border-radius:4px;
  font-size:14px;
  text-decoration:none;
}

.contact-icons a{
  width:36px;
  height:36px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  margin-left:6px;
  text-decoration:none;
}

.call{background:#1f2f88;}
.whatsapp{background:#25D366;}

/* ===== TABLET ===== */
@media(max-width:992px){
  .vehicle-container{
    grid-template-columns:repeat(2,1fr);
  }
}

/* ===== MOBILE ===== */
@media(max-width:576px){
  .vehicle-container{
    grid-template-columns:1fr;
  }

  .vehicle-title h2{
    font-size:28px;
  }
}
