/* ================================
   ROOT VARIABLES
================================ */
:root {
    /* Fonts */
    --font-primary: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    /* Colors */
    --white: #ffffff;
    --orange: #003366;
    --light-orange: #f8f8f8;
    --dark-overlay: #af6e1874;
    --text: #5f6f6c;
    --text-dark: #0b3954;

    /* Layout */
    --hero-radius: 30px;
    --hero-margin: 25px;

    /* Header */
    --header-padding-desktop: 10px 40px;
    --header-padding-mobile: 16px 24px;

    /* Buttons */
    --btn-radius-full: 50%;
    --btn-radius-pill: 28px;
    --btn-contact-padding: 14px 32px;
    --btn-contact-padding-sm: 12px 24px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;

    /* Typography */
    --heading-xl: 72px;
    --heading-lg: 60px;
    --heading-md: 48px;
    --heading-sm: 36px;
    --heading-xs: 32px;
    --text-lg: 20px;
    --text-md: 18px;
    --text-sm: 16px;
}

/* ================================
   RESET & BASE
================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

section {
    overflow-x: hidden;
}

/* ================================
   HEADER
================================ */
.header {
    padding: var(--header-padding-desktop);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 4;
    background-color: transparent;
    box-shadow: none;
    transition: all 0.3s ease;
}

.header.transparent {
    background-color: transparent;
    box-shadow: none;
    transform: translateY(0);
    padding: 50px;
}

.header.scrolled {
    background-color: rgba(241, 239, 239, 0.975);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
}

.header.scrolled .btn-contact {
    background-color: var(--text-dark);
    color: var(--white);
}

.header .container-fluid {
    max-width: 100%;
    padding: 0;
}

/* Logo */
.logo-container {
    z-index: 1;

}

.logo-container img {
    width: 100px;
    filter: drop-shadow(0 0px 0.5px rgb(255, 255, 255));
}

.logo-icon {
    width: 48px;
    height: 48px;
    background-color: #fdaf27;
    border-radius: var(--btn-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    color: var(--white);
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
}

/* ================================
   NAVIGATION
================================ */
.main-nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: var(--light-orange) !important;
    font-size: var(--text-sm);
    font-weight: 500;
    cursor: pointer;
    transition: color var(--transition-normal);
    padding: 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white) !important;
    font-weight: 900;
}

.nav-link svg {
    width: 12px;
    height: 8px;
    transition: transform var(--transition-normal);
}

.nav-link:hover svg {
    transform: translateY(2px);
}

/* ================================
   HEADER ACTIONS
================================ */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-contact {
    background-color: var(--white);
    color: var(--text-dark);
    padding: var(--btn-contact-padding);
    border-radius: var(--btn-radius-pill);
    border: none;
    font-size: var(--text-sm);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.btn-menu {
    width: 56px;
    height: 56px;
    background-color: var(--white);
    border-radius: var(--btn-radius-full);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform var(--transition-fast);
}

/* ================================
   HERO SECTION
================================ */
.hero-section {
    position: relative;
    width: 97%;
    overflow: hidden;
    margin: var(--hero-margin);
    border-radius: var(--hero-radius);
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: #080808c9;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-main {
    padding: 120px 40px 150px;
}

/* Eco Badge */
.eco-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 32px 0;
}

.eco-icon {
    width: 80px;
    height: 80px;
}

.eco-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: drop-shadow(0 0 1px white);
}

.eco-text {
    color: var(--white);
    font-size: var(--text-lg);
    font-weight: 500;
}

/* Hero Heading & Text */
.hero-heading {
    font-size: var(--heading-xl);
    font-weight: 700;
    line-height: 1.1;
    margin: 26px 0;
}

.text-white {
    color: var(--white);
}

.text-orange {
    color: var(--orange);
}

.hero-content .text-orange {
    color: #006edb;
}

.hero-description {
    color: var(--white);
    font-size: var(--text-md);
    line-height: 1.6;
    max-width: 700px;
}

/* ================================
   STATS SECTION
================================ */
.stats-section {
    padding: 40px 0;
    display: flex;
    justify-content: center;
    overflow: visible;
}

.stats-container {
    background: var(--white);
    border-radius: var(--hero-radius);
    padding: 40px 60px;
    display: flex;
    align-items: center;
    gap: 40px;
    width: 75%;
    max-width: 1400px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    margin-top: -165px;
    z-index: 2;
}

.stat-item {
    position: relative;
    flex: 1;
    text-align: center;
}

