:root {
            --primary-orange: #FF6B2C;
            --dark-bg: #1a1a1a;
            --light-gray: #f8f9fa;
            --text-dark: #2d3436;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
            color: var(--text-dark);
        }
        
        /* Navbar */
        .navbar {
            background: var(--primary-orange) !important;
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0,0,0,0.2);
            padding: 0.8rem 0;
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
        }
        
        .navbar-brand img {
            height: 50px;
            width: auto;
            transition: transform 0.3s ease;
        }
        
        .navbar-brand img:hover {
            transform: scale(1.05);
        }
        
        .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 1rem;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-link:hover {
            color: rgba(255, 255, 255, 0.8) !important;
            transform: translateY(-2px);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background-color: white;
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .nav-link:hover::after {
            width: 80%;
        }
        
        .btn-primary-custom {
            background: white;
            border: 2px solid white;
            padding: 0.8rem 2.5rem;
            border-radius: 8px;
            font-weight: 600;
            color: var(--primary-orange);
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-primary-custom:hover {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border-color: white;
        }
        
        .navbar-toggler {
            border: none;
            padding: 0;
            width: 30px;
            height: 30px;
            position: relative;
            background: transparent;
            margin-right: 15px; /* Add margin to the right */
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
            outline: none;
        }
        
        .navbar-toggler-icon {
            background-image: none !important;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .navbar-toggler-icon::before,
        .navbar-toggler-icon::after,
        .navbar-toggler-icon {
            width: 30px;
            height: 2px;
            background-color: white;
            display: block;
            position: absolute;
            border-radius: 2px;
            transition: all 0.3s ease;
        }
        
        .navbar-toggler-icon::before {
            content: '';
            margin-top: -8px;
        }
        
        .navbar-toggler-icon::after {
            content: '';
            margin-top: 8px;
        }
        
        /* Animation for the menu icon when opened */
        .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
            background: transparent;
        }
        
        .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
            margin-top: 0;
            transform: rotate(45deg);
        }
        
        .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
            margin-top: 0;
            transform: rotate(-45deg);
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, var(--primary-orange), #ff8c42);
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding-top: 80px;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            top: -250px;
            right: -250px;
            animation: float 6s ease-in-out infinite;
        }
        
        .hero-section::after {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            bottom: -150px;
            left: -150px;
            animation: float 8s ease-in-out infinite reverse;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-30px); }
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            color: white;
        }
        
        .hero-content h1 {
            font-size: 4rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            animation: fadeInUp 1s ease;
        }
        
        .hero-content .tagline {
            font-size: 1.5rem;
            font-weight: 300;
            margin-bottom: 2rem;
            opacity: 0.95;
            animation: fadeInUp 1s ease 0.2s backwards;
        }
        
        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            opacity: 0.9;
            animation: fadeInUp 1s ease 0.4s backwards;
        }
        
        .hero-buttons {
            animation: fadeInUp 1s ease 0.6s backwards;
        }
        
        .btn-outline-white {
            border: 2px solid white;
            color: white;
            padding: 0.7rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            background: transparent;
            margin-left: 1rem;
        }
        
        .btn-outline-white:hover {
            background: white;
            color: var(--primary-orange);
            transform: translateY(-3px);
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Section Titles */
        .section-title {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            width: 60%;
            height: 4px;
            background: var(--primary-orange);
            bottom: -10px;
            left: 0;
            border-radius: 2px;
        }
        
        .section-subtitle {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 4rem;
        }
        
        /* Services Section */
        .services-section {
            padding: 120px 0;  /* Increased from 100px */
            background: white;
        }
        
        .services-section .section-title {
            margin-bottom: 1.5rem;  /* Increased from 1rem */
        }
        
        .services-section .section-subtitle {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 5rem;  /* Increased from 4rem */
        }
        
        .services-section .container {
            padding-bottom: 2rem;  /* Added extra padding at bottom */
        }
        
        .services-section .row {
            margin-top: 2rem;  /* Added spacing above the row of cards */
        }
        
        .service-card {
            background: white;
            border-radius: 20px;
            padding: 2rem 2rem 1rem; /* Adjusted padding - less at bottom */
            text-align: center;
            transition: all 0.4s ease;
            box-shadow: 0 5px 25px rgba(0,0,0,0.05);
            height: 100%;
            border: 2px solid transparent;
        }
        
        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 15px 40px rgba(255, 107, 44, 0.2);
            border-color: var(--primary-orange);
        }
        
        .service-illustration {
            width: 180px;
            height: 180px;
            margin: 0 auto 0.25rem; /* Decreased bottom margin */
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .service-illustration img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        
        .service-card i {
            font-size: 5rem;
            margin-bottom: 0; /* Remove any bottom margin from icons */
        }
        
        .service-card h3 {
            font-size: 1.6rem;
            font-weight: 700;
            margin: 0 0 0.5rem; /* Adjusted margins */
            color: var(--text-dark);
        }
        
        .service-card p {
            color: #666;
            line-height: 1.6; /* Slightly reduced line height */
            font-size: 1rem;
            margin-bottom: 0.5rem; /* Added smaller bottom margin */
        }
        
        /* Portfolio Section */
        .portfolio-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--primary-orange), #ff8c42);
        }
        
        .portfolio-section .section-title {
            color: white;
        }
        
        .portfolio-section .section-title::after {
            background: white;
        }
        
        .portfolio-section .section-subtitle {
            color: rgba(255, 255, 255, 0.9);
        }
        
        .portfolio-item {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            height: 350px;
            margin-bottom: 30px;
            cursor: pointer;
            box-shadow: 0 5px 25px rgba(0,0,0,0.1);
        }
        
        .portfolio-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .portfolio-item:hover img {
            transform: scale(1.1);
        }
        
        .portfolio-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255, 107, 44, 0.95), rgba(255, 140, 66, 0.95));
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.4s ease;
            padding: 2rem;
        }
        
        .portfolio-item:hover .portfolio-overlay {
            opacity: 1;
        }
        
        .portfolio-overlay h4 {
            color: white;
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        
        .portfolio-overlay p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.1rem;
        }
        
        /* About Section */
        .about-section {
            padding: 100px 0;
            background: white;
            color: var(--text-dark);
        }
        
        .about-content h2 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 2rem;
            color: var(--text-dark);
        }
        
        .about-content p {
            font-size: 1.2rem;
            line-height: 1.9;
            margin-bottom: 1.5rem;
            color: #666;
        }
        
        .stats-row {
            margin-top: 4rem;
        }
        
        .stat-item {
            text-align: center;
            padding: 2rem;
        }
        
        .stat-number {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--primary-orange);
            margin-bottom: 0.5rem;
        }
        
        .stat-label {
            font-size: 1.1rem;
            color: #666;
        }
        
        /* Footer */
        footer {
            background: var(--dark-bg);
            color: white;
            padding: 3rem 0 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .footer-content {
            text-align: center;
        }
        
        .social-links {
            margin: 2rem 0;
        }
        
        .social-links a {
            display: inline-block;
            width: 50px;
            height: 50px;
            background: rgba(255, 107, 44, 0.1);
            border-radius: 50%;
            margin: 0 0.5rem;
            line-height: 50px;
            color: var(--primary-orange);
            font-size: 1.3rem;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background: var(--primary-orange);
            color: white;
            transform: translateY(-5px);
        }
        
        .copyright {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.3);
            opacity: 0.9;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .hero-content .tagline {
                font-size: 1.2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .btn-outline-white {
                margin-left: 0;
                margin-top: 1rem;
            }
            
            .portfolio-item {
                height: 250px;
            }
        }
        
        /* Scroll Animation */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }