/* ===== MAIN PAGE ===== */
@font-face {
    font-family: "FontAwesome";
    src: url("/assets/fonts/fontawesome-webfont.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "Raleway";
    src: url("https://fonts.gstatic.com/s/raleway/v37/1Ptug8zYS_SKggPNyC0ITw.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: "Raleway";
    src: url("https://fonts.gstatic.com/s/raleway/v37/1Ptug8zYS_SKggPNyC0ITw.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: "Raleway";
    src: url("https://fonts.gstatic.com/s/raleway/v37/1Ptug8zYS_SKggPNyC0ITw.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: "Krona One";
    src: url("https://fonts.gstatic.com/s/kronaone/v15/jAnEgHdjHcjgfIb1ZcUyNoWg.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: "Roboto";
    src: url("https://fonts.gstatic.com/s/roboto/v51/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3yUBA.woff2") format("woff2");
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: "Roboto";
    src: url("https://fonts.gstatic.com/s/roboto/v51/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3yUBA.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
}
.pp{

}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: "Raleway", sans-serif;
    overflow-x: hidden;
    background-color: #f5f5f5;
    caret-color: transparent;
}

/* ===== HEADER / NAV ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled .header-inner {
    background: rgba(0,0,0,0.92) !important;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
}
.header-inner {
    background: rgba(0,0,0,0.55);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 0 45px;
    transition: background 0.3s ease;
}
@media (max-width: 767px) {
    .header-inner {
        background: white;
        padding: 0 15px;
        border-bottom: 1px solid #e5e5e5;
    }
}
.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
}
.logo-wrap { display: flex; align-items: center;    
 }
 .logo-wrap a{
     display:block;
     width: 270px;
height: 44px;
 }
  .logo-wrap a img{
          width: 100%;
    height: 100%;
    object-fit: contain;
  }
.logo-desktop { display: none; height: 60px; }
.logo-mobile { display: block; height: 55px; }
@media (min-width: 768px) {
    .logo-desktop { display: block; }
    .logo-mobile { display: none; }
}

/* Desktop Nav */
.desktop-nav { display: none; }
@media (min-width: 768px) { .desktop-nav { display: flex; align-items: center; gap: 0; } }
.desktop-nav a {
    color: white;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0 17px;
    line-height: 100px;
    display: inline-block;
    white-space: nowrap;
    text-decoration: none;
    position: relative;
    transition: color 0.25s ease;
}
.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 22px;
    left: 17px;
    right: 17px;
    height: 2px;
    background: #14b8a6;
    transform: scaleX(0);
    transition: transform 0.25s ease;
}
.desktop-nav a:hover { color: #14b8a6; }
.desktop-nav a:hover::after { transform: scaleX(1); }

/* Hamburger */
.hamburger { display: flex; flex-direction: column; gap: 5px; cursor: pointer; padding: 10px; z-index: 1100; background: none; border: none; }
.hamburger span { display: block; width: 22px; height: 2px; background: #555; transition: all 0.3s ease; }
@media (min-width: 768px) { .hamburger { display: none; } }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: #333; }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: #333; }

/* Mobile Nav Drawer */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: white;
    z-index: 999;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    overflow-y: auto;
    padding-top: 100px;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
    display: block;
    padding: 14px 24px;
    color: #555;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: color 0.2s, background 0.2s;
}
.mobile-nav a:hover { color: #14b8a6; background: #f9fafb; }

/* ===== HERO SLIDER ===== */
#hero { position: relative; height: 100vh; min-height: 600px; overflow: hidden; }
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.55) 100%);
}
.hero-content {
    position: absolute;
    inset: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}
.hero-eyebrow {
    font-family: "Krona One", sans-serif;
    color: white;
    font-size: clamp(10px, 1.5vw, 16px);
    letter-spacing: clamp(6px, 2vw, 30px);
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease-out 0.3s forwards;
    padding-left: clamp(6px, 2vw, 30px);
}
.hero-title {
    font-family: "Krona One", sans-serif;
    color: white;
    font-size: clamp(48px, 12vw, 144px);
    line-height: 1;
    opacity: 1;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease-out 0.6s forwards;
    margin: 10px 0;
}
.hero-subtitle {
    font-family: "Roboto", sans-serif;
    color: white;
    font-size: clamp(13px, 2vw, 24px);
    font-weight: 300;
    letter-spacing: 2px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease-out 0.9s forwards;
    margin-bottom: 20px;
}
.hero-cta {
    opacity: 1;
    animation: fadeUp 0.8s ease-out 1.2s forwards;
}
.hero-cta a {
    display: inline-block;
    background: #dc2626;
    color: white;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: clamp(12px, 1.8vw, 20px);
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: clamp(10px, 1.5vw, 16px) clamp(20px, 3vw, 40px);
    border-radius: 20px;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}
.hero-cta a:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220,38,38,0.4);
}
.hero-cta a:active { transform: translateY(0); }

/* Slide bullets */
.hero-bullets {
    position: absolute;
    bottom: 55px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 10px;
}
.hero-bullet {
    width: 60px;
    height: 3px;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: background 0.3s;
}
.hero-bullet.active { background: white; }

/* Progress bar */
.hero-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 3px;
    background: rgba(255,255,255,0.4);
    z-index: 20;
    width: 100%;
}
.hero-progress-bar {
    height: 100%;
    background: white;
    width: 0%;
    transition: width 5s linear;
}
.hero-progress-bar.animating { width: 100%; }

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ===== SERVICE CARDS ===== */
.service-card {
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}
.service-card img {
    transition: transform 0.5s ease;
    width: 100%;
    display: block;
}
.service-card:hover img { transform: scale(1.05); }

