        /* Reset and base styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            line-height: 1.6;
            min-height: 100vh;
            background: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);
            color: #6a7c81;
            -webkit-tap-highlight-color: transparent;
        }

        .container {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        li {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        /* Navigation Bar */
        .nav-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(240, 240, 238, 0.95);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 0.5rem 0;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 25px 20px; /* Padding for spacing */
        }
        .image-container {
            width: 250px;
            height: 90px;
            display: block;
        }
        .call-pulse {
            color: #db503b;
            font-size: 18px;
            font-weight: 500;
            text-decoration: underline;
            transition: all 0.3s ease;
        }

        .call-pulse:hover {
            color: #8a40e4;
            transform: scale(1.1);
        }
        .nav-logo {
            font-size: 1.8em;
            font-weight: bold;
            text-decoration: none;
            color: #333; /* Darker text */
            font-family: 'Playfair Display', serif; /* Example serif font */
        }
        .nav-links li {
            margin-left: 15px; /* Spacing between links */
        }
        .nav-links {
            list-style: none;
            display: flex;
            gap: 18px;
            background: rgba(179, 137, 137, 0.1);
            border-radius: 12px;
            padding: 6px 18px;
            box-shadow: 0 2px 8px rgba(59, 78, 140, 0.1);
            align-items: center;
            font-size: larger;
        }
        .nav-links a {
            text-decoration: none;
            color: #555; /* Slightly lighter text */
            padding: 8px 12px; /* Link padding */
            border-radius: 4px; /* Rounded corners */
            transition: background-color 0.3s ease; /* Smooth hover effect */
            font-family: 'Open Sans', sans-serif; /* Example sans-serif font */
        }

        .nav-links a:hover {
            background-color: #b99696; /* Light gray on hover */
        }

        /* Hero Section */
        .hero {
            height: 80vh;
            background-image: url("./hills.jpg");
            background-size: cover;
            background-position: bottom;
            position: relative;
            clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
            margin-top: 1.5rem;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(45deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-content {
            text-align: center;
            color: white;
            transform: translateY(-2rem);
            padding: 0 1rem;
        }

        .hero-content h1 {
            font-size: clamp(2.5rem, 8vw, 4.5rem);
            font-weight: 800;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            letter-spacing: 2px;
        }

        .hero-content p {
            font-size: clamp(1rem, 4vw, 1.5rem);
            text-transform: uppercase;
            letter-spacing: 4px;
            opacity: 0.9;
        }

        /* Main Content */
        .main-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem 1rem 6rem;
            position: relative;
            z-index: 1;
            margin-top: -4rem;
            width: 100%;
        }

        /* Card Styles */
        .card {
            background: linear-gradient(135deg, #fffbe6 0%, #f3e9ff 100%);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-radius: 1.5rem;
            box-shadow: 0 12px 36px rgba(138, 64, 228, 0.10), 0 2px 8px rgba(200, 127, 37, 0.08);
            padding: 2.5rem 2rem 2rem 2rem;
            margin-bottom: 2.5rem;
            border: 1.5px solid #e0d7f3;
            transition: transform 0.35s cubic-bezier(.4,1.6,.6,1), box-shadow 0.35s cubic-bezier(.4,1.6,.6,1);
            scroll-margin-top: 5rem;
            position: relative;
            overflow: hidden;
        }
        .card::before {
            content: "";
            position: absolute;
            top: 0; left: 0; right: 0; height: 7px;
            background: linear-gradient(90deg, #c87f25 0%, #8a40e4 100%);
            border-top-left-radius: 1.5rem;
            border-top-right-radius: 1.5rem;
            z-index: 1;
        }
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        }

        .card-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
            border-bottom: 2px solid #f0f0f0;
            padding-bottom: 1rem;
        }

        .card-header i {
            width: 2.5rem;
            height: 2.5rem;
            color: #e17055;
            background: #fff3e0;
            padding: 0.5rem;
            border-radius: 0.75rem;
            flex-shrink: 0;
        }

        .card h2 {
            font-size: clamp(1.5rem, 5vw, 1.75rem);
            font-weight: 700;
            color: #2d3436;
            letter-spacing: 0.5px;
        }

        .card p {
            color: #636e72;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        .card h5{
            font-size: 0.65rem;
            line-height: 1.2;
        }
        .templescript h4{
            font-size: 0.65rem;
            line-height: 1.2;
        }
        /* Contact Section */
        .contact-info {
            margin-top: 2rem;
            display: grid;
            gap: 1.5rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
            background: #fff;
            border-radius: 0.75rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            transition: transform 0.2s ease;
        }

        .contact-item:hover {
            transform: translateX(5px);
        }

        .contact-item i {
            width: 2rem;
            height: 2rem;
            color: #e17055;
            background: #fff3e0;
            padding: 0.4rem;
            border-radius: 0.5rem;
            flex-shrink: 0;
        }
        .contact-item p {
            font-size: 1rem;
            color: #2d3436;
            line-height: 1.6;
            word-break: break-word;
        }

        /* Footer */
        footer {
            background: linear-gradient(to right, #2d3436 0%, #000000 100%);
            color: white;
            text-align: center;
            padding: 2rem 1rem;
            margin-top: auto;
        }

        footer p {
            opacity: 0.9;
            font-size: 0.9rem;
            letter-spacing: 1px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-container {
                flex-direction: column;
                gap: 0.75rem;
                padding: 0.75rem;
            }

            .nav-links {
                flex-wrap: wrap;
                justify-content: center;
                gap: 0.75rem;
                padding-top: 10px;
            }

            .nav-links a {
                padding: 0.5rem 0.75rem;
                font-size: 0.9rem;
            }

            .hero {
                height: 100vh;
                clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
                margin-top: 6rem;
            }

            .main-content {
                margin-top: -2rem;
                padding: 1rem;
            }

            .card {
                padding: 1.5rem;
            }

            .contact-item {
                flex-direction: row;
                align-items: flex-start;
            }
        }

        /* Touch Device Optimizations */
        @media (hover: none) {
            .card:hover {
                transform: none;
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            }

            .contact-item:hover {
                transform: none;
            }
        }

        /* Small Screen Optimizations */
        @media (max-width: 380px) {
            .image-container,
  .call {
    display: block;        /* stack vertically */
    width: 100%;           /* take full width */
    margin: 10px auto;     /* add spacing and center */
    text-align: center;    /* center content */
  }

  .call {
    margin-top: 15px;      /* space between image & call */
  }

  .phone-icon {
    font-size: 18px;       /* keep it readable */
  }
            .nav-links {
                gap: 0.3rem;
            }
            .nav-container{
                flex-direction: column; /* Stack vertically */
                align-items: center;
            }
            .button-73 {
                font-size: 1.5rem;
                padding: .75rem 2rem;
              }
            .nav-links a {
                padding: 0.4rem 0.6rem;
                font-size: 0.85rem;
            }

            .card {
                padding: 1rem;
            }
            .hero {
                padding-top: 500px; /* Adjust this value */
            }
            .card-header {
                gap: 0.75rem;
                font-size: 3.25rem;
            }

            .contact-item {
                padding: 0.75rem;
            }

            .para {
                font-size: 0.55rem;
                line-height: 1.2;
            }
        }

        /* Style for the main wrapper */
        .wrapper {
            padding: 20px;
            background-color: #f5f5f5;
        }

        .wrapper .container {
            display: flex;
            flex-wrap: nowrap;
            gap: 20px;
            overflow-x: auto;
            padding: 20px;
            justify-content: flex-start;
        }
         /* CSS */
.button-73 {
    appearance: none;
    background-color: #e8ac6c;
    border-radius: 3em;
    border-style: none;
    box-sizing: border-box;
    color: #000000;
    cursor: pointer;
    display: inline-block;
    font-family: -apple-system,sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -.24px;
    margin: 0;
    outline: none;
    padding: .4rem;
    quotes: auto;
    text-align: center;
    text-decoration: none;
    transition: all .15s;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
  }
  
  .button-73:hover {
    background-color: #52db76;
    box-shadow: #FF6314 0 -6px 8px inset;
    transform: scale(1.025);
  }
  
  .button-73:active {
    transform: scale(1.025);
  }
        /* Styling for each image with its button */
        .wrapper .item {
            min-width: 200px;
            flex: 0 0 auto;
            text-align: center;
        }

        .wrapper .item img {
            width: 100%;
            max-width: 200px;
            border-radius: 8px;
        }
        .cars {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            gap: 20px;
            padding: 20px 0;
        }
        .svcs {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            gap: 20px;
            padding: 20px 0;
        }

        .card2 {
            background: linear-gradient(135deg, #f7e9d0 0%, #b89e81 100%);
            border-radius: 22px;
            overflow: hidden;
            width: 350px;
            box-shadow: 0 12px 32px rgba(200, 127, 37, 0.18), 0 2px 8px rgba(0,0,0,0.10);
            text-align: center;
            transition: transform 0.35s cubic-bezier(.4,1.6,.6,1), box-shadow 0.35s cubic-bezier(.4,1.6,.6,1);
            border: 2.5px solid #c87f25;
            padding-bottom: 22px;
            position: relative;
        }

        .card2::before {
            content: "";
            position: absolute;
            top: 0; left: 0; right: 0; height: 7px;
            background: linear-gradient(90deg, #c87f25 0%, #bba7e0 100%);
            border-top-left-radius: 22px;
            border-top-right-radius: 22px;
            z-index: 1;
        }

        .card2 img {
            width: 100%;
            height: auto;
            display: block;
            border-bottom: 2px solid #c87f25;
            border-radius: 0 0 18px 18px;
            box-shadow: 0 4px 12px rgba(200, 127, 37, 0.08);
        }

        .card2 .name {
            font-size: 1.6rem;
            font-weight: 700;
            color: #8a40e4;
            margin-top: 18px;
            margin-bottom: 8px;
            letter-spacing: 1px;
            font-family: 'Playfair Display', serif;
        }

        .card2 .price {
            font-size: 1.15rem;
            font-weight: bold;
            color: #c87f25;
            margin-bottom: 10px;
        }

        .card2 .features {
            margin: 12px 0;
        }

        .card2 .features li {
            font-size: 1rem;
            color: #6a7c81;
            margin-bottom: 6px;
            display: flex;
            align-items: center;
            gap: 7px;
        }

        .card2 .features li img {
            width: 22px;
            height: 22px;
            margin-right: 4px;
        }

        .card2 .book-now {
            background: linear-gradient(90deg, #8a40e4 0%, #c87f25 100%);
            color: #fff;
            border: none;
            border-radius: 22px;
            padding: 12px 28px;
            font-size: 1.08rem;
            font-weight: 700;
            margin-top: 18px;
            cursor: pointer;
            box-shadow: 0 2px 8px rgba(138, 64, 228, 0.10);
            transition: background 0.3s, transform 0.2s;
        }

        .card2 .book-now:hover {
            background: linear-gradient(90deg, #c87f25 0%, #8a40e4 100%);
            transform: scale(1.05);
        }
        .card2:hover {
            transform: translateY(-8px) scale(1.03);
            box-shadow: 0 16px 40px rgba(200, 127, 37, 0.22), 0 4px 12px rgba(0,0,0,0.10);
        }
        .templescript{
            text-align: left;
            padding: 20px;
        }
        .card3 {
            padding-top: 10px;
            background: linear-gradient(135deg, #f8fafc 0%, #e9e4f0 100%);
            border-radius: 22px;
            overflow: hidden;
            width: 350px;
            box-shadow: 0 8px 24px rgba(138, 64, 228, 0.13), 0 2px 8px rgba(0,0,0,0.08);
            text-align: center;
            transition: transform 0.35s cubic-bezier(.4,1.6,.6,1), box-shadow 0.35s cubic-bezier(.4,1.6,.6,1);
            border: 2px solid #bba7e0;
            position: relative;
        }

        .card3:hover {
            transform: translateY(-10px) scale(1.04);
            box-shadow: 0 16px 40px rgba(138, 64, 228, 0.22), 0 6px 18px rgba(0,0,0,0.12);
            border-color: #8a40e4;
        }

        .card3::before {
            content: "";
            position: absolute;
            top: 0; left: 0; right: 0; height: 6px;
            background: linear-gradient(90deg, #8a40e4 0%, #c87f25 100%);
            border-top-left-radius: 22px;
            border-top-right-radius: 22px;
            z-index: 1;
        }
        .card4 {
            padding-top: 5px;
            background-color: white;
            border-radius: 15px;
            overflow: hidden;
            width: 350px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .image-container img {
            width: 300px;
            height: 130px;
            display: block;
          }
        .card2 img {
            width: 100%;
            height: auto;
            display: block;
        }
        .card3 img {
            width: 100%;
            height: auto;
            display: block;
            clip-path: ellipse(50% 50%);
        }
        .card4 img {
            width: 100%;
            height: auto;
            display: block;
            clip-path: ellipse(50% 45%);
        }

        .card-content {
            padding: 20px;
        }

        .price {
            font-size: 1.2rem;
            font-weight: bold;
            color: #e17055;
            margin-bottom: 10px;
        }

        .name {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .rating {
            color: #ffc107;
            margin-bottom: 10px;
        }

        .features {
            list-style: none;
            padding: 0;
            margin: 10px 0;
        }

        .features li {
            display: flex;
            align-items: center;
            margin-bottom: 5px;
            font-size: 0.9rem;
        }

        .features li img {
            width: 20px;
            height: 20px;
            margin-right: 5px;
        }

        .book-now {
            background-color: #4CAF50; /* Green background */
            color: white;
            padding: 10px 15px;
            text-decoration: none;
            border-radius: 5px;
            display: inline-block; /* Make it a block-level element */
            width: fit-content; /* Adjust width to content */
            margin: 20px auto 0; /* Center horizontally with margin */
            transition: background-color 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        .book-now:hover {
            background-color: #3e8e41;
        }
