/* Base Styles */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Quicksand:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    --primary-blue: #0041c7;
    --soft-blue: #f3f9fb;
    --teal: #1b657e;
    --text-muted: #657386;
    --white: #ffffff;
    --transition: all 0.3s ease;
    --btn-clr: #ec6a13;
    --border-color: #E3E6F0;
    --foreground: #0f1824;
    --navy: #0c203b;
    --secondary: #F3F5F7;
    --muted-foreground: #657085;
}

body {
    background-color: #FAFCFE;
    overflow-x: clip;
    font-family: Inter, sans-serif;
}

p {
    font-size: 1rem;
    color: var(--text-muted);
    font-family: "Inter", sans-serif;

}

a {
    font-family: "Outfit", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Outfit", sans-serif;
    color: var(--foreground);
}

.section-padding {
    padding: 96px 0;
}

.gap-4 {
    gap: 1rem;
}

.bg-site {
    background-color: #f3f5f6 !important;
}


.reveal {
    opacity: 0;
    transition: opacity 1.6s cubic-bezier(0.22, 1, 0.36, 1),
        transform 1.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Directions */
.reveal-left {
    transform: translateX(-30px);
}

.reveal-right {
    transform: translateX(30px);
}

.reveal-top {
    transform: translateY(-30px);
}

.reveal-bottom {
    transform: translateY(30px);
}

.reveal-bottom-s {
    transform: translateY(20px);
}

/* Active state – override ONLY the same axis */
.reveal-left.active,
.reveal-right.active {
    transform: translateX(0);
}

.reveal-top.active,
.reveal-bottom.active,
.reveal-bottom-s.active {
    transform: translateY(0);
}

.reveal.active {
    opacity: 1;
}

/* Animation Delays */
.delay-1 {
    transition-delay: 0.1s, 0.1s;
}

.delay-2 {
    transition-delay: 0.3s, 0.3s;
}

.delay-3 {
    transition-delay: 0.5s, 0.5s;
}

.delay-4 {
    transition-delay: 0.7s, 0.7s;
}



@media (min-width: 1400px) {
    .container {
        max-width: 1375px;
    }
}

.btn-or {
    background-color: var(--btn-clr);
    color: #fff;
    font-size: 1rem;
    line-height: 1.5rem;;
    padding-top: .5rem;
    padding-bottom: .5rem;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    border-radius: 9999px;
    height: 2.5rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform cubic-bezier(0.4, 0, 0.2, 1) 0.15s;

}

.btn-or:hover {
    color: #fff;
    background-color: hsl(24 85% 50% / .9);
    text-decoration: none;
    transform: scale(1.05);
}


/* Header Styles */


.contact-info-top a:hover {
    opacity: 0.8;
}

.social-links-top a {
    color: var(--white);
    margin-left: 15px;
    font-size: 15px;
    transition: var(--transition);
}

.social-links-top a:hover {
    transform: translateY(-2px);
    display: inline-block;
}

/* Navigation Bar */

.main-header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom: 1px solid var(--border-color);
    z-index: 999;

}

.top-header {
    background-color: #fff;
    border-bottom: 1px solid var(--border-color);
    padding: 5px 0;
}

.top-header-box{
    display:flex;
    align-items:center;
    justify-content:end;
}

.header-contact{
    display:flex;
    gap:20px
}

.header-contact a{
    color:#475569;
}
.header-contact i{
    color:#475569;
    margin-right:10px;
}