/* ===== PORTFOLIO / EQUIPMENT CARDS ===== */
.portfolio-card { overflow: hidden; }
.portfolio-card .img-wrap { overflow: hidden; }
.portfolio-card img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}
.portfolio-card:hover img { transform: scale(1.06); }
.portfolio-card .caption {
    background: #fafaf9;
    text-align: center;
    padding: 20px;
    transition: background 0.3s;
}
.portfolio-card:hover .caption { background: #f4f4f3; }
.portfolio-card .caption h5 {
    transition: color 0.25s;
}
.portfolio-card:hover .caption h5 { color: #14b8a6; }

/* ===== CTA BARS ===== */
.cta-bar {
    transition: filter 0.3s ease;
}

/* Button hovers */
.btn-dark {
    display: inline-block;
    background: #3f3f46;
    color: white;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    border: 2px solid #3f3f46;
    border-radius: 4px;
    transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s;
}
.btn-dark:hover {
    background: white;
    color: #3f3f46;
    transform: translateY(-2px);
}
.btn-dark:active { transform: translateY(0); }

/* ===== STATS ===== */
.stat-number {
    font-size: 60px;
    font-weight: 700;
    color: white;
    line-height: 1;
    display: block;
}

/* ===== TESTIMONIALS ===== */
.testimonial-wrap { position: relative; overflow: hidden; }
.testimonial-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}
.testimonial-slide.active {
    opacity: 1;
    position: relative;
    pointer-events: auto;
}

.testimonial-nav-btn {
    display: inline-block;
    width: 30px;
    height: 30px;
    border: 2px solid #3f3f46;
    border-radius: 4px;
    cursor: pointer;
    background: transparent;
    transition: background 0.2s, border-color 0.2s;
    position: relative;
}
.testimonial-nav-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid #3f3f46;
    border-bottom: 2px solid #3f3f46;
    transform: translate(-60%, -50%) rotate(-45deg);
    transition: border-color 0.2s;
}
.testimonial-nav-btn.prev::after { transform: translate(-40%, -50%) rotate(135deg); }
.testimonial-nav-btn:hover { background: #3f3f46; }
.testimonial-nav-btn:hover::after { border-color: white; }

/* ===== LOGO MARQUEE ===== */
.marquee-container { overflow: hidden; width: 100%; }
.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 25s linear infinite;
}
.marquee-item {
    flex-shrink: 0;
    padding: 0 20px;
    display: flex;
    align-items: center;
}
.marquee-item img {
    max-width: 160px;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: filter 0.3s, opacity 0.3s;
}
.marquee-item img:hover { filter: grayscale(0%); opacity: 1; }