.stat-badge {
    position: absolute;
    top: -25px;
    left: 70%;
    width: 70px;
    height: 70px;
    background: var(--light-orange);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.stat-number {
    position: relative;
    font-size: 35px;
    font-weight: 700;
    color: var(--orange);
    line-height: 1;
    z-index: 3;
    transition: transform 0.3s ease;
}

.stat-item:hover .stat-number {
    transform: translateY(-4px);
}

.stat-label {
    margin-top: 10px;
    font-size: var(--text-md);
    color: var(--text-dark);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 80px;
    background: var(--text-dark);
}

/* ================================
   ABOUT SECTION
================================ */
.about-text {
    color: var(--text-dark);
    font-size: 17px;
    line-height: 1.8;
    max-width: 750px;
    margin-bottom: 16px;
    font-style: italic;
}

.about-text strong {
    font-weight: 600;
}

.about-image img {
    width: 100%;
    border-radius: 28px;
    object-fit: cover;
}

.info-card {
    border-radius: 28px;
    padding: 40px 32px;
    height: 100%;
}

.info-card.dark {
    background: var(--orange);
    color: var(--white);
}

.info-card.green {
    background: var(--light-orange);
    color: var(--text-dark);
}

.card-number {
    font-size: 56px;
    font-weight: 700;
    opacity: 0.9;
}

.info-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin: 10px 0;
}

.info-card p {
    font-size: 15px;
    line-height: 1.7;
}

/* ================================
   BUTTONS
================================ */
.main-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: var(--orange);
    color: var(--white);
    padding: 14px 24px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.main-btn i {
    background: var(--light-orange);
    color: var(--text-dark);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 18px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.main-btn i::before {
    transition: color 0.3s ease;
}

.main-btn:hover {
    background: var(--light-orange);
    color: var(--text-dark);
    border: 1px solid var(--orange);
}

.main-btn:hover i {
    background: var(--text-dark);
    transform: rotate(-30deg);
}

.main-btn:hover i::before {
    color: var(--white);
}

.primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--orange);
    color: #fff;
    padding: 14px 26px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* ================================
   PROJECTS SECTION
================================ */
.projects-section {
    padding: 80px 0 0;
    background: var(--white);
    font-family: var(--font-primary);
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    margin: 20px 0;
    color: var(--text-dark);
}

.section-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #64748b;
    max-width: 520px;
}

.projects-desc {
    max-width: 520px;
    margin-left: auto;
    font-size: var(--text-md);
    color: #667085;
    line-height: 1.7;
}

/* Project Card */
.project-card {
    position: relative;
    height: 420px;
    overflow: hidden;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.1));
    opacity: 0.9;
}

.project-card:hover img {
    transform: scale(1.08);
}

.project-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 2;
}

.project-overlay h4 {
    color: var(--white);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 6px;
}

.project-overlay span {
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
}

/* ================================
   SERVICES MARQUEE
================================ */
.services-marquee {
    background: var(--light-orange);
    overflow: hidden;
    padding: 28px 0;
    margin-bottom: 10px;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 20s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-right: 40px;
}

.marquee-content span {
    font-size: 36px;
    font-weight: 600;
    color: var(--text-dark);
    white-space: nowrap;
}

.marquee-icon {
    font-size: 28px;
    color: #000;
}

.services-marquee:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ================================
   SERVICES SECTION
================================ */
.services-section {
    padding: 50px 0;
}

