/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: background-color 0.3s, color 0.3s;
}

:root {
    --primary: #1a3a6c;
    --secondary: #f39c12;
    --accent: #2c3e50;
    --light: #f8f9fa;
    --dark: #212529;
    --text: #333;
    --text-light: #f8f9fa;
    --bg: #ffffff;
    --card-bg: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
    --section-bg: #f8f9fa;
}

/* Dark Mode Theme */
.dark-mode {
    --primary: #2c7be5;
    --secondary: #ff9f43;
    --accent: #6c757d;
    --light: #343a40;
    --dark: #f8f9fa;
    --text: #f8f9fa;
    --text-light: #f8f9fa;
    --bg: #121212;
    --card-bg: #1e1e1e;
    --shadow: rgba(0, 0, 0, 0.3);
    --section-bg: #1a1a1a;
}

/* All other CSS styles from the original file */
/* ... Copy all remaining CSS rules ... */
body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--bg);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Header Styles */
        header {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            padding: 1rem 2rem;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px var(--shadow);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo i {
            font-size: 2rem;
            color: var(--secondary);
        }

        .logo h1 {
            font-size: 1.5rem;
            font-weight: 700;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 1.5rem;
        }

        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }

        nav ul li a:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        .theme-toggle {
            background: transparent;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            margin-left: 1rem;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            padding: 0 1rem;
        }

        .hero-content {
            max-width: 1200px;
            display: flex;
            align-items: center;
            gap: 4rem;
            padding: 2rem;
        }

        .hero-text {
            flex: 1;
            text-align: left;
        }

        .hero-img {
            flex: 1;
            display: flex;
            justify-content: center;
            flex-direction: column;
            align-items: center;
        }

        .profile-circle {
            width: 400px;
            height: 400px;
            border-radius: 50%;
            overflow: hidden;
            border: 5px solid var(--secondary);
            box-shadow: 0 0 30px rgba(243, 156, 18, 0.5);
            margin-bottom: 2rem;
        }

        .profile-circle img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
            padding-top: 2rem;
        }

        .hero .tagline {
            font-size: 1.8rem;
            margin-bottom: 2rem;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
        }

        .typing-text {
            font-size: 2.2rem;
            margin-bottom: 2rem;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
            min-height: 80px;
        }

        .typing-text span {
            color: var(--secondary);
            font-weight: bold;
            border-right: 2px solid var(--secondary);
            animation: blink 0.7s infinite;
        }

        @keyframes blink {
            0%, 100% { border-color: transparent; }
            50% { border-color: var(--secondary); }
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-block;
            background: var(--secondary);
            color: white;
            padding: 0.8rem 2rem;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 5px;
            transition: all 0.3s ease;
            text-align: center;
        }

        .btn:hover {
            background: #e67e22;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--secondary);
        }

        .call-button {
            display: flex;
            align-items: center;
            gap: 10px;
            background: #25D366;
            color: white;
            justify-content: center;
        }

        .call-button:hover {
            background: #128C7E;
        }

        .mobile-call {
            display: none;
            width: 100%;
            max-width: 300px;
            margin-top: 1rem;
        }

        /* Section Styles */
        section {
            padding: 5rem 2rem;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary);
        }

        .section-title p {
            font-size: 1.2rem;
            color: var(--text);
            max-width: 700px;
            margin: 0 auto;
        }

        /* About Section */
        .about {
            background-color: var(--section-bg);
        }

        .about-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .about-img {
            flex: 1;
            min-width: 300px;
            display: flex;
            justify-content: center;
        }

        .portrait-frame {
            width: 350px;
            height: 450px;
            border: 5px solid var(--primary);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px var(--shadow);
            position: relative;
        }

        .portrait-frame::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, transparent 50%, var(--primary) 100%);
            z-index: 1;
            opacity: 0.2;
        }

        .portrait-frame img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .about-text {
            flex: 1;
            min-width: 300px;
        }

        .about-text h3 {
            font-size: 1.8rem;
            color: var(--accent);
            margin-bottom: 1rem;
        }

        .about-text p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }

        .trust-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .badge {
            display: flex;
            align-items: center;
            gap: 10px;
            background: var(--card-bg);
            padding: 1rem;
            border-radius: 8px;
            box-shadow: 0 5px 15px var(--shadow);
            flex: 1;
            min-width: 200px;
        }

        .badge i {
            font-size: 2rem;
            color: var(--secondary);
        }

        /* Services Section */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .service-card {
            background: var(--card-bg);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px var(--shadow);
            transition: transform 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
        }

        .service-img {
            height: 200px;
            overflow: hidden;
        }

        .service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .service-card:hover .service-img img {
            transform: scale(1.05);
        }

        .service-content {
            padding: 1.5rem;
        }

        .service-content h3 {
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .service-content p {
            margin-bottom: 1rem;
        }

        /* Stats Section */
        .stats {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .stat-card {
            padding: 2rem;
        }

        .stat-card i {
            font-size: 3rem;
            color: var(--secondary);
            margin-bottom: 1rem;
        }

        .stat-card h3 {
            font-size: 3rem;
            margin-bottom: 0.5rem;
        }

        /* Enhanced Video Carousel Section */
        .video-section {
            background: var(--card-bg);
            padding: 40px 20px;
            border-radius: 10px;
            box-shadow: 0 5px 15px var(--shadow);
        }
        
        .video-carousel-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }
        
        .video-carousel {
            margin: 0 auto;
        }
        
        .video-item {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px var(--shadow);
            aspect-ratio: 16/9;
            cursor: pointer;
            margin: 0 15px;
        }
        
        .video-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .video-item .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 1;
            transition: opacity 0.3s ease;
        }
        
        .video-item:hover .overlay {
            opacity: 1;
        }
        
        .video-item .play-icon {
            color: white;
            font-size: 3rem;
            background: rgba(243, 156, 18, 0.8);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
        }
        
        .video-item:hover .play-icon {
            transform: scale(1.1);
        }
        
        /* Fullscreen Video Player */
        .fullscreen-player {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 2000;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease;
        }
        
        .fullscreen-player.active {
            opacity: 1;
            visibility: visible;
        }
        
        .video-container {
            width: 100%;
            height: 100%;
            max-width: 1200px;
            max-height: 80vh;
            position: relative;
        }
        
        #youtubeIframe {
            width: 100%;
            height: 100%;
            border: none;
            background: #000;
        }
        
        /* Close button styling */
        .close-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: white;
            font-size: 24px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 2001;
            transition: all 0.3s ease;
        }
        
        .close-btn:hover {
            background: rgba(243, 156, 18, 0.8);
            transform: rotate(90deg);
        }
        
        /* Navigation Controls */
        .owl-nav {
            text-align: center;
            margin-top: 20px;
        }
        
        .owl-nav button {
            background: var(--primary) !important;
            color: white !important;
            width: 40px;
            height: 40px;
            border-radius: 50% !important;
            margin: 0 5px;
            transition: all 0.3s ease;
        }
        
        .owl-nav button:hover {
            background: var(--secondary) !important;
            transform: scale(1.1);
        }
        
        .owl-dots {
            margin-top: 20px;
            text-align: center;
        }
        
        .owl-dot span {
            background: var(--primary) !important;
        }
        
        .owl-dot.active span {
            background: var(--secondary) !important;
        }

        /* Gallery Carousel */
        .gallery-section {
            background: var(--card-bg);
            padding: 40px 20px;
            border-radius: 10px;
            box-shadow: 0 5px 15px var(--shadow);
        }

        .gallery-carousel {
            max-width: 1000px;
            margin: 0 auto;
        }

        .gallery-item {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px var(--shadow);
            aspect-ratio: 4/3;
            cursor: pointer;
            margin: 0 15px;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.05);
        }

        .gallery-item .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .gallery-item:hover .overlay {
            opacity: 1;
        }

        .gallery-item .plus-icon {
            color: white;
            font-size: 3rem;
            background: rgba(243, 156, 18, 0.8);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
        }

        .gallery-item:hover .plus-icon {
            transform: scale(1.1);
        }

        .next-icon {
            display: block;
            text-align: center;
            margin-top: 10px;
            color: var(--primary);
            font-size: 1.5rem;
        }

        /* Lightbox Modal */
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 1000;
            justify-content: center;
            align-items: center;
        }

        .lightbox.active {
            display: flex;
        }

        .lightbox-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
        }

        .lightbox-img, .lightbox-video {
            max-width: 100%;
            max-height: 80vh;
            border-radius: 8px;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.7);
        }

        .close-lightbox {
            position: absolute;
            top: -40px;
            right: 0;
            color: white;
            font-size: 2.5rem;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .close-lightbox:hover {
            color: var(--secondary);
        }

        /* Reviews Section */
        .reviews {
            padding: 5rem 2rem;
            background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
        }
        
        .reviews-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .review-card {
            background: var(--card-bg);
            border-radius: 10px;
            padding: 2rem;
            box-shadow: 0 5px 15px var(--shadow);
            margin: 1rem;
            position: relative;
        }
        
        .review-card::before {
            content: """;
            position: absolute;
            top: 15px;
            left: 15px;
            font-size: 3rem;
            color: var(--secondary);
            opacity: 0.2;
            font-family: Georgia, serif;
        }
        
        .review-content {
            margin-top: 1.5rem;
        }
        
        .review-text {
            font-style: italic;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }
        
        .review-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            border: 2px solid var(--secondary);
        }
        
        .author-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .author-info h4 {
            color: var(--primary);
            margin-bottom: 0.2rem;
        }
        
        .author-info p {
            color: var(--accent);
            font-size: 0.9rem;
        }
        
        .review-rating {
            color: #ffc107;
            margin-top: 0.5rem;
        }
        
        .reviews-carousel .owl-nav {
            position: absolute;
            top: -70px;
            right: 20px;
        }
        
        .reviews-carousel .owl-nav button {
            background: var(--primary) !important;
            color: white !important;
            width: 40px;
            height: 40px;
            border-radius: 50% !important;
            margin: 0 5px;
            transition: all 0.3s ease;
        }
        
        .reviews-carousel .owl-nav button:hover {
            background: var(--secondary) !important;
            transform: scale(1.1);
        }
        
        .reviews-carousel .owl-dots {
            margin-top: 20px;
        }
        
        .reviews-carousel .owl-dot span {
            background: var(--primary) !important;
        }
        
        .reviews-carousel .owl-dot.active span {
            background: var(--secondary) !important;
        }
        
        /* Contact Section */
        .contact {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
        }

        .contact .section-title h2 {
            color: white;
        }

        .contact-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .contact-info {
            flex: 1;
            min-width: 300px;
        }

        .contact-info h3 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
        }

        .contact-detail {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.5rem;
        }

        .contact-detail i {
            font-size: 1.5rem;
            color: var(--secondary);
            margin-right: 1rem;
        }

        .contact-form {
            flex: 1;
            min-width: 300px;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            border: none;
            border-radius: 5px;
            font-size: 1rem;
            background: rgba(255, 255, 255, 0.9);
        }

        .form-group textarea {
            height: 150px;
        }

        .submit-btn {
            background: var(--secondary);
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            background: #e67e22;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: var(--text-light);
            padding: 3rem 2rem 1.5rem;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-col {
            padding: 0 1rem;
        }

        .footer-col h3 {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.5rem;
        }

        .footer-col h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--secondary);
        }

        .footer-col p {
            margin-bottom: 1rem;
            font-size: 0.95rem;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 0.8rem;
        }

        .footer-col ul li a {
            color: var(--text-light);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-col ul li a:hover {
            color: var(--secondary);
            padding-left: 5px;
        }

        .social-icons {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border-radius: 50%;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .social-icons a:hover {
            background: var(--secondary);
            transform: translateY(-3px);
        }

        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
        }

        /* Responsive Design */
        /* Desktop (769px and above) */
        @media (min-width: 769px) {
            .hero-content {
                flex-direction: row;
                gap: 3rem;
            }

            .hero-text {
                text-align: left;
            }

            .hero-buttons {
                justify-content: flex-start;
            }

            .about-content {
                flex-direction: row;
            }

            .services-grid, .stats-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            }

            .contact-container {
                flex-direction: row;
            }

            .mobile-call {
                display: none;
            }

            .hero-buttons .call-button:not(.mobile-call) {
                display: flex;
            }
        }

        /* Tablet (481px to 768px) */
        @media (min-width: 481px) and (max-width: 768px) {
            header {
                padding: 0.8rem 1.5rem;
            }

            .logo h1 {
                font-size: 1.3rem;
            }

            .logo i {
                font-size: 1.8rem;
            }

            nav ul {
                gap: 1rem;
            }

            nav ul li a {
                font-size: 0.9rem;
                padding: 0.4rem 0.8rem;
            }

            .hero {
                height: 80vh;
                padding: 0 1rem;
            }

            .hero-content {
                flex-direction: column;
                gap: 2rem;
                padding: 1.5rem;
            }

            .hero h1 {
                font-size: 2.5rem;
                padding-top: 1.5rem;
            }

            .hero .tagline {
                font-size: 1.4rem;
            }

            .typing-text {
                font-size: 1.6rem;
                min-height: 60px;
            }

            .profile-circle {
                width: 220px;
                height: 220px;
            }

            .hero-buttons {
                justify-content: center;
            }

            .btn {
                padding: 0.6rem 1.5rem;
                font-size: 1rem;
            }

            section {
                padding: 3rem 1.5rem;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .section-title p {
                font-size: 1rem;
            }

            .about-content {
                flex-direction: column;
                gap: 2rem;
            }

            .portrait-frame {
                width: 100%;
                max-width: 280px;
                height: 360px;
            }

            .about-text h3 {
                font-size: 1.6rem;
            }

            .about-text p {
                font-size: 1rem;
            }

            .services-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 1.5rem;
            }

            .service-img {
                height: 180px;
            }

            .service-content h3 {
                font-size: 1.3rem;
            }

            .stats-grid {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            }

            .stat-card i {
                font-size: 2.5rem;
            }

            .stat-card h3 {
                font-size: 2.5rem;
            }

            .form-group input, .form-group textarea {
                padding: 0.6rem;
                font-size: 0.9rem;
            }

            .submit-btn {
                padding: 0.6rem 1.5rem;
                font-size: 1rem;
            }

            .mobile-call {
                display: block;
            }

            .hero-buttons .call-button:not(.mobile-call) {
                display: none;
            }
        }

        /* Mobile (480px and below) */
        @media (max-width: 480px) {
            header {
                padding: 0.5rem 1rem;
            }

            .logo h1 {
                font-size: 1.2rem;
            }

            .logo i {
                font-size: 1.5rem;
            }

            nav ul {
                display: none; /* Hamburger menu could be added in future */
            }

            .theme-toggle {
                font-size: 1.2rem;
                margin-left: 0.5rem;
            }

            .hero {
                height: 90vh;
                padding: 0 0.5rem;
            }

            .hero-content {
                flex-direction: column;
                gap: 1.5rem;
                padding: 1rem;
            }

            .hero h1 {
                font-size: 2rem;
                padding-top: 1rem;
            }

            .hero .tagline {
                font-size: 1.2rem;
            }

            .typing-text {
                font-size: 1.4rem;
                min-height: 50px;
            }

            .profile-circle {
                width: 200px;
                height: 200px;
            }

            .hero-buttons {
                justify-content: center;
                gap: 0.8rem;
            }

            .btn {
                padding: 0.5rem 1.2rem;
                font-size: 0.9rem;
            }

            section {
                padding: 2rem 1rem;
            }

            .section-title h2 {
                font-size: 1.8rem;
            }

            .section-title p {
                font-size: 0.9rem;
            }

            .about-content {
                gap: 1.5rem;
            }

            .portrait-frame {
                width: 100%;
                max-width: 250px;
                height: 320px;
            }

            .about-text h3 {
                font-size: 1.4rem;
            }

            .about-text p {
                font-size: 0.9rem;
            }

            .trust-badges {
                gap: 1rem;
            }

            .badge {
                min-width: 100%;
                padding: 0.8rem;
            }

            .badge i {
                font-size: 1.5rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .service-img {
                height: 160px;
            }

            .service-content {
                padding: 1rem;
            }

            .service-content h3 {
                font-size: 1.2rem;
            }

            .service-content p {
                font-size: 0.9rem;
            }

            .stats-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .stat-card {
                padding: 1.5rem;
            }

            .stat-card i {
                font-size: 2rem;
            }

            .stat-card h3 {
                font-size: 2rem;
            }

            .contact-container {
                gap: 1.5rem;
            }

            .contact-info h3, .contact-form h3 {
                font-size: 1.4rem;
            }

            .contact-detail i {
                font-size: 1.2rem;
            }

            .contact-detail h4 {
                font-size: 1rem;
            }

            .contact-detail p {
                font-size: 0.9rem;
            }

            .form-group label {
                font-size: 0.9rem;
            }

            .form-group input, .form-group textarea {
                padding: 0.5rem;
                font-size: 0.8rem;
            }

            .form-group textarea {
                height: 120px;
            }

            .submit-btn {
                padding: 0.5rem 1.2rem;
                font-size: 0.9rem;
            }

            .footer-container {
                grid-template-columns: 1fr;
            }

            .social-icons a {
                font-size: 1.2rem;
                margin: 0 0.4rem;
            }
            
            .reviews-carousel .owl-nav {
                position: relative;
                top: 0;
                right: 0;
                display: flex;
                justify-content: center;
                margin-top: 15px;
            }
            
            .review-card {
                padding: 1.5rem;
            }
            
            /* Adjustments for new sections */
            .section-title h2::after {
                width: 60px;
                height: 3px;
            }
        }
    