/* ===== PARALLAX SECTION ===== */
.parallax-section {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

/* ===== FOOTER ===== */
footer a { transition: color 0.25s; }
footer a:hover { color: white; }

/* ===== PAGE PADDING for fixed header ===== */
.page-content { padding-top: 100px; }
@media (max-width: 767px) { .page-content { padding-top: 100px; } }

/* Section headings */
.section-title {
    font-size: clamp(22px, 4vw, 30px);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
    color: black;
    line-height: 1.38;
}
.section-subtitle {
    font-size: 17px;
    font-style: italic;
    font-weight: 500;
    color: #a3a3a3;
    text-align: center;
    line-height: 1.38;
}
.divider-line { height: 1px; background: transparent; }
.divider-bar {
    width: 22px;
    height: 2px;
    background: #3f3f46;
    margin: 0 auto;
}

/* Grid cols helpers */
.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}
@media (min-width: 768px) {
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
}
.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}
@media (min-width: 768px) {
    .grid-2 { grid-template-columns: repeat(2, 1fr); }
}




/* ===== ABOUT PAGE ===== */

/* ===== HERO BANNER ===== */
.page-hero {
    position: relative;
    height: 380px;
    overflow: hidden;
}
.page-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 70%;
}
.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.40) 0%, rgba(0,0,0,0.55) 100%);
}
.page-hero-content {
    position: absolute;
    inset: 0;
    z-index: 10;
    display: flex;
    align-items: flex-end;
    padding: 0 50px 45px;
}

/* ===== SECTION SHARED ===== */
.section-title {
    font-size: clamp(20px, 3.5vw, 30px);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
    color: #2a2a2a;
    line-height: 1.38;
}
.section-subtitle {
    font-size: 15px;
    font-style: italic;
    font-weight: 500;
    color: #a3a3a3;
    text-align: center;
    line-height: 1.5;
}
.divider-bar {
    width: 22px;
    height: 2px;
    background: #3f3f46;
    margin: 0 auto;
}

/* ===== TEAM GRID ===== */
.team-member {
    text-align: center;
    transition: transform 0.3s ease;
}
.team-member:hover { transform: translateY(-4px); }
.team-photo-wrap {
    width: 160px;
    height: 160px;
    margin: 0 auto 14px;
    overflow: hidden;
    background: #e5e5e5;
}
.team-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.4s ease;
}
.team-member:hover .team-photo-wrap img { transform: scale(1.06); }
.team-name {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #2a2a2a;
    line-height: 1.5;
}
.team-title-role {
    font-size: 10px;
    color: #888;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    line-height: 1.5;
    margin-top: 3px;
}

/* ===== PARALLAX STATS ===== */
.parallax-section {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: relative;
}
.parallax-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}
.parallax-content {
    position: relative;
    z-index: 2;
}
.stat-big {
    font-family: "Krona One", sans-serif;
    font-size: clamp(60px, 10vw, 110px);
    color: white;
    line-height: 1;
    display: block;
}

/* ===== CIRCULAR METRICS ===== */
.metric-circle-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.circle-svg { transform: rotate(-90deg); }
.circle-bg { fill: none; stroke: #e5e7eb; stroke-width: 5; }
.circle-fill {
    fill: none;
    stroke: #d4a017;
    stroke-width: 5;
    stroke-linecap: round;
    stroke-dasharray: 251.2;
    stroke-dashoffset: 251.2;
    transition: stroke-dashoffset 1.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.circle-fill.animated { stroke-dashoffset: 0; }
.circle-label-wrap {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.circle-percent {
    font-size: 20px;
    font-weight: 700;
    color: #2a2a2a;
    letter-spacing: -0.5px;
}
.metric-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #2a2a2a;
    margin-top: 14px;
    line-height: 1.5;
}
.metric-desc {
    font-size: 11px;
    color: #888;
    line-height: 1.7;
    margin-top: 5px;
    max-width: 160px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== YOUTUBE EMBED ===== */
.yt-embed-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
}
.yt-embed-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.yt-thumb-wrap {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    background: #111;
}
.yt-thumb-wrap img { width: 100%; display: block; transition: opacity 0.3s; }
.yt-thumb-wrap:hover img { opacity: 0.85; }
.yt-play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}
.yt-play-icon {
    width: 64px;
    height: 64px;
    background: rgba(220, 38, 38, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, background 0.2s;
}
.yt-thumb-wrap:hover .yt-play-icon { transform: scale(1.12); background: #dc2626; }

/* Footer links */
footer a { transition: color 0.25s; }
footer a:hover { color: white; }

/* Btn */
.btn-dark-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid #3f3f46;
    color: #3f3f46;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 12px 22px;
    text-decoration: none;
    background: transparent;
    transition: background 0.25s, color 0.25s, transform 0.2s;
}
.btn-dark-outline:hover { background: #3f3f46; color: white; transform: translateY(-2px); }
.btn-dark-outline:active { transform: translateY(0); }

/* Responsive grids via JS */
.about-grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}
@media(min-width:768px) {
    .about-grid-2 { grid-template-columns: 1fr 1fr; gap: 60px; }
}
.metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 20px;
}
@media(min-width: 640px) {
    .metrics-grid { grid-template-columns: repeat(4, 1fr); gap: 40px 30px; }
}
.team-grid-lead {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}
.team-grid-3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 20px;
}
@media(min-width: 640px) {
    .team-grid-3 { grid-template-columns: repeat(3, 1fr); gap: 40px 30px; }
}




