/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #2d2d2d;
    --accent-color: #163a5f;
    --accent-gold: #ffd700;
    --text-white: #ffffff;
    --text-gray: #cccccc;
    --bg-light: #f5f5f5;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--primary-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Particles Background */
.particles-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    opacity: 0.05;
}

/* ================= TOP BAR ================= */
.top-bar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:50px;
    background:#163a5f;
    z-index:1000;
    display:flex;
    align-items:center;
    transition:transform 0.3s ease;
}

.top-bar.hide{
    transform:translateY(-100%);
}

.top-container{
    max-width:1200px;
    margin:auto;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 20px;
}

.top-left a,
.top-right a{
    color:#fff;
    text-decoration:none;
    font-size:14px;
    /*margin-right:18px;*/
    font-weight:500;
}

.top-right a{
    margin-left:15px;
}

.top-left i{
    margin-right:6px;
    color:var(--accent);
}

.top-right a:hover{
    color:var(--accent);
}

/* ================= NAVBAR ================= */
.navbar{
    position:fixed;
    top:40px; /* same as topbar height */
    left:0;
    width:100%;
    height:70px;
    background:#ffffff;
    z-index:999;
    transition:top 0.3s ease, box-shadow 0.3s ease;
    box-shadow:0 2px 12px rgba(0,0,0,0.06);
    display:flex;
    align-items:center;
}

.navbar.scrolled{
    top:0;
    box-shadow:0 5px 20px rgba(0,0,0,0.12);
}

.nav-container{
    max-width:1200px;
    margin:auto;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 20px;
}

/* ================= LOGO ================= */
.logo img{
    width:160px;
    display:block;
}

/* ================= MENU ================= */
.nav-menu{
    display:flex;
    list-style:none;
    gap:32px;
    align-items:center;
}

.nav-menu a{
    text-decoration:none;
    font-weight:600;
    font-size:15px;
    color:var(--text);
    position:relative;
    padding-bottom:4px;
    transition:0.3s;
}

/* Underline animation */
.nav-menu a::after{
    content:'';
    position:absolute;
    bottom:0;
    left:0;
    width:0;
    height:2px;
    background:var(--accent);
    transition:0.3s;
}

.nav-menu a:hover::after,
.nav-menu a.active::after{
    width:100%;
}



/* ================= MOBILE MENU ================= */
.nav-toggle{
    display:none;
    flex-direction:column;
    cursor:pointer;
}

.nav-toggle span{
    width:26px;
    height:3px;
    background:#000;
    margin:4px 0;
    transition:0.3s;
}

@media(max-width:992px){

   /* body{
        padding-top:120px;
    }*/

    .top-container{
        flex-direction:column;
        gap:0px;
        text-align:center;
    }

    .navbar{
        height:70px;
    }

    .nav-menu{
        position:absolute;
        right:-100%;
        top:100%;
        flex-direction:column;
        background:#fff;
        width:260px;
        padding:25px;
        gap:20px;
        box-shadow:0 10px 30px rgba(0,0,0,0.1);
        transition:0.3s;
    }

    .nav-menu.active{
        right:0;
    }

    .nav-toggle{
        display:flex;
    }
}
/* Hero Slider */
.hero-slider {
    position: relative;
    overflow: hidden;
    margin-top: 70px;
}

.slider-container {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--text-white);
    z-index: 2;
    width: 90%;
    max-width: 800px;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.slide-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slide-content p {
    font-weight: 900;
    font-size: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin-bottom: 2rem;
}

.hero-cta-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: var(--text-white);
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(200, 16, 46, 0.4);
}

.hero-cta-btn:hover {
    background: #a00d25;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(200, 16, 46, 0.6);
}

.fade-in {
    animation: fadeIn 1s ease-in;
}

.fade-in-delay {
    animation: fadeIn 1s ease-in 0.5s backwards;
}

.fade-in-delay-2 {
    animation: fadeIn 1s ease-in 1s backwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    color: var(--text-white);
    border: none;
    padding: 1rem;
    cursor: pointer;
    font-size: 1.5rem;
    transition: var(--transition);
    z-index: 3;
    backdrop-filter: blur(5px);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.5);
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--accent-color);
    width: 30px;
    border-radius: 6px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
    color: var(--text-white);
}

.scroll-indicator span {
    display: block;
    width: 2px;
    height: 30px;
    background: var(--text-white);
    margin: 0 auto 10px;
    animation: scrollDown 2s infinite;
}

.scroll-indicator p {
    font-weight: 900;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes scrollDown {
    0%, 100% {
        opacity: 0;
        transform: translateY(-10px);
    }
    50% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tagline Section Enhanced */
.tagline-section {
    background: var(--primary-color);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tagline-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(200, 16, 46, 0.1), transparent);
    z-index: 0;
}

.tagline-content {
    position: relative;
    z-index: 1;
}

.tagline-badge {
    display: inline-block;
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
}

.tagline-badge i {
    font-size: 2.5rem;
    color: var(--accent-gold);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(200, 16, 46, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(200, 16, 46, 0);
    }
}

.tagline-content h2 {
    color: var(--accent-gold);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.divider {
    width: 100px;
    height: 3px;
    background: var(--accent-color);
    margin: 1rem auto;
}

.tagline-content h3 {
    color: var(--text-white);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-white);
}

.badge-item i {
    font-size: 2rem;
    color: var(--accent-gold);
}

.badge-item span {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gold-text {
    color: var(--accent-gold);
}

.animate-fade-in {
    animation: fadeInUp 1s ease-out;
}

.animate-fade-in-delay {
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

/* Intro Section Enhanced */
.intro-section {
    padding: 6rem 0;
    background: var(--text-white);
}

.section-label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: #767c80;
    color: var(--accent-color);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.intro-features {
    margin: 2rem 0;
}

.intro-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-icon-circle {
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon-circle i {
    color: var(--text-white);
    font-size: 1.2rem;
}

.feature-text h4 {
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.feature-text p {
    font-weight: 900;
    color: #666;
    font-size: 0.95rem;
}

.image-wrapper {
    position: relative;
}

.image-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--accent-color);
    color: #000;
    padding: 1.5rem;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(200, 16, 46, 0.3);
}

.badge-content {
    text-align: center;
}

.badge-content h3 {
    font-size: 2rem;
    margin-bottom: 0.2rem;
}

.badge-content p {
    font-weight: 900;
    font-size: 0.8rem;
    font-weight: 400;
}

/* SLIDER WRAPPER */
.intro-slider {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

/* FADE SLIDES */
.intro-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.intro-slide img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transform: scale(1);
    transition: transform 6s ease;
}

.intro-slide.active {
    opacity: 1;
    position: relative;
}

.intro-slide.active img {
    transform: scale(1.1);
}

/* BADGE */
.image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #fff;
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.image-badge h3 {
    color: #163a5f;
    font-size: 28px;
    margin: 0;
}

/* ARROWS */
.intro-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    padding: 12px 18px;
    font-size: 22px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.intro-btn:hover {
    background: #163a5f;
}

.prev-intro { left: 15px; }
.next-intro { right: 15px; }

/* DOTS */
.slider-dots {
    position: absolute;
    bottom: 15px;
    right: 20px;
}

.dot {
    height: 10px;
    width: 10px;
    margin: 0 4px;
    background: #ccc;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: #163a5f;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .intro-slide img {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .intro-slide img {
        height: 250px;
    }

    .intro-btn {
        padding: 8px 12px;
        font-size: 18px;
    }
}
/* Stats Section Enhanced */
.stats-section {
    background: #767c80;
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(200, 16, 46, 0.1), transparent);
}

.stat-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.stat-icon {
    font-size: 3rem;
    color: #fff;
    position: relative;
    z-index: 1;
}

.stat-bar {
    width: 60px;
    height: 4px;
    background: #fff;
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* Featured Services Enhanced */
.featured-services {
    padding: 6rem 0;
    background: var(--bg-light);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #163a5f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.5rem;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.service-highlights {
    list-style: none;
    /*margin: 1.5rem 0;*/
}

.service-highlights li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    font-size: 14px;
    color: #666;
}

.service-highlights i {
    color: var(--accent-color);
    font-size: 0.9rem;
}

/* Why Choose Section */
.why-choose-section {
    padding: 6rem 0;
    background: var(--text-white);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-features {
    margin: 2rem 0;
}

.why-feature {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.why-icon {
    width: 60px;
    height: 60px;
    background: rgba(200, 16, 46, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-icon i {
    font-size: 1.8rem;
    color: var(--accent-color);
}

.why-text h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.why-text p {
    font-weight: 900;
    color: #666;
    line-height: 1.8;
}

.visual-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.visual-stat-item {
    background: linear-gradient(135deg, var(--accent-color), #a00d25);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    color: var(--text-white);
    box-shadow: 0 10px 30px rgba(200, 16, 46, 0.3);
}

.visual-stat-item h3 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.visual-stat-item p {
    font-weight: 900;
    font-size: 1.1rem;
}

/* Process Preview Section */
.process-preview-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.process-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.process-preview-item {
    background: var(--text-white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.process-preview-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-color);
    transform: scaleX(0);
    transition: var(--transition);
}

.process-preview-item:hover::before {
    transform: scaleX(1);
}

.process-preview-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), #a00d25);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.process-preview-item h3 {
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.process-preview-item p {
    font-weight: 900;
    color: #666;
    line-height: 1.6;
}

.text-center {
    text-align: center;
}

/* CTA Section Enhanced */
.cta-section {
    background: linear-gradient(135deg, var(--accent-color), #a00d25);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1), transparent);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    backdrop-filter: blur(10px);
}

.cta-icon i {
    font-size: 2.5rem;
    color: var(--text-white);
}

.cta-btn-outline-white {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

.cta-btn-outline-white:hover {
    background: var(--text-white);
    color: var(--accent-color);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.5);
}

.lightbox-caption {
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
    max-width: 600px;
    text-align: center;
}

.lightbox-caption h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.lightbox-caption p {
    font-weight: 900;
    color: #666;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 3rem;
    color: var(--text-white);
    cursor: pointer;
    z-index: 10001;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--accent-color);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-white);
    border: none;
    padding: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.4);
}

.lightbox-prev {
    left: 40px;
}

.lightbox-next {
    right: 40px;
}

.zoom-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: #163a5f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.zoom-icon i {
    color: var(--text-white);
    font-size: 1.5rem;
}

.portfolio-image:hover .zoom-icon {
    opacity: 1;
}

.portfolio-image {
    cursor: pointer;
}

/* Content Sections */
.content-section {
    padding: 5rem 0;
}

.content-section.alt-bg {
    background: var(--bg-light);
}

.intro-text-center {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.intro-text-center h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.intro-text-center p {
    font-weight: 900;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #000;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    font-weight: 900;
    font-size: 1.2rem;
    color: #666;
}

/* ===== INTRO SECTION ===== */
.intro-section {
    padding: 80px 0;
    background: #ffffff;
}

.intro-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Section Label */
.section-label span {
    background: #163a5f;
    color: #fff;
    padding: 6px 14px;
    font-size: 12px;
    letter-spacing: 1px;
    border-radius: 30px;
}

/* Heading */
.intro-text h2 {
    font-size: 2.4rem;
    margin: 20px 0;
}

.intro-text p {
    color: #444;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Features */
.intro-feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
}

.feature-icon-circle {
    width: 35px;
    height: 35px;
    background: #163a5f;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.feature-text h4 {
    margin-bottom: 5px;
}

/* CTA */
.cta-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 28px;
    background: #163a5f;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s;
}

.cta-btn:hover {
    background: #a8152e;
}

/* ===== SLIDER ===== */
.intro-slider {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.intro-slides {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.intro-slides img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    flex-shrink: 0;
}

/* Badge */
.image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #fff;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.image-badge h3 {
    color: #163a5f;
    margin: 0;
}

/* Arrows */
.intro-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    padding: 12px 18px;
    font-size: 22px;
    cursor: pointer;
    border-radius: 50%;
    transition: 0.3s;
}

.intro-btn:hover {
    background: #163a5f;
}

.prev-intro { left: 15px; }
.next-intro { right: 15px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .intro-slides img {
        height: 300px;
    }

    .intro-text h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .intro-slides img {
        height: 250px;
    }

    .intro-btn {
        padding: 8px 12px;
        font-size: 18px;
    }
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 80px 0;
    background: #f8f9fc;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

/* TEXT */
.about-text h2 {
    font-size: 2.4rem;
    margin-bottom: 25px;
    font-weight: 700;
    position: relative;
}

.about-text h2::after {
    content: "";
    width: 60px;
    height: 4px;
    background: #163a5f;
    display: block;
    margin-top: 10px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    font-weight: 900;
    color: #444;
    margin-bottom: 18px;
}

.about-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #163a5f;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s;
}

.about-btn:hover {
    background: #a8152e;
}

/* ===== SLIDER ===== */
.about-slider {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.slides {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.slides img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    flex-shrink: 0;
}

/* ARROWS */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    padding: 12px 18px;
    font-size: 22px;
    cursor: pointer;
    border-radius: 50%;
    transition: 0.3s;
}

.slider-btn:hover {
    background: #163a5f;
}

.prev {
    left: 15px;
}

.next {
    right: 15px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .slides img {
        height: 300px;
    }

    .about-text h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .slides img {
        height: 250px;
    }

    .slider-btn {
        padding: 8px 12px;
        font-size: 18px;
    }
}

/* Buttons */
.cta-btn,
.cta-btn-white,
.cta-btn-outline {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.cta-btn {
    background: var(--accent-color);
    color: var(--text-white);
    margin-top: 1rem;
}

.cta-btn:hover {
    background: #a00d25;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(200, 16, 46, 0.3);
}

.cta-btn-white {
    background: var(--text-white);
    color: var(--accent-color);
}

.cta-btn-white:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

.cta-btn-outline {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.cta-btn-outline:hover {
    background: var(--accent-color);
    color: var(--text-white);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-card {
    text-align: center;
    color: #fff;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-card p {
    font-weight: 900;
    font-size: 1.1rem;
    color: #fff;
}

.featured-services {
    padding: 80px 0;
    background: #f8f9fc;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header .label {
    color: #c4122f;
    font-weight: 600;
    letter-spacing: 2px;
}



.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.flip-card {
    perspective: 1200px;
}

/* INNER */
.flip-inner {
    position: relative;
    width: 100%;
    transition: transform 0.7s cubic-bezier(.4,.2,.2,1);
    transform-style: preserve-3d;
}

/* ACTIVE FLIP */
.flip-card.active .flip-inner {
    transform: rotateY(180deg);
}

/* FRONT & BACK */
.flip-front,
.flip-back {
    width: 100%;
    border-radius: 16px;
    backface-visibility: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* FRONT */
.flip-front {
    overflow: hidden;
}

.flip-front img {
    width: 100%;
    height: 250px;
    /*object-fit: cover;*/
    transition: 0.5s;
}

.flip-front:hover img {
    transform: scale(1.08);
}

/* Overlay */
.overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
}

/* BACK */
.flip-back {
    background: #ffffff;
    transform: rotateY(180deg);
    padding: 25px;
    box-sizing: border-box;
    display: none;   /* hidden by default */
}

/* SHOW BACK WHEN ACTIVE */
.flip-card.active .flip-front {
    display: none;
}

.flip-card.active .flip-back {
    display: block;
}

/* LIST */
.service-highlights {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}

.service-highlights li {
    margin-bottom: 8px;
    font-size: 14px;
    display: flex;
    gap: 8px;
}

/* BUTTON */
.flip-btn {
    margin-top: 10px;
    padding: 8px 18px;
    border: none;
    background: #c4122f;
    color: #fff;
    border-radius: 30px;
    cursor: pointer;
}

/* Responsive */
@media(max-width: 992px){
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 768px){
    .services-grid {
        grid-template-columns: 1fr;
    }
}
/* Footer */
.footer {
    background: #c5c5c5;
    color: #000;
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-col h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-col h4 {
    margin-bottom: 1rem;
}

.footer-col p {
    font-weight: 900;
    color: #000;
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: #000;
    text-decoration: none;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: #000;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 1rem;
    color: #000;
}

.contact-info i {
    color: #000;
    margin-top: 3px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #000;
    color: #000;
}

/* Page Header */
.page-header {
    background: url(15.png);
    padding: 4rem 0 4rem;
    text-align: center;
    color: var(--text-white);
    margin-top: 70px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-weight: 900;
    font-size: 1.3rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: var(--text-white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.feature-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
}

.feature-card p {
    font-weight: 900;
    color: #666;
}

/* MVV Section */
.mvv-section {
    background: var(--bg-light);
    padding: 5rem 0;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.mvv-card {
    background: var(--text-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.mvv-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.mvv-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.mvv-card p {
    font-weight: 900;
    color: #666;
    line-height: 1.8;
}

.values-list {
    list-style: none;
}

.values-list li {
    margin-bottom: 0.8rem;
    color: #666;
    line-height: 1.6;
}

.values-list strong {
    color: var(--primary-color);
}

/* Timeline */
.timeline-section {
    padding: 5rem 0;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--accent-color);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    flex: 1;
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    padding: 1rem;
}

.timeline-content {
    flex: 1;
    background: var(--text-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
}

.timeline-content p {
    font-weight: 900;
    color: #666;
}

/* Service Detail Section */
.service-detail-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-detail-box {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.service-detail-box:hover {
    transform: translateY(-8px);
}

.service-detail-box img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-detail-box h4 {
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    color: #222;
}

/* Responsive */
@media (max-width: 992px) {
    .service-detail-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .service-detail-grid {
        grid-template-columns: 1fr;
    }
}

.service-subtitle {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.feature-list {
    list-style: none;
    margin: 1.5rem 0;
}

.feature-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.feature-list i {
    color: var(--accent-color);
    margin-top: 3px;
}

.other-services-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.other-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.other-service-card {
    background: var(--text-white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.other-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.other-service-card h3 {
    margin-bottom: 1rem;
}

.other-service-card p {
    font-weight: 900;
    color: #666;
}

/* Delivery Section */
.delivery-section {
    padding: 5rem 0;
}

.delivery-content h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.delivery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.delivery-item {
    text-align: center;
}

.delivery-item i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.delivery-item h3 {
    margin-bottom: 0.5rem;
}

.delivery-item p {
    font-weight: 900;
    color: #666;
}

/* Process Steps */
.process-steps-section {
    padding: 5rem 0;
}

.process-step {
    display: grid;
    grid-template-columns: 80px 1fr 300px;
    gap: 2rem;
    margin-bottom: 4rem;
    align-items: start;
}

.process-step.reverse {
    grid-template-columns: 300px 1fr 80px;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
}

.step-content h2 {
    margin-bottom: 1rem;
}

.step-content p {
    font-weight: 900;
    color: #666;
    margin-bottom: 1.5rem;
}

.step-details {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.step-details h3 {
    margin-bottom: 0.8rem;
    color: var(--accent-color);
}

.step-details ul {
    list-style: none;
    margin-bottom: 1rem;
}

.step-details ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.step-details ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.step-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-image i {
    font-size: 8rem;
    color: var(--accent-color);
    opacity: 0.2;
}

.step-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Timeline Overview */
.timeline-overview-section {
    background: var(--bg-light);
    padding: 5rem 0;
}

.timeline-overview {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.timeline-phase {
    background: var(--text-white);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    min-width: 150px;
}

.timeline-phase h3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.timeline-phase p {
    font-weight: 900;
    font-size: 0.9rem;
    color: #666;
}

.timeline-arrow {
    font-size: 2rem;
    color: var(--accent-color);
}

.timeline-note {
    text-align: center;
    margin-top: 2rem;
    color: #666;
    font-style: italic;
}

/* Why Process Section */
.why-process-section {
    padding: 5rem 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.why-card {
    text-align: center;
    padding: 2rem;
}

.why-card i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.why-card h3 {
    margin-bottom: 0.5rem;
}

.why-card p {
    font-weight: 900;
    color: #666;
}

/* Portfolio */
.portfolio-filter-section {
    padding: 2rem 0;
    background: var(--bg-light);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--accent-color);
    background: transparent;
    color: var(--accent-color);
    border-radius: 25px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent-color);
    color: var(--text-white);
}

.portfolio-grid-section {
    padding: 5rem 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.portfolio-item {
    background: var(--text-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.portfolio-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 2rem;
    color: var(--text-white);
    transform: translateY(100%);
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-overlay h3 {
    margin-bottom: 0.5rem;
}

.portfolio-content {
    padding: 2rem;
}

.portfolio-content h3 {
    margin-bottom: 0.5rem;
}

.portfolio-client {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.portfolio-desc {
    color: #666;
    margin-bottom: 1rem;
}

.portfolio-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.tag {
    background: var(--bg-light);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    color: #666;
}

.request-btn {
    background: var(--accent-color);
    color: var(--text-white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    transition: var(--transition);
    width: 100%;
}

.request-btn:hover {
    background: #a00d25;
}

/* Testimonials */
.testimonials-section {
    background: var(--bg-light);
    padding: 5rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--text-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-weight: 900;
    color: #666;
    font-style: italic;
    line-height: 1.8;
}

.testimonial-author h4 {
    margin-bottom: 0.3rem;
}

.testimonial-author p {
    font-weight: 900;
    color: #999;
    font-size: 0.9rem;
}

.portfolio-stats-section {
    background: var(--secondary-color);
    padding: 4rem 0;
}

.stat-item {
    text-align: center;
    color: var(--text-white);
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-weight: 900;
    font-size: 1.1rem;
}

/* Compliance */
.certifications-section {
    padding: 5rem 0;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.cert-card {
    display: flex;
    gap: 2rem;
    background: var(--text-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    align-items: center;
}

.cert-image {
    flex-shrink: 0;
}

.cert-image img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
}

.cert-icon {
    font-size: 4rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.cert-content h3 {
    margin-bottom: 0.5rem;
}

.cert-content p {
    font-weight: 900;
    color: #666;
}

/* Standards Section */
.standards-section {
    padding: 5rem 0;
}

.standards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.standard-item {
    background: var(--text-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.standard-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.standard-item h3 {
    margin-bottom: 1rem;
}

.standard-item ul {
    list-style: none;
}

.standard-item ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
}

.standard-item ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

/* RTO Section */
.rto-section {
    padding: 5rem 0;
}

.compliance-list {
    list-style: none;
    margin: 1.5rem 0;
}

.compliance-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.compliance-list i {
    color: var(--accent-color);
    margin-top: 3px;
}

.compliance-checklist {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

.compliance-checklist h3 {
    margin-bottom: 1.5rem;
    text-align: center;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--text-white);
    margin-bottom: 0.8rem;
    border-radius: 4px;
}

.checklist-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

/* Materials Section */
.materials-section {
    padding: 5rem 0;
}

.materials-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.material-category {
    background: var(--text-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.material-category h3 {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.material-category h3 i {
    color: var(--accent-color);
}

.material-category p {
    font-weight: 900;
    margin-bottom: 1rem;
    color: #666;
}

.material-category ul {
    list-style: none;
}

.material-category ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
}

.material-category ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

/* QA Section */
.qa-section {
    padding: 5rem 0;
}

.qa-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.qa-step {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.qa-number {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.qa-step h3 {
    margin-bottom: 0.5rem;
}

.qa-step p {
    font-weight: 900;
    color: #666;
}

/* Warranty Section */
.warranty-section {
    background: var(--bg-light);
    padding: 5rem 0;
}

.warranty-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.warranty-content h2 {
    margin-bottom: 1rem;
}

.warranty-content > p {
    font-weight: 900;
    margin-bottom: 2rem;
    color: #666;
}

.warranty-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.warranty-item {
    background: var(--text-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.warranty-item i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.warranty-item h3 {
    margin-bottom: 0.5rem;
}

.warranty-item p {
    font-weight: 900;
    color: #666;
}

.warranty-note {
    color: #999;
    font-size: 0.9rem;
    font-style: italic;
}

/* Contact Page */
.contact-section {
    padding: 5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
}

.contact-info-col h2 {
    margin-bottom: 1rem;
}

.contact-info-col > p {
    font-weight: 900;
    color: #666;
    margin-bottom: 2rem;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-detail-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-text h3 {
    margin-bottom: 0.5rem;
}

.contact-text p {
    font-weight: 900;
    color: #666;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.contact-btn {
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.call-btn {
    background: var(--accent-color);
    color: var(--text-white);
}

.call-btn:hover {
    background: #a00d25;
}

.whatsapp-btn {
    background: #25D366;
    color: var(--text-white);
}

.whatsapp-btn:hover {
    background: #20ba5a;
}

.location-image {
    margin-top: 2rem;
}

.location-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Contact Form */
.form-container {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-container h2 {
    margin-bottom: 0.5rem;
}

.form-container > p {
    font-weight: 900;
    color: #666;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--accent-color);
    color: var(--text-white);
    border: none;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    background: #a00d25;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(200, 16, 46, 0.3);
}

/* Map Section */
.map-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.map-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.faq-item {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

.faq-item h3 {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-item h3 i {
    color: var(--accent-color);
}

.faq-item p {
    font-weight: 900;
    color: #666;
}

/* Thank You Page */
.thankyou-section {
    padding: 8rem 0 5rem;
    min-height: calc(100vh - 300px);
}

.thankyou-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thankyou-icon {
    font-size: 5rem;
    color: #28a745;
    margin-bottom: 2rem;
}

.thankyou-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.thankyou-message {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.thankyou-details {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.thankyou-details h2 {
    margin-bottom: 2rem;
}

.next-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.step {
    text-align: center;
}

.step-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.step h3 {
    margin-bottom: 0.5rem;
}

.step p {
    font-weight: 900;
    color: #666;
    font-size: 0.9rem;
}

.thankyou-contact {
    margin-bottom: 3rem;
}

.thankyou-contact h3 {
    margin-bottom: 0.5rem;
}

.thankyou-contact p {
    font-weight: 900;
    color: #666;
    margin-bottom: 1rem;
}

.thankyou-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .stats-grid,
    .services-grid,
    .features-grid,
    .mvv-grid,
    .other-services-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .delivery-grid,
    .why-grid,
    .qa-grid,
    .warranty-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-step,
    .process-step.reverse {
        grid-template-columns: 1fr;
    }

    .step-image {
        order: -1;
    }

    .why-choose-grid,
    .process-preview-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 100px;
        flex-direction: column;
        background: #dbdbdb;
        width: 100%;
        text-align: center;
        transition: var(--transition);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .nav-toggle {
        display: flex;
    }

    .slide-content h1 {
        font-size: 2rem;
    }

    .slide-content p {
        font-weight: 900;
        font-size: 1.2rem;
    }

    .intro-grid,
    .content-grid,
    .service-detail-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .content-grid.reverse {
        direction: ltr;
    }

    .stats-grid,
    .services-grid,
    .features-grid,
    .mvv-grid,
    .other-services-grid,
    .testimonials-grid,
    .portfolio-grid,
    .cert-grid,
    .standards-grid,
    .materials-content,
    .faq-grid,
    .next-steps {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: column;
    }

    .timeline-year {
        text-align: left;
    }

    .timeline-overview {
        flex-direction: column;
    }

    .timeline-arrow {
        transform: rotate(90deg);
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .delivery-grid,
    .why-grid,
    .qa-grid,
    .warranty-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .trust-badges {
        gap: 1.5rem;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        right: 20px;
        font-size: 2rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a00d25;
}