
        :root {
            --primary-color: #700101; /* New Deep Red */
            --secondary-color: #1a1a1a; /* Off-Black */
            --text-color: #555; /* Dark Gray for text */
            --bg-dark: #111;
            --bg-light: #f9f9f9;
            --border-color: #e0e0e0;
        }

           html {
            scroll-behavior: smooth;
        }
        

        /* === LOADING SCREEN === */
        .loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* background: #ffffff; */
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            overflow: hidden;
        }

        .loading-screen.opening {
            pointer-events: none;
        }

        /* White Background Layer */
        .loading-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #ffffff;
            z-index: 1;
            opacity: 1;
            transition: opacity 0.3s ease;
        }

        .loading-screen.opening .loading-background {
            opacity: 0;
        }

        /* Triangle Split Panels */
        .triangle-panel {
            position: absolute;
            top: 0;
            width: 100vw;
            height: 100vh;
            background: #ffffff;
            z-index: 3;
            transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .triangle-panel-left {
            left: 0;
            clip-path: polygon(0 0, 100% 0, 0 100%);
            transform-origin: left center;
        }

        .triangle-panel-right {
            left: 0;
            clip-path: polygon(100% 0, 100% 100%, 0 100%);
            transform-origin: right center;
        }

        /* Opening animation */
        .loading-screen.opening .triangle-panel-left {
            transform: translateX(-100%);
        }

        .loading-screen.opening .triangle-panel-right {
            transform: translateX(100%);
        }

        .loading-container {
            position: relative;
            text-align: center;
            z-index: 4;
            opacity: 1;
            transition: opacity 0.8s ease;
        }

        .loading-screen.opening .loading-container {
            opacity: 0;
        }

        /* Logo Container */
        .logo-container {
            position: relative;
            z-index: 5;
            padding: 40px;
            display: inline-block;
        }

        /* SVG Border Animation */
        .border-animation {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            opacity: 1;
            filter: drop-shadow(0 0 8px rgba(112, 1, 1, 0.3));
            pointer-events: none;
        }

        .border-animation rect {
            animation: trimPath 2.5s ease-in-out 0.5s forwards;
        }

        @keyframes trimPath {
            0% {
                stroke-dashoffset: 794;
                opacity: 0;
                stroke-width: 2;
            }
            10% {
                opacity: 1;
                stroke-width: 2;
            }
            50% {
                stroke-width: 3;
            }
            80% {
                stroke-width: 2;
            }
            100% {
                stroke-dashoffset: 0;
                opacity: 1;
                stroke-width: 2;
            }
        }

        /* Hide old border styling */
        .logo-container::before {
            display: none;
        }
        
        .logo-container::after {
            display: none;
        }

        /* Hide border during opening animation */
        .loading-screen.opening .border-animation {
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .loading-logo {
            width: 150px;
            height: auto;
            filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
            position: relative;
            z-index: 2;
        }

        /* Stop animation when opening */
        .loading-screen.opening .loading-logo {
            animation: none;
        }

        /* Responsive Design for Loading Screen */
        @media (max-width: 768px) {
            .loading-logo {
                width: 140px;
            }
            
            .logo-container {
                padding: 30px;
            }
            
            .border-animation {
                width: 100%;
                height: 100%;
            }
            
            .border-animation rect {
                animation: trimPathTablet 2.5s ease-in-out 0.5s forwards;
            }
            
            @keyframes trimPathTablet {
                0% {
                    stroke-dashoffset: 548;
                    opacity: 0;
                    stroke-width: 2;
                }
                10% {
                    opacity: 1;
                    stroke-width: 2;
                }
                50% {
                    stroke-width: 3;
                }
                80% {
                    stroke-width: 2;
                }
                100% {
                    stroke-dashoffset: 0;
                    opacity: 1;
                    stroke-width: 2;
                }
            }
            
            .triangle-1, .triangle-2, .triangle-3, .triangle-4,
            .triangle-5, .triangle-6, .triangle-7, .triangle-8 {
                transform: scale(0.7);
            }
        }

        @media (max-width: 480px) {
            .loading-logo {
                width: 120px;
            }
            
            .logo-container {
                padding: 25px;
            }
            
            .border-animation {
                width: 100%;
                height: 100%;
            }
            
            .border-animation rect {
                animation: trimPathMobile 2.5s ease-in-out 0.5s forwards;
            }
            
            @keyframes trimPathMobile {
                0% {
                    stroke-dashoffset: 456;
                    opacity: 0;
                    stroke-width: 2;
                }
         
                100% {
                    stroke-dashoffset: 0;
                    opacity: 1;
                    stroke-width: 2;
                }
            }
            
            .triangle-1, .triangle-2, .triangle-3, .triangle-4,
            .triangle-5, .triangle-6, .triangle-7, .triangle-8 {
                transform: scale(0.5);
            }
        }

        body {
                    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
                    background-color: #fff;
                    color: var(--text-color);
                    padding-top: 80px; /* Add padding to body to prevent content from hiding behind fixed navbar */
                    font-optical-sizing: auto;
                    font-synthesis-weight: none;
                    font-synthesis-style: none;
                }

        /* Mobile body font size adjustments */
        @media (max-width: 768px) {
            body {
                font-size: 15px;
            }
        }

        @media (max-width: 576px) {
            body {
                font-size: 14px;
            }
        }

        @media (max-width: 480px) {
            body {
                font-size: 13px;
            }
        }

        h1, h2, h3, h4, h5, h6 {
                    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
                    color: var(--secondary-color);
                    font-weight: 700;
                }

        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            color: #fff;
            font-weight: 600;
            padding: 12px 35px;
            border-radius: 0;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        .btn-primary:disabled{
            
       
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.6s ease;
            z-index: -1;
        }

        .btn-primary::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background-color: #fff;
            transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: -1;
        }

        .btn-primary:hover {
            color: var(--primary-color);
            border-color: var(--primary-color);
                        background-color: #fff;

            
           
        }

        .btn-primary:hover::before {
            left: 100%;
        }

        .btn-primary:hover::after {
            width: 100%;
        }

        .btn-primary:active {
            transform: translateY(0);
        }

        /* Hero Button - Outline Style with Animation */
        .btn-hero {
            background-color: transparent;
            border: 2px solid #fff;
            color: #fff;
            font-weight: 600;
            padding: 12px 35px;
            border-radius: 0;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.6s ease;
            z-index: -1;
        }

        .btn-hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background-color: var(--primary-color);
            transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: -1;
        }

        .btn-hero:hover {
            color: #fff;
            border-color: var(--primary-color);
            transform: translateY(-2px);
        }

        .btn-hero:hover::before {
            left: 100%;
        }

        .btn-hero:hover::after {
            width: 100%;
        }

        .btn-hero:active {
            transform: translateY(0);
        }

      
        .btn-hero:hover {
            animation: none; /* Stop pulsing on hover */
        }

        /* Mobile button adjustments */
        @media (max-width: 768px) {
            .btn-primary {
                padding: 10px 28px;
                font-size: 0.85rem;
                letter-spacing: 0.5px;
                width: 100%;
                display: block;
                text-align: center;
            }
            
            .btn-primary.btn-lg {
                padding: 12px 30px;
                font-size: 0.9rem;
            }
            
            .btn-hero {
                padding: 10px 28px;
                font-size: 0.85rem;
                letter-spacing: 0.5px;
                width: 100%;
                display: block;
                text-align: center;
            }
            
            /* Make all button variants full width on mobile */
            .btn {
                width: 100%;
                display: block;
                text-align: center;
                margin-bottom: 10px;
            }
        }

        @media (max-width: 576px) {
            .btn-primary {
                padding: 8px 24px;
                font-size: 0.8rem;
                width: 100%;
                display: block;
                text-align: center;
            }
            
            .btn-primary.btn-lg {
                padding: 10px 26px;
                font-size: 0.85rem;
            }
            
            .btn-hero {
                padding: 8px 24px;
                font-size: 0.8rem;
                width: 100%;
                display: block;
                text-align: center;
            }
            
            /* Ensure all buttons remain full width */
            .btn {
                width: 100%;
                display: block;
                text-align: center;
                margin-bottom: 8px;
            }
        }
        
        /* --- Navbar (Light Theme) --- */
        .navbar {
            background-color: #fff;
            padding-top: 15px;
            padding-bottom: 15px;
            transition: padding 0.4s ease, box-shadow 0.4s ease;
            /* box-shadow: 0 2px 5px rgba(0,0,0,0.05); */
        }


        .navbar.scrolled {
            padding-top: 15px;
            padding-bottom: 15px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .navbar-brand {
            /* font-weight: 800; */
            /* font-size: 2rem; */
            /* color: var(--secondary-color) !important; */ /* Changed to dark */
            /* letter-spacing: 2px; */
        }
        
        .navbar-brand img {
            height: 22px;  
            width: auto;
        }
        .navbar-nav .nav-link {
            color: var(--secondary-color); /* Changed to dark */
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.9rem;
            margin: 0 15px;
            transition: color 0.3s;
            position: relative;
            padding-bottom: 8px;
            text-align: center;
        }

        /* Mobile responsive adjustments for navbar */
        @media (max-width: 991.98px) {
            .navbar-nav .nav-link {
                font-size: 0.8rem;
                margin: 0 10px;
            }
        }

        @media (max-width: 768px) {
            .navbar-nav .nav-link {
                font-size: 0.75rem;
                margin: 0 8px;
            }
        }

        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-color);
            transition: width 0.3s ease;
        }

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

        .navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
            color: var(--primary-color);
        }
        
        .navbar-toggler {
            border: none;
        }
        .navbar-toggler:focus {
            box-shadow: none;
        }
        .navbar-toggler-icon {
             /* Changed stroke to black */
             background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2826, 26, 26, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        /* Language Switcher Styles */
        #languageDropdown {
            color: var(--secondary-color) !important;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.9rem;
            margin-left: 15px;
            transition: color 0.3s;
        }
        
        /* Remove underline effect for language dropdown */
        #languageDropdown::after {
            display: none !important;
        }
        
        #languageDropdown:hover {
            color: var(--primary-color) !important;
        }
        
        .dropdown-menu {
            border: 1px solid var(--border-color);
            border-radius: 0;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            padding: 0;
            min-width: 140px;
        }
        
        .dropdown-item {
            color: var(--secondary-color);
            padding: 10px 15px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        
        .dropdown-item:hover {
            background-color: var(--primary-color);
            color: #fff;
        }
        
        /* Mobile responsive styles for language switcher */
        @media (max-width: 991.98px) {
            #languageDropdown {
                margin-left: 0;
                margin-top: 10px;
                border-top: 1px solid var(--border-color);
                padding-top: 10px;
                width: 100%;
                text-align: center;
                justify-content: center;
            }
            
            .navbar-nav:last-child {
                margin-top: 15px;
                padding-top: 15px;
                border-top: 1px solid #eee;
            }
            
            .dropdown-menu {
                width: 100%;
                text-align: center;
                position: static !important;
                transform: none !important;
                box-shadow: none;
                border: none;
                background-color: #f8f9fa;
                margin-top: 10px;
            }
        }
        
        /* Mobile Language Buttons */
        .language-mobile-buttons {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 10px 0;
        }
        
        .language-btn {
            color: var(--secondary-color);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            text-transform: uppercase;
            padding: 8px 15px;
            border-radius: 20px;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }
        
        .language-btn:hover {
            color: var(--primary-color);
            text-decoration: none;
        }
        
        .language-btn.active {
            color: #fff;
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }
        
        .language-separator {
            color: var(--secondary-color);
            font-weight: 300;
            font-size: 1.2rem;
        }
        
        @media (max-width: 576px) {
            #languageDropdown {
                font-size: 0.85rem;
                padding: 10px;
            }
            
            .dropdown-item {
                padding: 12px 20px;
                font-size: 0.85rem;
            }
            
            .language-btn {
                font-size: 0.85rem;
                padding: 10px 18px;
            }
        }
        
        .get-in-touch-btn {
            color: var(--secondary-color); /* Changed to dark */
            text-decoration: none;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.9rem;
            transition: color 0.3s;
        }
        .get-in-touch-btn:hover {
            color: var(--primary-color);
        }
        .get-in-touch-btn i {
            margin-right: 8px;
            color: var(--primary-color);
        }


        /* --- Hero Section --- */
        #hero {
            position: relative;
            height: calc(100vh - 80px); /* Adjust height for the new static navbar */
            display: flex;
            align-items: center;
            color: #fff;
            overflow: hidden;
            background-color: var(--bg-light); /* Fallback background */
        }
        
        .hero-slider {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            overflow: hidden;
        }

        .hero-slider .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            transform-origin: center center;
            opacity: 0;
            transform: scale(1);
            transition: opacity 1s ease-in-out, transform 5s linear;
        }

        .hero-slider .slide.active {
            opacity: 1;
            transform: scale(1.08);
        }

        .hero-slider .slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.4);
            z-index: 1;
        }

        #hero::before, #hero::after {
            content: '';
            position: absolute;
            width: 800px;
            height: 800px;
            background-size: cover;
            background-position: center;
            z-index: 2;
        }

   

        #hero .container {
            position: relative;
            z-index: 3;
        }

        #hero h1 {
            font-size: 6rem;
            font-weight: 800;
            color: #fff;
            line-height: 1.1;
        }
        
        @media(max-width: 992px) { #hero h1 { font-size: 3.8rem; } }
        @media(max-width: 768px) { #hero h1 { font-size: 2.8rem; } }
        @media(max-width: 576px) { #hero h1 { font-size: 2.4rem; } }
        @media(max-width: 480px) { #hero h1 { font-size: 2.0rem; } }

        /* Typewriter effect */
        .typewriter {
            display: inline-block;
            overflow: hidden;
            border-right: .16em solid var(--primary-color);
            white-space: nowrap;
            letter-spacing: .1em; 
            min-height: 1.2em; /* Prevent layout shift */
        }

        .typewriter.typing {
            animation: blink-caret .75s step-end infinite;
        }

        @keyframes blink-caret {
            from, to { border-color: transparent }
            50% { border-color: var(--primary-color); }
        }
        
        .hero-contact-box {
            position: absolute;
            bottom: 50px;
            right: 50px;
            /* clip-path: polygon(100% 11%, 14% 0%, 2% 91%, 100% 89%); */
            background: #fff;
            padding: 45px;
            color: var(--secondary-color);
            z-index: 3;
            transition: clip-path 0.6s ease, transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .hero-contact-box:hover {
            clip-path: polygon(90% 10%, 10% 5%, 5% 95%, 95% 90%);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        
        .hero-contact-box h5 {
            font-size: 1.5rem;
            font-weight: 700;
            transition: color 0.3s ease;
        }
        
        .hero-contact-box:hover h5 {
            color: var(--primary-color);
        }
        
        .hero-contact-box a {
            color: var(--text-color);
            text-decoration: none;
            transition: color 0.3s ease;
            position: relative;
        }
        
        .hero-contact-box a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-color);
            transition: width 0.3s ease;
        }
        
        .hero-contact-box:hover a {
            color: var(--primary-color);
        }
        
        .hero-contact-box:hover a::after {
            width: 100%;
        }
        @media(max-width: 768px) {
            .hero-contact-box {
                display: none;
            }
        }


        /* --- Section Styling --- */
        .section-padding {
            padding: 100px 0;
        }

        .section-title {
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 2.8rem;
            font-weight: 800;
            position: relative;
            padding-bottom: 15px;
            text-transform: uppercase;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 70px;
            height: 4px;
            background-color: var(--primary-color);
            transition: width 0.4s ease;
        }

        .section-title h2:hover::after {
            width: 120px;
        }

        /* Responsive adjustments for section titles */
        @media (max-width: 768px) {
            .section-title h2 {
                font-size: 1.9rem;
            }
            
            .section-title {
                margin-bottom: 40px;
            }
            
            .section-padding {
                padding: 60px 0;
            }
        }

        @media (max-width: 576px) {
            .section-title h2 {
                font-size: 1.5rem;
                padding-bottom: 12px;
            }
            
            .section-title h2::after {
                width: 50px;
                height: 3px;
            }
            
            .section-title h2:hover::after {
                width: 80px;
            }
            
            .section-title {
                margin-bottom: 30px;
            }
            
            .section-padding {
                padding: 40px 0;
            }
        }

        /* --- Section Separator --- */
        .section-separator {
            padding: 120px 0;
            background-size: cover;
            background-position: center center;
            background-attachment: fixed;
            color: #fff;
            text-align: center;
            position: relative;
        }
        .section-separator::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgb(0 0 0 / 35%);
        }
        .section-separator .container {
            position: relative;
            z-index: 2;
        }
        .section-separator h2 {
            font-size: 4rem;
            font-weight: 800;
            color: #fff;
            text-transform: uppercase;
        }
        .section-separator p {
            font-size: 1.1rem;
            max-width: 600px;
            margin: 20px auto 0;
            color: rgba(255, 255, 255, 0.8);
        }
        @media(max-width: 768px) {
            .section-separator h2 { font-size: 2.4rem; }
            .section-separator p { font-size: 0.95rem; }
        }
        @media(max-width: 576px) {
            .section-separator h2 { font-size: 2.0rem; }
            .section-separator p { font-size: 0.9rem; }
        }

        /* --- Services Section (New Style) --- */
        #services {
             
/* background-color: var(--bg-light); */
        }
        .services-image {
            height: 100%;
            min-height: 600px;
            position: relative;
            padding: 20px;
            overflow: hidden;
        }

        .services-swiper {
            width: 100%;
            height: 100%;
            aspect-ratio: 1 / 1; /* Force 1:1 aspect ratio */
        }

        .services-swiper .swiper-slide {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
            width: 100%;
            aspect-ratio: 1 / 1; /* Force 1:1 aspect ratio for slides */
        }

        .services-img {
            width: 100%;
            height: 100%;
            aspect-ratio: 1 / 1; /* Force 1:1 aspect ratio for images */
            object-fit: cover;
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* Responsive adjustments for 1:1 aspect ratio */
        @media (max-width: 991.98px) {
            .services-image {
                min-height: 400px;
            }
            
            .services-swiper {
                max-width: 400px;
                margin: 0 auto;
            }
        }
        
        @media (max-width: 767.98px) {
            .services-image {
                min-height: 300px;
            }
            
            .services-swiper {
                max-width: 300px;
            }
        }
        
        /* Corner frame effect similar to other images on the site */
        .services-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 3;
            transition: all 0.6s ease;
            pointer-events: none;
            background: 
                
                linear-gradient(to right, var(--primary-color) 2px, transparent 2px) 0 0/60% 60px no-repeat,
                linear-gradient(to bottom, var(--primary-color) 2px, transparent 2px) 0 0/60px 60% no-repeat,
                
                linear-gradient(to left, var(--primary-color) 2px, transparent 2px) 100% 100%/60% 60px no-repeat,
                linear-gradient(to top, var(--primary-color) 2px, transparent 2px) 100% 100%/60px 60% no-repeat;
        }
        
        .services-image:hover::after {
            background: 
                /* Extended borders on hover */
                linear-gradient(to right, var(--primary-color) 2px, transparent 2px) 0 0/100% 2px no-repeat,
                linear-gradient(to bottom, var(--primary-color) 2px, transparent 2px) 0 0/2px 100% no-repeat,
                linear-gradient(to left, var(--primary-color) 2px, transparent 2px) 100% 100%/100% 2px no-repeat,
                linear-gradient(to top, var(--primary-color) 2px, transparent 2px) 100% 100%/2px 100% no-repeat;
        }
        .services-list-wrapper {
            padding: 12px 12px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            height: 100%;
        }
        .services-list-wrapper h3 {
            font-size: 1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 30px;
        }
        .services-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .services-list li {
            padding: 20px;
            border: 1px solid var(--border-color);
            border-bottom: none;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }
        
        .services-list li::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
            transition: left 0.6s ease;
        }
        
        .services-list li:last-child {
            border-bottom: 1px solid var(--border-color);
        }
        
        .services-list li:hover {
            background-color: var(--primary-color);
            color: #fff;
            transform: translateX(5px);
            border-color: var(--primary-color);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .services-list li:hover::before {
            left: 100%;
        }

        /* Mobile responsive adjustments for services */
        @media (max-width: 768px) {
            .services-list-wrapper h3 {
                font-size: 0.9rem;
                margin-bottom: 25px;
            }
            .services-list li {
                padding: 18px;
                font-size: 1rem;
            }
        }

        @media (max-width: 576px) {
            .services-list-wrapper h3 {
                font-size: 0.85rem;
                margin-bottom: 20px;
            }
            .services-list li {
                padding: 15px;
                font-size: 0.9rem;
            }
        }


        /* --- About Section --- */
        #about {
            position: relative;
            overflow: hidden;
        }
        #about .content-wrapper {
            position: relative;
            z-index: 2;
        }
        #about .img-frame, #founders .img-frame {
            position: relative;
            padding: 20px;
            border: none;
            overflow: hidden;
        }
        
        #about .img-frame::before, #about .img-frame::after,
        #founders .img-frame::before, #founders .img-frame::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 2px solid var(--primary-color);
            z-index: 1;
            transition: all 0.6s ease;
        }
        
        #about .img-frame::before, #founders .img-frame::before {
            clip-path: polygon(0 0, 60% 0, 60% 2px, 2px 2px, 2px 60%, 0 60%);
        }
        
        #about .img-frame::after, #founders .img-frame::after {
            clip-path: polygon(100% 40%, 100% 100%, 40% 100%, 40% calc(100% - 2px), calc(100% - 2px) calc(100% - 2px), calc(100% - 2px) 40%);
        }
        
        #about .img-frame:hover::before, #founders .img-frame:hover::before {
            clip-path: polygon(0 0, 100% 0, 100% 2px, 2px 2px, 2px 100%, 0 100%);
        }
        
        #about .img-frame:hover::after, #founders .img-frame:hover::after {
            clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 calc(100% - 2px), calc(100% - 2px) calc(100% - 2px), calc(100% - 2px) 0);
        }
        
        #about img, #founders .img-frame img {
            border-radius: 0;
            width: 100%;
        }

        .about-content {
            padding-left: 20px;
        }

        .about-item {
            margin-bottom: 20px;
        }

        .about-item h5 {
            color: var(--primary-color);
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 15px;
                    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        }

        .about-item p {
            font-size: 1rem;
            line-height: 1.7;
            color: var(--text-color);
            margin-bottom: 8px;
        }

        .about-item p strong {
            color: var(--secondary-color);
            font-weight: 600;
        }

        /* --- Phases Section --- */
        #phases {
            background-color: var(--bg-light);
            overflow: hidden;
        }
        .phases-content {
            display: flex;
            align-items: center;
        }
        .phases-list {
            padding-left: 30px;
            /* border-left: 4px solid var(--primary-color); */
        }
        .phase-wrapper::before{
            content: '';
            position: absolute;
            /* left: 0; */
            /* top: 0; */
            margin-top: -100px;
            margin-left: -3px;
            width: 6px;
            height: 205px;
            background-color: var(--primary-color);
        }
        .phase-wrapper::after{
            content: '';
            position: absolute;
            /* left: 0; */
            /* top: 0; */
            margin-top: -105px;
            margin-left: -0px;
            width: 1px;
            height: 205px;
            background-color: var(--bg-dark);
        }
        
        /* Mobile responsive fixes for phase-wrapper pseudo-elements */
        @media (max-width: 768px) {
            .phase-wrapper::before {
                width: 4px;
                height: 101px;
                margin-top: -60px;
                margin-left: -2px;
            }
            .phase-wrapper::after {
                height: 140px;
                margin-top: -80px;
            }
        }
        
        @media (max-width: 480px) {
            .phase-wrapper::before {
                width: 3px;
                height: 80px;
                margin-top: -40px;
                margin-left: -1.5px;
            }
            .phase-wrapper::after {
                height: 120px;
                margin-top: -80px;
            }
        }
        .phases-list::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 1px;
            height: 100%;
            background-color: #111;
        }
        .phases-list h3 {
            font-size: 1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 30px;
        }
        .phases-list ul {
            list-style: none;
            padding: 0;
        }
        .phases-list li {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 25px;
            color: var(--secondary-color);
            transition: color 0.3s;
            position: relative;
        }
  
        .phases-list li:hover {
            color: var(--primary-color);
        }
      
        .phases-list img {
            width: 220px;
            max-width: 100%;
            height: auto;
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }
        .phases-list img:hover {
            opacity: 1;
        }
        @media (max-width: 768px) {
            .phases-list img {
                width: 90%;
                margin-top: 30px !important;
            }
        }
        @media (max-width: 480px) {
            .phases-list img {
                width: 90%;
                margin-top: 20px !important;
            }
        }
        .phases-image-wrapper {
            position: relative;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 40px 20px;
        }

      

