        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-red: #d32f2f;
            --dark-red: #b71c1c;
            --primary-green: #2e7d32;
            --dark-green: #1b5e20;
            --light-green: #e8f5e9;
            --light-gray: #f5f5f5;
            --text-dark: #333;
            --text-light: #777;
            --btn-bg: var(--primary-red);
            --btn-color: #fff;
            --white: #ffffff;
            --transition: all 0.3s ease;
        }

        body {
            font-family: "Poppins", sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
            background-color: var(--white);
        }

        body.dark-mode{
            --primary-red:#ff5252;
            --dark-red:#b71c1c;
            --primary-green:#4caf50;
            --dark-green:#1b5e20;
            --bg-default: #000000;
            --bg-light: #121212;
            --text-dark: #e0e0e0;
            --text-light: #bbbbbb;
            --btn-bg: var(--primary-red);
            --btn-color:#fff;
            --card-bg: #121212;
            --header-bg:transparent;
            background-color: var(--bg-default);
            color: var(--text-dark);
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        


        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background-color: transparent;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }
        body.dark-mode .header {
            background-color: var(--bg-light);
            transition: var(--transition);
        }
        header.scrolled{
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo h1 {
            font-family: "Montserrat", sans-serif;
            font-size: 28px;
            font-weight: 800;
        }

        .logo span:first-child {
            color: var(--primary-red);
        }

        .logo span:last-child {
            color: var(--primary-green);
        }

        .logo-placeholder {
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, var(--primary-red), var(--primary-green));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 18px;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 30px;
        }

        nav ul li a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            font-size: 16px;
            transition: var(--transition);
            position: relative;
        }

        nav ul li a:hover {
            color: var(--primary-red);
        }

        nav ul li a::after {
            content: "";
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-green);
            transition: var(--transition);
        }

        nav ul li a:hover::after {
            width: 100%;
        }

        .mobile-toggle {
            display: none;
            font-size: 24px;
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        body.dark-mode .hero{
            background-color: var(--bg-default);
            color: var(--text-dark);
        }

        .hero-content {
            max-width: 900px;
            padding-top: 80px;
        }

        .hero h2 {
            font-family: "Montserrat", sans-serif;
            font-size: 4.5rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: var(--text-light);
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 14px;
            text-align: center;
        }

        .btn-primary {
            background-color: var(--primary-red);
            color: var(--white);
            border: 2px solid var(--primary-red);
            margin-right: 15px;
        }

        .btn-primary:hover {
            background-color: var(--dark-red);
            border-color: var(--dark-red);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(211, 47, 47, 0.3);
        }

        .btn-outline {
            background-color: transparent;
            color: var(--primary-green);
            border: 2px solid var(--primary-green);
        }

        .btn-outline:hover {
            background-color: var(--primary-green);
            color: var(--white);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
        }

        .dark-mode-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            border: none;
            border-radius: 50%;
            background-color: var(--primary-red);
            color: var(--white);
            font-size: 1.2rem;
            cursor: pointer;
            z-index:1001;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            transition: var(--transition);
        }

        .dark-mode-btn i {
            transition: color 0.3s ease , transform 0.3s ease;
        }

        .dark-mode-btn:hover{
            transform: translateY(-3px);
            background-color: var(--dark-red);
        }
        
        /* Sections Common Styles */
        section {
            padding: 60px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 30px;
        }

        .section-title h2 {
            font-family: "Montserrat", sans-serif;
            font-size: 2.5rem;
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }

        .section-title h2::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-red), var(--primary-green));
        }

        
        /* About Section */
        .about {
            background-color: var(--light-gray);
        }
        
        body.dark-mode .about {
            background-color: var(--bg-light);
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .about-text {
            flex: 1;
        }

        .about-text h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--primary-green);
        }

        .about-text p {
            margin-bottom: 20px;
            color: var(--text-light);
        }

        .about-stats {
            display: flex;
            margin-top: 30px;
            gap: 30px;
        }

        .stat-item {
            text-align: center;
        }

        .stat-item .number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-red);
            margin-bottom: 5px;
        }

        .stat-item .label {
            font-size: 1rem;
            color: var(--text-light);
        }

        .about-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: var(--transition);
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        /* Services Section */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            background-color: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }
        body.dark-mode .service-card {
            background-color:var(--card-bg) ;
            box-shadow :0 5px 15px rgba(255, 255, 255, 0.05);
        }
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .service-icon {
            background-color: var(--light-green);
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-green);
            font-size: 40px;
        }

        .service-content {
            padding: 30px;
        }

        .service-content h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--primary-green);
        }
        body.dark-mode .service-content h3 {
            color: var(--primary-green);
        }
        .service-content p {
            color: var(--text-light);
            margin-bottom: 20px;
        }
         /* Offers Section */
        .offers {
            background-color: var(--light-gray);
        }
        body.dark-mode .offers {
            background-color: var(--bg-default);
        }

        .whatsapp-qr-offer {
            display: fill;
            margin: 0 auto 0 auto;
            width: auto;
            gap: 15px;
            padding: 10px;
        }

        .offers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            padding: 30px 0;
        }

        .offer-card {
            background-color: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            position: relative;
        }

        .offer-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .offer-status {
            position: absolute;
            top: 15px;
            right: 15px;
            padding: 5px 15px;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            z-index: 2;
        }

        .status-active {
            background-color: var(--primary-red);
            color: var(--white);
        }

        .offer-thumbnail {
            height: 500px;
            background-color: var(--light-green);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: var(--primary-green);
            position: relative;
            overflow: hidden;
        }

        .offer-thumbnail::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.2;
        }

        .pdf-icon {
            font-size: 4rem;
            margin-bottom: 15px;
        }

        .offer-thumbnail h3 {
            font-size: 1.5rem;
            text-align: center;
            padding: 0 20px;
        }

        .offer-content {
            padding: 20px;
        }

        .offer-title {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: var(--text-dark);
        }

        .offer-desc {
            color: var(--text-light);
            margin-bottom: 15px;
            font-size: 0.95rem;
        }

        .offer-meta {
            display: flex;
            justify-content: space-between;
            border-top: 1px dashed #ddd;
            padding-top: 15px;
            margin-top: 15px;
        }

        .offer-date {
            display: flex;
            flex-direction: column;
        }

        .offer-date-label {
            font-size: 0.8rem;
            color: var(--text-light);
        }

        .offer-date-value {
            font-weight: 600;
            color: var(--primary-red);
        }

        .offer-actions {
            display: flex;
            gap: 10px;
        }

        .action-btn {
            display: inline-flex;
            align-items: center;
            padding: 8px 15px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            font-size: 0.9rem;
            border: none;
            cursor: pointer;
        }

        .btn-preview {
            background-color: var(--primary-green);
            color: var(--white);
        }

        .btn-preview:hover {
            background-color: var(--dark-red);
        }

        /* Contact Section */
        .contact {
            background-color: var(--white);
        }
        body.dark-mode .contact {
            background-color:var(--bg-light);
        }
        .contact-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 50px;
        }

        .contact-info h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--primary-green);
        }

        .contact-details {
            margin-bottom: 30px;
        }

        .contact-item {
            display: flex;
            margin-bottom: 20px;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background-color: var(--light-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-green);
            font-size: 20px;
            margin-right: 15px;
            flex-shrink: 0;
        }

        .contact-text h4 {
            font-size: 1.1rem;
            margin-bottom: 5px;
        }

        .contact-text p {
            color: var(--text-light);
        }

        .contact-form .form-group {
            margin-bottom: 20px;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-family: "Poppins", sans-serif;
            font-size: 16px;
            transition: var(--transition);
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: var(--primary-green);
            box-shadow: 0 0 0 2px rgba(46, 125, 50, 0.1);
        }

        .contact-form textarea {
            height: 150px;
            resize: vertical;
        }

        .g-map {
            margin-top: 30px;
            border: 1px solid var(--primary-red) ;
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
            color: var(--light-gray);
            padding: 60px 0 30px;
            transition: background 0.3s ease;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .footer-column-info {
            grid-column-start: 1;
            grid-column-end: 3;            
        }

        .footer-column h3 {
            font-size: 1.5rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h3::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--primary-red);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--white);
            padding-left: 5px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--white);
            transition: var(--transition);
        }

        .social-links a:hover {
            background-color: var(--primary-red);
            transform: translateY(-3px);
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
        }
        /* Social Media Sidebar */
        .social-sidebar {
            position: fixed;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            z-index: 1000;
            background: var(--white);
            border-radius: 10px 0px 0px 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 15px 0;
        }
        body.dark-mode .social-sidebar {
            background:transparent;
        }
        .social-icon {
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 10px;
            border-radius: 50%;
            color: var(--white);
            font-size: 16px;
            text-decoration: none;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
        .social-icon::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--primary-red);
            opacity: 0.9;
            z-index: -1;
            transition: var(--transition);
        }

        .social-icon:hover::after {
            opacity: 1;
            transform: scale(1.1);
        }

        .social-icon:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .social-icon i {
            transition: var(--transition);
        }

        .social-icon:hover i {
            transform: scale(1.2);
        }

        /* PDF Preview Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(255, 255, 255, 0.9);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }

        .modal-content {
            width: 90%;
            height: 90%;
            background-color: var(--white);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            border-radius: 10px;
        }

        .close-modal {
            background: var(--primary-red);
            position: fixed;
            text-align: center;
            width: 40px;
            height: 40px;
            top: 20px;
            right: 20px;
            border: none;
            color: var(--white);
            font-size: 1.5rem;
            cursor: pointer;
            border-radius: 50%;
            transition: var(--transition);
            z-index: 2010;
        }

        .close-modal:hover {
            background-color: var(--dark-red);
        }

        .pdf-preview {
            flex: 1;
            padding: 0px;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        #pdfModal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background-color: rgba(0, 0, 0, 0.5); /* dark overlay */
            z-index: 1000;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            overflow: hidden;
        }
        /* Close button */
        #pdfModal .close-modal {
            position: absolute;
            top: 15px;
            right: 20px;
            background: transparent;
            color: white;
            font-size: 2rem;
            border: none;
            cursor: pointer;
            z-index: 1010;
            transition: var(--transition);
        }
        #pdfModal .close-modal:hover {
            color: var(--primary-red);
        }
        .pdf-iframe {
            width: 90%;
            height: 90%;
            border: none;
            border-radius: 5px ;
            box-shadow: 0 0 15px rgba(0,0,0,0.5);
        }

        /* Responsive Styles */
        @media screen and (max-width: 992px) {
            .hero h2 {
                font-size: 2.8rem;
            }

            .about-content {
                flex-direction: column;
            }

            .about-image {
                order: -1;
            }
        }

        @media screen and (max-width: 768px) {
            .mobile-toggle {
                display: block;
            }

            nav {
                position: fixed;
                top: 100px;
                left: -100%;
                width: 80%;
                height: calc(100vh - 100px);
                background-color: var(--white);
                transition: var(--transition);
            }

            nav.active {
                left: 0;
            }

            nav ul {
                flex-direction: column;
                padding: 30px;
            }

            nav ul li {
                margin: 0 0 20px 0;
            }

            .hero h2 {
                font-size: 2.3rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .about-stats {
                flex-wrap: wrap;
            }
            
            .social-sidebar {
                display: none;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
        }

        @media screen and (max-width: 480px) {
            .hero h2 {
                font-size: 2rem;
            }

            .btn {
                display: block;
                width: 100%;
                text-align: center;
                margin-bottom: 15px;
            }

            .btn-primary {
                margin-right: 0;
            }
            
            .hero-buttons {
                display: flex;
                flex-direction: column;
                gap: 15px;
            }

            .footer-column {
                width: 100%;
            }
        }

        @keyframes blinker {
            50% {
                opacity: 0.1;
            }
        }
