            /* Reset and Base Styles */
        * { 
            margin: 0; 
            padding: 0; 
            box-sizing: border-box; 
        }

        body { 
            font-family: 'Inter', sans-serif; 
            color: #1c1c1c; 
            background: #ffffff;
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            width: 100%;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 20px;
            position: relative;
            z-index: 1000;
            width: 100%;
            max-width: 100vw;
        }

        .nav-logo img {
            height: 60px;
            width: auto;
            max-width: 150px;
        }

        .nav-links {
            display: flex;
            gap: 1.5rem;
            list-style: none;
            align-items: center;
            flex-wrap: wrap;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
            white-space: nowrap;
        }

        .nav-links a:hover {
            color: #2ecc71;
        }

                .dropdown {
            position: relative;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: rgba(44, 44, 44, 0.95);
            min-width: 200px;
            max-width: 90vw; /* Prevent dropdown from exceeding viewport */
            padding: 1rem 0;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            z-index: 1001;
        }

        .dropdown:hover .dropdown-content {
            display: block;
        }

        .dropdown-content a {
            display: block;
            padding: 0.5rem 1rem;
            color: white;
            text-decoration: none;
        }

        .dropdown-content a:hover {
            background: rgba(46, 204, 113, 0.1);
        }

        /* Mobile Menu */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 10px;
        }

        .mobile-menu-toggle span {
            width: 25px;
            height: 3px;
            background: white;
            margin: 3px 0;
            transition: 0.3s;
        }

        /* Button Styles */
        .btn-outline {
            border: 2px solid #2ecc71;
            padding: 0.75rem 1.5rem;
            border-radius: 25px;
            color: #2ecc71;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .btn-outline:hover {
            background: #2ecc71;
            color: white;
        }

        /* Hero Section */
        .hero {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            max-width: 90%;
            width: 100%;
            padding: 0 20px;
            box-sizing: border-box;
        }

        .hero h1 {
            font-size: clamp(1.8rem, 4vw, 3.5rem);
            margin-bottom: 1.5rem;
            font-weight: 700;
            line-height: 1.2;
            word-wrap: break-word;
        }

        .hero p {
            font-size: clamp(0.9rem, 2vw, 1.2rem);
            margin-bottom: 2rem;
            opacity: 0.9;
            max-width: 100%;
            line-height: 1.5;
        }

        /* Services Section */
        .services {
            padding: 80px 0;
            background: #ffffff;
        }

        .section-title {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title h2 {
            font-size: clamp(2rem, 4vw, 2.5rem);
            color: #2ecc71;
            margin-bottom: 1rem;
        }

        .grid-1x2 {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            margin-bottom: 4rem;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            padding: 2rem 0;
            width: 100%;
        }

        .service-card {
            background: #f8f9fa;
            padding: 2rem;
            border-radius: 15px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .service-mini-grid {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 1.5rem;
            gap: 1rem;
        }

        .service-mini-grid h3 {
            font-size: 1.25rem;
            color: #333;
            flex: 1;
            line-height: 1.3;
        }

        .service-icon {
            font-size: 2.5rem;
            color: #2ecc71;
            flex-shrink: 0;
        }

        .service-card p {
            color: #666;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .service-card ul {
            color: #666;
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        .service-link {
            color: #2ecc71;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .service-link:hover {
            color: #27ae60;
        }

        /* Contact Section */
        .contact {
            padding: 80px 0;
            background: #2ecc71;
            color: white;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
        }

        .contact-info h2 {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            margin-bottom: 1rem;
        }

        .contact-info iframe {
            width: 100%;
            max-width: 100%;
            height: 300px;
            border: none;
            border-radius: 10px;
            margin-top: 2rem;
        }

        .contact-form {
            background: rgba(255, 255, 255, 0.1);
            padding: 1.5rem;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            border: none;
            border-bottom: 2px solid rgba(255, 255, 255, 0.3);
            background: transparent;
            color: white;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s ease;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: white;
        }

        .form-group textarea {
            height: 120px;
            resize: vertical;
        }

        .submit-btn {
            background: white;
            color: #2ecc71;
            padding: 15px 30px;
            border: none;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        /* Footer */
        footer {
            background: #2c3e50;
            color: white;
            padding: 50px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            margin-bottom: 1rem;
            color: #2ecc71;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.5rem;
        }

        .footer-section ul li a {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section ul li a:hover {
            color: #2ecc71;
        }

        .footer-section img {
            height: 60px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #34495e;
            color: #bdc3c7;
        }

        
        .footer-content .footer-section .social-links a {
            display: inline-block;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 4px;
            border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
            font-size: 16px;
            color: color-mix(in srgb, var(--default-color), transparent 20%);
            margin-right: 10px;
            transition: 0.3s;
        }

        .bi-facebook{
            color:#1877F2;
            font-size: 20px;
        }
        .bi-instagram{
            color: #f09433; 
            color: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); 
            color: -webkit-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
            color: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
            filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
            font-size: 20px;
        }
        .bi-linkedin{
            color: #0077B5;
            font-size: 20px;
        }

.footer-content .footer-section .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}


        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in-up {
            animation: fadeInUp 0.8s ease-out;
        }

        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            /* Mobile Navigation */
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(44, 44, 44, 0.95);
                flex-direction: column;
                padding: 2rem 1rem;
                gap: 1rem;
                width: 100vw;
                margin-left: -20px;
                box-sizing: border-box;
            }

            .nav-links.active {
                display: flex;
            }

            .mobile-menu-toggle {
                display: flex;
            }

            .nav-logo img {
                height: 45px;
            }

            nav {
                padding: 1rem 15px;
            }

            .hero {
                width: 95%;
                padding: 0 15px;
                max-width: 95%;
            }

            .hero h1 {
                font-size: clamp(1.5rem, 6vw, 2.5rem);
            }

            .hero p {
                font-size: clamp(0.9rem, 3vw, 1.1rem);
            }

            .grid-1x2 {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .service-card {
                padding: 1.5rem;
            }

            .service-mini-grid {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }

            .service-mini-grid h3 {
                font-size: 1.1rem;
            }

            .service-icon {
                font-size: 2rem;
            }

            .contact-content {
                gap: 2rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }

            .container {
                padding: 0 15px;
                max-width: 100%;
            }

            .services,
            .contact {
                padding: 60px 0;
                overflow-x: hidden;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 10px;
            }

            .hero {
                width: 100%;
                padding: 0 10px;
            }

            .hero h1 {
                font-size: clamp(1.3rem, 7vw, 2rem);
                line-height: 1.1;
            }

            .hero p {
                font-size: clamp(0.85rem, 4vw, 1rem);
            }

            .services,
            .contact {
                padding: 40px 0;
            }

            .service-card {
                padding: 1.25rem;
            }

            .service-mini-grid h3 {
                font-size: 1rem;
            }

            .service-icon {
                font-size: 1.8rem;
            }

            .contact-form {
                padding: 1rem;
            }

            .contact-info iframe {
                height: 200px;
            }

            .btn-outline {
                padding: 0.75rem 1.25rem;
                font-size: 0.9rem;
            }

            .submit-btn {
                padding: 12px 20px;
                font-size: 0.9rem;
            }

            nav {
                padding: 0.75rem 10px;
            }

            .nav-logo img {
                height: 40px;
            }

            .nav-links {
                margin-left: -10px;
                padding: 1.5rem 0.75rem;
            }
        }

        @media (min-width: 769px) {
            .grid-1x2 {
                grid-template-columns: 1fr 1fr;
                align-items: center;
            }

            .contact-content {
                grid-template-columns: 1fr 1fr;
                align-items: start;
            }

            .container {
                padding: 0 40px;
            }

            .service-mini-grid {
                align-items: center;
            }
        }

        @media (min-width: 1200px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }