/* Base Styles - Matching projects.css */
* {
    box-sizing: border-box;
}

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: 3px;
    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);
    }
}

/* Enhanced Main Content */
main {
    min-height: auto;
    margin: 0;
    padding: 60px 20px 80px;
    max-width: 1400px;
    margin: 0 auto;
    margin-top: 0px;
}

/* About Section - Enhanced */
.row1 {
    display: flex;
    gap: 40px;
    margin: 40px 0;
    margin-bottom: 120px;
    align-items: stretch;
    min-height: 500px;
}

.index-about {
    flex: 0 0 40%;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.6s ease;
    transform: translateX(-50px);
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.index-about.visible {
    opacity: 1;
    transform: translateX(0);
}

.index-about p {
    font-size: 16px;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    color: #333;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    line-height: 1.7;
}

.index-about.visible p:nth-child(1) {
    transition-delay: 0.2s;
    opacity: 1;
    transform: translateY(0);
}

.index-about.visible p:nth-child(2) {
    transition-delay: 0.4s;
    opacity: 1;
    transform: translateY(0);
}

.index-about.visible p:nth-child(3) {
    transition-delay: 0.6s;
    opacity: 1;
    transform: translateY(0);
}

#quote {
    font-size: 20px;
    font-style: italic;
    font-family: 'Montserrat', sans-serif;
    color: #ff5912;
    font-weight: 600;
    border-left: 4px solid #ff5912;
    padding-left: 20px;
    margin: 30px 0;
}

/* Enhanced Aside Section */
aside {
    flex: 0 0 55%;
    background: linear-gradient(135deg, #ffffff 0%, #f0f2f5 100%);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

aside h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 28px;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

aside h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #ff5912, #ff7c4a);
}

/* Enhanced Slider */
.sliderwrapper {
    position: relative;
    margin: 0 auto;
    max-width: 100%;
}

.slider {
    aspect-ratio: 16/9;
    overflow: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.slider:hover img {
    transform: scale(1.05);
}

/* Projects Section - Enhanced */

.projects-row {
    height: auto;
    margin: 80px 0 60px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.container {
    background-image: url(background-images/project-row.webp);
    background-size: cover;
    background-position: center;
    height: auto;
    width: 100%;
    position: relative;
    border-radius: 15px;
}


.h1 {
    font-size: 16px;
    font-family: 'montserrat';
    padding: 80px;
    padding-top: 80px;
    letter-spacing: 1.6px;
    margin-bottom: 0;
    padding-bottom: 10px;
    color: white;
    position: relative;
    margin-top: 0;
}

.h2-project {
    font-size: 60px;
    padding: 80px;
    letter-spacing: 1.7px;
    padding-top: 0;
    text-align: left;
    text-decoration-line: none;
    font-family: 'montserrat';
    margin: 0;
    color: white;
    position: relative;
}


.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(255,89,18,0.3) 100%);
    border-radius: 15px;
}




/* Enhanced Project Grid */
.project-content {
    margin: 40px 0;
}

#projectsgrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-decoration: none;
}

.container1 {
    position: relative;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
    background: white;
    height: 300px;
    opacity: 0;
    transform: translateY(50px);
}

.container1.visible {
    opacity: 1;
    transform: translateY(0);
}

.container1.visible:nth-child(1) { transition-delay: 0.1s; }
.container1.visible:nth-child(2) { transition-delay: 0.3s; }
.container1.visible:nth-child(3) { transition-delay: 0.5s; }
.container1.visible:nth-child(4) { transition-delay: 0.7s; }

.container1:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

#pictures {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.container1:hover #pictures {
    transform: scale(1.1);
}

.content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #ffffffbe 25%, rgba(235, 235, 235, 0) 100%);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(10px);
    color: #333;
    padding: 20px;
    transform: translateY(100%);
    transition: all 0.4s ease;
}

.container1:hover .content {
    transform: translateY(0);
}

.content h2 {
    font-weight: 800;
    font-size: 20px;
    margin: 0 0 10px 0;
    color: #333;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
}

.content p {
    font-weight: 500;
    margin: 0;
    color: #666;
    font-size: 16px;
    line-height: 1.5;
}

