    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        input{
              height: 50%;
        }

        :root {
            /* Professional Color System - Red Primary Theme */
            --primary-color: #FF4748;      /* Red - Primary (Energy & Power) */
            --primary-dark: #E63946;       /* Darker Red */
            --primary-light: #FF6B6C;      /* Lighter Red */
            
            --secondary-color: #063D5B;    /* Deep Blue - Secondary */
            --secondary-dark: #042835;     /* Darker Blue */
            --secondary-light: #0B5580;    /* Lighter Blue */
            
            --accent-color: #8AC43F;       /* Green - Accent */
            --accent-dark: #6BA82F;        /* Darker Green */
            --accent-light: #A3D965;       /* Lighter Green */
            
            /* Neutral Colors */
            --light-bg: #F8F9FA;
            --white: #FFFFFF;
            --text-dark: #2C3E50;
            --text-light: #7F8C8D;
            --border-color: #E0E0E0;
            
            /* Gradients */
            --gradient-1: linear-gradient(135deg, #FF4748 0%, #E63946 100%);
            --gradient-2: linear-gradient(135deg, #063D5B 0%, #042835 100%);
            --gradient-3: linear-gradient(135deg, #8AC43F 0%, #6BA82F 100%);
            --gradient-hero: linear-gradient(135deg, #063D5B 0%, #0B5580 50%, #063D5B 100%);
            
            /* Shadows */
            --shadow-sm: 0 2px 8px rgba(6, 61, 91, 0.08);
            --shadow-md: 0 4px 16px rgba(6, 61, 91, 0.12);
            --shadow-lg: 0 8px 32px rgba(6, 61, 91, 0.16);
            --shadow-primary: 0 4px 20px rgba(255, 71, 72, 0.30);
            --shadow-accent: 0 4px 20px rgba(138, 196, 63, 0.25);
            
            /* Transitions */
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        body {
              margin: 0;
            font-family: 'Tajawal', sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            overflow-x: hidden;
        }

        /* ==================== REMOVE UNDERLINE FROM ALL LINKS ==================== */
        a {
            text-decoration: none !important;
        }

        a:hover {
            text-decoration: none !important;
        }

        /* ==================== NAVBAR ==================== */
        .navbar {
            /*background: rgba(26, 26, 46, 0.95);*/
            background: var(--white);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: var(--transition);
            box-shadow: var(--shadow-sm);
        }

        .navbar.scrolled {
            background: var(--white);
            box-shadow: var(--shadow-md);
            padding: 0.5rem 0;
        }

        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--white) !important;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: var(--transition);
        }

        .navbar-brand i {
            color: var(--primary-color);
            font-size: 2rem;
        }

        .navbar-brand:hover {
            transform: scale(1.05);
        }

        .nav-link {
            color: var(--secondary-color) !important;
            font-weight: 500;
            padding: 0.5rem 1rem !important;
            margin: 0 0.25rem;
            transition: var(--transition);
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 50%;
            width: 0;
            height: 2px;
            background: var(--primary-color);
            transition: var(--transition);
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 80%;
            right: 10%;
        }

        .nav-link:hover {
            color: var(--primary-color) !important;
        }

        .btn-gold {
            background: var(--gradient-1);
            color: var(--white) !important;
            font-weight: 700;
            padding: 0.6rem 1.5rem;
            border-radius: 50px;
            border: none;
            transition: var(--transition);
            box-shadow: var(--shadow-primary);
        }

        .btn-gold:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(255, 71, 72, 0.40);
            background: linear-gradient(135deg, #E63946 0%, #FF4748 100%);
        }

        .navbar-toggler {
            display: none;
            border-color: var(--primary-color);
        }

        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 71, 72, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        /* ==================== HERO SECTION ==================== */
        .hero {
            min-height: 100vh;
            /*background: var(--gradient-hero);*/
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            padding-top: 80px;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,71,72,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
            background-size: cover;
            opacity: 0.5;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: var(--secondary-color);
            max-width: 900px;
            padding: 2rem;
        }

        .hero h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 900;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 0 4px 20px rgba(0,0,0,0.3);
        }

        .hero h1 .highlight {
            color: var(--primary-color);
            position: relative;
            display: inline-block;
        }

        .hero p {
            font-size: clamp(1.1rem, 2vw, 1.4rem);
            margin-bottom: 2.5rem;
            opacity: 0.95;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: var(--gradient-1);
            color: var(--white);
            font-weight: 700;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            border: none;
            font-size: 1.1rem;
            transition: var(--transition);
            box-shadow: var(--shadow-primary);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(255, 71, 72, 0.45);
            background: linear-gradient(135deg, #E63946 0%, #FF4748 100%);
        }

        .btn-secondary {
            background: var(--primary-color);
            color: var(--white);
            font-weight: 700;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            border: 2px solid var(--white);
            font-size: 1.1rem;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-secondary:hover {
            background: var(--white);
            color: var(--secondary-color);
            border: 2px solid var(--primary-color);
            transform: translateY(-3px);
        }

        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            right: 50%;
            transform: translateX(50%);
            animation: bounce 2s infinite;
        }

        .scroll-indicator i {
            color: var(--primary-color);
            font-size: 2rem;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0) translateX(50%);
            }
            40% {
                transform: translateY(-20px) translateX(50%);
            }
            60% {
                transform: translateY(-10px) translateX(50%);
            }
        }

        /* ==================== STATS SECTION ==================== */
        .stats-section {
            /*background: linear-gradient(135deg, #1A1A2E 0%, #0F3460 100%);*/
            background: var(--white);
            padding: 5rem 0;
            position: relative;
            overflow: hidden;
        }

        .stats-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FF4748' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.4;
        }

        .stats-section .container {
            position: relative;
            z-index: 2;
        }

        .stats-header {
            text-align: center;
            margin-bottom: 3rem;
            color: var(--secondary-color);
        }

        .stats-header h2 {
            font-size: 2.5rem;
            font-weight: 900;
            margin-bottom: 1rem;
        }

        .stats-header p {
            font-size: 1.2rem;
            opacity: 0.9;
        }

        .stat-card {
            text-align: center;
            padding: 2.5rem 2rem;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            border: 2px solid rgba(255, 71, 72, 0.2);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-1);
            opacity: 0;
            transition: var(--transition);
        }

        .stat-card:hover::before {
            opacity: 0.2;
        }

        .stat-card:hover {
            transform: translateY(-10px) scale(1.05);
            border-color: var(--primary-color);
            box-shadow: 0 15px 40px rgba(255, 71, 72, 0.35);
        }

        .stat-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2.5rem;
            color: var(--white);
            position: relative;
            z-index: 2;
            box-shadow: var(--shadow-primary);
        }

        .stat-card:hover .stat-icon {
            transform: rotate(360deg);
            transition: transform 0.6s ease;
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 900;
            color: var(--secondary-color);
            display: block;
            margin-bottom: 0.5rem;
            position: relative;
            z-index: 2;
            text-shadow: 0 5px 15px rgba(255, 71, 72, 0.35);
        }

        .stat-label {
            font-size: 1.2rem;
            color: var(--text-light);
            font-weight: 600;
            opacity: 0.9;
            position: relative;
            z-index: 2;
        }

        .stat-sublabel {
            font-size: 0.9rem;
            color: var(--secondary-color);
            opacity: 0.7;
            margin-top: 0.5rem;
            position: relative;
            z-index: 2;
        }

        /* ==================== SECTION STYLES ==================== */
        .section {
            padding: 5rem 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 900;
            color: var(--secondary-color);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            right: 50%;
            transform: translateX(50%);
            width: 80px;
            height: 4px;
            background: var(--gradient-1);
            border-radius: 2px;
        }

        .section-title p {
            font-size: 1.2rem;
            color: var(--text-light);
            max-width: 600px;
            margin: 1.5rem auto 0;
        }

        /* ==================== SERVICE CARDS ==================== */
        .service-card {
            background: var(--white);
            border-radius: 20px;
            padding: 1.5rem;
            text-align: center;
            transition: var(--transition);
            box-shadow: var(--shadow-sm);
            /*height: 100%;*/
            border: 2px solid transparent;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary-color);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2.5rem;
            color: var(--white);
            transition: var(--transition);
        }

        .service-card:hover .service-icon {
            transform: rotateY(360deg);
        }

        .service-card h4 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 1rem;
        }

        .service-card p {
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .service-card .btn-link {
            color: var(--primary-color);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: var(--transition);
        }

        .service-card .btn-link:hover {
            gap: 1rem;
        }

        /* ==================== PRODUCT CARDS ==================== */
        .product-card {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            transition: var(--transition);
            box-shadow: var(--shadow-sm);
            height: 100%;
            position: relative;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .product-image {
            position: relative;
            overflow: hidden;
            height: 250px;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .product-card:hover .product-image img {
            transform: scale(1.1);
        }

        .product-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--gradient-1);
            color: var(--secondary-color);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.9rem;
        }

        .product-content {
            padding: 1.5rem;
        }

        .product-content h5 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 0.8rem;
        }

        .product-content p {
            color: var(--text-light);
            margin-bottom: 1rem;
            font-size: 0.95rem;
        }

        .product-features {
            list-style: none;
            margin-bottom: 1.5rem;
        }

        .product-features li {
            color: var(--text-light);
            padding: 0.3rem 0;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
        }

        .product-features li i {
            color: var(--primary-color);
        }

        .product-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .product-price {
            font-size: 1.5rem;
            font-weight: 900;
            color: var(--primary-color);
        }

        /* ==================== OFFER CARDS ==================== */
        .offer-card {
            background: var(--gradient-1);
            border-radius: 20px;
            padding: 3rem;
            color: var(--secondary-color);
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: var(--transition);
            height: 100%;
        }

        .offer-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: rgba(255, 255, 255, 0.1);
            transform: rotate(45deg);
            transition: var(--transition);
        }

        .offer-card:hover::before {
            top: -45%;
            left: -45%;
        }

        .offer-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 40px rgba(255, 184, 0, 0.4);
        }

        .offer-content {
            position: relative;
            z-index: 2;
        }

        .offer-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .offer-title {
            font-size: 1.8rem;
            font-weight: 900;
            margin-bottom: 1rem;
        }

        .offer-description {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            opacity: 0.9;
        }

        .offer-card .btn-dark {
            background: var(--secondary-color);
            color: var(--white);
            font-weight: 700;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            border: none;
            transition: var(--transition);
        }

        .offer-card .btn-dark:hover {
            background: var(--accent-color);
            transform: scale(1.05);
        }

        /* ==================== WHY CHOOSE US ==================== */
        .why-choose-section {
            background: var(--light-bg);
        }

        .feature-box {
            display: flex;
            gap: 1.5rem;
            padding: 1.5rem;
            background: var(--white);
            border-radius: 15px;
            transition: var(--transition);
            margin-bottom: 1.5rem;
            box-shadow: var(--shadow-sm);
        }

        .feature-box:hover {
            transform: translateX(-10px);
            box-shadow: var(--shadow-md);
        }

        .feature-icon {
            flex-shrink: 0;
            width: 60px;
            height: 60px;
            background: var(--gradient-1);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: var(--secondary-color);
        }

        .feature-content h5 {
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 0.5rem;
        }

        .feature-content p {
            color: var(--text-light);
            margin: 0;
        }

        /* ==================== TESTIMONIALS ==================== */
        .testimonial-card {
            background: var(--white);
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            height: 100%;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .testimonial-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .testimonial-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--gradient-1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: var(--secondary-color);
            font-weight: 700;
        }

        .testimonial-info h5 {
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 0.2rem;
        }

        .testimonial-info p {
            color: var(--text-light);
            margin: 0;
            font-size: 0.9rem;
        }

        .testimonial-rating {
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .testimonial-text {
            color: var(--text-light);
            line-height: 1.8;
            font-style: italic;
        }

        /* ==================== CTA SECTION ==================== */
        .cta-section {
            background: var(--white);
            color: var(--secondary-color);
            text-align: center;
            padding: 5rem 2rem;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FF4748' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.3;
        }

        .cta-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-content h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 900;
            margin-bottom: 1.5rem;
        }

        .cta-content p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        /* ==================== FOOTER ==================== */
        .footer {
            background: var(--light-bg);
            color: var(--white);
            padding: 4rem 0 2rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-section h4 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--primary-color);
        }

        .footer-section p {
            color: var(--secondary-color);
            line-height: 1.8;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: var(--secondary-color);
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .footer-links a:hover {
            color: var(--primary-color);
            padding-right: 5px;
        }    

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
            justify-content: center;
        }

        .social-link {
            display: flex;
            height: 0px;
              align-items: center;
            gap: 0.75rem;
            padding: 1rem;
            background: var(--primary-color);
            border-radius: 12px;
            text-decoration: none;
            color: var(--white);
            font-weight: 600;
            transition: all 0.3s;
            border: 1px solid var(--primary-color);
        }

        .social-link:hover {
     /*       background: var(--primary-color);
            color: var(--secondary-color);*/
            transform: translateY(-3px);
        }