.main-navbar {
    background-color: var(--white);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.navbar-brand {
    padding-top: 0;
    padding-bottom: 0;
}

.navbar-brand img {
    height: 3.5rem;
    width: 3.5rem;
}

.navbar-nav .nav-link {
    color: #081824b2 !important;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: 10px 0 !important;
    margin-right: 2.5rem;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-item.active .nav-link {
    color: var(--teal) !important;
}


.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-item.active .nav-link::after {
    width: calc(100% - 30px);
}

.btn-contact-nav {
    background-color: var(--primary-blue);
    color: var(--white) !important;
    border-radius: 50px;
    padding: 10px 25px !important;
    font-weight: 700;
    margin-left: 15px;
    box-shadow: 0 4px 15px rgba(0, 65, 199, 0.3);
}

.btn-contact-nav:hover {
    background-color: #0036a5;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 65, 199, 0.4);
    color: var(--white) !important;
}

/* Mobile Adjustments */
@media (max-width: 991.98px) {
    .header-top {
        display: none;
    }

    .navbar-collapse {
        background: var(--white);
        margin-top: 15px;
        border-radius: 15px;
        box-shadow: var(--shadow-md);
    }

    .navbar-nav .nav-link {
        padding: 12px 0 !important;
    }

    .navbar-nav .nav-link::after {
        left: 0;
    }

    .btn-contact-nav {
        margin-left: 0;
        margin-top: 15px;
        display: inline-block;
        width: 100%;
        text-align: center;
    }
}


/* hero section */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

/* Background */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Gradient overlay (HEX with opacity via 8-digit HEX) */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            #0a192fd9,
            /* 85% opacity */
            #0a192f99,
            /* 60% opacity */
            #0a192f00
            /* transparent */
        );
}

.hero-overlay.dark {
    background-color: var(--navy);
}

/* Content */
.hero-section .container {
    z-index: 2;
}

.hero-title-home {
    font-size: 4.5rem;
    line-height: 1;
    font-weight: 700;
    color: #ffffff;
}

.hero-text-home {
    font-size: 1.25rem;
    line-height: 1.75rem;
    color: #ffffffcc;
    /* 80% opacity */
    max-width: 550px;
}





.btn-outline-light-custom {
    background: #ffffff;
    border: 1px solid #565353;
    color: #0f1824;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 600;
    padding-top: .5rem;
    padding-bottom: .5rem;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    border-radius: 9999px;
    height: 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-outline-light-custom:hover {
    background-color: transparent;
    border-color: #ffffffcc;
    color: #ffffff;
    text-decoration: none;
    transform: unset !important;
    border: 1px solid #898383;
}

/* Responsive */
@media (min-width: 768px) {
    .hero-title {
        font-size: 4rem;
    }
}

@media (min-width: 992px) {
    .hero-title {
        font-size: 4.5rem;
        line-height: 1;
    }
}


/* service section */
.services-section {
    background-color: #f8fafc;
    /* bg-background */
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4rem;
    align-items: center;
}

/* Image */
.services-img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    aspect-ratio: 16 / 10;
    box-shadow: 0 20px 40px #0000001a;
}

/* Subtitle */
.services-subtitle {
    color: var(--teal);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 10px;
}

/* Title */
.services-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
}

/* Text */
.services-text {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 15px;
}


/* Responsive */
@media (min-width: 768px) {
    .services-title {
        font-size: 3rem;
    }
}

@media (min-width: 992px) {
    .services-title {
        font-size: 3rem;
    }
}


/* quote section */



/* Header */
.quote-header {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto 50px;
}

.quote-subtitle {
    color: var(--teal);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: Outfit, sans-serif;
}

.quote-title {
    font-size: 3rem;
    line-height: 1;
    font-weight: 700;
    color: #0f172a;
    margin: 10px 0 15px;
}

.quote-text {
    color: #657386;
    font-size: 16px;
    line-height: 1.625;
}

/* Form Grid */
.quote-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 700px;
    margin: 0 auto;
}

/* 2 column layout (like md:grid-cols-2) */
@media (min-width: 768px) {
    .quote-form {
        grid-template-columns: 1fr 1fr;
    }

    .quote-form textarea,
    .quote-form button {
        grid-column: span 2;
    }
}

/* Inputs */
.quote-form input,
.quote-form textarea {
    background-color: #ffffff;
    border: 1px solid #cbd5e1;
    color: #0f172a;
    padding: 12px 14px;
    border-radius: 6px;
    font-size: 14px;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
    color: #94a3b8;
}