/* Enhanced Stats Section */
.stats {
    background: linear-gradient(135deg, #23252d 0%, #1a1c23 100%);
    margin: 80px 0;
    padding: 60px 20px;
    border-radius: 15px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.stat {
    text-align: center;
    color: white;
    flex: 1;
    min-width: 200px;
}

.count {
    font-size: 80px;
    font-weight: 900;
    display: block;
    color: #ff5912;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.percent, .sign {
    font-size: 24px;
    font-weight: 600;
    color: #ff5912;
}

.stat p {
    font-size: 18px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    margin: 10px 0 0 0;
    color: #EEF1F2;
}

/* Enhanced Button */
button {
    background: linear-gradient(135deg, #ff5912 0%, #ff7c4a 100%);
    border: none;
    height: 60px;
    width: 220px;
    border-radius: 30px;
    display: block;
    margin: 40px auto 150px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 89, 18, 0.3);
}

button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 89, 18, 0.4);
}

button a {
    display: block;
    text-decoration: none;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1.5px;
    line-height: 60px;
    text-transform: uppercase;
}

/* Enhanced Services Section */
.service-row {
    height: auto;
    margin: 80px 0 50px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.container-service {
    background-image: url(background-images/service-row.webp);
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 300px;
    position: relative;
    border-radius: 15px;
    padding: 80px 0 !important;
}

.container-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0) 40%, rgba(240, 242, 245, 0.164) 60%);
    border-radius: 15px;
}

.h1-service, .h2 {
    position: relative;
    z-index: 2;
    padding-left: 80px;
    color: #333;
    font-family: 'Montserrat', sans-serif;
}

.h1-service {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 0px;
    text-transform: uppercase;
}

.h2 {
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 900;
    letter-spacing: 2px;
    margin: 0;
}

/* Enhanced Service Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.div1 {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.6s ease;
    opacity: 0;
    transform: rotateY(90deg);
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

.div1.visible {
    opacity: 1;
    transform: rotateY(0deg);
}

.div1.visible:nth-child(1) { transition-delay: 0.1s; }
.div1.visible:nth-child(2) { transition-delay: 0.3s; }
.div1.visible:nth-child(3) { transition-delay: 0.5s; }

.div1:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.div1 h5 {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #333;
    margin-bottom: 20px;
    position: relative;
}

.div1 h5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(45deg, #ff5912, #ff7c4a);
}

.div1 p {
    font-size: 16px;
    line-height: 1.7;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: #666;
}

/* Enhanced Contact Section */
.container2 {
    height: auto;
    background-image: url(background-images/contact-row.webp);
    background-size: cover;
    background-position: center;
    width: 100%;
    position: relative;
    margin: 80px 0 50px;
    border-radius: 15px;
    padding: 80px 0;
    margin-top: 0;
}

.container2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.8) 0%, rgba(240,242,245,0.6) 100%);
    border-radius: 15px;
}

.h2-service {
    position: relative;
    z-index: 2;
    font-size: clamp(36px, 5vw, 60px);
    padding-left: 80px;
    font-weight: 900;
    letter-spacing: 2px;
    color: #333;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
}

/* Enhanced Contact Card */
.contact {
    margin: 40px 0;
}

