/* ================================
   GLOBAL STYLES
================================ */

body {
    font-family:Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    padding-top: 125px;
    color: #333;
}

/* Headings */
h1, h2, h3, h4 h5,h6{
    font-weight: 900px;
    color:blue;
   font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    margin-top: 45px;
}

/* Section spacing */
section {
    padding: 30px 0;
}

/* Hero section (Home page) */
.hero {
    background-color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 45px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 20px;
    color: black;
}

/* Common card style (for services, blogs later) */
.custom-card {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 0 15px rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
}

.custom-card:hover {
    transform: translateY(-5px);
}

/* Buttons */
.btn-custom {
    background-color: #f8c146;
    color: #0b1c2d;
    padding: 10px 25px;
    font-weight: 600;
    border-radius: 5px;
    border: none;
}

.btn-custom:hover {
    background-color: #e0aa2d;
    color: #000;
}

/* Footer (for later use) */
/* .footer {
    background-color: #0b1c2d;
    color: #fff;
    padding: 30px 0;
    text-align: center;
} */
/* ================================
   HERO VIDEO SECTION
================================ */
.hero-video {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-video video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* Dark overlay */
.hero-overlay {
    position: relative;
    z-index: 2;
    height: 100%;
    background: rgba(0,0,0,0.55);
    display: flex;
    align-items: center;
}

.hero-overlay h1 {
    color: #fff;
    font-size: 55px;
    font-weight: 800;
}

.hero-overlay p {
    color: #ddd;
    font-size: 25px;
    margin-top: 15px;
}

/* Prevent content hiding behind navbar */
/* body {
    padding-top: 90px;
} */

/* ================================
   HOME SERVICES SECTION
================================ */
.Heading{
    padding-top: 20px;
    font-size: 35px;
    font-weight: 600;
    color: #0b1c2d;
    margin-bottom: 12px;
}
.paragraph{
      font-size: 25px;
    /* line-height: 1.7; */
    color: #666;
    /* margin-bottom: 12px; */
}

.home-services {
    padding: 20px 0;
    background-color: #e5e6e7;
}

.section-header h2 {
    font-size: 40px;
    font-weight: 800;
    color: #122f4b;
}

.section-header p {
    font-size: 25px;
    color: #666;
    margin-top: 10px;
    margin-bottom: 50px;
}

/* Grid layout */
/* SERVICES GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
   
}

/* SERVICE CARD */
.service-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
    cursor: pointer;
}

/* IMAGE */
.service-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;   /* IMPORTANT */
    transition: transform 0.4s ease;
}

/* TITLE */
.service-card h4 {
    font-size: 12px;
    font-weight: 800;
    padding: 18px;
    color: #0b1c2d;
}

/* HOVER EFFECT */
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

.service-card:hover img {
    transform: scale(1.08);
}

.service-card:hover h4 {
    color: #1660a0;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card img {
        height: 220px;
    }
}



/* ================================
   WHY CHOOSE US SECTION
================================ */

.why-choose-us {
    padding: 45px 0;
    background-color: #ffffff;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card */
.why-card {
    background: #f9f9f9;
    padding: 35px 25px;
    border-radius: 14px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* Icon */
.why-icon {
    font-size: 42px;
    margin-bottom: 18px;
}

/* Title */
.why-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: #0b1c2d;
    margin-bottom: 12px;
}

/* Text */
.why-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

/* Hover animation */
.why-card:hover {
    transform: translateY(-20px);
    background: #0b1c2d;
}

.why-card:hover h4,
.why-card:hover p {
    color: #ffffff;
}

/* Responsive */
@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}


/* ================================
   STATISTICS SECTION
================================ */

.home-stats {
    padding: 90px 0;
    background: linear-gradient(185deg, #0b1c2d, #123a63);
    color: #ffffff;
}

.home-stats .section-header h2 {
    color: #ffffff;
}

.home-stats .section-header p {
    color: #dcdcdc;
}

/* Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

/* Card */
.stat-card {
    background: rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.4s ease;
}

/* Icon */
.stat-icon {
    font-size: 42px;
    margin-bottom: 15px;
}

/* Number */
.stat-card h3 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #f8c146;
}

/* Label */
.stat-card p {
    font-size: 16px;
    color: black;
}

/* Hover effect */
.stat-card:hover {
    transform: translateY(-12px);
    background-color: rgb(242, 239, 239);
}

/* Responsive */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ================================
   SERVICES PAGE
================================ */

.services-hero {
    padding: 20px 0;
    background: #f8f9fa;
    text-align: center;
}

.services-hero h1 {
    font-size: 42px;
    font-weight: 700;
    /* font-family: 'Courier New', Courier, monospace,cursive; */
}

.services-hero p {
    max-width: 700px;
    margin: 15px auto 0;
    font-size: 18px;
}

/* GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 0px 0;
}

/* CARD */
.service-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    text-align: center;
}

