/*styles*/

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    font-family: "Roboto", sans-serif !important;
    color: #3c3c3c;
}

body.active {
    overflow-y: hidden;
}

p {
    color: inherit;
    font-size: 17px;
}

a:hover {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1500px;
}

.container.wide {
    max-width: 1700px;
}

.container.sml {
    max-width: 1200px;
}

.container-fluid {
    max-width: 100%;
    padding: 0;
}

.aos-animate {
    z-index: 999;
}
.icon {
    background: transparent;
}

a {
    color: inherit;
}

/*h1,h2,h3,h4,h5 {
    font-size: inherit !important;
    font-weight: inherit !important;
    margin: none;
}*/

/* Header */

.header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
}

.header.stuck .top-header {
    /*margin-bottom: 101px;*/
}

.header.stuck .bottom-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #0e1a23;
}

.header.stuck .bottom-header .logo img {
    max-height: 80px;
}

.header .top-header {
    position: relative;
    padding: 5px 20px;
    background: #080e12;
    color: white;
}

.header .top-header ul {
    display: inline-flex;
    justify-content: left;
    align-items: center;
    height: 100%;
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    font-size: 14px;
}

.header .top-header ul li a {
    display: block;
    padding: 5px;
    margin: 0 5px;
}

.header .top-header ul li a i {
    color: #a6976a;
}

.header .top-header span {
    font-size: 14px;
}

.header .bottom-header {
    position: absolute;
    /*background: #0e1a23;*/
    background: #0e1a23a1;
    color: white;
    padding: 20px 40px;
    width: 100%;
    transition: all .5s ease;
}

.header .bottom-header .logo {

}

.header .bottom-header .logo img {
    max-height: 100px;
    transition: all .5s ease;
}

.header .bottom-header .menu-hold {
    position: relative;
    height: 100%;
}

.header .bottom-header .menu-hold ul {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: right;
    height: 100%;
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
}

.header .bottom-header .menu-hold ul li {
    position: relative;
    padding: 5px 20px;
}

.header .bottom-header .menu-hold ul li a {
    font-weight: 500;
    margin: 5px;
    text-transform: uppercase;
    font-size: 16px;
    transition: all .5s ease;
}

