

:root {
    /* Color Palette */
    --primary-color: #0b1a2a;      
    --primary-dark: #07111b;      
    --accent-color: #ff6b00;     
    --accent-hover: #e65c00;      
    --text-dark: #2d3436;         
    --text-muted: #636e72;        
    --bg-light: #f8f9fa;          
    --bg-light-gray: #f1f3f5;     
    --white: #ffffff;
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Oswald', sans-serif;
    
    /* Box Shadow */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
    --shadow-hover: 0 20px 40px rgba(11, 26, 42, 0.15);
    
    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* =========================================
   Global Reset & Typography
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
   
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary-color);
}

a {
    text-decoration: none;
    transition: var(--transition-fast);
}

.py-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

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

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

.bg-accent {
    background-color: var(--accent-color) !important;
}

.font-oswald {
    font-family: var(--font-heading);
}

/* Buttons */
.btn {
    font-family: var(--font-primary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 28px;
    border-radius: 4px;
    transition: var(--transition-fast);
    font-size: 14px;
}

.btn-lg {
    padding: 15px 35px;
    font-size: 15px;
}

.btn-accent {
    background-color: var(--accent-color);
    color: var(--white);
    border: 2px solid var(--accent-color);
}

.btn-accent:hover {
    background-color: transparent;
    color: var(--accent-color);
}

.btn-primary-dark {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn-primary-dark:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--white);
}

.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* Section Headings */
.section-heading {
    margin-bottom: 50px;
}

.section-heading .sub-title {
    display: inline-block;
    color: var(--accent-color);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    position: relative;
    padding-left: 50px;
}

.section-heading .sub-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.section-heading .sub-title.text-center::before {
    display: none;
}

.section-heading .title {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
}

@media (max-width: 768px) {
    .section-heading .title {
        font-size: 32px;
    }
}

/* =========================================
   Top Bar & Navbar
   ========================================= */
.top-bar {
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-bar .social-links a {
    color: var(--white);
    margin-left: 15px;
    transition: var(--transition-fast);
}

.top-bar .social-links a:hover {
    color: var(--accent-color);
}

.navbar {
    padding: 20px 0;
    transition: all 0.4s ease;
    background-color: transparent;
}

.navbar.scrolled {
    padding: 10px 0;
    background-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

/* Push navbar down if top bar is visible (Desktop only) */
@media (min-width: 992px) {
    .navbar {
        top: 35px; /* height of top bar approx */
    }
    .navbar.scrolled {
        top: 0;
    }
}

.navbar-brand .brand-text {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}

.brand-icon {
    font-size: 24px;
    margin-right: 5px;
}

.nav-link {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 500;
    font-size: 15px;
    margin: 0 5px;
    position: relative;
    padding: 10px 0 !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-color) !important;
}

/* Dropdown */
.dropdown-menu {
    border: none;
    border-radius: 0;
    border-top: 3px solid var(--accent-color);
    background-color: var(--white);
    padding: 10px 0;
}

.dropdown-item {
    padding: 10px 20px;
    font-weight: 500;
    font-size: 14px;
    color: var(--text-dark);
    transition: var(--transition-fast);
}

.dropdown-item:hover {
    background-color: rgba(255, 107, 0, 0.1);
    color: var(--accent-color);
    padding-left: 25px;
}

/* Mobile Navbar Toggle */
.navbar-toggler {
    border: 1px solid rgba(255,255,255,0.5);
    padding: 8px 12px;
}
.navbar-toggler:focus {
    box-shadow: none;
}

@media (max-width: 991px) {
    .navbar {
        background-color: var(--primary-color);
        padding: 15px 0;
    }
    .navbar-collapse {
        background-color: var(--primary-dark);
        padding: 20px;
        margin-top: 15px;
        border-radius: 5px;
    }
    .nav-link::after {
        display: none;
    }
    .nav-link:hover {
        padding-left: 10px !important;
    }
}


/* =========================================
   Hero Slider Section
   ========================================= */
.hero-section {
    height: 100vh;
    min-height: 600px;
    position: relative;
    background-color: var(--primary-dark);
}

.carousel-item {
    height: 100vh;
    min-height: 600px;
}

.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 6s linear;
    /* 4K Enhancement */
    image-rendering: -webkit-optimize-contrast;
    filter: contrast(1.05) saturate(1.1) brightness(1.05);
}