.quote-form input:focus,
.quote-form textarea:focus {
    border-color: #0F2240;
    outline: none;
    border-width: 2px;
}




button {
    border: none;
    outline: none;
}

/* footer */
.footer {
    background-color: #f8fafc;
    border-top: 1px solid #e2e8f0;
}


/* Top Section */
.footer-top {
    padding: 80px 0;
}

/* Grid Layout */
.footer-grid {
    display: grid;
    gap: 40px;
}

/* Responsive columns */
@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Brand */
.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-brand img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.footer-brand span {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
}

/* Description */
.footer-desc {
    font-size: 12px;
    color: #64748b;
    line-height: 1.6;
}

/* Titles */
.footer-title {
    font-size: 13px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-title.mt {
    margin-top: 25px;
}

/* Lists */
.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer ul li {
    margin-bottom: 8px;
}

.footer ul li a {
    font-size: 14px;
    color: #64748b;
    text-decoration: none;
    transition: 0.3s;
}

.footer ul li a:hover {
    color: var(--teal);
}

/* Contact */
.footer-company {
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 10px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-item {
    font-size: 14px;
    color: #64748b;
}

.footer-item a {
    color: #64748b;
    text-decoration: none;
}

.footer-item a:hover {
    color: var(--teal);
}

.footer-item svg {
    height: 16px;
    width: 16px;
    margin-right: 8px;
}

/* Bottom */
.footer-bottom {
    border-top: 1px solid #e2e8f0;
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: #64748b;
}


.services-hero {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 77px;
}

/* Background */
.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay (HEX with opacity) */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            #0a192fe6,
            /* 90% */
            #0a192fb3,
            /* 70% */
            #0a192f66
            /* 40% */
        );
}



/* Content */
.hero-content {
    position: relative;
    text-align: center;
    z-index: 2;
}

/* Title */
.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

/* Text */
.hero-text {
    font-size: 1.1rem;
    color: #ffffffcc;
    /* 80% */
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Responsive */
@media (min-width: 768px) {
    .hero-title {
        font-size: 3.8rem;
    }
}


.stats-section {
    background-color: #0c203b;
    /* navy */
    padding: 48px 0px;
}


/* Grid */
.stats-grid {
    display: grid;
    gap: 32px;
    text-align: center;
}

/* Responsive (md:grid-cols-3) */
@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .stats-grid.four {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Number */
.stat-number {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 5px;
    font-family: "Outfit", sans-serif;

}

/* Title */
.stat-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-family: "Outfit", sans-serif;

}

/* Text */
.stat-text {
    font-size: 0.9rem;
    color: #ffffff99;
    /* 60% */
    line-height: 1.6;
    margin-bottom: 0;
}

.stat-svg svg {
    height: 40px;
    width: 40px;
    color: var(--teal);
    margin-bottom: 12px;
}



.service-wrapper {
    height: 100%;
    background-color: #fff;
    border: 1px solid #E3E6F0;
    border-radius: 0.75rem;
    overflow: hidden;
    cursor: pointer;
    transition: all cubic-bezier(.4, 0, .2, 1) 0.5s;

}

.service-wrapper:hover {
    box-shadow: 0 10px 40px -10px hsla(215, 65%, 14%, 0.15);
}

.service-wrapper:hover .service-img img {
    transform: scale(1.05);
}

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    font-size: 18px;
    color: #081824;
    font-weight: 700;
}

.service-content p {
    font-size: .875rem;
    line-height: 1.25rem;
    color: #657386;
    margin-bottom: 0;
}

.service-img {
    overflow: hidden;
}

.service-img img {
    height: 192px;
    width: 100%;
    object-fit: cover;
    transition: all cubic-bezier(.4, 0, .2, 1) 0.5s;

}



/* Modal Card */
.modal-overlay {
    position: fixed;
    inset: 0;
    padding: 1rem;
    display: none;
    /* hidden by default */
    align-items: center;
    justify-content: center;
    background-color: #ffffffcc;
    backdrop-filter: blur(8px);
    z-index: 99999;
}