/* ===== SERVICES PAGE ===== */





/* ===== HERO BANNER ===== */
.page-hero {
    position: relative;
    height: 380px;
    overflow: hidden;
}
.page-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}
.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.60) 100%);
}
.page-hero-content {
    position: absolute;
    inset: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.page-hero-title {
    font-family: "Krona One", sans-serif;
    font-size: clamp(32px, 7vw, 60px);
    color: white;
    letter-spacing: 4px;
    opacity: 1;
    animation: fadeUp 0.7s ease-out 0.2s forwards;
    text-transform: uppercase;
}
.page-hero-subtitle {
    color: rgba(255,255,255,0.75);
    font-size: 13px;
    letter-spacing: 2px;
    margin-top: 8px;
    opacity: 1;
    animation: fadeUp 0.7s ease-out 0.45s forwards;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-left {
    opacity: 0;
    transform: translateX(-28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
    opacity: 0;
    transform: translateX(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* ===== SERVICE ROW GRID ===== */
/* Each service row = 4 cells: [img] [text] [img] [img]
   Text column offset alternates per row */
.services-section {
    background: white;
    padding: 70px 0 80px;
}
.services-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Service row: 4-column photo mosaic */
.svc-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 4px;
}
.svc-row:last-child { margin-bottom: 0; }

.svc-cell {
    position: relative;
    overflow: hidden;
    background: #f0f0f0;
    aspect-ratio: 1 / 1;
}
.svc-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease, opacity 0.3s ease;
}
.svc-cell:hover img { transform: scale(1.05); opacity: 0.92; }

/* Text cell — replaces one photo cell */
.svc-text-cell {
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 28px 30px;
    aspect-ratio: 1 / 0.78;
}
.svc-text-cell h3 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #2a2a2a;
    margin-bottom: 12px;
    line-height: 1.5;
}
.svc-text-cell p {
    font-size: 12.5px;
    color: #666;
    line-height: 1.85;
    margin-bottom: 18px;
}
.btn-view-more {
    display: inline-block;
    border: 1px solid #3f3f46;
    color: #3f3f46;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 9px 18px;
    text-decoration: none;
    background: transparent;
    transition: background 0.25s, color 0.25s, transform 0.2s;
    align-self: flex-start;
}
.btn-view-more:hover {
    background: #3f3f46;
    color: white;
    transform: translateY(-2px);
}
.btn-view-more:active { transform: translateY(0); }

/* Responsive: stack on mobile */
@media (max-width: 767px) {
    .svc-row {
        grid-template-columns: 1fr 1fr;
    }
    .svc-text-cell {
        grid-column: span 2;
        aspect-ratio: auto;
        padding: 24px 20px;
    }
    .svc-cell {
        aspect-ratio: 1 / 1;
    }
}
@media (max-width: 479px) {
    .svc-row {
        grid-template-columns: 1fr;
    }
    .svc-text-cell {
        grid-column: span 1;
    }
}

/* ===== SECTION TITLE ===== */
.section-title {
    font-size: clamp(20px, 3.5vw, 30px);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
    color: #2a2a2a;
    line-height: 1.38;
}
.section-subtitle {
    font-size: 15px;
    font-style: italic;
    font-weight: 500;
    color: #a3a3a3;
    text-align: center;
    line-height: 1.5;
}
.divider-bar {
    width: 22px;
    height: 2px;
    background: #3f3f46;
    margin: 0 auto;
}

/* ===== FOOTER ===== */
footer a { transition: color 0.25s; }
footer a:hover { color: white; }

/* ===== SCROLL TO TOP ===== */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 42px;
    height: 42px;
    background: #3f3f46;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s, transform 0.3s, background 0.25s;
    z-index: 800;
}
.scroll-top-btn.visible { opacity: 1; transform: translateY(0); }
.scroll-top-btn:hover { background: #14b8a6; }

/* CTA banner btn */
.btn-dark-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid white;
    color: white;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 12px 26px;
    text-decoration: none;
    background: transparent;
    transition: background 0.25s, color 0.25s, transform 0.2s;
}
.btn-dark-outline:hover { background: white; color: #dc2626; transform: translateY(-2px); }
.btn-dark-outline:active { transform: translateY(0); }

/* ===== CONTACT US ===== */


/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Footer links */
footer a { transition: color 0.25s; }
footer a:hover { color: white; }

/* Section headings */
.section-title {
    font-size: clamp(22px, 4vw, 32px);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
    color: #2a2a2a;
    line-height: 1.38;
}

/* Contact form inputs */
.contact-input {
    width: 100%;
    border: 1px solid #d4d4d4;
    padding: 14px 16px;
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    color: #444;
    background: white;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.contact-input:focus {
    border-color: #a3a3a3;
    box-shadow: 0 0 0 3px rgba(163,163,163,0.12);
}
.contact-input::placeholder { color: #a3a3a3; }

textarea.contact-input { resize: vertical; min-height: 150px; }

/* Get a quote button */
.btn-quote {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid #3f3f46;
    color: #3f3f46;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 12px 22px;
    text-decoration: none;
    background: transparent;
    transition: background 0.25s, color 0.25s, transform 0.2s;
}
.btn-quote:hover {
    background: #3f3f46;
    color: white;
    transform: translateY(-2px);
}
.btn-quote:active { transform: translateY(0); }

/* Submit button */
.btn-submit {
    display: inline-block;
    border: 2px solid #3f3f46;
    background: transparent;
    color: #3f3f46;
    font-family: "Raleway", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 13px 28px;
    cursor: pointer;
    transition: background 0.25s, color 0.25s, transform 0.2s;
}
.btn-submit:hover {
    background: #3f3f46;
    color: white;
    transform: translateY(-2px);
}
.btn-submit:active { transform: translateY(0); }

/* Social icons */
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid #c0c0c0;
    color: #555;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.social-icon:hover { background: #3f3f46; color: white; border-color: #3f3f46; }

/* Success message */
.success-msg {
    display: none;
    background: #d1fae5;
    border: 1px solid #6ee7b7;
    color: #065f46;
    padding: 14px 20px;
    font-size: 14px;
    letter-spacing: 0.5px;
    margin-top: 16px;
}

/* Page header banner */
.page-banner {
    background: #f5f5f5;
    border-bottom: 1px solid #e5e5e5;
    padding: 70px 20px 60px;
}


/* ===== PARAGON ===== */



/* ===== PAGE HERO ===== */
.page-hero {
    position: relative;
    height: 420px;
    overflow: hidden;
}
.page-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 65%;
}
.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
}
.page-hero-content {
    position: absolute;
    inset: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.page-hero-sub {
    font-family: "Roboto", sans-serif;
    font-size: clamp(12px, 2vw, 18px);
    color: rgba(255,255,255,0.85);
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 14px;
    opacity: 1;
    animation: fadeUp 0.8s ease-out 0.5s forwards;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
    opacity: 0;
    transform: translateX(-35px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
    opacity: 0;
    transform: translateX(35px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== SECTION SHARED ===== */
.section-title {
    font-size: clamp(20px, 3.5vw, 28px);
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-align: center;
    color: #2a2a2a;
    line-height: 1.38;
}
.divider-bar {
    width: 22px;
    height: 2px;
    background: #3f3f46;
    margin: 0 auto;
}

/* ===== PHOTO GRID ===== */
.photo-main {
    width: 100%;
    overflow: hidden;
}
.photo-main img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.photo-main:hover img { transform: scale(1.04); }

.photos-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
}
@media (min-width: 600px) {
    .photos-row { grid-template-columns: repeat(3, 1fr); }
}
.photo-thumb {
    overflow: hidden;
}
.photo-thumb img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.photo-thumb:hover img { transform: scale(1.06); }

/* ===== SCHEDULE TABLE ===== */
.schedule-box {
    background: white;
    border: 1px solid #e5e5e5;
    padding: 36px 40px;
    max-width: 700px;
    margin: 0 auto;
}
.schedule-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 20px;
    text-align: center;
}
.schedule-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px 20px;
    text-align: center;
}
@media (max-width: 500px) {
    .schedule-grid { grid-template-columns: 1fr; text-align: left; }
}
.schedule-col-head {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #555;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 8px;
    margin-bottom: 6px;
}
.schedule-row {
    font-size: 13px;
    color: #444;
    line-height: 1.85;
}

/* ===== GREEN CTA BAR ===== */
.cta-green {
    position: relative;
    overflow: hidden;
    background: #4a7c59;
}
.cta-green-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.25;
}
.cta-green-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    padding: 48px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}
@media (min-width: 768px) {
    .cta-green-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        gap: 30px;
    }
}
.cta-green h3 {
    font-family: "Krona One", sans-serif;
    font-size: clamp(16px, 2.5vw, 22px);
    color: white;
    letter-spacing: 1.5px;
    line-height: 1.4;
    margin: 0;
}
.btn-white-outline {
    display: inline-block;
    border: 2px solid white;
    color: white;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 12px 28px;
    text-decoration: none;
    white-space: nowrap;
    background: transparent;
    transition: background 0.25s, color 0.25s, transform 0.2s;
    flex-shrink: 0;
}
.btn-white-outline:hover { background: white; color: #2a7a48; transform: translateY(-2px); }

/* ===== TEAM GRID ===== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 30px;
    max-width: 620px;
    margin: 0 auto;
}
@media (min-width: 640px) {
    .team-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 40px; }
}
.team-card { text-align: center; }
.team-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.4s ease;
    overflow: hidden;
}
.team-card:hover .team-card-img { transform: scale(1.04); }
.team-card-name {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #2a2a2a;
    margin-top: 12px;
    line-height: 1.5;
}
.team-card-role {
    font-size: 10px;
    color: #888;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-top: 3px;
    line-height: 1.5;
}
.team-img-wrap {
    overflow: hidden;
    width: 100%;
}

/* ===== FLEET MOSAIC ===== */
.fleet-mosaic {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    gap: 6px;
}
@media (min-width: 600px) {
    .fleet-mosaic {
        grid-template-columns: 2fr 1fr 1fr;
        grid-template-rows: 1fr 1fr;
    }
    .fleet-mosaic .fleet-big {
        grid-row: 1 / 3;
    }
}
.fleet-item {
    overflow: hidden;
    background: #111;
}
.fleet-item img {
    width: 100%;
    height: 175px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease, opacity 0.4s ease;
}
@media (min-width: 600px) {
    .fleet-mosaic .fleet-big img { height: 356px; }
    .fleet-item img { height: 175px; }
}
.fleet-item:hover img { transform: scale(1.06); opacity: 0.9; }

/* ===== FUN FACTS ===== */
.fun-facts-section {
    position: relative;
    overflow: hidden;
}
.fun-facts-bg {
    position: absolute;
    inset: 0;
    background-image: url('../assets/images/img31.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.fun-facts-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}
.fun-facts-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 70px 24px;
}

/* ===== MEMBERS LOGOS ===== */
.members-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px 40px;
}
.members-logos img {
    height: 50px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.65;
    transition: filter 0.3s, opacity 0.3s;
}
.members-logos img:hover { filter: grayscale(0%); opacity: 1; }

/* ===== CONTACT SECTION ===== */
.contact-4-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
@media (min-width: 640px) {
    .contact-4-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ===== FOOTER ===== */
footer a { transition: color 0.25s; }
footer a:hover { color: white; }

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr 1fr; } }