.carousel-item.active .hero-img {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Make overlay slightly lighter so 4K details pop */
    background: linear-gradient(90deg, rgba(11,26,42,0.85) 0%, rgba(11,26,42,0.5) 50%, rgba(11,26,42,0.15) 100%);
}

.carousel-caption {
    bottom: auto;
    left: 0;
    right: 0;
    padding: 0;
}

.hero-subtitle {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--accent-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.hero-subtitle .line {
    width: 50px;
    height: 2px;
    background-color: var(--accent-color);
    margin-right: 15px;
}

.hero-title {
    font-size: 70px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.hero-desc {
    font-size: 20px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    max-width: 650px;
}

/* Slider Controls */
.carousel-control-prev, .carousel-control-next {
    width: 60px;
    height: 60px;
    background-color: rgba(255,255,255,0.1);
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.4s ease;
}

.hero-section:hover .carousel-control-prev {
    left: 20px;
    opacity: 1;
}

.hero-section:hover .carousel-control-next {
    right: 20px;
    opacity: 1;
}

.carousel-control-prev:hover, .carousel-control-next:hover {
    background-color: var(--accent-color);
}

/* Slider Indicators */
.carousel-indicators {
    margin-bottom: 30px;
}

.carousel-indicators button {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50%;
    background-color: transparent !important;
    border: 2px solid var(--white) !important;
    margin: 0 6px !important;
    opacity: 1 !important;
    transition: var(--transition-fast);
}

.carousel-indicators button.active {
    background-color: var(--accent-color) !important;
    border-color: var(--accent-color) !important;
    transform: scale(1.3);
}

/* Hero Animations on Slide Change */
.animated-item {
    opacity: 0;
    visibility: hidden;
}

.carousel-item.active .slide-down {
    animation: slideDown 0.8s ease forwards;
}

.carousel-item.active .fade-up {
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }

@keyframes slideDown {
    0% { opacity: 0; transform: translateY(-30px); visibility: visible; }
    100% { opacity: 1; transform: translateY(0); visibility: visible; }
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(30px); visibility: visible; }
    100% { opacity: 1; transform: translateY(0); visibility: visible; }
}

@media (max-width: 991px) {
    .hero-title { font-size: 50px; }
    .hero-desc { font-size: 18px; }
}
@media (max-width: 576px) {
    .hero-title { font-size: 38px; }
    .hero-desc { font-size: 16px; }
    .hero-btns { display: flex; flex-direction: column; gap: 15px; }
    .hero-btns .btn { width: 100%; margin-right: 0 !important; }
}

/* =========================================
   About Section
   ========================================= */
.about-bg-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35%;
    max-width: 400px;
    z-index: 0;
    opacity: 0.9;
    pointer-events: none;
}

.experience-huge-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.experience-number {
    font-size: 250px;
    font-weight: 900;
    font-family: var(--font-heading);
    background-image: url('img/imgi_15_project-1-4.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.experience-plus {
    font-size: 180px;
    font-weight: 900;
    font-family: var(--font-heading);
    line-height: 1;
}

.bg-light-orange {
    background-color: rgba(255, 107, 0, 0.1);
}

@media (max-width: 991px) {
    .experience-number { font-size: 150px; }
    .experience-plus { font-size: 120px; }
    .about-bg-shape { width: 50%; opacity: 0.5; }
}

@media (max-width: 576px) {
    .experience-number { font-size: 100px; }
    .experience-plus { font-size: 80px; }
}

.feature-mini-card:hover .icon-box {
    background-color: var(--accent-color) !important;
    color: var(--white) !important;
    transform: translateY(-3px);
}




/* =========================================
   Products Section (Scroll-Driven Gallery)
   ========================================= */
.gallery-pin-wrap {
    width: 100%;
    overflow: hidden;
}

.gallery-sticky-img {
    /* Height is controlled by content and inline styles for the 3D effect */
}

@keyframes float-3d {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

.float-3d {
    animation: float-3d 3.5s ease-in-out infinite;
}

.gallery-scroll-container {
    width: 100%;
    overflow: hidden;
}

.gallery-scroll-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 30px;
    width: max-content;
    padding: 20px 0 40px 0;
}

.scroll-card {
    width: 350px;
    flex: 0 0 350px;
}

@media (max-width: 991px) {
    .gallery-pin-wrap { overflow: visible; }
    .gallery-sticky-img { min-height: 300px; }
    .gallery-scroll-container { width: 100%; overflow: hidden; }
    .gallery-scroll-track {
        width: auto;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 30px;
    }
    .scroll-card { scroll-snap-align: start; }
}
.product-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-slow);
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
}