.service-card {
    background: var(--light-orange);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.service-card::after {
    content: "";
    position: absolute;
    top: 27px;
    left: -1px;
    width: 30px;
    height: 30px;
    background: white;
}

.service-card::before {
    content: "";
    position: absolute;
    top: -2px;
    left: 28px;
    width: 30px;
    height: 30px;
    background: white;
}

.service-card img {
    width: 42px;
    margin-bottom: 20px;
}

.service-card h5 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-card p {
    color: var(--text);
    font-size: 15px;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-card a {
    color: var(--orange);
    font-weight: 500;
    text-decoration: none;
}

.service-card a span {
    margin-left: 6px;
}

.service-card:hover {
    transform: translateY(-8px);
}

/* ================================
   WHY CHOOSE US SECTION
================================ */
.why-choose-section {
    padding: 90px 0;
}

.feature-item {
    position: relative;
    padding-left: 44px;
}

.check-icon {
    position: absolute;
    left: 0;
    top: 2px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--orange);
    color: var(--text-dark);
    background-color: var(--light-orange);
    font-size: 14px;
    display: grid;
    place-items: center;
}

.feature-item h6 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.feature-item p {
    font-size: 14px;
    line-height: 1.7;
    color: #6b7280;
    margin-bottom: 0;
}

.image-wrapper {
    width: 100%;
    height: 400px;
    border-radius: 6px;
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.why-content p {
    color: var(--text);
    margin-bottom: 30px;
    line-height: 1.7;
}

.why-image {
    height: -webkit-fill-available;
}

.why-image img {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    object-fit: cover;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-box {
    display: flex;
    gap: 20px;
    align-items: center;
    background: var(--light-orange);
    padding: 20px;
}

.feature-box .icon {
    font-size: 34px;
    color: var(--orange);
    flex-shrink: 0;
}

.feature-box i {
    font-size: 30px;
    color: var(--orange);
}

.feature-box h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
}

.feature-box h6 {
    margin: 0;
    font-weight: 600;
}

.feature-box p {
    font-size: 14px;
    color: var(--text);
    line-height: 1.6;
}

/* ================================
   TESTIMONIAL SECTION
================================ */
.testimonial-section {
    width: 100%;
    overflow: hidden;
    font-family: var(--font-primary);
    margin-bottom: 370px;
}

.testimonial-image {
    width: 100%;
    height: 100%;
    background: url('assets/images/home2.png');
    background-size: cover;
}

.testimonial-content {
    background: var(--light-orange);
    padding: 80px 70px;
    position: relative;
    height: 100%;
}

.testimonial-content img {
    width: 450px;
    position: absolute;
    bottom: 0px;
    right: -50px;
}

.quote-icon {
    font-size: 72px;
    font-weight: 700;
    line-height: 1;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.testimonial-text {
    font-size: 26px;
    font-weight: 500;
    line-height: 1.6;
    color: var(--text-dark);
    max-width: 520px;
    margin-bottom: 40px;
}

.testimonial-author {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 40px;
}

.testimonial-dots {
    display: flex;
    gap: 10px;
}

.testimonial-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.25);
}

.testimonial-dots span.active {
    background: #0f172a;
}

.testimonial-text-swiper {
    width: 100%;
}

.swiper-slide {
    height: auto;
}

.swiper-pagination {
    margin-top: 30px;
    text-align: left;
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(0, 0, 0, 0.3);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #0f172a;
}

/* ================================
   APPOINTMENT SECTION
================================ */
.appointment-box {
    background: var(--text-dark);
    border-radius: 20px;
    padding: 50px;
    margin: -350px 0 60px 0;
}

.badge-text {
    color: var(--orange);
    font-size: 14px;
    letter-spacing: 1px;
}

.appointment-section h2 {
    font-size: 38px;
    font-weight: 600;
    margin: 15px 0;
}

.appointment-section h2 span {
    color: var(--orange);
}

.appointment-section p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 420px;
}

.call-box {
    background: #ffffff;
    color: #000;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    border-radius: 12px;
    margin-top: 25px;
    max-width: 300px;
}

.call-icon {
    background: var(--orange);
    padding: 10px 13px 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.appointment-image img {
    width: 100%;
    border-radius: 16px;
}

/* ================================
   FOOTER SECTION
================================ */
.footer-section {
    background: var(--light-orange);
    color: var(--text-dark);
    padding: 80px 0 30px;
    position: relative;
    margin-top: 300px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--orange);
}

.footer-logo i {
    color: var(--orange);
    margin-right: 8px;
}

.footer-text {
    color: var(--text);
    margin: 20px 0;
}

.footer-social a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    background: var(--text-dark);
    border-radius: 50%;
    margin-right: 10px;
    color: var(--white);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    border: 1px solid var(--orange);
    background: var(--white);
    color: var(--orange);
}

.footer-title {
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--orange);
}

.footer-contact-box {
    background: var(--text-dark);
    padding: 30px;
    border-radius: 16px;
    color: white;
}

.footer-divider {
    border-color: #222;
    margin: 40px 0 20px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    color: var(--text);
}

.footer-bottom a {
    color: var(--text-dark);
    margin-left: 20px;
    text-decoration: none;
}

/* ================================
   BREADCRUMB
================================ */
.breadcrumb-wrapper {
    width: 97%;
    position: relative;
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    padding: 200px 40px;
    border-radius: var(--hero-radius);
    margin: var(--hero-margin);
    display: flex;
    align-items: center;
    min-height: 80px;
    color: #ffffff;
    overflow: hidden;
}

.breadcrumb-wrapper .breadcrumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.796), rgba(0, 0, 0, 0.477), rgba(0, 0, 0, 0.158));
    border-radius: var(--hero-radius);
    z-index: 0;
}