/* ===== SCROLL TO TOP ===== */
#scroll-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    background: #dc2626;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 900;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s, transform 0.3s, background 0.2s;
    border: none;
}
#scroll-top.visible { opacity: 1; transform: translateY(0); }
#scroll-top:hover { background: #b91c1c; }


/* ===== ELIT TRANSIT ===== */


/* ===== PAGE HERO ===== */
.page-hero {
    position: relative;
    height: 420px;
    overflow: hidden;
}
.page-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}
.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.65) 100%);
}
.page-hero-content {
    position: absolute;
    inset: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
    opacity: 0;
    transform: translateX(-35px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
    opacity: 0;
    transform: translateX(35px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ===== SECTION SHARED ===== */
.section-title {
    font-size: clamp(18px, 3vw, 26px);
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-align: center;
    color: #2a2a2a;
    line-height: 1.38;
}
.divider-bar {
    width: 22px;
    height: 2px;
    background: #3f3f46;
    margin: 0 auto;
}

/* ===== MAIN PHOTO ===== */
.photo-main {
    width: 100%;
    overflow: hidden;
}
.photo-main img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.photo-main:hover img { transform: scale(1.03); }

/* ===== SERVICES ICON GRID ===== */
.services-icon-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px 30px;
}
@media (min-width: 480px) {
    .services-icon-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
    .services-icon-grid { grid-template-columns: repeat(3, 1fr); }
}
.service-icon-card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.service-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3f3f46;
}
.service-icon-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #2a2a2a;
    margin-bottom: 6px;
    line-height: 1.4;
}
.service-icon-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.85;
}