.product-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-10px);
}

.product-card .img-wrapper {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.product-card .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .img-wrapper img {
    transform: scale(1.1);
}

.product-card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11,26,42,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-fast);
}

.product-card:hover .overlay {
    opacity: 1;
}

.product-card .view-btn {
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transform: translateY(20px);
    transition: var(--transition-fast);
}

.product-card:hover .view-btn {
    transform: translateY(0);
}

.product-card .card-content {
    padding: 30px;
}

.product-card .product-title {
    font-size: 22px;
    margin-bottom: 15px;
    transition: var(--transition-fast);
}

.product-card:hover .product-title {
    color: var(--accent-color);
}

.product-card .product-desc {
    font-size: 15px;
    margin-bottom: 20px;
}

.product-card .btn-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
}

.product-card .btn-link i {
    margin-left: 8px;
    transition: var(--transition-fast);
}

.product-card:hover .btn-link {
    color: var(--accent-color);
}

.product-card:hover .btn-link i {
    transform: translateX(5px);
}


/* =========================================
   Why Choose Us
   ========================================= */
.why-choose-us {
    background-color: var(--primary-dark);
    position: relative;
    overflow: hidden;
    /* 3D Parallax Background */
    background-image: url('img/WhatsApp Image 2026-07-06 at 11.13.05 AM.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(7, 17, 27, 0.85) 0%, rgba(11, 26, 42, 0.7) 100%);
    z-index: -1;
}

.feature-box {
    background-color: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    transition: var(--transition-fast);
    height: 100%;
}

.feature-box:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 107, 0, 0.4);
    box-shadow: 0 8px 32px 0 rgba(255, 107, 0, 0.15);
    transform: translateY(-5px);
}

.feature-box .icon {
    font-size: 40px;
    color: var(--accent-color);
    margin-bottom: 20px;
    transition: var(--transition-fast);
}

.feature-box:hover .icon {
    transform: scale(1.1);
}

.feature-box h4 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 15px;
}

.feature-box p {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    margin-bottom: 0;
}

.feature-list li {
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 500;
}


/* =========================================
   Statistics Section
   ========================================= */
.stat-item {
    padding: 20px;
}

.stat-icon {
    font-size: 36px;
    color: var(--white);
    opacity: 0.8;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 50px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
    font-family: var(--font-heading);
}

.stat-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0;
}


/* =========================================
   Work Process Section
   ========================================= */
.process-row {
    margin-top: 40px;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: dashed 2px rgba(11,26,42,0.2);
    z-index: 1;
}

.process-step {
    position: relative;
    z-index: 2;
}

.process-step .step-icon {
    width: 80px;
    height: 80px;
    background-color: var(--white);
    border: 3px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 auto;
    font-family: var(--font-heading);
    box-shadow: 0 0 0 8px rgba(255, 107, 0, 0.1);
    transition: var(--transition-fast);
}

.process-step:hover .step-icon {
    background-color: var(--accent-color);
    color: var(--white);
    box-shadow: 0 0 0 8px rgba(255, 107, 0, 0.3);
}

@media (max-width: 991px) {
    .process-line { display: none; }
    .process-step { margin-bottom: 30px; }
}


/* =========================================
   Industries We Serve
   ========================================= */
.industry-box {
    background-color: var(--white);
    padding: 40px 20px;
    text-align: center;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
    border-bottom: 3px solid transparent;
    cursor: pointer;
}

.industry-box:hover {
    border-bottom-color: var(--accent-color);
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.industry-icon {
    font-size: 45px;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: var(--transition-fast);
}

.industry-box:hover .industry-icon {
    color: var(--accent-color);
}

.industry-box h5 {
    font-size: 18px;
    margin-bottom: 0;
    color: var(--text-dark);
}


/* =========================================
   Infrastructure Section
   ========================================= */
.infra-list li {
    display: flex;
    margin-bottom: 25px;
}

.infra-list .icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--accent-color);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-right: 20px;
    flex-shrink: 0;
}

.infra-list .content h5 {
    font-size: 20px;
    margin-bottom: 5px;
}

