
       
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--secondary-color);
            color: #fff;
            border: none;
            border-radius: 4px;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
            text-transform: uppercase;
            font-size: 14px;
        }
        
        .btn:hover {
            background-color: #e09a05;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title .subtitle {
            display: block;
            color: var(--primary-color);
            font-size: 18px;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .section-title h2 {
            font-size: 36px;
            margin-bottom: 15px;
        }
        
        .section-title h2 span {
            color: var(--primary-color);
        }
        
        .section-title .title-desc {
            max-width: 700px;
            margin: 0 auto;
            color: var(--light-text);
        }
        
        
        /* Hero Banner */
        .hero-banner {
            position: relative;
            height: 400px;
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/mini-hero-bg.webp') no-repeat center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
        }
        
        .hero-content h2 {
            font-size: 4.7rem;
            margin-bottom: 20px;
            text-transform: uppercase;
            line-height: 1.2;
            color: #fff;
        }
        
        .breadcrumb {
            display: flex;
            justify-content: center;
            gap: 10px;
        }
        
        .breadcrumb a {
            color: var(--secondary-color);
        }
        
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        
        /* About Section */
        .about-section {
            padding: 80px 0;
        }
        
        .about-container {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .about-img {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .about-content {
            flex: 1;
        }
        
        .about-content h2 {
            font-size: 36px;
            margin-bottom: 20px;
        }
        
        .about-content h2 span {
            color: var(--primary-color);
        }
        
        .about-content p {
            margin-bottom: 15px;
        }
        
        /* Services Section */
        .services-section {
            padding: 80px 0;
            background-color: var(--bg-light);
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background: #fff;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: var(--transition);
            text-align: center;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .service-card i {
            font-size: 40px;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .service-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
        }
        
        /* CTA Banner */
        .cta-banner {
            position: relative;
            height: 400px;
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/foot-hero-bg.webp') no-repeat center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
        }
        
        .cta-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .cta-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            margin-bottom: 30px;
        }
        
        .cta-logo img {
            width: 80px;
        }
        
        .cta-logo-text h2 {
            font-size: 28px;
            color: #fff;
            margin-bottom: 5px;
        }
        
        .cta-logo-text p {
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .cta-content h3 {
            font-size: 36px;
            margin-bottom: 30px;
        }
        
        
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .about-container {
                flex-direction: column;
            }
            
            .about-img {
                width: 100%;
            }
            
            .hero-content h2 {
                font-size: 36px;
            }
        }
        
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            
            .main-nav {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background-color: #fff;
                box-shadow: -5px 0 15px rgba(0,0,0,0.1);
                transition: var(--transition);
                z-index: 1001;
                padding: 30px;
            }
            
            .main-nav.active {
                right: 0;
            }
            
            .main-nav ul {
                flex-direction: column;
                gap: 20px;
            }
            
            .close-menu {
                position: absolute;
                top: 20px;
                right: 20px;
                font-size: 24px;
                cursor: pointer;
            }
            
            .top-bar .container {
                justify-content: center;
            }
            
            .contact-info {
                display: none;
            }
            
            .section-title h2 {
                font-size: 28px;
            }
            
            .hero-content h2 {
                font-size: 28px;
            }
            
            .cta-content h3 {
                font-size: 28px;
            }
        }
        
        @media (max-width: 576px) {
            .hero-banner {
                height: 300px;
            }
            
            .cta-banner {
                height: 360px;
            }
            
            .btn {
                padding: 10px 20px;
            }
            
            .section-title .subtitle {
                font-size: 14px;
            }
            
            .section-title h2 {
                font-size: 24px;
            }
        }
  