.contactcard1 {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 15px;
    padding: 60px;
    margin: 0 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.details {
    width: 80%;
}

.contactlogo {
    width: 120px;
    margin-bottom: 30px;
    border-radius: 10px;
}

.contactcard1 h2 {
    font-size: 32px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    color: #333;
    margin: 0 0 40px 0;
    padding: 0;
}

.brochurelogo {
    width: 80px;
    margin: 20px;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.brochurelogo:hover {
    transform: scale(1.1);
}

.buttons {
    display: flex;
    gap: 40px;
    margin: 30px 0;
    justify-content: center;
    flex-wrap: wrap;
}

.buttons a {
    color: #333;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.buttons a:hover {
    color: #ff5912;
    transform: translateY(-2px);
}

.numbers {
    display: grid;
    grid-template-columns: auto auto auto auto;
    margin: 30px 0;
}

.numbers a {
    color: #333;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.numbers a:hover {
    color: #ff5912;
}

.viewbutton, .downloadbutton {
    transition: all 0.3s ease;
    font-size: 25px !important;
}

.viewbutton:hover, .downloadbutton:hover {
    text-decoration: underline;
    transform: scale(1.05);
}

/* 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);
}

/* Responsive Media Queries - Matching projects.css */

/* Large Desktop */
@media (min-width: 1400px) {
    main {
        max-width: 1600px;
    }
    
    #projectsgrid {
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
    }
}

/* Desktop */
@media (max-width: 1200px) {
    .nav-links {
        gap: 40px;
    }
    
    .nav-links a {
        font-size: 16px;
    }
    
    main {
        padding: 40px 20px 120px;
    }
    
    .row1 {
        flex-direction: column;
        gap: 30px;
    }
    
    .index-about, aside {
        flex: none;
        width: 100%;
    }
    
    #projectsgrid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
    
    .footer {
        padding: 60px 30px;
        gap: 30px;
    }
}

/* Tablet */
@media (max-width: 992px) {
    .nav-container {
        padding: 20px 0;
    }
    
    .nav-links {
        gap: 30px;
    }
    
    .nav-links a {
        font-size: 15px;
    }
    
    .hero-h1 {
        font-size: clamp(28px, 6vw, 50px);
        letter-spacing: 2px;
    }
    
    main {
        padding: 30px 15px 100px;
    }
    
    .service-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer {
        grid-template-columns: repeat(2, 1fr);
        padding: 50px 25px;
    }
}

/* Small Tablet */
@media (max-width: 768px) {
    .navbar {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 15px 0;
    }
    
    .nav-links {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-links a {
        font-size: 14px;
        padding: 8px 0;
    }
    
    .hero {
        height: 70vh;
    }
    
    .homepage {
        height: 70vh;
    }
    
    .hero-h1 {
        font-size: clamp(24px, 5vw, 36px);
        letter-spacing: 1px;
        padding: 0 20px;
    }
    
    main {
        padding: 25px 15px 80px;
    }
    
    .row1 {
        margin-bottom: 80px;
    }
    
    .index-about, aside {
        padding: 30px;
    }
    
    #quote {
        font-size: 18px;
        margin: 25px 0;
        padding-left: 15px;
    }
    
    aside h2 {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .h1, .h2-project, .h1-service, .h2, .h2-service {
        padding-left: 60px;
    }
    
    .h2-project, .h2, .h2-service {
        font-size: clamp(28px, 4vw, 40px);
    }
    
    #projectsgrid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .container1 {
        height: 280px;
    }
    
    .content {
        padding: 15px;
    }
    
    .content h2 {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .content p {
        font-size: 13px;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .div1 {
        padding: 30px;
    }
    
    .div1 h5 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .div1 p {
        font-size: 15px;
    }
    
    .contactcard1 {
        padding: 40px;
        margin: 0 15px;
    }
    
    .contactcard1 h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .contactlogo {
        width: 100px;
        margin-bottom: 25px;
    }
    
    .brochurelogo {
        width: 70px;
        margin: 15px;
    }
    
    .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%);

    }
}

/* Mobile */
@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;
    }
    
    main {
        padding: 20px 10px 60px;
    }
    
    .row1 {
        margin-bottom: 60px;
        gap: 20px;
    }
    
    .index-about, aside {
        padding: 25px;
    }
    
    .index-about p {
        font-size: 15px;
        margin-bottom: 15px;
    }
    
    #quote {
        font-size: 16px;
        margin: 20px 0;
        padding-left: 12px;
        border-left-width: 3px;
    }
    
    aside h2 {
        font-size: 20px !important;
        margin-bottom: 20px;
    }
    
    .h1,
    .h1-service {
        font-size: 16px !important;
        font-weight: 500;
        padding-left: 20px;
        margin-bottom: 4px;
        letter-spacing: 1px;
        padding-top: 60px;
        margin-top: 0;
    }

    .h2-project,
    .h2,
    .h2-service {
        font-size: 30px !important;
        font-weight: 800;
        padding-left: 20px;
        margin-top: 0;
        letter-spacing: 1px;
        line-height: 1.2;
        padding-bottom: 50px ;
    }
    .container, .container-service, .container2 {
        height: 200px;
        border-radius: 10px;
    }
    
    .projects-row, .service-row {
        margin: 60px 0 40px;
    }
    
    #projectsgrid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .container1 {
        height: 250px;
        border-radius: 10px;
    }
    
    .content {
        padding: 12px;
        transform: none;
        background: linear-gradient(135deg, #ffffffdc 40%, rgba(255, 255, 255, 0.205) 75%);
        backdrop-filter: blur(4px);
        border-radius: 0 0 10px 10px;
    }
    
    .container1:hover .content {
        transform: none;
    }
    
    .content h2 {
        font-size: 20px !important;
        margin-bottom: 5px;
    }
    
    .content p {
        font-size: 14px;
    }
    
    .stats {
        margin: 60px 0;
        padding: 40px 15px;
        gap: 30px;
        flex-direction: column;
        text-align: center;
    }
    
    .stat {
        min-width: auto;
    }
    
    .count {
        font-size: 60px;
    }
    
    .percent, .sign {
        font-size: 20px;
    }
    
    .stat p {
        font-size: 16px;
    }
    
    button {
        height: 50px;
        width: 180px;
        margin: 30px auto 100px;
    }
    
    button a {
        font-size: 14px;
        line-height: 50px;
        letter-spacing: 1px;
    }

    .container-service {
        padding-top: 0px !important;
    }

    .h1-service {
        padding-top: 100px;
    }

    
    .service-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .div1 {
        padding: 25px;
    }
    
    .div1 h5 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .div1 p {
        font-size: 14px;
    }
    
    .container2 {
        margin: 0px 0 40px;
        padding: 0px 0;

    }
    
    .contactcard1 {
        padding: 30px;
        margin: 0 10px;
    }
    
    .contactcard1 h2 {
        font-size: 26px !important;
        margin-bottom: 25px;
    }

    .details {
        width: 100%;
    }
    
    .contactlogo {
        width: 100px !important;
        margin-bottom: 20px;
    }
    
    .brochurelogo {
        width: 60px;
        margin: 10px;
    }
    
    .buttons {
        gap: 20px;
        margin: 25px 0;
    }
    
    .buttons a {
        font-size: 18px !important;
    }
    
    .numbers {
        gap: 12px;
    }
    
    .numbers a {
        font-size: 15px !important;
    }
    
    .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%;
    }
}