/* ===== GREEN CTA BAR ===== */
.cta-green {
    position: relative;
    overflow: hidden;
    background: #4a7c59;
}
.cta-green-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.22;
}
.cta-green-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    padding: 44px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}
@media (min-width: 768px) {
    .cta-green-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        gap: 30px;
    }
}
.cta-green h3 {
    font-family: "Krona One", sans-serif;
    font-size: clamp(14px, 2vw, 20px);
    color: white;
    letter-spacing: 1.5px;
    line-height: 1.4;
    margin: 0;
}
.btn-white-outline {
    display: inline-block;
    border: 2px solid white;
    color: white;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 12px 28px;
    text-decoration: none;
    white-space: nowrap;
    background: transparent;
    transition: background 0.25s, color 0.25s, transform 0.2s;
    flex-shrink: 0;
}
.btn-white-outline:hover { background: white; color: #2a7a48; transform: translateY(-2px); }

/* ===== TESTIMONIAL / WHAT OUR RIDERS ARE SAYING ===== */
.testimonial-section {
    position: relative;
    overflow: hidden;
    min-height: 280px;
}
.testimonial-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.testimonial-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}
.testimonial-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto;
    padding: 70px 24px;
    text-align: center;
}

/* ===== TEAM GRID ===== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 30px;
    max-width: 620px;
    margin: 0 auto;
}
@media (min-width: 640px) {
    .team-grid { gap: 40px 40px; }
}
.team-card { text-align: center; }
.team-img-wrap { overflow: hidden; width: 100%; }
.team-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.4s ease;
}
.team-card:hover .team-card-img { transform: scale(1.04); }
.team-card-name {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #2a2a2a;
    margin-top: 12px;
    line-height: 1.5;
}
.team-card-role {
    font-size: 10px;
    color: #888;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-top: 3px;
    line-height: 1.5;
}

/* ===== FLEET MOSAIC ===== */
.fleet-mosaic {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
}
@media (min-width: 600px) {
    .fleet-mosaic {
        grid-template-columns: 2fr 1fr 1fr;
        grid-template-rows: 1fr 1fr;
    }
    .fleet-mosaic .fleet-big { grid-row: 1 / 3; }
}
.fleet-item { overflow: hidden; background: #111; }
.fleet-item img {
    width: 100%;
    height: 175px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease, opacity 0.4s ease;
}
@media (min-width: 600px) {
    .fleet-mosaic .fleet-big img { height: 356px; }
    .fleet-item img { height: 175px; }
}
.fleet-item:hover img { transform: scale(1.06); opacity: 0.9; }

/* ===== BLOG TEASER ===== */
.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}
@media (min-width: 640px) {
    .blog-grid { grid-template-columns: repeat(3, 1fr); }
}
.blog-card { overflow: hidden; background: white; }
.blog-card-img-wrap { overflow: hidden; height: 180px; }
.blog-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.blog-card:hover img { transform: scale(1.05); }
.blog-card-body { padding: 20px; }
.blog-card-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #2a2a2a;
    line-height: 1.5;
    margin-bottom: 8px;
    transition: color 0.2s;
}
.blog-card:hover .blog-card-title { color: #14b8a6; }
.blog-card-date {
    font-size: 11px;
    color: #aaa;
    letter-spacing: 0.5px;
}

/* ===== FUN FACTS ===== */
.fun-facts-section {
    position: relative;
    overflow: hidden;
}
.fun-facts-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.fun-facts-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}
.fun-facts-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 70px 24px;
}
.stat-num {
    font-family: "Krona One", sans-serif;
    font-size: clamp(32px, 5vw, 52px);
    color: white;
    display: block;
    line-height: 1;
}