.infra-list .content p {
    color: var(--text-muted);
    margin-bottom: 0;
    font-size: 15px;
}

.infra-image-grid {
    position: relative;
    height: 500px;
}

.infra-image-grid .img-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 350px;
    object-fit: cover;
    z-index: 1;
}

.infra-image-grid .img-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 65%;
    height: 300px;
    object-fit: cover;
    border: 10px solid var(--white);
    z-index: 2;
}

@media (max-width: 768px) {
    .infra-image-grid { height: 400px; margin-top: 30px; }
    .infra-image-grid .img-1 { width: 80%; height: 250px; }
    .infra-image-grid .img-2 { width: 70%; height: 220px; }
}


/* =========================================
   Portfolio Slider
   ========================================= */
.portfolio-slider {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; 
    -ms-overflow-style: none;  
}
.portfolio-slider::-webkit-scrollbar {
    display: none; 
}
.portfolio-card {
    flex: 0 0 calc(33.333% - 16px);
    scroll-snap-align: start;
    min-width: 320px; 
}
.portfolio-card .portfolio-hover-overlay {
    opacity: 0;
}
.portfolio-card:hover .portfolio-hover-overlay {
    opacity: 1;
}
.portfolio-card .portfolio-hover-overlay a {
    transform: translateY(20px);
    transition: 0.3s;
}
.portfolio-card:hover .portfolio-hover-overlay a {
    transform: translateY(0);
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
}
.scroll-to-top.active {
    opacity: 1;
    pointer-events: auto;
}


/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80vh;
    animation: zoom 0.4s;
}

@keyframes zoom {
    from {transform:scale(0)} 
    to {transform:scale(1)}
}

.close-lightbox {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close-lightbox:hover {
    color: var(--accent-color);
}


/* =========================================
   Testimonial Section
   ========================================= */
.testimonial-slider {
    background-color: var(--white);
    padding: 50px;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.quote-icon {
    font-size: 50px;
    color: rgba(255, 107, 0, 0.1);
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 20px;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.8;
}

.client-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.client-role {
    font-size: 14px;
}

.testimonial-slider .carousel-indicators {
    bottom: -60px;
}

.testimonial-slider .carousel-indicators button {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.testimonial-slider .carousel-indicators button.active {
    background-color: var(--accent-color) !important;
    border-color: var(--accent-color) !important;
}


/* =========================================
   CTA Section
   ========================================= */
.cta-section {
    background-image: url('https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.cta-overlay {
    background-color: rgba(11,26,42,0.85);
    width: 100%;
    height: 100%;
}


/* =========================================
   Footer Section
   ========================================= */
.bg-dark-custom {
    background-color: var(--primary-dark);
}

.text-muted-light {
    color: rgba(255,255,255,0.6);
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 15px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    transition: var(--transition-fast);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-contact li i {
    font-size: 18px;
}

.footer .social-btn {
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.05);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.footer .social-btn:hover {
    background-color: var(--accent-color);
}

/* =========================================
   Our Process Section
   ========================================= */
.process-section {
    position: relative;
    overflow: hidden;
}

.process-step {
    padding: 30px 40px;
    position: relative;
}

/* Right border with slant at the top */
.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 30px; /* Start below the slanted part */
    right: 0;
    width: 1px;
    height: calc(100% - 30px);
    background-color: #f0f0f0;
}

.process-step:not(:last-child)::before {
    content: '';
    position: absolute;
    top: 0;
    right: -15px; /* Adjust to match angle */
    width: 1px;
    height: 40px; /* Length of the slant */
    background-color: #f0f0f0;
    transform: rotate(35deg);
    transform-origin: top left;
}

.process-icon-box {
    width: 75px;
    height: 75px;
    background-color: #111 !important;
    clip-path: polygon(0 0, 70% 0, 100% 30%, 100% 100%, 0 100%);
    border-radius: 4px;
}

.process-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px #eaeaea;
    font-family: 'Oswald', sans-serif;
    line-height: 1;
}

.process-title {
    font-size: 1.25rem;
}

.process-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #2b3a55; /* Dark blue/accent color */
}

@media (max-width: 991px) {
    .process-step {
        padding: 30px 20px;
    }
    .process-step:not(:last-child)::after,
    .process-step:not(:last-child)::before {
        display: none;
    }
    .process-step {
        border-bottom: 1px solid #f0f0f0;
    }
}
