 body {
            font-family: 'Arial', sans-serif;
            margin: 0;
            padding: 0;
            background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460, #533483);
            background-size: 400% 400%;
            animation: gradientShift 15s ease infinite;
            color: #ffffff;
            line-height: 1.6;
            font-size: 14px; /* Base font smaller for mobile */
        }
        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        header {
            background: rgba(0, 0, 0, 0.9);
            padding: 10px 15px; /* Smaller padding on mobile */
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: background 0.3s;
        }
        header.scrolled {
            background: rgba(0, 0, 0, 0.95);
        }
        .logo {
            font-size: 1.5em; /* Smaller logo base */
            font-weight: bold;
            color: #ffd700;
            text-decoration: none;
            display: inline-block;
            margin: 0;
        }
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding-right: 20px; /* Added right margin/padding to prevent menu from hugging the right edge */
        }
        .nav-links {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
            margin-right: 10px; /* Extra right margin for nav-links */
        }
        .nav-links li {
            margin-left: 15px; /* Smaller margins */
        }
        .nav-links li:last-child {
            margin-right: 15px; /* Right margin for last item */
        }
        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-size: 1em; /* Smaller nav font */
            transition: color 0.3s;
        }
        .nav-links a:hover {
            color: #ffd700;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            margin-right: 15px; /* Added extra right margin to burger icon */
        }
        .hamburger span {
            width: 20px; /* Smaller hamburger */
            height: 2px;
            background: #ffffff;
            margin: 3px 0;
            transition: 0.3s;
        }
        .hero {
            background: url('img/1.jpg') no-repeat center center/cover;
            height: 400px;
            text-align: center;
            padding: 120px 15px 80px; /* Adjusted for smaller screens */
            color: #ffffff;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
            margin-top: 50px; /* Account for fixed header */
        }

        .hero h1 {
            font-size: 2.5em; /* Smaller heading base */
            margin: 0 0 15px;
            animation: fadeInUp 1s ease;
            color: #ffd700;
        }
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        h1{
            text-align: center;
            font-size: 4em;
            color: #ffd700;
        }
        .hero p {
            font-size: 1.1em;
            margin: 0 0 25px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            color: #e0e0e0;
        }
        .cta-btn {
            background: #ffd700;
            color: #000000;
            padding: 12px 30px; /* Slightly smaller */
            font-size: 1.1em;
            font-weight: bold;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: background 0.3s, transform 0.3s;
            text-decoration: none;
            display: inline-block;
            animation: fadeInUp 1s ease 0.3s both;
        }
        .cta-btn:hover {
            background: #ffed4e;
            transform: scale(1.05);
        }
        .services {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Smaller cards */
            gap: 25px;
            padding: 70px 15px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .service-card {
            background: rgba(255, 255, 255, 0.1);
            padding: 30px 15px; /* Smaller padding */
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 15px 30px rgba(0,0,0,0.3);
            transition: transform 0.3s, box-shadow 0.3s;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 215, 0, 0.2);
        }
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
        }
        .service-card h3 {
            color: #ffd700;
            font-size: 1.5em; /* Smaller */
            margin-bottom: 12px;
        }
        .service-card p {
            font-size: 0.95em;
            color: #e0e0e0;
        }
        .service-icon {
            font-size: 3em; /* Smaller icons */
            margin-bottom: 15px;
            color: #ffd700;
        }
        .locations {
            background: rgba(255, 255, 255, 0.05);
            padding: 60px 15px;
            text-align: center;
            backdrop-filter: blur(10px);
            border-top: 1px solid rgba(255, 215, 0, 0.1);
            border-bottom: 1px solid rgba(255, 215, 0, 0.1);
        }
        .locations h2 {
            font-size: 2em;
            color: #ffd700;
            margin-bottom: 30px;
        }
        .location-btns {
            display: grid;
             grid-template-columns: repeat(5, 1fr);
            gap: 15px;
            width: 100%;
            margin: 0 auto;
        }
        .location-btn {
            background: #ffd700;
            color: #000000;
            padding: 12px 20px;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            font-size: 1em;
            font-weight: bold;
            transition: background 0.3s, transform 0.3s;
            text-decoration: none;
            display: block;
        }
        .location-btn:hover {
            background: #ffed4e;
            transform: scale(1.05);
        }
        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
            padding: 60px 15px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .gallery img{
            height: 100%;
            width: 100%;
        }
        .gallery-item {
            height: 400px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 10px 20px rgba(0,0,0,0.3);
            transition: transform 0.3s;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 215, 0, 0.2);
        }
        .gallery-item:hover {
            transform: scale(1.05);
        }
        .gallery-item::before {
            
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: #ffd700;
            font-size: 1em;
        }
        .about {
            background: rgba(255, 255, 255, 0.05);
            padding: 60px 15px;
            text-align: center;
            width: 92%;
            margin: 0 auto 50px; /* Added bottom margin */
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 215, 0, 0.1);
            border-radius: 15px;
        }
        .about h2 {
            font-size: 2em; /* Smaller */
            color: #ffd700;
            margin-bottom: 20px;
        }
        .about p {
            font-size: 1em;
            color: #e0e0e0;
        }
        h3{
            text-align: center;
            font-size: 50px;
             color: #ffd700;
        }
          .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Smaller cards */
            gap: 25px;
            padding: 0px 15px;
            max-width: 1200px;
            margin: 0 auto;
            margin-bottom: 20px;
        }
        .feature-card {
            background: rgba(255, 255, 255, 0.1);
            padding: 30px 15px; /* Smaller padding */
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 15px 30px rgba(0,0,0,0.3);
            transition: transform 0.3s, box-shadow 0.3s;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 215, 0, 0.2);
        }
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
        }
        .feature-card h4 {
            color: #fdfcfb;
            font-size: 1.5em; /* Smaller */
            margin-bottom: 12px;
        }

        .feature-icon {
            font-size: 3em; /* Smaller icons */
            margin-bottom: 15px;
            color: #ffd700;
        }
        footer {
            background: rgba(0, 0, 0, 0.9);
            color: #ffffff;
            text-align: center;
            padding: 25px 15px;
            font-size: 0.9em;
        }
        footer a {
            color: #ffd700;
            text-decoration: none;
        }
        /* Sticky Blinking btns */
        .sticky-btns {
            position: fixed;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 0; /* Removed gap */
            z-index: 1001;
        }
        .sticky-btn {
            width: 50px;
            height: 50px;
            border-radius: 0; /* Removed border radius for full squares */
            border: none;
            cursor: pointer;
            font-size: 1.5em;
            color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.5);
            transition: transform 0.3s;
            /* Removed blink animation */
        }
        .sticky-btn:hover {
            transform: scale(1.1);
        }
        .call-btn {
            background: #8B0000;
        }
        .whatsapp-btn {
            background: #25D366;
        }
        /* Enhanced Mobile Responsiveness */
        @media (max-width: 768px) {
            body { font-size: 13px; }
            .logo { font-size: 1.3em; }
            nav { padding-right: 15px; } /* Adjusted right padding for mobile */
            .nav-links {
                position: fixed;
                left: -100%;
                top: 60px; /* Adjusted for smaller header */
                flex-direction: column;
                background-color: rgba(0, 0, 0, 0.95);
                width: 100%;
                text-align: center;
                transition: 0.3s;
                padding: 15px 0;
                margin-right: 0; /* Reset for mobile */
            }
            .nav-links.active {
                left: 0;
            }
            .nav-links li {
                margin: 8px 0;
            }
            .nav-links a { font-size: 0.95em; }
            .hamburger {
                display: flex;
                margin-right: 10px; /* Adjusted for mobile */
            }
            .hamburger.active span:nth-child(2) {
                opacity: 0;
            }
            .hamburger.active span:nth-child(1) {
                transform: translateY(6px) rotate(45deg);
            }
            .hamburger.active span:nth-child(3) {
                transform: translateY(-6px) rotate(-45deg);
            }
            .hero h1 { font-size: 2em; }
            .hero p { font-size: 1em; }
            .services { 
                grid-template-columns: 1fr; 
                padding: 50px 10px; 
                gap: 20px;
            }
            .service-card { padding: 25px 10px; }
            .service-card h3 { font-size: 1.3em; }
            .service-icon { font-size: 2.5em; }
            .locations { padding: 50px 10px; }
            .locations h2 { font-size: 1.7em; }
            .location-btns { grid-template-columns: repeat(2, 1fr); gap: 10px; }
            .gallery { 
                grid-template-columns: repeat(2, 1fr); 
                padding: 50px 10px; 
                gap: 10px;
            }
            .gallery-item { height: 150px; }
            .about { padding: 50px 10px; margin-bottom: 40px; }
            .about h2 { font-size: 1.7em; }
            .sticky-btns {
                right: 10px;
                gap: 0; /* No gap on mobile */
            }
            .sticky-btn {
                width: 45px;
                height: 45px;
                font-size: 1.3em;
                border-radius: 0; /* Full square on mobile */
            }
        }
        @media (max-width: 480px) {
            body { font-size: 12px; }
            header { padding: 8px 10px; }
            .logo { font-size: 1.2em; }
            nav { padding-right: 10px; }
            .hamburger { margin-right: 5px; }
            .hero { 
                padding: 100px 10px 60px; 
                margin-top: 45px;
                height: 150px;
            }
            .hero h1 { font-size: 1.7em; }
            .hero p { font-size: 0.95em; }
            .cta-btn { 
                padding: 10px 25px; 
                font-size: 1em;
            }
            .services { padding: 40px 10px; }
            .service-card h3 { font-size: 1.2em; }
            .service-icon { font-size: 2em; }
            .locations h2 { font-size: 1.5em; }
            .location-btns { 
                grid-template-columns: 1fr; 
                max-width: 300px;
            }
            .gallery { 
                grid-template-columns: 1fr; 
                padding: 40px 10px;
            }
            .gallery-item { height: 180px; }
            .about h2 { font-size: 1.5em; }
            .about { padding: 40px 10px; margin-bottom: 30px; }
            footer { padding: 20px 10px; }
            .sticky-btns { right: 5px; gap: 0; }
            .sticky-btn { width: 40px; height: 40px; font-size: 1.2em; border-radius: 0; }
        }
        @media (max-width: 320px) {
            body { font-size: 11px; }
            .hero h1 { font-size: 1.5em; }
            .hero p { font-size: 0.9em; }
            .service-card { padding: 20px 8px; }
            .locations { padding: 40px 8px; }
            .gallery { padding: 40px 8px; }
            .gallery-item { height: 160px; }
            .about { margin-bottom: 20px; }
            .sticky-btns { gap: 0; }
            .sticky-btn { width: 35px; height: 35px; font-size: 1.1em; border-radius: 0; }
        }