.aos-animate:hover > .phase-right-line {
}

.phase-right-line {
       position:absolute;
   
      height:900px;
       transform:rotate(-29deg);
      border-right: 1px  solid var(--bg-dark);
      right:190px;
    top: -160px;
  }

  .phase-left-line{
      position:absolute;
   
      height:900px;
       transform:rotate(29deg);
      border-left: 1px  solid var(--bg-dark);
      left:190px;
    top: -160px;
        }
    .phase-bottom-line {
                position: absolute;
                width: 1200px;
                height: 100%;
                border-bottom: 1px  solid var(--bg-dark);
                left: -100px;
                bottom: 0;
    }
        .phases-image-wrapper img {
            width: 80%;
            height: auto;
            max-width: 500px;
            object-fit: cover;
            /* clip-path: polygon(25% 0, 100% 0, 100% 100%, 0% 100%); */
        }
        .phases-lines {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        .phases-lines svg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        
        /* --- Counter Section --- */
        .counter-item h2 {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--primary-color);
        }
        .counter-item p {
            font-size: 1rem;
            color: rgba(255,255,255,0.8);
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        @media (max-width: 768px) {
            .counter-item h2 {
                font-size: 2.8rem;
            }
            .counter-item p {
                font-size: 0.85rem;
            }
        }

        @media (max-width: 576px) {
            .counter-item h2 {
                font-size: 2.2rem;
            }
            .counter-item p {
                font-size: 0.8rem;
            }
        }
        
        /* --- Testimonial Section --- */
        #testimonial {
             padding: 100px 0;
        }
        .testimonial-box {
            position: relative;
            max-width: 800px;
            margin: auto;
            text-align: center;
        }
        .testimonial-box .quote-icon {
            font-size: 4rem;
            color: var(--primary-color);
            line-height: 1;
            position: absolute;
            top: -8px;
            right: 0px;
            opacity: 0.8;
        }
        .testimonial-box p {
            font-size: 1.5rem;
            font-weight: 500;
            margin-top: 12px;
            line-height: 1.6;
            color: var(--secondary-color);
        }
        .testimonial-box .author {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--primary-color);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 20px;
            display: inline-block;
            position: relative;
            padding-right: 20px;
        }
        .testimonial-box .author::after {
            content: '';
            position: absolute;
            width: 15px;
            height: 2px;
            background: var(--primary-color);
            top: 50%;
            right: 0;
        }

        @media (max-width: 768px) {
            .testimonial-box .quote-icon {
                font-size: 3rem;
            }
            .testimonial-box p {
                font-size: 1.2rem;
            }
            .testimonial-box .author {
                font-size: 1rem;
            }
        }

        @media (max-width: 576px) {
            .testimonial-box .quote-icon {
                font-size: 2.5rem;
            }
            .testimonial-box p {
                font-size: 1rem;
                line-height: 1.5;
            }
            .testimonial-box .author {
                font-size: 0.9rem;
            }
        }

        /* --- Testimonial Image Effect --- */
        #testimonial .img-fluid {
            transition: filter 0.3s ease;
                        filter: grayscale(0%);

        }

        #testimonial .img-fluid:hover {
                        filter: grayscale(100%);

        }

        /* --- Portfolio Section (Swiper Style) --- */
        #portfolio {
            overflow: hidden; /* Important for Swiper */
            background-color: #f8f9fa; /* Match other sections */
        }
        
       
        
        /* === PROJECT SLIDER === */
        .project-slider {
            padding-left: 15px;
            padding-right: 15px;
        }
        
        .project-item {
            background: #fff;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            cursor: pointer;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .project-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }
        
        /* Project Image Frame with Corner Borders */
        .project-img-frame {
            position: relative;
            padding: 20px;
            border: none;
            overflow: hidden;
            aspect-ratio: 4 / 5;
        }
        
        .project-img-frame::before, 
        .project-img-frame::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 2px solid var(--primary-color);
            z-index: 2;
            transition: all 0.6s ease;
            pointer-events: none;
        }
        
        .project-img-frame::before {
            clip-path: polygon(0 0, 60% 0, 60% 2px, 2px 2px, 2px 60%, 0 60%);
        }
        
        .project-img-frame::after {
            clip-path: polygon(100% 40%, 100% 100%, 40% 100%, 40% calc(100% - 2px), calc(100% - 2px) calc(100% - 2px), calc(100% - 2px) 40%);
        }
        
        .project-item:hover .project-img-frame::before {
            clip-path: polygon(0 0, 100% 0, 100% 2px, 2px 2px, 2px 100%, 0 100%);
        }
        
        .project-item:hover .project-img-frame::after {
            clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 calc(100% - 2px), calc(100% - 2px) calc(100% - 2px), calc(100% - 2px) 0);
        }
        
        .project-img-frame img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
            position: relative;
            z-index: 1;
        }
        
        .project-item:hover .project-img-frame img {
            transform: scale(1.05);
        }
        
        /* Project Overlay */
        .project-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(112, 1, 1, 0.85);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 3;
        }
        
        .project-item:hover .project-overlay {
            opacity: 1;
        }
        
        .project-plus {
            width: 60px;
            height: 60px;
            border: 2px solid #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: #fff;
            font-weight: 300;
            transition: transform 0.3s ease;
            text-decoration: none;
                                    transform: rotate(90deg);

        }
        
        .project-plus:hover {
            color: #fff;
            text-decoration: none;

        }
        
        .project-item:hover .project-plus {
            transform: rotate(0deg);
        }
        
        /* Project Information */
        .project-info {
            padding: 25px 20px;
            text-align: left;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .project-info h5 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--secondary-color);
                    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.3;
        }
        
        .project-info h5 a {
            color: var(--secondary-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .project-info h5 a:hover {
            color: var(--primary-color);
        }
        
        .project-info p {
            font-size: 0.85rem;
            color: var(--primary-color);
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            font-weight: 600;
            line-height: 1.2;
        }
        
        .project-desc {
            font-size: 0.9rem;
            color: var(--text-color);
            font-style: italic;
            line-height: 1.4;
            margin-top: 5px;
            display: block;
        }
        
        /* View All Projects */
        .view-all-projects {
            text-align: right;
            margin-bottom: 50px;
        }
        
        .view-all-projects a {
            color: var(--secondary-color);
            text-decoration: none;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            padding-bottom: 8px;
            transition: color 0.3s ease;
        }
        
        .view-all-projects a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-color);
            transition: width 0.3s ease;
        }
        .view-all-projects a:hover {
            color: var(--primary-color);
        }
        .view-all-projects a:hover::after {
            width: 100%;
        }

        /* Swiper Navigation Buttons */
        .project-slider .swiper-button-next, 
        .project-slider .swiper-button-prev {
            color: var(--primary-color);
            background-color: rgba(255, 255, 255, 0.95);
            width: 55px;
            height: 55px;
            border-radius: 0;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }
        
        .project-slider .swiper-button-next:hover, 
        .project-slider .swiper-button-prev:hover {
            background-color: var(--primary-color);
            color: #fff;
            border-color: var(--primary-color);
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(112, 1, 1, 0.3);
        }
        
        .project-slider .swiper-button-next:after, 
        .project-slider .swiper-button-prev:after {
            font-size: 1.1rem;
            font-weight: 700;
        }

        /* --- Clients Section --- */
        #clients {
            background: var(--bg-light);
        }
        .client-logo {
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .client-logo img {
            height: 52px;
            width: auto;
            /* filter: grayscale(100%); */
            opacity: 0.8;
            /* transition: all 0.3s ease; */
        }
        .client-logo img:hover {
            filter: grayscale(0%);
            opacity: 1;
        }

        /* --- Footer --- */
        footer {
            background-color: var(--secondary-color);
            color: rgba(255,255,255,0.6);
            position: relative;
            /* clip-path: polygon(0 10%, 100% 0, 100% 100%, 0% 100%); */
            padding-top: 120px;
        }


        footer h5 {
            color: #fff;
            margin-bottom: 20px;
            text-transform: uppercase;
        }
        footer a {
            color: rgba(255,255,255,0.6);
            text-decoration: none;
            transition: color 0.3s;
        }
        footer a:hover {
            color: var(--primary-color);
        }
        .footer-bottom {
            background-color: var(--bg-dark);
            padding: 20px 0;
            border-top: 1px solid #333;
            color: rgba(255,255,255,0.4);
        }

        @media (max-width: 768px) {
            footer{
                /* clip-path: polygon(0 5%, 100% 0, 100% 100%, 0% 100%); */
                padding-top:90px;
            }
            footer h5 {
                font-size: 1.1rem;
                margin-bottom: 15px;
            }
            footer a, footer p, .footer-bottom {
                font-size: 0.85rem;
            }
        }

        @media (max-width: 576px) {
            footer h5 {
                font-size: 1rem;
            }
            footer a, footer p, .footer-bottom {
                font-size: 0.8rem;
            }
        }

        /* --- Achievements Section --- */
        #achievements {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            position: relative;
            overflow: hidden;
        }

        .achievements-description {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .achievements-description p {
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .achievements-description strong {
            color: var(--primary-color);
            font-weight: 600;
        }

        .achievement-item {
            text-align: center;
            padding: 60px 40px;
            border-radius: 0;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            border: none;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .achievement-item::before, .achievement-item::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 2px solid var(--primary-color);
            z-index: 1;
            transition: all 0.6s ease;
        }
        
        .achievement-item::before {
            clip-path: polygon(0 0, 100px 0, 100px 2px, 2px 2px, 2px 100px, 0 100px);
        }
        
        .achievement-item::after {
            clip-path: polygon(100% calc(100% - 100px), calc(100% - 2px) calc(100% - 100px), calc(100% - 2px) calc(100% - 2px), calc(100% - 100px) calc(100% - 2px), calc(100% - 100px) 100%, 100% 100%);
        }
        
        .achievement-item:hover::before {
            clip-path: polygon(0 0, 100% 0, 100% 2px, 2px 2px, 2px 100%, 0 100%);
        }
        
        .achievement-item:hover::after {
            clip-path: polygon(100% 0, calc(100% - 2px) 0, calc(100% - 2px) calc(100% - 2px), 0 calc(100% - 2px), 0 100%, 100% 100%);
        }

        .achievement-item:hover {
            background: rgba(255, 255, 255, 0.95);
 
        }

        .achievement-number {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--primary-color);
            line-height: 1;
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
        }

        .achievement-counter {
                    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            display: inline-block;
        }

        .currency, .unit {
            font-size: 2rem;
            margin-left: 10px;
            color: var(--secondary-color);
            font-weight: 600;
        }

        .achievement-item h4 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--secondary-color);
        }

        .achievement-item p {
            font-size: 1rem;
            line-height: 1.6;
            color: var(--text-color);
        }

        /* Responsive adjustments for achievements */
        @media (max-width: 768px) {
            .achievement-number {
                font-size: 2.2rem;
            }
            
            .currency, .unit {
                font-size: 1rem;
            }
            
            .achievement-item {
                padding: 30px 15px;
                margin-bottom: 30px;
            }
        }

        @media (max-width: 576px) {
            .achievement-number {
                font-size: 1.8rem;
            }
            
            .currency, .unit {
                font-size: 0.9rem;
                margin-left: 5px;
            }
        }

        /* --- Founders Section --- */
        #founders {
            /* background-color: #f8f9fa; */
        }

        /* Project Slider Responsive Styles */
        @media (max-width: 768px) {
            .project-img-frame {
                padding: 15px;
                aspect-ratio: 3 / 4;
            }
            
            .project-info {
                padding: 20px 15px;
            }
            
            .project-info h5 {
                font-size: 1.1rem;
            }
            
            .project-info p {
                font-size: 0.8rem;
                letter-spacing: 0.6px;
            }
            
            .project-desc {
                font-size: 0.85rem;
                line-height: 1.3;
            }
            
            .project-slider .swiper-button-next, 
            .project-slider .swiper-button-prev {
                width: 45px;
                height: 45px;
            }
            
            .project-slider .swiper-button-next:after, 
            .project-slider .swiper-button-prev:after {
                font-size: 1rem;
            }
            
            .project-plus {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
            }
        }
        
        @media (max-width: 576px) {
            .project-img-frame {
                padding: 10px;
            }
            
            .project-info {
                padding: 18px 12px;
            }
            
            .project-info h5 {
                font-size: 1rem;
                margin-bottom: 6px;
            }
            
            .project-info p {
                font-size: 0.75rem;
                margin-bottom: 6px;
            }
            
            .project-desc {
                font-size: 0.8rem;
            }
            
            .view-all-projects {
                text-align: center;
                margin-bottom: 30px;
            }
        }

        .founder-row {
            margin-bottom: 60px;
        }

        .founder-row:last-child {
            margin-bottom: 0;
        }

        .founder-image {
            position: relative;
            overflow: hidden;
        }

        .founder-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: grayscale(100%);
            transition: filter 0.4s ease;
        }

        .founder-image:hover img,
        .founder-row:hover .founder-image img {
            filter: grayscale(0%);
        }

        .founder-content {
            padding: 40px;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .founder-content h4 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--secondary-color);
                    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        }

        .founder-title {
            font-size: 1.1rem;
            color: var(--primary-color);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 25px;
        }

        .founder-details {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .founder-details li {
            padding: 10px 0;
            color: var(--text-color);
            font-size: 1rem;
            line-height: 1.6;
            position: relative;
            padding-left: 25px;
            border-left: 3px solid transparent;
            transition: border-color 0.3s ease, padding-left 0.3s ease;
        }

        .founder-details li::before {
            content: '•';
            color: var(--primary-color);
            font-weight: bold;
            font-size: 1.2rem;
            position: absolute;
            left: 0;
            top: 10px;
        }

         

        /* Responsive adjustments for founders */
        @media (max-width: 768px) {
             
            
            .founder-content {
                padding: 30px;
            }
            
            .founder-content h4 {
                font-size: 1.6rem;
            }
            
            .founder-details li {
                font-size: 0.95rem;
                padding: 8px 0;
                padding-left: 20px;
            }
            
            .founder-details li::before {
                top: 8px;
                font-size: 1.1rem;
            }
            
            .founder-row {
                margin-bottom: 40px;
            }
        }

        @media (max-width: 576px) {
            .founder-content {
                padding: 25px;
            }
            
            .founder-content h4 {
                font-size: 1.4rem;
            }
            
            .founder-details li {
                padding-left: 18px;
            }
            
            .founder-details li::before {
                top: 8px;
                font-size: 1rem;
            }
        }

        /* === CONTACT PAGE STYLES === */
        .contact-info {
            background: #f9f9f9;
            padding: 40px;
            border-radius: 0;
            height: 100%;
            border: 1px solid #e0e0e0;
        }

        .contact-item {
            margin-bottom: 30px;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            flex-shrink: 0;
        }

        .contact-form {
            background: white;
            padding: 40px;
            border-radius: 0;
            height: 100%;
        }

        .contact-form .form-control {
            border: 2px solid #e0e0e0;
            border-radius: 0;
            padding: 12px 15px;
            transition: border-color 0.3s ease;
        }

        .contact-form .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(112, 1, 1, 0.1);
        }

        /* Social Media Icons */
        .social-links a {
            color: var(--text-color);
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .social-links a:hover {
            transform: translateY(-2px);
            color: var(--primary-color);
        }

     

        /* === JUMP TO TOP BUTTON === */
        .jump-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--primary-color);
            color: white;
            border: none;
            /* border-radius: 50%; */
            cursor: pointer;
            font-size: 18px;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(112, 1, 1, 0.3);
        }

        .jump-to-top.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .jump-to-top:hover {
            background: var(--secondary-color);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(112, 1, 1, 0.4);
        }

        .jump-to-top:active {
            transform: translateY(0);
        }

        /* Mobile responsiveness */
        @media (max-width: 768px) {
            .jump-to-top {
                bottom: 20px;
                right: 20px;
                width: 45px;
                height: 45px;
                font-size: 16px;
            }
        }

        /* === PROJECTS FILTER BUTTONS === */
        .filter-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
            margin-bottom: 2rem;
        }

        .filter-buttons .btn {
            padding: 12px 30px;
            border: 2px solid var(--primary-color);
            background: transparent;
            color: var(--primary-color);
            font-weight: 600;
            border-radius: 0;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 14px;
        }

        .filter-buttons .btn:hover,
        .filter-buttons .btn.active {
            background: var(--primary-color);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(112, 1, 1, 0.3);
        }

        .filter-buttons .btn:focus {
            box-shadow: 0 0 0 0.2rem rgba(112, 1, 1, 0.25);
        }

        /* Project Category Sections */
        .project-category {
            margin-bottom: 4rem;
        }

        @media (max-width: 768px) {
            .filter-buttons {
                gap: 10px;
            }
            
            .filter-buttons .btn {
                padding: 10px 20px;
                font-size: 12px;
            }
        }

        @media (max-width: 576px) {
            .filter-buttons {
                flex-direction: column;
                gap: 8px;
                align-items: stretch;
            }
            
            .filter-buttons .btn {
                width: 100%;
                padding: 12px 20px;
                font-size: 13px;
                margin-bottom: 0; /* Override general button margin for filter buttons */
            }
        }

 