.modal-overlay.active {
    display: flex;
    /* show when active */
}

.modal-card {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px;
    max-width: 48rem;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 20px;
    color: #64748b;
    cursor: pointer;
}

.modal-close:hover {
    color: #0f172a;
}

/* Title */
.modal-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 24px;
}

/* Products Grid */
.products-grid {
    display: grid;
    gap: 16px;
    margin-bottom: 24px;
}

/* Responsive Grid */
@media(min-width: 640px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Product Card */
.product-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

/* Product Image */
.product-card img {
    width: 100%;
    height: 128px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

/* Product Name */
.product-name {
    padding: 12px;
    font-size: 0.875rem;
    font-weight: 700;
    color: #0f172a;
}

/* Modal Text */
.modal-text {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
}

/* Link */
.modal-link {
    color: var(--teal);
    font-weight: 600;
    text-decoration: none;
}

.modal-link:hover {
    text-decoration: underline;
}

.modal-content {
    border: none;
    background: none;
}

/* Grid layout for image + text */
.modal-main-grid {
    display: grid;
    gap: 32px;
    align-items: center;
}

@media(min-width: 768px) {
    .modal-main-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Image */
.modal-img {
    width: 100%;
    max-height: 256px;
    object-fit: cover;
    border-radius: 12px;
}

/* Text content */
.modal-text-content .modal-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.modal-text-content .modal-description {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
}

/* Parts list */
.modal-parts {
    margin-top: 24px;
    border-top: 1px solid #e2e8f0;
    padding-top: 16px;
}

.modal-parts-title {
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    color: #0f172a;
}

.parts-list ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding-left: 0;
    margin-bottom: 16px;
}

.parts-list li {
    position: relative;
    padding-left: 16px;
    font-size: 0.875rem;
    color: #64748b;
}

.parts-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 6px;
    height: 6px;
    background-color: var(--teal);
    /* teal */
    border-radius: 50%;
}

/* Quote link */
.modal-quote a {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--teal);
    text-decoration: none;
}

.modal-quote a:hover {
    text-decoration: underline;
}
.modal-quote {
    padding-top: 1rem;
    margin-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

/* aog */
.aog-section {
    padding: 64px 0;
    background-color: #0c203b;
    text-align: center;
    color: #ffffff;
    /* default text color */
}



.aog-section h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    letter-spacing: 0.025em;
}

.aog-section p {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: #f8fafcb2;
    line-height: 1.6;
}



/* saftey feature */

.saftey-feature {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    max-width: 42rem;
    margin-inline: auto;
}

.saftey-feature-box {
    border: 1px solid var(--border-color);
    padding: 32px;
    text-align: center;
    border-radius: .75rem;
    transition: all cubic-bezier(.4, 0, .2, 1) .3s;
}

.saftey-feature-box:hover {
    box-shadow: 0 10px 40px -10px hsla(215, 65%, 14%, 0.15);
    cursor: pointer;

}


.saftey-icon {
    height: 64px;
    width: 64px;
    border-radius: 50%;
    background-color: #F3F5F7;
    margin-inline: auto;
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
}

.saftey-icon svg {
    height: 32px;
    width: 32px;
}

.saftey-feature-box h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0;
}

/* cert slider */

.modal-title-in {
    font-size: 20px !important;
    font-weight: 700 !important;
    margin-bottom: 24px !important;
}

.cert-slider {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Image */
.cert-slider img {
    max-height: 400px;
    /* max-h-96 */
    width: auto;
    border-radius: 12px;
    object-fit: contain;
}

/* Buttons */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #cbd5e1;
    background-color: #ffffff;
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10;
}

/* Left & Right positioning */
.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

/* Hover effect */
.nav-btn:hover {
    background-color: var(--teal);
    color: #ffffff;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    /* gap-2 */
    margin-top: 16px;
    /* mt-4 */
}

