body {
    margin: 0;
    padding: 0;
    background-color: rgb(226, 226, 226);
    cursor: url('projects.cur'), default;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    cursor: url('projects.cur'), default;
}

/* Enhanced Scrollbar Styles */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, rgb(13,36,63), #ff5912);
    border-radius: 10px;
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.8), #ff5912);
}

/* Enhanced Navbar - Matching projects.css */
.navbar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    background-color: transparent !important;
    transition: all 0.4s ease !important;
    z-index: 999 !important;
    padding: 0 20px !important;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.301) !important;
    backdrop-filter: blur(6px) !important;
    -webkit-backdrop-filter: blur(6px) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15) !important;
}

.navbar::before {
    content: "";
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, rgba(255,255,255,0.05) 80%);
    opacity: 0;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.navbar.scrolled::before {
    opacity: 1;
}

.nav-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-links {
    display: flex;
    gap: 60px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.nav-links a {
    font-weight: 700;
    text-decoration: none;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    position: relative;
    padding: 10px 0;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(45deg, #ff5912, #ff7c4a);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover {
    color: #ff5912;
    transform: translateY(-2px);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.dark-text {
    color: #000000 !important;
}

.nav-links a.dark-text:hover {
    color: #162630 !important;
}

.nav-links a.dark-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: #1a6bb3;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a.dark-text:hover::after {
    width: 100%;
}

/* Enhanced Hero Section - Matching projects.css */
.homepage {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    backdrop-filter: blur(3px);
    position: relative;
}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(255,89,18,0.2) 100%);
    z-index: 1;
}

.hero-h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: white;
    font-family: "Special Gothic Expanded One", sans-serif;
    font-size: clamp(36px, 8vw, 80px);
    text-align: center;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    letter-spacing: 5px;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate(-50%, -30%) translateY(30px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) translateY(0);
    }
}