/* IMAGE */
.service-card img {
    width: 100%;
    height: auto;              /* 🔥 IMPORTANT */
    max-height: 300px;
    object-fit: contain;       /* 🔥 FULL IMAGE VISIBLE */
    background: #f7f7f7;
    padding: 10px;
}

/* TITLE */
.service-card h4 {
    margin-top: 15px;
    font-size: 20px;
    padding: 0 15px;
}

/* TEXT */
.service-card p {
    font-size: 17px;
    margin: 10px 15px;
    color: #494848;
}

/* LONG TEXT */
.long-text {
    display: none;
    line-height: 1.7;
}

/* TOGGLE */
.service-card.expanded .long-text {
    display: block;
}

.service-card.expanded .short-text {
    display: none;
}

/* READ MORE */
.read-more-btn {
    margin: 12px 0 20px;
    background: none;
    border: none;
    color: #f8c146;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
}

/* ================================
   RESPONSIVE BREAKPOINTS
================================ */

/* Tablets */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-hero h1 {
        font-size: 34px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr; /* 🔥 ONE CARD PER ROW */
    }

    .service-card img {
        max-height: 260px;
        padding: 8px;
    }

    .services-hero h1 {
        font-size: 28px;
    }

    .services-hero p {
        font-size: 16px;
    }
}

/* ================================
   STATIC SERVICES SECTION
================================ */

.static-services {
    padding: 0px 0;
    background: #ffffff;
}

.services-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #3a8dde;
    margin-bottom: 70px;
    letter-spacing: 2px;
}

/* Grid */
.services-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* Service box */
.service-box {
    text-align: center;
    padding: 20px;
}

.service-icon {
    font-size: 60px;
    color: #3a8dde;
    margin-bottom: 25px;
}

.service-box h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #222;
}

.service-box p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 12px;
}

.service-box a {
    font-size: 15px;
    font-weight: 600;
    color: #3a8dde;
    text-decoration: none;
}

.service-box a:hover {
    text-decoration: underline;
}

/* Hover effect */
.service-box:hover .service-icon {
    transform: scale(1.1);
    transition: 0.3s ease;
}

/* Responsive */
@media (max-width: 992px) {
    .services-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .services-row {
        grid-template-columns: 1fr;
    }

    .services-title {
        font-size: 28px;
    }
}


/* ================================
   LOCATIONS PAGE
================================ */

.locations-hero {
    padding: 20px 0;
    background: #f8f9fa;
}

.locations-hero h1 {
    font-size: 42px;
    font-weight: 700;
}

.locations-hero p {
    max-width: 750px;
    margin: 15px auto 0;
    font-size: 18px;
    color: #555;
}

/* Grid */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    padding: 70px 0;
}

/* Card */
.location-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    cursor: pointer;
}

/* Image */
.location-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* Content */
.location-content {
    padding: 18px;
    text-align: center;
}

.location-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: #0b1c2d;
}

.location-content p {
    font-size: 17px;
    color: #555;
    margin-top: 6px;
}

/* Hover animation */
.location-card:hover {
    transform: translateY(-12px);
}

.location-card:hover img {
    transform: scale(1.08);
}

/* Responsive */
@media (max-width: 992px) {
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .locations-grid {
        grid-template-columns: 1fr;
    }
}




/* ================================
   BLOGS PAGE
================================ */

.section-header h2{
    padding-top: 35px;
}
.blogs-section {
    padding-top:50px;
    background: #f8f9fa;
}

.blogs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card */
.blog-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0,0,0,0.12);
    transition: all 0.4s ease;
}

/* Image */


.blog-image {
    position: relative;
}

.blog-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* Date badge */
.blog-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #1ea6a0;
    color: #fff;
    padding: 6px 12px;
    font-size: 13px;
    border-radius: 4px;
}

/* Content */
.blog-content {
    padding: 25px;
}

.blog-content h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Text toggle */
.full-text {
    display: none;
    margin-top: 12px;
    color: #555;
    line-height: 1.7;
}

.blog-card.expanded .full-text {
    display: block;
}

.blog-card.expanded .short-text {
    display: none;
}

/* Button */
.read-more-btn {
    margin-top: 15px;
    background: none;
    border: none;
    color: #1ea6a0;
    font-weight: 600;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 992px) {
    .blogs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .blogs-grid {
        grid-template-columns: 1fr;
    }
}






/* ================================
   FOOTER
================================ */

.site-footer {
    background: linear-gradient(-135deg, #737474, #cecece);

    padding-top: 70px;
    color: #000;
}

/* Grid */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
}

/* Brand column */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo {
    width: 160px;
}

/* Column */
.footer-column h4 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 20px;
    font-family:Tahoma, Geneva, Verdana, sans-serif;
}

.footer-column p {
    font-size: 15px;
    font-family:Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #222;
}

/* Links */
.footer-column ul {
    list-style: none;
    font-family:Tahoma, Geneva, Verdana, sans-serif;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 15px;
}

.footer-column ul li a {
    color: #000;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.1s ease;
}

.footer-column ul li a:hover {
    color: #feb007;
    padding-left: 5px;
}

/* Bottom bar */
.footer-bottom {
    margin-top: 50px;
    padding: 20px 10px;
    background-color: #081421;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #aaaaaa;
    margin: 5px 0;
}

/* Credit */
.footer-credit a {
    color: #f8c146;
    font-weight: 600;
    text-decoration: none;
}

.footer-credit a:hover {
    text-decoration: underline;
    color: #ffffff;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        align-items: center;
    }
}

/* ================================
   ABOUT PAGE LAYOUT
================================ */
.about-wrapper {
    max-width: 1200px;
    margin: auto;
    padding: 80px 20px 0;
}

/* Header */
.about-header h1 {
    font-size: 42px;
    font-weight: 800;
}

.about-header p {
    font-size: 18px;
    color: #666;
    margin-top: 8px;
}

/* Rows */
.about-row {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 90px;
}

.about-row.reverse {
    flex-direction: row-reverse;
}

/* Text */
.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

/* Image */
.about-image-box {
    flex: 1;
    display: flex;
    justify-content: center;
    height:auto;
    object-fit:cover;
}

.about-image-box img {
    width: 100%;
    max-width: 520px;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* ================================
   MISSION & VISION
================================ */
.mission-vision {
    padding: 60px 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.mv-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
    transition: transform 0.4s ease;
}

.mv-card:hover {
    transform: translateY(-10px);
}

.mv-icon {
    font-size: 64px;
    margin-bottom: 15px;
}

.mv-card h3 {
    font-size: 26px;
    color: #135ba2;
    margin-bottom: 12px;
}

.mv-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

/* ================================
   ANIMATIONS (Desktop only)
================================ */
.animate-left,
.animate-right,
.animate-up {
    opacity: 1 !important;
    transform:none !important;
    animation :none !important;
}

@media (min-width: 769px) {
    .animate-left {
        transform: translateX(-50px);
        animation: slideLeft 1s forwards;
    }

    .animate-right {
        transform: translateX(50px);
        animation: slideRight 1s forwards;
    }

    .animate-up {
        transform: translateY(40px);
        animation: fadeUp 1s forwards;
    }

    .delay {
        animation-delay: 0.3s;
    }
}

@keyframes slideLeft {
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideRight {
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

/* ================================
   RESPONSIVE FIXES
================================ */
@media (max-width: 992px) {
    .about-row {
        gap: 30px;
    }

    .about-text h2 {
        font-size: 30px;
    }

    .about-text p {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .about-row,
    .about-row.reverse {
        flex-direction: column;
        text-align: center;
        margin-bottom: 60px;
    }

    .about-image-box img {
        max-width: 100%;
    }

    .mission-vision {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-header h1 {
        font-size: 32px;
    }

    .about-header p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .about-text h2 {
        font-size: 26px;
    }

    .about-text p {
        font-size: 15px;
    }

    .mv-card {
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .about-wrapper {
        padding: 40px 15px;
    }

    .about-text h2 {
        font-size: 28px;
    }

    .about-text p {
        font-size: 16px;
    }

    .about-image-box img {
        max-width: 100%;
    }

    .mv-card {
        padding: 25px;
    }
}


/* ==============================
   WHATSAPP FLOATING BUTTON
==============================*/

.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  color: white;
  text-align: none;
  z-index: 9999;
  transition: transform 0.3s;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
}




/* ================================
   CONTACT PAGE
================================ */


.contact-section {
    padding-top: 20px ;
    background-color: #f8f9fa;
    /* background-image: url("../storage/images/footer-truck.png"); */
}

.contact-form-wrapper {
    max-width: 650px;
    margin: 0 auto;
    background: #e8e6e6;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.1);
}

/* Form group */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #0b1c2d;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 16px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f8c146;
}

/* Submit button */
.btn-submit {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    background-color: #25D366; /* WhatsApp green */
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #1ebe5d;
    transform: translateY(-2px);
}

/* ================================
   GALLERY PAGE
================================ */

.gallery-hero {
    padding: 70px 0;
    background: linear-gradient(135deg, #0b1c2d, #123a63);
    color: #fff;
}

.gallery-hero h1 {
    font-size: 42px;
    font-weight: 800;
}

.gallery-hero p {
    margin-top: 12px;
    font-size: 18px;
    color: #ddd;
}

/* Grid */
.gallery-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Card */
.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    transition: transform 0.4s ease;
}

/* 16:9 Image Box */
.gallery-image {
    position: relative;
    height: 150px;
    padding-top: 56.25%; /* 16:9 */
}

.gallery-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay */
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 28, 45, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    opacity: 0;
    transition: opacity 0.4s ease;
    text-align: center;
}

.gallery-overlay h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
}

.gallery-overlay p {
    font-size: 14px;
    color: #f8c146;
}

/* Hover Effects */
.gallery-card:hover {
    transform: translateY(-10px);
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

/* Responsive */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