/* Default dot */
.dot {
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 50%;
    background-color: #cbd5e1;
    /* bg-border */
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

/* Active dot */
.dot.active {
    background-color: var(--teal);
    /* teal */
}

/* Optional hover */
.dot:hover {
    background-color: var(--teal);
}

.doc-card {
    background-color: #f3f5f6;
    /* bg-secondary */
    border: 1px solid var(--border-color);
    /* border-border */
    border-radius: 12px;
    padding: 32px;
    text-align: center;
}

/* Icon */
.doc-card svg {
    width: 48px;
    height: 48px;
    color: #657085;
    margin: 0 auto 12px;
    display: block;
}

/* Text */
.doc-text {
    font-size: 0.875rem;
    color: #657085;
    /* muted text */
    margin-bottom: 16px;
}

/* Button */
.doc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 40px;
    padding: 0 16px;
    border-radius: 9999px;
    border: 1px solid #cbd5e1;
    background-color: #ffffff;
    color: #0f172a;
    font-size: 0.875rem;
    cursor: not-allowed;
    opacity: 0.6;
    transition: 0.3s;
}

/* Hover (only if enabled later) */
.doc-btn:not(:disabled):hover {
    background-color: var(--teal);
    color: #ffffff;
    cursor: pointer;
}

/* sec-two */

.sec-two-content span {
    color: var(--teal);
    font-size: 14px;
    font-family: Outfit, sans-serif;
    text-transform: uppercase;
    font-weight: 600;
}

.sec-two-content h2 {
    font-size: 3rem;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 1.5rem;
    margin-top: .5rem;
}

.sec-two-img img {
    aspect-ratio: 4 / 3;
    width: 100%;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 10px 40px -10px hsla(215, 65%, 14%, 0.15);

}

.sec-two-img::before {
    position: absolute;
    content: "";
    border: 2px solid var(--teal);
    height: 6rem;
    width: 6rem;
    left: -1rem;
    bottom: -1rem;
    border-radius: 1rem;

}

.table-sec-header {
    margin-bottom: 2.5rem;
}

.table-sec-header h2 {
    font-size: 3rem;
    line-height: 1;
    color: var(--foreground);
    font-weight: 700;
    margin-bottom: .75rem;
}

thead tr {
    background-color: var(--secondary);

}

thead tr th {
    letter-spacing: .05em;
    text-transform: uppercase;
    font-size: .875rem;
    line-height: 1.25rem;
    font-family: Outfit, sans-serif;
    text-align: left;
    padding: 1rem;
}

tbody tr {
    border-top: 1px solid var(--border-color);
    transition: all cubic-bezier(.4, 0, .2, 1) 0.5s;
}

tbody tr:hover {
    background-color: #f9f9fa;
}

.part-number {
    font-size: .875rem;
    line-height: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    padding: 1rem;
}

.table-wrapper {
    border: 1px solid var(--border-color);
    border-radius: .75rem;
}

tbody .description {
    color: var(--muted-foreground);
    font-size: .875rem;
    line-height: 1.25rem;
}

.cert-link {
    color: var(--teal);
    font-weight: 600;
    font-size: 14px;
}

.cert-link svg {
    height: 1rem;
    width: 1rem;
    margin-right: 5px;
}

.table-wrapper iframe {
    width: 100%;
    height: 500px;
    border: 1px solid var(--border-color);
    border-radius: .75rem;
    border-bottom: 0;
}

.table-footer {
    padding: 1rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: flex-end;
    background-color: #fff;
    margin-top: -6px;
    border: 1px solid var(--border-color);
    border-radius: .75rem;

}

/* stat grid */
.stats-grid-about {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.stat-item-about {
    text-align: center;
}

.stat-item-about svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--teal);
    /* teal */
    margin: 0 auto 8px;
    display: block;
}

.stat-title-about {
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 700;
    color: var(--foreground);
    /* foreground */
    margin-bottom: 4px;
    font-family: Outfit, sans-serif;
}

.stat-sub-about {
    font-size: .75rem;
    line-height: 1rem;
    color: var(--muted-foreground);
}


/* partners */