.header .bottom-header .btn {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.header .bottom-header .menu-hold ul li:hover > ul.dropdown {
    top: 40px;
    opacity: 1;
    visibility: visible;
}

.header .bottom-header .menu-hold ul li ul.dropdown {
    position: absolute;
    width: 250px;
    top: 80px;
    left: 0;
    background: #2e3745;
    display: block;
    height: auto;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: all .5s ease;
}

.header .bottom-header .menu-hold ul li ul.dropdown li {
    display: block;
    margin: 5px 0;
}

.header .bottom-header .menu-hold ul li ul.dropdown li a {
/*    font-size: 15px;*/
    font-weight: 500;
}

.header .bottom-header .menu-hold ul li ul.dropdown li ul.dropdown {
    background: #001e35;
    top: 0;
    right: -70%;
    left: unset;
}

.header .bottom-header .menu-hold ul li ul.dropdown li:hover > ul.dropdown {
    left: unset;
    top: 0;
    right: -100%;
}

.heading {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.sub {
    display: inline-block;
    background: #0e1a23;
    color: #a6976a;
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.para-banner {
    position: relative;
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
}

/* Navigation */
        /*.header {
            position: relative;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            z-index: 1000;
            padding: 1.2rem 0;
            border-bottom: 1px solid rgba(255, 133, 27, 0.2);
            transition: all 0.3s ease;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        }*/

        .nav-container {
            max-width: 1700px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
            position: relative;
            height: 100%;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 900;
            color:#a6976a;
            text-transform: uppercase;
            letter-spacing: 2px;
            z-index: 1001;
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .logo img {
            max-height: 80px;
        }

        /*.logo::before {
            content: '';
            width: 40px;
            height: 40px;
            background: 
                radial-gradient(circle,#a6976a 0%, #e6751a  100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .logo::after {
            content: '🏢';
            position: absolute;
            left: 12px;
            font-size: 1rem;
            z-index: 1;
        }*/

        .nav-links {
            display: flex;
            gap: 3rem;
            list-style: none;
            justify-content: right;
        }

        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 0.5rem;
            z-index: 1001;
        }

        .mobile-menu-toggle span {
            width: 25px;
            height: 3px;
            background: #333333;
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 2px;
        }

        .mobile-menu-toggle.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle.active span:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            z-index: 1000;
            padding-top: 100px;
        }

        .mobile-menu.active {
            display: block;
        }

        .mobile-menu ul {
            list-style: none;
            text-align: center;
            padding: 2rem;
        }

        .mobile-menu ul li {
            margin: 2rem 0;
        }

        .mobile-menu ul li a {
            color: #333333;
            text-decoration: none;
            font-size: 1.5rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .nav-links a {
            color: #333333;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            position: relative;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .nav-links a:hover {
            color:#a6976a;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background:#a6976a;
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            background: 
                linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.9) 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><linearGradient id="skyGrad" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23ffffff;stop-opacity:1"/><stop offset="100%" style="stop-color:%23f8f9fa;stop-opacity:1"/></linearGradient><linearGradient id="buildingGrad1" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23dee2e6;stop-opacity:1"/><stop offset="100%" style="stop-color:%23adb5bd;stop-opacity:1"/></linearGradient><linearGradient id="buildingGrad2" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23ced4da;stop-opacity:1"/><stop offset="100%" style="stop-color:%23868e96;stop-opacity:1"/></linearGradient><linearGradient id="crane" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23ff851b;stop-opacity:1"/><stop offset="100%" style="stop-color:%23fd7e14;stop-opacity:1"/></linearGradient></defs><rect width="1200" height="800" fill="url(%23skyGrad)"/><rect x="0" y="500" width="1200" height="300" fill="%23e9ecef"/><rect x="100" y="250" width="120" height="400" fill="url(%23buildingGrad1)"/><rect x="250" y="200" width="150" height="450" fill="url(%23buildingGrad2)"/><rect x="420" y="180" width="130" height="470" fill="url(%23buildingGrad1)"/><rect x="580" y="220" width="140" height="430" fill="url(%23buildingGrad2)"/><rect x="750" y="160" width="160" height="490" fill="url(%23buildingGrad1)"/><rect x="940" y="280" width="120" height="370" fill="url(%23buildingGrad2)"/><rect x="110" y="260" width="15" height="20" fill="%23495057" opacity="0.8"/><rect x="135" y="270" width="15" height="20" fill="%23495057" opacity="0.6"/><rect x="160" y="280" width="15" height="20" fill="%23495057" opacity="0.9"/><rect x="185" y="290" width="15" height="20" fill="%23495057" opacity="0.7"/><rect x="260" y="220" width="15" height="20" fill="%23495057" opacity="0.8"/><rect x="285" y="230" width="15" height="20" fill="%23495057" opacity="0.6"/><rect x="310" y="240" width="15" height="20" fill="%23495057" opacity="0.9"/><rect x="335" y="250" width="15" height="20" fill="%23495057" opacity="0.7"/><rect x="430" y="200" width="15" height="20" fill="%23495057" opacity="0.8"/><rect x="455" y="210" width="15" height="20" fill="%23495057" opacity="0.6"/><rect x="480" y="220" width="15" height="20" fill="%23495057" opacity="0.9"/><rect x="505" y="230" width="15" height="20" fill="%23495057" opacity="0.7"/><rect x="960" y="100" width="8" height="200" fill="url(%23crane)"/><rect x="940" y="95" width="50" height="10" fill="url(%23crane)"/><circle cx="965" cy="90" r="8" fill="url(%23crane)"/><rect x="980" y="120" width="80" height="4" fill="url(%23crane)"/><rect x="1050" y="115" width="6" height="15" fill="url(%23crane)"/><polygon points="200,500 300,450 400,500" fill="%23ff851b" opacity="0.3"/><polygon points="600,500 700,450 800,500" fill="%23ff851b" opacity="0.2"/><circle cx="150" cy="100" r="40" fill="%23ff851b" opacity="0.1"/><circle cx="1050" cy="150" r="60" fill="%23ff851b" opacity="0.08"/><rect x="50" y="480" width="200" height="20" fill="%23495057" opacity="0.3"/><rect x="300" y="490" width="150" height="20" fill="%23495057" opacity="0.3"/><rect x="500" y="485" width="180" height="20" fill="%23495057" opacity="0.3"/></svg>');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 30% 40%, rgba(255, 133, 27, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 60%, rgba(255, 133, 27, 0.05) 0%, transparent 50%);
            animation: heroGlow 10s ease-in-out infinite alternate;
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            width: 100%;
            position: relative;
            z-index: 2;
        }

        .hero-text {
            animation: fadeInLeft 1s ease-out;
        }

        .hero-visual {
            position: relative;
            height: 600px;
            background-size: cover;
            background-position: center;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(255, 133, 27, 0.15);
            animation: fadeInRight 1s ease-out;
            overflow: hidden;
        }

        /*.hero-visual::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(255, 133, 27, 0.05) 0%, transparent 50%);
            animation: float 6s ease-in-out infinite;
        }*/

        .hero-stats {
            position: absolute;
            bottom: 30px;
            left: 30px;
            right: 30px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .hero-stat {
            text-align: center;
        }

        .hero-stat-number {
            font-size: 2rem;
            font-weight: 900;
            color:#a6976a;
            display: block;
            line-height: 1;
        }

        .hero-stat-label {
            font-size: 0.8rem;
            color: #666666;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 0.3rem;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(255, 133, 27, 0.2);
            color:#a6976a;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 2rem;
            border: 2px solid rgba(255, 133, 27, 0.3);
            animation: fadeInUp 1s ease-out;
        }

        .hero h1 {
            font-size: clamp(3.5rem, 8vw, 4rem);
            font-weight: 900;
            margin-bottom: 2rem;
            text-transform: uppercase;
            color: #333333;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            animation: fadeInUp 1s ease-out 0.3s both;
            line-height: 1.1;
        }

        .hero h1 span {
            color:#a6976a;
            display: block;
        }

        .hero p {
            font-size: 1.4rem;
            margin-bottom: 3rem;
            color: #666666;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            animation: fadeInUp 1s ease-out 0.6s both;
        }

        .hero-cta {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease-out 0.9s both;
            margin-top: 3rem;
            justify-content: center;
        }

        .newhero {
            position: relative;
            background-position: center;
            background-size: cover;
            padding: 120px 0;
            padding-top: 220px;
            min-height: 85vh;
            display: flex;
            align-items: center;
            text-align: center;
        }

        .newhero.small {
            min-height: 30vh;
            padding: 80px 0;
            padding-top: 200px;
        }

        .newhero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #000;
            opacity: 0.6;
        }

        .newhero .main {
            font-size: 65px;
            line-height: 65px;
            color: white;
            font-weight: 700;
            text-transform: uppercase;
        }

        .newhero h1 {
            font-size: inherit;
            font-weight: inherit;
            line-height: inherit;
        }

        .newhero p {
            color: white;
            font-size: 22px;
            line-height: 25px;
            margin: 20px 0;
            letter-spacing: 1.5px;
        }

        /* Enhanced Responsive Design */
        @media (max-width: 1200px) {
            .hero-container {
                gap: 3rem;
            }
            
            .hero-visual {
                height: 500px;
            }
            
            .hero-stats {
                grid-template-columns: repeat(3, 1fr);
                gap: 1rem;
                padding: 1.5rem;
            }
        }

        @media (max-width: 1024px) {
            .nav-links {
                display: none;
            }
            
            .mobile-menu-toggle {
                display: flex;
            }
            
            .hero-container {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }
            
            .hero-visual {
                height: 400px;
                order: -1;
            }
            
            .about-content,
            .contact-content {
                grid-template-columns: 1fr;
                gap: 4rem;
            }
            
            .form-row {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            
            .hero-stats {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .services-grid {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 1rem;
            }
            
            .hero {
                min-height: 100vh;
                height: auto;
                padding: 8rem 0 4rem;
            }
            
            .hero-container {
                padding: 0 1rem;
            }
            
            .hero-visual {
                height: 300px;
            }
            
            .hero h1 {
                font-size: clamp(2.5rem, 8vw, 4rem);
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .hero-cta {
                flex-direction: column;
                align-items: center;
                gap: 1rem;
            }
            
            .btn {
                width: 100%;
                max-width: 300px;
                padding: 1rem 2rem;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .gallery-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 1.5rem;
            }
            
            .testimonials-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }
            
            .hero-stats {
                grid-template-columns: 1fr;
                gap: 1rem;
                padding: 1rem;
            }
            
            .section-title {
                font-size: clamp(2rem, 6vw, 3rem);
            }
            
            .about-text h2,
            .contact-info h3 {
                font-size: clamp(2rem, 5vw, 2.5rem);
            }
            
            .service-card,
            .testimonial,
            .contact-form {
                padding: 2rem 1.5rem;
            }
            
            .contact-item {
                padding: 1.5rem;
                gap: 1rem;
                flex-direction: column;
                text-align: center;
            }
            
            .contact-icon {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
                align-self: center;
            }
            
            .gallery-item {
                height: 300px;
            }
            
            .section-header {
                margin-bottom: 4rem;
            }
            
            .about-image {
                height: 300px;
            }
        }

        @media (max-width: 480px) {
            .nav-container {
                padding: 0 1rem;
            }
            
            .logo {
                font-size: 1.5rem;
            }
            
            .hero {
                padding: 6rem 0 3rem;
            }
            
            .hero-visual {
                height: 250px;
            }
            
            .hero h1 {
                font-size: 2.5rem;
                line-height: 1.2;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .section-header {
                margin-bottom: 3rem;
            }
            
            .services,
            .about,
            .gallery,
            .testimonials,
            .contact {
                padding: 4rem 0;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
            }
            
            .hero-stats {
                bottom: 20px;
                left: 20px;
                right: 20px;
                padding: 1rem;
            }
            
            .hero-stat-number {
                font-size: 1.5rem;
            }
            
            .hero-stat-number {
                font-size: 1.5rem;
            }
            
            .hero-stat-label {
                font-size: 0.7rem;
            }
            
            .social-links {
                gap: 1rem;
                margin-bottom: 2rem;
            }
            
            .social-link {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }
            
            .footer-logo {
                font-size: 2rem;
            }
            
            .footer-text {
                font-size: 1rem;
            }
            
            .mobile-menu ul li a {
                font-size: 1.2rem;
            }
        }

        @media (max-width: 375px) {
            .hero-badge {
                font-size: 0.8rem;
                padding: 0.6rem 1.5rem;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 0.95rem;
            }
            
            .service-card {
                padding: 1.5rem 1rem;
            }
            
            .service-icon {
                width: 60px;
                height: 60px;
                font-size: 2rem;
            }
            
            .testimonial {
                padding: 1.5rem 1rem;
            }
            
            .contact-form {
                padding: 2rem 1rem;
            }
            
            .gallery-grid {
                grid-template-columns: 1fr;
            }
            
            .gallery-item {
                height: 250px;
            }
        }

        /* Additional Animation Classes */
        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .btn {
            padding: 1.2rem 3rem;
            border: none;
            border-radius: 0;
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
        }

        .btn-primary {
            background:#a6976a;
            color: #ffffff;
        }

        .btn-primary:hover {
            background: #080e12;
            transform: translateY(-3px);
        }

        .btn-secondary {
            background: transparent;
            color: #333333;
            border: 2px solid #333333;
        }

        .btn-secondary:hover {
            background: #333333;
            color: #ffffff;
            transform: translateY(-3px);
        }

        .btn-white {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-white:hover {
            background: white;
            color: #080e12;
            transform: translateY(-3px);
        }

        /* Services Section */
        .services {
            padding: 60px 0;
            background: #080e12;
            color: white;
            position: relative;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-header {
            text-align: center;
            margin-bottom: 6rem;
            position: relative;
            z-index: 2;
        }

        .section-badge {
            display: inline-block;
            background: #0e1a23;
            color:#a6976a;
            padding: 0.6rem 1.8rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1.5rem;
            /*border: 1px solid rgba(255, 133, 27, 0.3);*/
        }

        /* Dark section badge styling */
        .services .section-badge,
        .gallery .section-badge,
        .contact .section-badge {
            /*background: rgba(255, 133, 27, 0.2);*/
            /*border: 1px solid rgba(255, 133, 27, 0.4);*/
        }

        .section-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 900;
            margin-bottom: 2rem;
            color: #333333;
            line-height: 1.2;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: #666666;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Dark section styling */
        .services .section-title {
            color: #ffffff;
        }

        .services .section-subtitle {
            color: #cccccc;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 3rem;
        }

        .service-card {
            background: #ffffff;
            border: 1px solid rgba(0, 0, 0, 0.1);
            padding: 3rem 2.5rem;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 133, 27, 0.05), transparent);
            transition: all 0.6s ease;
        }

        .service-card:hover::before {
            left: 100%;
        }

        .service-card:hover {
            transform: translateY(-10px);
            border-color: rgba(255, 133, 27, 0.3);
            box-shadow: 0 20px 60px rgba(255, 133, 27, 0.15);
        }

        /* Dark section service cards */
        .services .service-card {
            /*background: rgba(255, 255, 255, 0.05);*/
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            border-radius: 20px;
        }

        .services .service-card:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgb(166 151 106);
            box-shadow: 0 20px 60px rgb(165 150 106);
        }

        .services .service-card h3 {
            color: #ffffff;
        }

        .services .service-card p {
            color: #cccccc;
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: #a6976a;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            margin-bottom: 2rem;
            position: relative;
            z-index: 2;
        }

        .service-card h3 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: #333333;
        }

        .service-card p {
            color: #666666;
            line-height: 1.7;
            font-size: 1rem;
        }

        /* About Section */
        .about {
            padding: 60px 0;
            background: #ffffff;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
        }

        .about-text h2 {
            font-size: clamp(2.5rem, 4vw, 3.5rem);
            font-weight: 900;
            margin-bottom: 2rem;
            color: #333333;
            line-height: 1.2;
        }

        .about-text h2 span {
            color:#a6976a;
        }

        .about-text p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #666666;
            margin-bottom: 2rem;
        }

        .about-features {
            list-style: none;
            margin-bottom: 3rem;
        }

        .about-features li {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
            color: #333333;
            font-weight: 600;
        }

        .about-features li::before {
            content: '✓';
            color:#a6976a;
            font-weight: bold;
            font-size: 1.2rem;
            margin-right: 1rem;
            width: 20px;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-top: 4rem;
        }

        .stat-card {
            background: #ffffff;
            border: 1px solid rgba(255, 133, 27, 0.2);
            padding: 2.5rem 2rem;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            border-radius: 20px;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 900;
            color:#a6976a;
            display: block;
            line-height: 1;
        }

        .stat-label {
            color: #333333;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
            margin-top: 0.5rem;
        }

        .about-image {
            height: 600px;
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border-radius: 20px;
        }

        .about-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(255, 133, 27, 0.05) 0%, transparent 100%);
        }

        /* Gallery Section */
        .gallery {
            padding: 60px 0;
            background: #080e12;
        }

        /* Dark section styling for gallery */
        .gallery .section-title {
            color: #ffffff;
        }

        .gallery .section-subtitle {
            color: #cccccc;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        .gallery-item {
            height: 400px;
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.4s ease;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            border-radius: 20px;
        }

        .gallery-item:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 40px rgba(255, 133, 27, 0.2);
        }

        /* Dark section gallery items */
        .gallery .gallery-item {
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        }

        .gallery .gallery-item:hover {
            box-shadow: 0 10px 40px rgb(165 150 105);
        }

        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
            color: white;
            padding: 3rem 2rem 2rem;
            transform: translateY(100%);
            transition: all 0.4s ease;
        }

        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
        }

        .gallery-category {
            display: inline-block;
            background:#a6976a;
            color: #ffffff;
            padding: 0.4rem 1rem;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1rem;
        }

        .gallery-overlay h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: #ffffff;
        }

        .gallery-overlay p {
            color: #e0e0e0;
            font-size: 0.9rem;
        }

        /* Testimonials */
        .testimonials {
            padding: 8rem 0;
            background: #f8f9fa;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 3rem;
            margin-top: 4rem;
        }

        .testimonial {
            background: #ffffff;
            border: 1px solid rgba(0, 0, 0, 0.1);
            padding: 3rem 2.5rem;
            position: relative;
            transition: all 0.4s ease;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }

        .testimonial:hover {
            transform: translateY(-5px);
            border-color: rgb(165 150 105 0.3);
            box-shadow: 0 10px 40px rgb(165 150 105);
        }

        .testimonial::before {
            content: '"';
            position: absolute;
            top: -10px;
            left: 20px;
            font-size: 6rem;
            color:#a6976a;
            line-height: 1;
            opacity: 0.3;
        }

        .testimonial-text {
            font-size: 1.1rem;
            line-height: 1.7;
            color: #333333;
            margin-bottom: 2rem;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            background: #a6976a;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: #ffffff;
            font-size: 1.2rem;
        }

        .author-info h4 {
            color: #333333;
            font-weight: 700;
            margin-bottom: 0.2rem;
        }

        .author-info p {
            color:#a6976a;
            font-size: 0.9rem;
            font-weight: 600;
        }

        /* Contact Section */
        .contact {
            padding: 8rem 0;
            background: #080e12;
        }

        /* Dark section styling for contact */
        .contact .section-title {
            color: #ffffff;
        }

        .contact .section-subtitle {
            color: #cccccc;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
        }

        .contact-info h3 {
            font-size: 2.5rem;
            font-weight: 900;
            margin-bottom: 2rem;
            color: #ffffff;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 2rem;
            margin-bottom: 3rem;
            padding: 2rem;
            /*background: rgba(255, 133, 27, 0.05);*/
            border: 1px solid rgb(166 151 106);
            border-radius: 20px;
        }

        .contact-icon {
            width: 60px;
            height: 60px;
            background:#a6976a;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: #ffffff;
            flex-shrink: 0;
        }

        .contact-details h4 {
            color: #ffffff;
            font-weight: 700;
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
        }

        .contact-details p {
            color: #cccccc;
            line-height: 1.6;
        }

        .contact-form {
            /*background: rgba(255, 255, 255, 0.05);*/
            border: 1px solid rgb(166 151 106);
            padding: 3rem;
            border-radius: 20px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .form-group p {
            margin-bottom: 0;
        }

        .form-group {
            margin-bottom: 0;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.8rem;
            color: #333333;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
        }

        .form-group select {
            height: auto !important;
        }

        .form-group select option {
            background: #f8f9fa;
            border: 1px solid rgba(0, 0, 0, 0.1);
            color: #333333;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 1.2rem;
            background: #f8f9fa;
            border: 1px solid rgba(0, 0, 0, 0.1);
            color: #333333;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color:#a6976a;
            background: #ffffff;
            box-shadow: 0 0 20px rgba(255, 133, 27, 0.1);
        }

        /* Dark section form styling */
        .contact .form-group label {
            color: #ffffff;
        }

        .contact .form-group input,
        .contact .form-group textarea,
        .contact .form-group select {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #ffffff;
        }

        .contact .form-group input::placeholder,
        .contact .form-group textarea::placeholder,
        .contact .form-group select::placeholder {
            color: #aaaaaa;
        }

        .contact .form-group input:focus,
        .contact .form-group textarea:focus,
        .contact .form-group select:focus {
            background: rgba(255, 255, 255, 0.15);
            border-color:#a6976a;
            box-shadow: 0 0 20px rgba(255, 133, 27, 0.2);
        }

        /* Footer */
        .footer {
            background: #0e1a23;
            padding: 4rem 0 2rem;
            border-top: 1px solid rgba(255, 133, 27, 0.2);
        }

        .footer-content {
            text-align: center;
        }

        .footer-logo {
            font-size: 2.5rem;
            font-weight: 900;
            color:#a6976a;
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .footer-subtitle {
            color: #aaaaaa;
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 2rem;
        }

        .footer-text {
            color: #cccccc;
            margin-bottom: 3rem;
            font-size: 1.1rem;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .social-link {
            width: 60px;
            height: 60px;
            background: rgba(255, 133, 27, 0.1);
            border: 1px solid rgba(255, 133, 27, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            color:#a6976a;
            text-decoration: none;
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background:#a6976a;
            color: #ffffff;
            transform: translateY(-3px);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes heroGlow {
            0% { opacity: 0.5; }
            100% { opacity: 1; }
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .nav-links {
                display: none;
            }
            
            .about-content,
            .contact-content {
                grid-template-columns: 1fr;
                gap: 4rem;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .services-grid,
            .gallery-grid,
            .testimonials-grid {
                grid-template-columns: 1fr;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
            }
            
            .hero-cta {
                flex-direction: column;
                align-items: center;
            }
            
            .btn {
                width: 100%;
                max-width: 300px;
            }
        }

        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Custom scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: #f8f9fa;
        }

        ::-webkit-scrollbar-thumb {
            background:#a6976a;
            border-radius: 5px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: #e6751a;
        }

@media only screen and (min-width : 1200px) {
    .menu-toggle {
        display: none;
    }

    .dropdown-toggle {
        display: none;
    }
}

@media only screen and (max-width : 1200px) {
    body {
        overflow-x: hidden;
    }

    body.active {
        overflow-y: hidden;
    }

    ul {
        padding-left: 0;
    }

    .top-header .logo {
      display: none;
    }

    .top-header {
        display: none;
    }

    .header .bottom-header {
        position: fixed;
        z-index: 99999;
        width: 100%;
        background: #222222;
        top: 0;
    }

    .header .logo {
        text-align: left !important;
    }

    .header .logo img {
        position: relative;
        z-index: 999;
        max-height: 70px;
        max-width: 100%;
        height: auto;
    }

    .header ul li::before {
        display: none;
    }

    .menu-toggle {
        position: absolute;
        width: 40px;
        height: 30px;
        cursor: pointer;
        display: inline-block;
        vertical-align: top;
        margin: 0;
        appearance: none;
        border: 0;
        background: none;
        overflow: visible;
        z-index: 999999;
        text-decoration: none;
        top: 50%;
        transform: translateY(-50%);
        right: 0;
    }

    .menu-toggle:focus {
        outline: none;
    }

    .menu-toggle span {
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        height: 2px;
        background:#a6976a;
    }

    .menu-toggle span:nth-of-type(1) {
      transition: all 0.3s 0.3s, transform 0.3s 0s;
    }

    .menu-toggle span:nth-of-type(2) {
      top: 50%;
      margin-top: -1px;
      left: 0;
      transition: all 0.3s 0.3s;
    }

    .menu-toggle span:nth-of-type(3) {
      bottom: 0;
      top: auto;
      left: 0;
      transition: all 0.3s 0.3s, transform 0.3s 0s;      
    }

    .menu-toggle.active {
        transform: translateY(-50%), rotate(135deg);
        transition: all 0.5s 0.3s;
    }

    .menu-toggle.active span:nth-of-type(1) {
      top: 50%;
      margin-top: -1px;
      transform: rotate(90deg);
      transition: all 0.3s, transform 0.3s 0.3s;
    }

    .menu-toggle.active span:nth-of-type(2) {
      opacity: 0;
      transition: all 0.3s, opacity 0.3s 0s;      
    }

    .menu-toggle.active span:nth-of-type(3) {
      bottom: 50%;
      margin-bottom: -1px;
      transform: rotate(0deg);
      transition: all 0.3s, transform 0.3s 0.3s;      
    }

    .header .call-block {
        display: none;
    }
    .header .bottom-header {
    }

    .header .bottom-header ul.menu {
        height: 100vh;
        width: 100vw;
        position: fixed;
        z-index: 99999;
        display: none;
        left: 0;
        top: 0;
        background: #191b1d;
        text-align: center;
        padding-top: 100px;
        overflow-y: scroll;
        margin-left: 0;
        padding-left: 0;
    }

    .header .bottom-header ul.menu li {
        display: block !important;
        position: relative;
        float: none;
        height: unset;
        padding: 0;
    }

    .header .bottom-header ul.menu li a {
        padding: 22px;
        text-decoration: none;
        font-size: 22px;
        display: block;
        transition: 0.3s;
        border-left: none;
        width: 75%;
        margin: 0 auto;
        color: white;
        background: transparent;
        border: none;
    }

    .header .bottom-header .menu-hold ul li ul.dropdown {
        position: relative !important;
        left: 50%;
        top: 0;
        margin-left: 0;
        transition: all 0.4s ease;
        display: block !important;
        opacity: 1;
/*        background: white;*/
        text-align: center;
        height: auto;
        visibility: visible;
        margin: 0;
        padding: 0;
        box-shadow: none;
        z-index: 9;
        transform: translate(-50%);
    }

    ul.double {
      columns: unset;
      -webkit-columns: unset;
      -moz-columns: unset;
    }

    .footer {
        text-align: center;
    }

    .footer ul.pages li {
        display: block;
        width: 100%;
    }

    .footer ul.pages li::before {
        display: none;
    }

    .footer .social {
        margin-bottom: 20px;
    }

    .footer .footer-heading {
        margin-top: 20px;
    }

    body {
        text-align: center;
    }

    .service-icon {
        position: relative;
        left: 50%;
        transform: translateX(-50%);
    }

    .header .bottom-header ul.menu li a {
        padding: 10px;
    }
    
}

@media (max-width: 768px) {
    .newhero .main {
        font-size: 35px;
        line-height: 35px;
    }

    .header .bottom-header {
        padding: 5px;
    }

    .newhero {
        padding: 120px 0 !important;
        padding-top: 160px !important;
    }
}