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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: #333;
        }

        /* Header */
        .header {
            background: white;
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            font-size: 1.5rem;
            font-weight: bold;
            color: #4CAF50;
        }

      

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-menu a {
            text-decoration: none;
            color: #666;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-menu a:hover {
            color: #4CAF50;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            padding: 120px 0 80px;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .hero-content .highlight {
            color: #4A90E2;
        }

        .hero-content p {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .cta-button {
            background: #4A90E2;
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .cta-button:hover {
            background: #357abd;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(74, 144, 226, 0.3);
        }

        .hero-image {
            position: relative;
            text-align: center;
        }

        .hero-person {
            width: 300px;
            height: 400px;
            background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
            border-radius: 20px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .hero-person::before {
            content: "👨‍💼";
            font-size: 8rem;
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
        }

        .stats-card {
            position: absolute;
            background: white;
            padding: 1rem;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            font-size: 0.9rem;
        }

        .stats-card.top-right {
            top: 20px;
            right: -20px;
            color: #e74c3c;
        }

        .stats-card.bottom-left {
            bottom: 20px;
            left: -20px;
            color: #27ae60;
        }

        /* Trusted Organizations */
        .trusted {
            padding: 4rem 0;
            background: white;
        }

        .trusted-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            text-align: center;
        }

        .trusted h3 {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 2rem;
        }

        .trusted-logos {
            display: flex;
            justify-content: space-around;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem;
            opacity: 0.6;
        }

        .trusted-logo {
            font-weight: bold;
            font-size: 1.5rem;
            color: #333;
        }

        /* Services Section */
        .services {
            padding: 6rem 0;
            background: #f8f9fa;
        }

        .services-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .services h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #333;
        }

        .services-subtitle {
            text-align: center;
            color: #666;
            margin-bottom: 4rem;
            font-size: 1.1rem;
        }

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

        .service-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        }

        .service-card h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: #333;
        }

        .service-card p {
            color: #666;
            margin-bottom: 1.5rem;
        }

        .service-link {
            color: #4A90E2;
            text-decoration: none;
            font-weight: 600;
        }

        /* Why Choose Us */
        .why-choose {
            padding: 6rem 0;
            background: white;
        }

        .why-choose-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .why-choose h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #333;
        }

        .why-choose-subtitle {
            color: #666;
            margin-bottom: 4rem;
            font-size: 1.1rem;
        }

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

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .feature-icon {
            width: 40px;
            height: 40px;
            background: #4A90E2;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            flex-shrink: 0;
        }

        .feature-content h4 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: #333;
        }

        .feature-content p {
            color: #666;
            font-size: 0.95rem;
        }

        .stats-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            text-align: center;
        }

        .stat-item {
            padding: 2rem;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: bold;
            color: #4A90E2;
            display: block;
        }

        .stat-label {
            color: #666;
            font-size: 1.1rem;
            margin-top: 0.5rem;
        }

        /* Testimonials */
        .testimonials {
            padding: 6rem 0;
            background: #f8f9fa;
        }

        .testimonials-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .testimonials h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #333;
        }

        .testimonials-subtitle {
            text-align: center;
            color: #666;
            margin-bottom: 4rem;
            font-size: 1.1rem;
        }

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

        .testimonial-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }

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

        .testimonial-avatar {
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, #4A90E2, #667eea);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            font-weight: bold;
        }

        .testimonial-info h4 {
            color: #333;
            margin-bottom: 0.25rem;
        }

        .testimonial-info .company {
            color: #666;
            font-size: 0.9rem;
        }

        .stars {
            color: #ffc107;
            margin-bottom: 1rem;
        }

        .testimonial-text {
            color: #666;
            font-style: italic;
            line-height: 1.6;
        }

        /* Corporate Events */
        .corporate-events {
            padding: 6rem 0;
            background: white;
        }

        .events-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .events h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #333;
        }

        .events-subtitle {
            text-align: center;
            color: #666;
            margin-bottom: 4rem;
            font-size: 1.1rem;
        }

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

        .event-image {
            height: 200px;
            background: linear-gradient(45deg, #667eea, #764ba2);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            transition: transform 0.3s;
        }

        .event-image:hover {
            transform: scale(1.05);
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #4A90E2 0%, #667eea 100%);
            padding: 6rem 0;
            text-align: center;
            color: white;
        }

        .cta-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

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

        .cta-button-white {
            background: white;
            color: #4A90E2;
            padding: 1rem 2rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .cta-button-white:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(255,255,255,0.3);
        }

        /* Footer */
        .footer {
            background: #1a1a1a;
            color: white;
            padding: 4rem 0 2rem;
        }

        .footer-container {
            /*max-width: 1200px;*/
            margin: 0 auto;
            padding: 0 2rem;
        }

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

        .footer-section h3 {
            margin-bottom: 1.5rem;
            color: #fff;
        }

        .footer-section p,
        .footer-section a {
            color: #ccc;
            text-decoration: none;
            margin-bottom: 0.5rem;
            display: block;
        }

        .footer-section a:hover {
            color: white;
        }

        .footer-bottom {
            border-top: 1px solid #333;
            padding-top: 2rem;
            text-align: center;
            color: #666;
        }

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

        .social-link {
            width: 40px;
            height: 40px;
            background: #333;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: background 0.3s;
        }

        .social-link:hover {
            background: #4CAF50;
        }

        /* Mobile Menu */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .mobile-menu-toggle {
                display: block;
            }

            .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: white;
                flex-direction: column;
                padding: 1rem 2rem;
                box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            }

            .nav-menu.active {
                display: flex;
            }

            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 2rem;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

            .hero-person {
                width: 250px;
                height: 300px;
            }

            .services-grid,
            .features-grid,
            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .stats-section {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        
    .custom_form input[type="text"]{
        padding: 10px;
    width: 100%;
    margin-bottom: 10px;
    margin-top: 3px;
    border-radius:5px;
    border:1px solid lightgray;
    }   
    
        .custom_form input[type="email"]{
        padding: 10px;
    width: 100%;
    margin-bottom: 10px;
    margin-top: 3px;
    border-radius:5px;
    border:1px solid lightgray;
    }  
    
            .custom_form input[type="tel"]{
        padding: 10px;
    width: 100%;
    margin-bottom: 10px;
    margin-top: 3px;
    border-radius:5px;
    border:1px solid lightgray;
    }  
    
    .custom_form .last{
        margin:0;
    }
                   .custom_form input[type="submit"]{
        padding: 10px;
    width: 100%;
    margin-bottom: 10px;
    margin-top: 3px;
    border-radius:5px;
    border:1px solid lightgray;
    background:#2451E4;
    color:#fff;
    } 


.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 40px 20px;
    /*background: #111;*/
    color: #fff;
    flex-wrap: wrap; /* ✅ makes it responsive on smaller screens */
}

.footer-section {
    flex: 1;
    min-width: 220px; /* keeps them from shrinking too small */
}

.footer-section h3 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #fff;
}

.footer-section a {
    display: block;
    color: Grey;
    margin-bottom: 6px;
    text-decoration: none;
}

.footer-section a:hover {
    color: #fff;
}

.social-links {
    margin-top: 10px;
}

.social-link {
    display: inline-block;
    margin-right: 8px;
    font-size: 18px;
    color: #fff;
    text-decoration: none;
}

.footer-section img{
    width:70%;
}
@media (max-width: 786px) {
.elementor-element-dd92501, .elementor-element-e9d90fb, .elementor-element-5b25b0c, .blog_hero{
	    padding-left: 0 !important;
    padding-right: 0 !important;
}
}
.elementor-element-71cde31, .elementor-element-2083c41, .elementor-element-1627035, .elementor-element-e726cad, .elementor-element-da0fe47, .elementor-element-41e587a, .elementor-element-352c650, .elementor-element-82db003, .elementor-element-7021bde, .elementor-element-7fe1812{
	display:none !important;
}


        