/* 
  Colors 
  Primary Orange: #F5A623 (Let's use #F39C12 or #E67E22 for a bit more contrast, or #f59e0b)
  Dark Blue: #1E2B3A
*/
:root {
    --bs-primary: #FCA311;
    --bs-primary-rgb: 252, 163, 17;
    --bs-secondary: #14213d;
    --bs-secondary-rgb: 20, 33, 61;
    --text-primary: #1E2B3A;
    --text-secondary: #6B7A8D;
    --bg-light: #F8F9FA;
    --orange: #F59E0B;
    --background: #fff;
    --foreground: oklch(.145 0 0);
    --font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --color-red-600: oklch(.577 .245 27.325);
    --color-gray-50: oklch(.985 .002 247.839);
    --color-gray-200: oklch(.928 .006 264.531);
    --color-gray-300: oklch(.872 .01 258.338);
    --color-gray-400: oklch(.707 .022 261.325);
    --color-gray-500: oklch(.551 .027 264.364);
    --color-gray-600: oklch(.446 .03 256.802);
    --color-gray-700: oklch(.373 .034 259.733);
    --color-gray-800: oklch(.278 .033 256.848);
    --color-gray-900: oklch(.21 .034 264.665);
    --color-black: #000;
    --color-white: #fff;
    --spacing: .25rem;
    --container-2xl: 42rem;
    --container-7xl: 80rem;
    --text-sm: .875rem;
    --text-sm--line-height: calc(1.25 / .875);
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-lg--line-height: calc(1.75 / 1.125);
    --text-xl: 1.25rem;
    --text-xl--line-height: calc(1.75 / 1.25);
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-3xl--line-height: calc(2.25 / 1.875);
    --text-4xl: 2.25rem;
    --text-4xl--line-height: calc(2.5 / 2.25);
    --text-5xl: 3rem;
    --text-5xl--line-height: 1;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-black: 900;
    --tracking-tight: -.025em;
    --leading-tight: 1.25;
    --leading-relaxed: 1.625;
    --default-transition-duration: .15s;
    --default-transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    --default-font-family: var(--font-sans);
    --default-font-feature-settings: var(--font-sans--font-feature-settings);
    --default-font-variation-settings: var(--font-sans--font-variation-settings);
    --default-mono-font-family: var(--font-mono);
    --default-mono-font-feature-settings: var(--font-mono--font-feature-settings);
    --default-mono-font-variation-settings: var(--font-mono--font-variation-settings);
}

html,
body {
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--foreground);
    line-height: 1.6;
    background-color: var(--background);

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Button Overrides */
.btn-primary,
.btn-outline-light {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: -0.2px;
}

.btn-primary {
    background-color: var(--orange);
    border-color: var(--orange);
    color: #fff;
}

.btn-primary:hover {
    background-color: #d97706;
    border-color: #d97706;
    color: #fff;
}

.btn-quote {
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
}

/* Navbar */
.custom-navbar {
    background: transparent;
    transition: all 0.3s ease;
    padding: 1.5rem 0;
}

.custom-navbar.scrolled {
    background: #1f3252;
    padding: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar-brand .logo-icon {
    font-size: 1.8rem;
}

.navbar-brand .text-orange {
    color: var(--orange) !important;
}

.navbar-brand .logo-text {
    font-size: 1.4rem;
    line-height: 1;
}

.navbar-nav .nav-link {
    color: #fff !important;
    font-weight: 500;
    font-size: 0.95rem;
    margin: 0 0.5rem;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    opacity: 1;
}

/* Hero Section */
.hero-section {
    min-height: 90vh;
    background: linear-gradient(rgba(30, 43, 58, 0.7), rgba(30, 43, 58, 0.6)), url('../images/hero-bg.jpg') center/cover no-repeat;
    padding-top: 100px;
}

.hero-title {
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.15rem;
    max-width: 600px;
    opacity: 0.95;
}

.call-btn {
    background-color: rgba(30, 43, 58, 0.8);
    border-color: transparent;
    backdrop-filter: blur(4px);
}

.call-btn:hover {
    background-color: rgba(30, 43, 58, 1);
    color: #fff;
}

/* Utilities */
.z-index-2 {
    z-index: 2;
}

/* Color Utilities */
.text-primary-dark {
    color: #1E2B3A;
}

/* Service Cards */
.service-card {
    padding: 3rem 1rem;
    border-radius: 10px;
    color: white;
    transition: transform 0.3s ease;
    height: 100%;
    aspect-ratio: 1/1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.service-card:hover {
    transform: translateY(-5px);
}

.icon-lg {
    font-size: 2.5rem;
}

.card-dark {
    background-color: #1E2B3A;
}
.card-dark h5{ color: #fff; }

.card-gray {
    background-color: #6B7A8D;
}
.card-gray h5{ color: #fff; }

.card-orange {
    background-color: var(--orange);
}
.card-orange h5{ color: #fff; }

.card-lightblue {
    background-color: #8F9EB2;
}
.card-lightblue  h5{ color: #fff; }

/* Stats Wrapper */
.stats-wrapper {
    margin-top: -30px;
    position: relative;
    z-index: 5;
}

.stat-icon-wrapper {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.25rem;
    background-color: white;
}

.bg-primary-dark {
    background-color: #1E2B3A;
}

.play-btn {
    width: 80px;
    height: 80px;
    cursor: pointer;
    transition: transform 0.2s;
}

.play-btn:hover {
    transform: scale(1.05);
}

/* Portfolio Gallery */
.portfolio-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem 1rem 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    color: white;
}

/* =========================
   Testimonial Cards (Mockup Style)
========================= */

.testimonial-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;

    /* Soft base shadow (like shadow-lg) */
    box-shadow:
        0 10px 15px -3px rgba(0, 0, 0, 0.10),
        0 4px 6px -4px rgba(0, 0, 0, 0.08);

    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

/* Only apply hover effect on devices that support hover */
@media (hover: hover) {
    .testimonial-card:hover {
        /* Stronger shadow (like hover:shadow-xl) */
        box-shadow:
            0 20px 25px -5px rgba(0, 0, 0, 0.15),
            0 8px 10px -6px rgba(0, 0, 0, 0.12);

        transform: translateY(-4px);
    }
}

.testimonial-card h6 {
    font-weight: 700;
}

.testimonial-card p {
    color: #4b5563;
    /* closer to Tailwind gray-700 */
}

.avatar-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.stars {
    color: var(--orange);
    font-size: 0.85rem;
}

/* Forms & Utility */
.form-control,
.form-select {
    border: 1px solid #dee2e6;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 0.25rem rgba(245, 158, 11, 0.25);
}

/* Footer Link Hover */
.footer-link {
    transition: color 0.2s;
}

.footer-link:hover {
    color: #fff !important;
}

.text-orange {
    color: var(--orange) !important;
}


.feature-card {
    background: #ffffff;
    padding: 40px 25px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: #1f2f46;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    color: #ffffff;
    font-size: 24px;
}

.feature-card h5 {
    font-weight: 700;
    color: #1f2f46;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
}

.feature-card p {
    color: #6c757d;
    margin: 0;
    font-size: 15px;
}

.bg-gray-50 {
    background-color: var(--color-gray-50);
}

.bg-gray-900 {
    background-color: var(--color-gray-900);
}

/* =========================
   Responsive Headings
========================= */

/* Main Hero Title */
.hero-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
}

/* Section Titles (H2 major sections) */
.section-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.5px;
}

/* Sub-section titles (smaller headers) */
.sub-title {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 700;
}

/* Small card titles */
.card-title-responsive {
    font-size: clamp(1rem, 2vw, 1.35rem);
    font-weight: 700;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1200px) {
    .hero-title {
        font-size: 4rem;
    }
}

@media (max-width: 575.98px) {
    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons a {
        width: 100%;
    }
}