
        /* Basic Setup and Variables */
        :root {
            --primary-red: #E82950;
            --bg-light: #fff;
            --text-dark: #333;
            --text-light: #fff;
            --font-family: 'Poppins', sans-serif;
        }
html,body{overflow-x:hidden;}

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

        body {
            font-family: var(--font-family);
            line-height: 1.6;
            color: var(--text-dark);
            background-color: var(--bg-light);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .visually-hidden {
            position: absolute;
            width: 1px;
            height: 1px;
            margin: -1px;
            padding: 0;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            border: 0;
        }

        /* --- 1. Header & Navigation (Modern: Logo Left, Menu Center) --- */
        header {
            background-color: var(--bg-light); 
            border-bottom: 1px solid #eee; 
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        nav {
            display: flex;
            justify-content: space-between; 
            align-items: center;
            position: relative;
        }

        .logo-container img {
		
            width: 25%;
        }

        nav ul {
            list-style: none;
            display: flex;
            position: absolute; 
            left: 50%;
            transform: translateX(-50%); 
        }

        nav ul li {
            margin: 0 15px;
        }

        nav ul li a {
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 600; 
            transition: color 0.3s;
        }

        nav ul li a:hover, nav ul li a.active {
            color: var(--primary-red);
        }

        /* --- 2. Banner Section (Simple Red) --- */
        

        .hero-logo img {
            max-width: 300px;
            height: auto;
            margin-bottom: 20px;
        }

        .hero-text h1 {
            font-size: 2.5em; 
            font-weight: 700;
            margin-bottom: 10px;
        }

        .hero-text p {
            font-size: 1.2em;
            font-weight: 400;
            max-width: 800px;
            margin: 0 auto;
        }

        /* --- 3. About Section (Modern) --- */
        #about {
            padding: 60px 20px; 
            background-color: var(--bg-light);
        }

        #about h2 {
            color: var(--text-dark);
            text-align: center;
            margin-bottom: 30px;
            font-size: 2.2em;
            font-weight: 700;
            position: relative;
        }
        
        #about h2::after { 
            content: '';
            display: block;
            width: 50px;
            height: 3px;
            background: var(--primary-red);
            margin: 10px auto 0;
        }

        #about p {
            margin-bottom: 20px;
            font-weight: 400;
            text-align: justify;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .highlight {
            font-weight: 600;
            color: var(--primary-red);
        }
        
        /* --- 4. Contact Section (ORIGINAL SIMPLE RED/WHITE STYLE) --- */
        #contact {
            padding: 60px 20px; 
            background-color: var(--primary-red); /* Full Red Background */
            color: var(--text-light); /* White Text */
            text-align: center;
        }

        #contact h2 {
            color: var(--text-light); 
            margin-bottom: 30px;
            font-size: 2em; 
        }

        .contact-details {
            display: block; 
            max-width: 800px;
            margin: 0 auto 30px;
        }

        .contact-details p {
            margin-bottom: 10px;
            font-size: 1.1em;
            /* Note: font is Poppins, but styling is simple */
        }

        .contact-details strong {
            display: initial;
            font-weight: 700;
            color: var(--text-light); 
        }

        .contact-details a {
            color: var(--text-light);
            text-decoration: none!important;
            font-weight: 600;
        }

        .contact-details a:hover {
            text-decoration: underline;
            opacity: 0.9;
        }

        .map-placeholder iframe {
            width: 80%;
            height: 400px;
            border: 0;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.3);
        }


        /* --- 5. Footer (ORIGINAL SIMPLE RED/WHITE STYLE) --- */
        footer {
            background-color: var(--primary-red); /* Full Red Background */
            color:#fff;
            text-align: center;
            padding: 20px 0;
            font-size: 0.9em;
            font-weight: 400;
            border-top: 1px solid #fff;
        }
        .email_header {color:#000;font-size: 15px;text-decoration: none!important;}
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 40px;
            right: 40px;
            background-color: #25d366; /* WhatsApp Green */
            color: var(--text-light);
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 2px 2px 3px #999;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease-in-out;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
        }

        @media (max-width: 768px) {
            .whatsapp-float {
                width: 50px;
                height: 50px;
                bottom: 20px;
                right: 20px;
            }
            .whatsapp-float i {
                width: 25px;
                height: 25px;
            }
        }
        /* Media Query for smaller screens */
        @media (max-width: 768px) {
            nav {
                flex-direction: column;
            }
            nav ul {
                position: static;
                transform: none;
                margin-top: 15px;
            }
        }


@media(min-width:300px) and (max-width:767px){
.navbar-brand {display: inline!important;}
.toggle_btn{line-height: 1.5;
    float: right;
    border: 2px solid #ff004f;
    margin-top: 10px;
}}
