@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto/Roboto.ttf') format('ttf');
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto/Roboto.ttf') format('ttf');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto/Roboto.ttf') format('ttf');
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: 'Exo 2';
    src: url('../fonts/Exo2/Exo2.ttf') format('ttf');
    font-weight: 800;
    font-display: swap;
}

@font-face {
    font-family: 'Exo 2';
    src: url('../fonts/Exo2/Exo2.ttf') format('ttf');
    font-weight: 600;
    font-display: swap;
}

:root {
    --primary-color: #FF6B00;
    --secondary-color: #0A2540;
    --dark-bg: #030E1A;
    --light-bg: #F8F9FA;
    --text-light: #EAEAEA;
    --text-dark: #333;
    --border-color: rgba(255, 255, 255, 0.1);
}

* {
    scroll-behavior: smooth;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-light);
    font-family: 'Roboto', sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Exo 2', sans-serif;
    color: var(--text-light);
    font-weight: 700;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.8rem;
}

h3 {
    font-size: 2rem;
}

.text-primary {
    color: var(--primary-color) !important;
}

.section-padding {
    padding: 100px 0;
}

.section-bg-light {
    background-color: var(--secondary-color);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 30px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #e65c00;
    border-color: #e65c00;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.2);
}

.site-header {
    padding: 20px 0;
    background: transparent;
    position: absolute;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.site-header.scrolled {
    background-color: rgba(3, 14, 26, 0.95);
    position: fixed;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.header-logo {
    font-family: 'Exo 2', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    letter-spacing: -1px;
}

.header-logo .text-primary {
    display: inline-block;
}

.navbar-nav .nav-link {
    color: var(--text-light);
    font-weight: 700;
    margin: 0 15px;
    position: relative;
    padding: 5px 0;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

.navbar-toggler {
    border: 2px solid var(--primary-color);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 107, 0, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991.98px) {
    .site-header {
        background-color: rgba(3, 14, 26, 0.95);
    }

    .navbar-collapse {
        background: var(--secondary-color);
        padding: 20px;
        margin-top: 20px;
        border-radius: 8px;
    }

    .navbar-nav .nav-link {
        margin: 10px 0;
    }
}


.site-footer {
    background-color: var(--secondary-color);
    padding: 80px 0;
    border-top: 5px solid var(--primary-color);
}

.footer-logo-col .footer-logo {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    display: block;
    margin-bottom: 20px;
}

.footer-social-icons a {
    color: var(--text-light);
    font-size: 1.5rem;
    margin-right: 20px;
    transition: all 0.3s ease;
}

.footer-social-icons a:hover {
    color: var(--primary-color);
    transform: scale(1.2);
}

.footer-links h5 {
    color: var(--primary-color);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact-col p {
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    margin-top: 50px;
}

.hero-section {
    height: 100vh;
    background: linear-gradient(rgba(10, 37, 64, 0.8), rgba(3, 14, 26, 0.9)), url('../images/hero.webp') no-repeat center center/cover;
    display: flex;
    align-items: center;
    color: #fff;
}

.hero-section h1 {
    font-weight: 800;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-section p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 20px auto 30px;
}

.category-card {
    background: var(--secondary-color);
    padding: 40px;
    text-align: center;
    border-radius: 10px;
    transition: all 0.4s ease;
    border-bottom: 5px solid transparent;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-bottom-color: var(--primary-color);
}

.category-card .icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.why-us-section {
    position: relative;
    overflow: hidden;
}

.why-us-section::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -15%;
    width: 400px;
    height: 400px;
    background: rgba(255, 107, 0, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.why-us-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.why-us-item .icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-right: 20px;
    flex-shrink: 0;
}

.featured-product {
    background: var(--secondary-color);
    border-radius: 15px;
    overflow: hidden;
}

.featured-product-image {
    background-image: url('../images/featured.webp');
    background-size: cover;
    background-position: center;
    height: 100%;
    min-height: 400px;
}

.featured-product-content {
    padding: 50px;
}

.featured-product-content .specs-list {
    list-style: none;
    padding: 0;
}

.featured-product-content .specs-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.featured-product-content .specs-list li i {
    color: var(--primary-color);
    margin-right: 10px;
}

.testimonials-section {
    background: linear-gradient(rgba(3, 14, 26, 0.9), rgba(10, 37, 64, 0.95)), url('../images/reviews-bg.webp') no-repeat center center/cover;
}

.testimonial-slide {
    padding: 40px;
    text-align: center;
}

.testimonial-slide img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    margin: 0 auto 20px;
}

.testimonial-slide blockquote {
    font-style: italic;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.testimonial-author {
    font-weight: bold;
    color: #fff;
}

.swiper-pagination-bullet-active {
    background-color: var(--primary-color) !important;
}

.project-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-item {
    overflow: hidden;
    position: relative;
    border-radius: 8px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 37, 64, 0.9), transparent);
    color: #fff;
    padding: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.gallery-item:hover .overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item:nth-child(5) {
    grid-column: span 2;
}

.mission-section .content-box {
    background: rgba(10, 37, 64, 0.8);
    padding: 50px;
    border-left: 5px solid var(--primary-color);
}

.page-header {
    padding: 150px 0 80px;
    background: linear-gradient(rgba(10, 37, 64, 0.7), rgba(3, 14, 26, 0.8)), url('../images/product-hero.webp') no-repeat center center/cover;
    text-align: center;
}

.our-story-section .story-image {
    border-radius: 15px;
    box-shadow: -20px -20px 0 0 var(--primary-color);
}

.team-member {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.team-member img {
    width: 100%;
    display: block;
}

.team-member-info {
    position: absolute;
    bottom: -100%;
    left: 0;
    right: 0;
    background-color: rgba(10, 37, 64, 0.9);
    padding: 20px;
    transition: bottom 0.4s ease;
}

.team-member:hover .team-member-info {
    bottom: 0;
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline-container {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-container.left {
    left: 0;
}

.timeline-container.right {
    left: 50%;
}

.timeline-container::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -17px;
    background-color: white;
    border: 4px solid var(--primary-color);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.right::after {
    left: -16px;
}

.timeline-content {
    padding: 20px 30px;
    background-color: var(--secondary-color);
    position: relative;
    border-radius: 6px;
}

@media screen and (max-width: 768px) {
    .timeline-container {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-container.right {
        left: 0%;
    }

    .left::after,
    .right::after {
        left: 15px;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.6rem;
    }

    .project-gallery {
        display: flex;
        flex-direction: column;
    }
}

.product-card {
    background: var(--secondary-color);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card-image {
    height: 250px;
    overflow: hidden;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-card-image img {
    transform: scale(1.05);
}

.product-card-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-tags span {
    background: rgba(255, 107, 0, 0.1);
    color: var(--primary-color);
    padding: 3px 8px;
    border-radius: 5px;
    font-size: 0.8rem;
    margin-right: 5px;
}

.product-card-footer {
    padding: 25px;
    border-top: 1px solid var(--border-color);
    margin-top: auto;
}

.contact-form .form-control {
    background-color: var(--secondary-color);
    border: 1px solid var(--border-color);
    color: #fff;
    padding: 15px;
}

.contact-form .form-control:focus {
    background-color: var(--secondary-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(255, 107, 0, 0.25);
    color: #fff;
}

.contact-info-block {
    background: var(--secondary-color);
    padding: 40px;
    border-radius: 10px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.contact-info-item .icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 20px;
}

.policy-page {
    background-color: #fff;
    color: var(--text-dark);
}

.policy-page h1,
.policy-page h2,
.policy-page h3 {
    color: var(--secondary-color);
}

.policy-header {
    padding: 150px 0 60px;
    background-color: var(--secondary-color);
}

.policy-header h1 {
    color: #fff;
}

iframe {
    border: 0;
    border-radius: 10px;
}

.contact-hero {
    background-image: linear-gradient(rgba(10, 37, 64, 0.7), rgba(3, 14, 26, 0.8)), url('../images/contact-hero.webp');
}

.about-hero {
    background-image: linear-gradient(rgba(10, 37, 64, 0.7), rgba(3, 14, 26, 0.8)), url('../images/about-hero.webp');
}

.mission-section {
    background: url('../images/mission.webp') no-repeat center center/cover;
    background-attachment: fixed;
}


.thanks {
    min-height: 80vh;
}