/* ===== MEMBERS LOGOS ===== */
.members-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px 40px;
}
.members-logos img {
    height: 50px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.65;
    transition: filter 0.3s, opacity 0.3s;
}
.members-logos img:hover { filter: grayscale(0%); opacity: 1; }

/* ===== CONTACT SECTION ===== */
.contact-4-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
@media (min-width: 640px) {
    .contact-4-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ===== FOOTER ===== */
footer a { transition: color 0.25s; }
footer a:hover { color: white; }
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr 1fr; } }

/* ===== SCROLL TO TOP ===== */
#scroll-top {
    position: fixed;
    bottom: 28px; right: 28px;
    width: 44px; height: 44px;
    background: #dc2626;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 900;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s, transform 0.3s, background 0.2s;
    border: none;
}
#scroll-top.visible { opacity: 1; transform: translateY(0); }
#scroll-top:hover { background: #b91c1c; }


/* ===== CUSTOM STYLE ===== */
.services_list {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.services_item {
    width: fit-content;
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.4s ease;
}

.services_item .img_inner {
    width: 234px;
    height: 234px;
    min-width: 234px;
}

.services_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services_content {
    display: flex;
    flex-direction: column;
    gap: 20px;

    width: 0px;
    height: 0;

    opacity: 0;
    visibility: hidden;

    clip-path: inset(0 100% 0 0);
    transform: translateX(-20px);

    transition: clip-path 0.8s ease, opacity 0.8s ease, transform 0.8s ease;
}

.services_item.active .services_content {
    opacity: 1;
    visibility: visible;
    width: 234px;
    height: 100%;

    clip-path: inset(0 0 0 0);
    transform: translateX(0);
}
.services_content h3 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #2a2a2a;
    margin-bottom: 12px;
    line-height: 1.5;
}
.services_content p {
    font-size: 12.5px;
    color: #666;
    line-height: 1.85;
    margin-bottom: 18px;
}