/*        .social-link:hover i{
            color: var(--white);
        }            */

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
            text-align: center;
        }

        .footer-bottom p {
            color: rgba(255, 255, 255, 0.5);
            margin: 0;
        }

        /* ==================== FLOATING BUTTONS ==================== */
        .floating-buttons {
            position: fixed;
            bottom: 30px;
            left: 30px;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            z-index: 999;
        }

        .floating-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: var(--white);
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            transition: var(--transition);
            cursor: pointer;
        }

        .floating-btn:hover {
            transform: scale(1.1);
        }

        .whatsapp-btn {
            background: #25D366;
            animation: pulse 2s infinite;
        }

        .scroll-top-btn {
            background: var(--gradient-1);
            opacity: 0;
            visibility: hidden;
        }

        .scroll-top-btn.show {
            opacity: 1;
            visibility: visible;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }

        /* ==================== CONTAINER ==================== */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .row {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        /* ==================== RESPONSIVE ==================== */
        @media (max-width: 768px) {
            .navbar-collapse {
                background: var(--white);
                padding: 1rem;
                border-radius: 10px;
                margin-top: 1rem;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .btn-primary,
            .btn-secondary {
                width: 100%;
                justify-content: center;
            }

            .stats-section {
                padding: 2rem 0;
            }

            .section {
                padding: 3rem 0;
            }

            .row {
                grid-template-columns: 1fr;
            }

            .floating-buttons {
                left: 20px;
                bottom: 20px;
            }

            .floating-btn {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .navbar-brand {
                font-size: 1.3rem;
            }

            .navbar-brand i {
                font-size: 1.5rem;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .btn-primary,
            .btn-secondary {
                padding: 0.8rem 1.5rem;
                font-size: 1rem;
            }

            .stat-number {
                font-size: 2rem;
            }

            .section-title h2 {
                font-size: 1.8rem;
            }
        }

        .text-center{
            text-align: center;
        }







/* Responsive Design - Services Page */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .process-steps {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 60px 0 40px;
    }
    
    .page-header h1 {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .service-types-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}        
    </style>