.breadcrumb-wrapper .breadcrumb {
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.748);
    backdrop-filter: blur(6px);
    padding: 10px 18px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
    flex-wrap: wrap;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.breadcrumb-item a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.85;
    transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
    opacity: 1;
    color: #ff7f00;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #ff7f00;
    font-weight: 600;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "/";
    color: rgba(255, 255, 255, 0.5);
    padding-right: 8px;
}

/* ================================
   STORY SECTION (ABOUT PAGE)
================================ */
.story-section {
    padding: 70px 0 100px 0;
}

.story-title {
    font-size: 44px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 25px;
}

.main-image img {
    border-radius: 4px;
    width: 79%;
}

.floating-image {
    border-radius: 4px;
    position: absolute;
    bottom: 60px;
    right: -32px;
    width: 360px;
    padding: 10px;
    background-color: white;
}

.floating-image img {
    border-radius: 4px;
}

.experience-box {
    border-radius: 4px;
    position: absolute;
    top: 0px;
    right: 12px;
    background: var(--orange);
    color: #fff;
    padding: 30px 35px;
    text-align: center;
}

.experience-box h2 {
    font-size: 48px;
    font-weight: 700;
}

.experience-box p {
    margin: 0;
    font-size: 16px;
}

.clients-box {
    margin-top: 30px;
}

.clients-box p {
    font-weight: 500;
}

.avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: -10px;
    border: 2px solid #fff;
}

.checklist p {
    font-size: 15px;
    margin-bottom: 10px;
}

.checklist i {
    color: var(--orange);
    margin-right: 8px;
}

/* ================================
   PRODUCT DETAIL PAGE
================================ */
.product-detail {
    padding: 80px 0;
}

.product-gallery {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.product-gallery img {
    border-radius: 20px;
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-gallery:hover img {
    transform: scale(1.05);
}

.thumbs img {
    height: 90px;
    cursor: pointer;
    border-radius: 12px;
    border: 3px solid #e0e0e0;
    transition: all 0.3s ease;
    object-fit: cover;
    width: 100%;
}

.thumbs img:hover {
    border-color: var(--orange);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 94, 20, 0.3);
}

.thumbs img.active {
    border-color: var(--orange);
    box-shadow: 0 8px 20px rgba(255, 94, 20, 0.4);
}

.product-title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 2.5rem;
}

.product-desc {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.product-actions .btn {
    margin-right: 10px;
    margin-bottom: 10px;
}

/* Tech Box Cards */
.tech-box {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.4s ease;
}

.tech-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(255, 94, 20, 0.1), transparent);
    border-radius: 0 0 0 100%;
}

.tech-box:hover {
    transform: translateY(-10px);
    border-color: var(--orange);
    box-shadow: 0 20px 60px rgba(255, 94, 20, 0.15);
}

.tech-box .tech-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--orange), #ff7744);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: white;
    box-shadow: 0 8px 20px rgba(255, 94, 20, 0.3);
}

.tech-box h5 {
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.tech-box p {
    color: var(--text);
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

/* Specification Cards */
.spec-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 2px solid #f0f0f0;
}

.spec-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), #ff7744);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.spec-card:hover {
    transform: translateY(-10px);
    border-color: var(--orange);
    box-shadow: 0 20px 60px rgba(255, 94, 20, 0.15);
}

.spec-card:hover::after {
    transform: scaleX(1);
}

.spec-card .spec-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #fff5f0, #ffe8db);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: var(--orange);
    border: 2px solid #ffdbcc;
}

.spec-card h6 {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.15rem;
    color: #1a1a1a;
}

.spec-card p {
    font-size: 14px;
    color: var(--text);
    line-height: 1.6;
    margin: 0;
}