.services-hero {
            background: linear-gradient(135deg, rgba(13,36,63,0.9) 0%, rgba(255,89,18,0.8) 100%);
        }
        
        .services-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 80px 20px;
            min-height: auto;
        }
        
        .services-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .services-header h1 {
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(32px, 5vw, 48px);
            font-weight: 700;
            color: #333;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .services-header p {
            font-size: 18px;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.8;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }
        
        .service-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            transition: all 0.4s ease;
            position: relative;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.25);
        }
        
        .service-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        
        .service-card:hover .service-image {
            transform: scale(1.05);
        }
        
        .service-content {
            padding: 30px;
        }
        
        .service-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, #ff5912, #ff7c4a);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: white;
            font-size: 24px;
        }
        
        .service-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 24px;
            font-weight: 700;
            color: #333;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .service-description {
            color: #666;
            line-height: 1.8;
            font-size: 16px;
        }
        
        .why-choose-us {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 80px 20px;
            margin: 60px 0;
        }
        
        .why-choose-container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }
        
        .why-choose-title {
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(28px, 4vw, 36px);
            font-weight: 700;
            color: #333;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .why-choose-subtitle {
            font-size: 18px;
            color: #666;
            margin-bottom: 50px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .feature-item {
            background: white;
            padding: 40px 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        .feature-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        
        .feature-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(45deg, rgb(13,36,63), #1a6bb3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 20px;
        }
        
        .feature-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 18px;
            font-weight: 600;
            color: #333;
            margin-bottom: 15px;
        }
        
        .feature-text {
            color: #666;
            line-height: 1.6;
            font-size: 14px;
        }
        
        .cta-section {
            background: linear-gradient(135deg, rgb(13,36,63) 0%, #1a6bb3 100%);
            color: white;
            padding: 80px 20px;
            text-align: center;
        }
        
        .cta-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .cta-title {
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(28px, 4vw, 36px);
            font-weight: 700;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .cta-text {
            font-size: 18px;
            margin-bottom: 40px;
            line-height: 1.8;
        }
        
        .cta-button {
            display: inline-block;
            background: linear-gradient(45deg, #ff5912, #ff7c4a);
            color: white;
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(255,89,18,0.3);
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(255,89,18,0.5);
            background: linear-gradient(45deg, #e04a0f, #ff5912);
        }










/* Enhanced Footer - Matching projects.css */
footer {
    background: linear-gradient(135deg, #23252d 0%, #1a1c23 100%);
    color: #EEF1F2;
    font-family: 'Montserrat', sans-serif;
    padding: 0;
    margin-top: auto;
}

.footer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    font-family: 'Montserrat', sans-serif;
    color: #ff5912;
    position: relative;
}

.footer h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(45deg, #ff5912, #ff7c4a);
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer li {
    margin-bottom: 12px;
}

.footer-link,
.footercontact a {
    color: #EEF1F2;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
    display: inline-block;
    position: relative;
}

.footer-link:hover,
.footercontact a:hover {
    color: #ff5912;
    padding-left: 15px;
}

.wpnumber {
    color: #16f058 !important;
}

.wpnumber:hover {
    color: #20ff6b !important;
}

.footerlogo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footerlogo img {
    width: 100%;
    max-width: 160px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.footerlogo img:hover {
    transform: scale(1.05);
}

.footercopyright {
    background: rgba(0,0,0,0.3);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footercopyright p {
    margin: 0;
    padding: 25px;
    text-align: center;
    font-size: 14px;
    color: #aaa;
}

/* Hamburger Menu Styles */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 2.5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.navbar.scrolled .hamburger span {
    background-color: #333;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}











@media (max-width: 768px) {
            .services-container {
                padding: 40px 15px;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .service-content {
                padding: 20px;
            }
            
            .service-icon {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }
            
            .service-title {
                font-size: 20px;
            }
            
            .why-choose-us {
                padding: 60px 15px;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .feature-item {
                padding: 30px 20px;
            }
            
            .cta-section {
                padding: 60px 15px;
            }
            
            .cta-button {
                padding: 12px 30px;
                font-size: 14px;
            }


                .buttons {
        gap: 30px;
        flex-direction: column;
    }
    
    .buttons a {
        font-size: 16px;
    }
    
    .numbers {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
    }
    
    .numbers a {
        font-size: 15px;
    }
    
    .footer {
        grid-template-columns: 1fr;
        padding: 40px 20px;
        text-align: center;
    }
    
    .footer h3 {
        font-size: 18px;
    }
    
    .footer h3::after {
        left: 50%;
        transform: translateX(-50%);

    }
        }



@media (max-width: 576px) {


                .navbar {
        padding: 0 10px;
    }
    
    .nav-container {
        padding: 12px 20px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: linear-gradient(135deg, rgba(35, 37, 45, 0.98) 0%, rgba(26, 28, 35, 0.98) 100%);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: right 0.4s ease;
        z-index: 1000;
        box-shadow: -5px 0 20px rgba(0,0,0,0.3);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        font-size: 14px !important;
        padding: 15px 0;
        text-align: center;
        color: white !important;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 2px;
    }
    
    .nav-links a:hover {
        color: #ff5912 !important;
        transform: translateX(-10px);
    }
    
    .hero {
        height: 60vh;
    }
    
    .homepage {
        height: 60vh;
    }
    
    .hero-h1 {
        letter-spacing: 0.5px;
        padding: 0 15px;
        line-height: 1.3;
        font-size: clamp(40px, 4vw, 28px) !important;
    }


            .service-image {
                height: 200px;
            }
            
            .service-content {
                padding: 15px;
            }
            
            .service-title {
                font-size: 18px;
            }
            
            .service-description {
                font-size: 14px;
            }

            .footer {
        padding: 30px 15px;
        gap: 25px;
    }
    
    .footer h3 {
        font-size: 19px;
        margin-bottom: 35px;
    }
    
    .footer li {
        margin-bottom: 10px;
    }
    
    .footer-link,
    .footercontact a {
        font-size: 17px;
    }
    
    .footerlogo img {
        max-width: 150px;
        margin-top: 40px;
    }
    
    .footercopyright p {
        padding: 0px 15px;
        font-size: 14px;
        padding-bottom: 4%;
    }
}












/* Print Styles */
@media print {
    .navbar,
    footer {
        display: none;
    }
    
    .hero {
        height: auto;
        page-break-inside: avoid;
    }
    
    .container1 {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }
}