    
        /* General Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        /* CSS Variables */
        :root {
            --primary-color: #ff5722;  /* Vibrant Orange for branding */
            --secondary-color: #ffffff; /* White for a clean look */
            --text-color: #333;
            --overlay-color: rgba(0, 0, 0, 0.4);
            --light-gray: #f5f5f5;
            --heading-font: 'Roboto', sans-serif;
            --body-font: 'Open Sans', sans-serif;
        }
        
        /* Body Styling */
        body {
            font-family: var(--body-font);
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--light-gray);
            overflow-x: hidden;
        }
        
        /* Navigation Bar */
        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background-color: var(--secondary-color);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            padding: 10px 20px;
            transition: 0.3s ease-in-out;
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .logo h1 {
            font-size: 2rem;
            color: var(--primary-color);
        }
        
        /* Navigation Links Styling */
        .nav-links {
            list-style: none;
            display: flex;
            justify-content: space-between;
            gap: 20px;
        }
        
        .nav-links li {
            margin-left: 30px;
        }
        
        .nav-links a {
            color: var(--text-color);
            text-decoration: none;
            font-size: 1rem;
            text-transform: uppercase;
            font-weight: bold;
        }
        
        .nav-links a:hover {
            color: var(--primary-color);
        }
        
        /* Burger Menu */
        .burger-menu {
            display: none;
            flex-direction: column;
            justify-content: space-around;
            width: 30px;
            height: 25px;
            cursor: pointer;
            z-index: 9999;
        }
        
        .burger-menu span {
            height: 5px;
            width: 100%;
            background-color: #333;
        }
        
        /* Fullscreen menu */
        .nav-links.active {
            display: block;
            position: absolute;
            top: 0;
            left: 0;
            height: 100vh;
            width: 100%;
            background-color: var(--secondary-color);
            text-align: center;
            padding-top: 80px;
        }
        
        .nav-links.active a {
            display: block;
            padding: 20px;
            font-size: 1.5rem;
        }
        
        /* Mobile View */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
        
            .burger-menu {
                display: flex;
            }
        
            .nav-links.active {
                display: flex;
                flex-direction: column;
                gap: 30px;
            }
        }
        
        /* Hero Section */
        .hero {
            position: relative;
            height: 100vh;
            background: url('https://via.placeholder.com/1600x900') no-repeat center center/cover;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
        }
        
        .hero-content h2 {
            font-size: 4rem;
            font-family: var(--heading-font);
            margin-bottom: 20px;
            animation: fadeIn 2s ease-out;
        }
        
        .hero-content p {
            font-size: 1.5rem;
            margin-bottom: 30px;
            animation: fadeIn 3s ease-out;
        }
        
        .cta-button {
            background-color: var(--primary-color);
            color: white;
            padding: 15px 30px;
            border-radius: 5px;
            font-size: 1.2rem;
            text-decoration: none;
            transition: background-color 0.3s ease;
        }
        
        .cta-button:hover {
            background-color: #e64a19;
        }
        
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--overlay-color);
        }
        
        
        /* Animations */
        @keyframes fadeIn {
            0% { opacity: 0; }
            100% { opacity: 1; }
        }
        .navline::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            height: 3px;
            background-color: #e64a19;
            transform: scaleX(0);
            transform-origin: bottom right;
            transition: transform 0.3s ease;
        }
    
        .navline:hover::after {
            transform: scaleX(1);
            transform-origin: bottom left;
        }
        
        
        /********** feb 2025 ******/
 @media only screen and (max-width: 800px) {
	
	header .nav-links.active{gap: 10px;height: 270px;justify-content: inherit;display: inline-block;text-align: left;border-bottom: 1px solid #ededed;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);}
	header .nav-links.active a{font-size: 1rem;padding: 6px;}
	.top-header{padding: 8px;}
	.top-header div{text-align: center;font-size: 15px;}
	.sci{position: fixed !important;z-index: 999;}
	.about_section .detail-box p,.professional_section .detail-box p,.about_section  p,.service_section  p{font-size: 17px !important;text-align: left !important;}
	#contact.info_section {padding: 40px 0px !important;min-height: 70vh;padding-top: 70px !important;}
	h1{font-size: 35px !important;font-weight: 600;}
	.professional_section,#about.about_section  {min-height:auto !important;padding: 70px 20px;}
	h1,h2{line-height: 40px !important;letter-spacing: 1.2px !important;}
	h2{font-size: 30px !important;}
	.layout_padding,.layout_paddings{padding-top: 60px !important;padding-bottom: 60px !important;padding-left: 20px !important;padding-right: 20px !important;}
	.contact_section .map_container{height:100% !important}
	
	.contact_top_section{padding: 70px 20px !important;height: 100vh !important;}
	
 }