.logo-item div,
.logo-item img {
    width: 100%;
}

.logo-item {
    width: 208px;
    height: 112px;
    margin: 0 10px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.6rem;

    display: flex !important;
    align-items: center;
    justify-content: center;
}

.logo-item img {
    max-height: 4rem;
    max-width: 100%;
    object-fit: contain;
}

.logo-item.bg-navy {
    background-color: var(--navy);
}

/* testimonial */
.testimonial-card {
    position: relative;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 32px;
    height: 100%;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px -10px hsla(215, 65%, 14%, 0.15);
}

/* Quote icon */
.quote-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    opacity: 0.15;
    color: var(--teal);
}

/* Stars */

.stars {
    display: flex;
    gap: 0.25rem;
}

.stars svg {
    color: #ec6a13;
    fill: #ec6a13;
    height: 1rem;
    width: 1rem;
    margin-bottom: 16px;
}

/* Text */
.testimonial-text {
    font-size: 14px;
    color: var(--muted-foreground);
    font-size: .875rem;
    line-height: 1.625;
    margin-bottom: 1.5rem;
}

/* Footer */
.testimonial-footer {
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
}

.author {
    font-weight: 600;
    font-size: 14px;
    color: var(--foreground);
    margin-bottom: 0;
}

.designation {
    font-size: 12px;
    color: var(--muted-foreground);
    margin-bottom: 0;
}

.navbar-toggler .lucide-x {
    display: none;
}

.navbar-toggler:not(.collapsed) .lucide-menu {
    display: none;
}

.navbar-toggler:not(.collapsed) .lucide-x {
    display: inline;
}
.sec-two-content {
    padding-right: 30px;
}




/*responsive*/

/* Tablet view (768px - 991px) */
@media (min-width: 769px) and (max-width: 991px) {

    /* Service grid - keep 2 columns but reduce gap */
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    /* Service cards in rows - 2 per row on tablet */
    .service-list .row .col-lg-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    /* Aviation section - 2 per row on tablet */
    .aviation .row .col-lg-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    /* Safety features - 2 columns */
    .saftey-feature {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    /* Hero title slightly smaller */
    .hero-title-home {
        font-size: 3.5rem;
    }

    /* Stats grid - keep 3 columns */
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Section padding reduced */
    .section-padding {
        padding: 64px 0;
    }

    /* Quote title */
    .quote-title {
        font-size: 2.5rem;
    }

    /* Services title */
    .services-title {
        font-size: 2.5rem;
    }

    /* Footer grid - 2 columns */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* sec-two grid */
    .sec-two-content h2 {
        font-size: 2.5rem;
    }

    /* Table section */
    .table-sec-header h2 {
        font-size: 2.5rem;
    }

    .services-hero {
        position: relative;
        height: 60vh;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        margin-top: 76px;
    }

    .header-btn {
        display: none;
    }
}

@media(max-width:768px) {
    .service-grid {
        display: grid;
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 4rem;
        align-items: center;
    }

    .services-title {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }

    .quote-title {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }

    .hero-title-home {
        font-size: 3rem;
        line-height: 1.1;
    }

    .hero-text-home {
        font-size: 1.125rem;
        line-height: 1.75rem;
    }

    .aog-section.service h2 {
        font-size: 1.875rem;
        line-height: 2.25rem;
    }

    .saftey-feature {
        display: grid;
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .sec-two-content h2 {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }

    .aog-section h2 {
        font-size: 1.875rem;
        line-height: 2.25rem;

    }

    .table-sec-header h2 {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }

    .header-btn {
        display: none;
    }

    .main-navbar {
        padding: 10px;
    }

    .header-sticky .main-navbar {
        padding: 10px;
    }

    .navbar-light .navbar-toggler {
        color: #000;
        border: none;
    }
    .sec-two-img::before{
        left:unset;
    }
    .navbar-toggler{
        padding:0;
    }
    .sec-two-content {
    padding-right: 0;
}

.stats-grid-about{
    display:grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

}