/* Extra Small Mobile */
@media (max-width: 400px) {
    .nav-links a {
        font-size: 12px;
    }
    
    .hero-h1 {
        font-size: clamp(18px, 4vw, 24px);
    }
    
    .index-about, aside {
        padding: 20px;
    }
    
    .index-about p {
        font-size: 14px;
    }
    
    #quote {
        font-size: 15px;
    }
    
    aside h2 {
        font-size: 18px;
    }
    
    .h1, .h1-service {
        font-size: 12px;
        padding-left: 30px;
    }
    
    .h2-project, .h2, .h2-service {
        font-size: clamp(20px, 5vw, 28px);
        padding-left: 30px;
    }
    
    .container1 {
        height: 220px;
    }
    
    .content h2 {
        font-size: 14px;
    }
    
    .content p {
        font-size: 11px;
    }
    
    .count {
        font-size: 50px;
    }
    
    .percent, .sign {
        font-size: 18px;
    }
    
    .stat p {
        font-size: 14px;
    }
    
    button {
        height: 45px;
        width: 160px;
    }
    
    button a {
        font-size: 13px;
        line-height: 45px;
    }
    
    .div1 {
        padding: 20px;
    }
    
    .div1 h5 {
        font-size: 16px;
    }
    
    .div1 p {
        font-size: 13px;
    }
    
    .contactcard1 {
        padding: 25px;
    }
    
    .contactcard1 h2 {
        font-size: 20px;
    }
    
    .contactlogo {
        width: 70px;
    }
    
    .brochurelogo {
        width: 50px;
    }
    
    .buttons a {
        font-size: 13px;
    }
    
    .numbers a {
        font-size: 13px;
    }
    
    .footer {
        padding: 25px 10px;
    }
    
    .footercopyright p {
        font-size: 14px;
    }
}

/* 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;
    }
    
    .stats {
        break-inside: avoid;
    }
    
    .service-grid {
        break-inside: avoid;
    }
}

/* Accessibility Enhancements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .navbar.scrolled {
        background-color: rgba(255, 255, 255, 0.95) !important;
    }
    
    .content {
        background: rgba(255, 255, 255, 0.98) !important;
    }
    
    .footer-link:hover,
    .footercontact a:hover {
        text-decoration: underline;
    }
}