#services .overflow-hidden{
    width: 324px;
    height: 182px;
}
#services .overflow-hidden img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home_page .img_inner{
    width: 520px;
    height: 290px;
}
.home_page .img_inner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* ===== PRIVACY CONTENT ===== */
.privacy-content h2 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #2a2a2a;
    margin-top: 36px;
    margin-bottom: 12px;
    line-height: 1.5;
}

.privacy-content h2:first-child {
    margin-top: 0;
}

.privacy-content p {
    font-size: 13.5px;
    color: #555;
    line-height: 2;
    margin-bottom: 14px;
}

.privacy-content ul {
    margin: 0 0 16px 0;
    padding-left: 20px;
    list-style: disc;
}

.privacy-content ul li {
    font-size: 13.5px;
    color: #555;
    line-height: 2;
}

.privacy-content a {
    color: #dc2626;
    text-decoration: none;
    transition: color 0.2s;
}

.privacy-content a:hover {
    color: #b91c1c;
    text-decoration: underline;
}

.privacy-content .divider-bar {
    width: 22px;
    height: 2px;
    background: #3f3f46;
    margin: 0 auto 40px;
}

@media screen and (max-width: 1024px) {
    .services_list{
        flex-wrap: wrap;
    }
    .services_item{
        flex: 1;
    }
    .services_content {

        width: 100% ;
        height: 100%;

        opacity: 1;
        visibility: visible;

        clip-path: unset;
        transform:unset ;

        transition: unset   ;
    }
    .home_page .img_inner{
    width: 100%;
    height: 290px;
}
}
@media screen and (max-width: 768px){
    .services_item{
        flex-direction: column;
    }
    .services_item .img_inner{
        width: 100%;

    }
    .parallax-section .grid-cols-2{
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
     .logo-wrap a{
     display:block;
     width: 180px;
height: 44px;
 }
}