/* Info Table */
.info-table-wrapper {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.info-table {
    margin: 0;
    border: none;
}

.info-table tbody tr {
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.info-table tbody tr:hover {
    background: linear-gradient(90deg, rgba(255, 94, 20, 0.05), transparent);
    transform: translateX(5px);
}

.info-table tbody tr:last-child {
    border-bottom: none;
}

.info-table td {
    padding: 18px 20px;
    font-size: 15px;
    border: none;
    vertical-align: middle;
}

.info-table td:first-child {
    font-weight: 600;
    color: #1a1a1a;
    width: 35%;
    position: relative;
    padding-left: 30px;
}

.info-table td:last-child {
    color: var(--text);
}

/* Section Badge */
.section-badge {
    background: linear-gradient(135deg, var(--orange), #ff7744);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(255, 94, 20, 0.3);
}

.section-title-wrapper {
    margin-bottom: 50px;
}

.section-title-wrapper h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 15px;
    color: #1a1a1a;
}

.section-title-wrapper p {
    color: var(--text);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 15px auto 0;
}

/* ================================
   BIFACIAL FEATURES
================================ */
.bifacial-features {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.bifacial-features::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.feature-card {
    background: #fff;
    border-radius: 16px;
    padding: 35px 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    height: 100%;
    position: relative;
    cursor: pointer;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, var(--orange), #ffb366);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(255, 102, 0, 0.15);
    border-color: var(--orange);
}

.feature-card .icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #fff5f0, #ffe8d9);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
}

.feature-card:hover .icon-wrapper {
    transform: rotate(10deg) scale(1.1);
}

.feature-card .icon-wrapper i {
    font-size: 32px;
}

.feature-card h5 {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.tech-swiper .swiper-slide {
    height: auto;
}

/* ================================
   MISSION SECTION
================================ */
.mission-section {
    padding: 80px 0;
}

.mission-card {
    padding: 40px 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: var(--light-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
    color: var(--orange);
}

.mission-card h5 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.mission-card p {
    color: var(--text);
    line-height: 1.7;
}

/* ================================
   MANUFACTURING SECTION
================================ */
.manufacturing-section {
    padding: 80px 0;
}

.capability-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.capability-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.capability-item i {
    font-size: 32px;
    color: var(--orange);
}

.capability-item h6 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
}

.capability-item p {
    color: var(--text);
    font-size: 15px;
}

/* ================================
   RESPONSIVE DESIGN
================================ */
@media (max-width: 1200px) {
    .hero-heading {
        font-size: var(--heading-lg);
    }
}

@media (min-width: 992px) {
    .header.scrolled .nav-link {
        color: var(--orange) !important;
    }

    .experience-box {
        right: -20px;
    }

    .nav-dropdown {
        position: absolute;
        min-width: 250px !important;
    }


}


@media (max-width: 992px) {
    .section-title {
        font-size: 42px;
    }

    .nav-link {
        color: var(--white);
    }

    .projects-desc {
        margin-left: 0;
        margin-top: 20px;
    }

    .project-card {
        height: 360px;
    }

    .main-nav {
        display: none;
    }

    .hero-heading {
        font-size: var(--heading-md);
    }

    .hero-main {
        padding: 80px 32px 60px;
    }

    .stats-container {
        flex-wrap: wrap;
        gap: 30px;
        padding: 40px;
        border-radius: 40px;
    }

    .stat-divider {
        display: none;
    }

    .stat-item {
        flex: 0 0 50%;
    }

    .testimonial-content {
        padding: 50px 40px;
    }

    .testimonial-text {
        font-size: 22px;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .why-features {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .header {
        padding: var(--header-padding-mobile);
    }

    .logo-text {
        font-size: 20px;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
    }

    .btn-contact {
        padding: var(--btn-contact-padding-sm);
        font-size: 14px;
    }

    .btn-menu {
        width: 48px;
        height: 48px;
        z-index: 1;
    }

    .hero-heading {
        font-size: var(--heading-sm);
    }

    .hero-description {
        font-size: var(--text-sm);
    }

    .eco-badge {
        margin-bottom: 24px;
    }

    .eco-icon {
        width: 60px;
        height: 60px;
    }

    .eco-text {
        font-size: var(--text-sm);
    }

    .hero-main {
        padding: 135px 24px 40px;
    }

    .hero-section {
        width: 100%;
        margin: 0;
        border-radius: 0;
    }

    .stats-container {
        margin-top: 0;
    }

    .marquee-content span {
        font-size: 22px;
    }

    .marquee-icon {
        font-size: 18px;
    }

    .breadcrumb-wrapper .breadcrumb-overlay {
        border-radius: 0;
    }

    .breadcrumb-wrapper {
        width: 100%;
        margin: 0;
        border-radius: 0;
    }

    .floating-image {
        width: 135px;
        right: 0;
    }

    .mission-section,
    .manufacturing-section {
        padding: 50px 0;
    }

    .breadcrumb-wrapper .breadcrumb {
        position: absolute;
        bottom: 20px;
        left: 0;
        right: 0;
        margin: 0 auto;
        width: fit-content;
    }

    .info-table-wrapper,
    .info-table td:first-child {
        padding: 15px 0px;
    }

    .appointment-image {
        margin-top: 35px;
    }

}

@media (max-width: 480px) {
    .hero-heading {
        font-size: var(--heading-xs);
    }

    .btn-contact span:last-child {
        display: none;
    }

    .stat-item {
        flex: 0 0 100%;
    }

    .stat-number {
        font-size: 48px;
    }

    .project-card {
        height: 300px;
    }
}