* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
html {
  scroll-behavior: smooth;
}

        body {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            background-color: #f8f9fa;
        }

        /* Header */
        header {
            padding: 15px 30px;
            width: 100%;
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: scroll;
            top: 0;
            z-index: 100;
        }

        .header-content {
            display: flex;
            width: 100%;
            justify-content: space-between;
            align-items: center;
        }

        .logo-img {
            width: 80px;
            height: auto;
        }

        /* Navbar */
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
            flex-wrap: wrap;
            justify-content: center;
        }
        
        nav a {
            color: #2c3e50;
            text-decoration: none;
            font-weight: 500;
            font-size: 18px;
            padding: 5px 0;
            position: relative;
            transition: color 0.3s;
        }
        
        /* Hover underline fade-in effect */
        nav a::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #1a73e8;
            opacity: 0;
            transform: scaleX(0);
            transition: opacity 0.3s ease, transform 0.3s ease;
            transform-origin: center;
        }
        
        nav a:hover {
            color: #1a73e8;
        }
        
        nav a:hover::after {
            opacity: 1;
            transform: scaleX(1);
        }

        .username {
            background-color: #e8f0fe;
            border-radius: 5px;
            color: #1a73e8;
            font-size: 16px;
            font-weight: 700;
            padding: 10px 15px;
        }

        main {
            flex: 1;
        }

        .container {
            display: flex;
            min-height: 80vh;
            width: 90vw;
            margin: 0 auto;
            align-items: center;
            justify-content: space-between;
            padding: 40px 0;
        }

        .left-div, .right-div {
            flex: 1;
            padding: 20px;
        }

        .left-div h1 {
            color: #2c3e50;
            margin-bottom: 20px;
            font-size: 2.5rem;
            width: 90%;
            line-height: 1.2;
        }

        .random {
            color: #1a73e8;
        }

        .para {
            font-size: 1.2rem;
            width: 90%;
            margin-bottom: 30px;
            line-height: 1.6;
            color: #555;
        }

        .btn {
            display: inline-block;
            padding: 15px 30px;
            background-color: #1a73e8;
            color: white;
            border-radius: 30px;
            border: none;
            font-size: 18px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .btn:hover {
            background-color: #0d62c9;
        }

        .right-div-img {
            width: 100%;
            height: auto;
            max-height: 500px;
            object-fit: contain;
            border-radius: 8px;
        }

        .achievements {
            background-color: #1a73e8;
            padding: 50px 0;
            display: flex;
            justify-content: space-around;
            align-items: center;
            color: white;
            text-align: center;
        }

        .achievement-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            color: white;
        }

        .achievement-item h3 {
            font-size: 2.5rem;
            margin-bottom: 10px;
        }

        .achievement-item p {
            font-size: 1.2rem;
        }

        .services {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 10px;
            padding: 50px;
            background-color: #f8f9fa;
        }

        .our-services {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .our-services h2 {
            color: #2c3e50;
            margin-bottom: 15px;
            font-size: 1.8rem;
        }

        .add-border-spacing-before-line-break {
            color: #5f6368;
            padding-bottom: 20px;
            margin-bottom: 20px;
            font-size: 16px;
        }

        .service-list {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 10px;
            margin-bottom: 20px;
        }

        .service-item {
            background-color: #f8f9fa;
            border-radius: 8px;
            padding: 10px;
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            gap: 15px;
        }

        .service-item p:first-child {
            font-weight: 600;
            color: #2c3e50;
            font-size: 18px;
        }

        .price {
            color: #1a73e8;
            font-weight: 700;
            font-size: 1.2rem;
        }

        .add-to-cart-btn {
            background-color: #1a73e8;
            color: white;
            border: none;
            padding: 10px 15px;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s;
            font-weight: 600;
            width: 120px;
        }

        .add-to-cart-btn:hover {
            background-color: #0d62c9;
        }

        .remove-btn {
            background-color: #ea4335;
        }

        .remove-btn:hover {
            background-color: #d33426;
        }

        .info {
            border-top: 1px solid #ddd;
            margin-top: 20px;
            padding-top: 20px;
            color: #5f6368;
            font-style: italic;
        }

        .cart-summary {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .added-items h3, .book-now h3 {
            color: #2c3e50;
            margin-bottom: 20px;
            font-size: 1.5rem;
        }

        .cart-table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 20px;
        }

        .cart-table th {
            background-color: #f8f9fa;
            font-weight: 600;
            text-align: left;
            padding: 12px 15px;
            border-bottom: 2px solid #ddd;
        }

        .cart-table td {
            padding: 12px 15px;
            border-bottom: 1px solid #ddd;
        }

        .total-amount {
            text-align: right;
            font-size: 1.2rem;
            font-weight: 700;
            color: #2c3e50;
            margin-top: 20px;
            padding-top: 15px;
            border-top: 2px solid #ddd;
        }

        .book-now form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .book-now label {
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 5px;
        }

        .book-now input, #name123 {
            padding: 12px 15px;
            border: 1px solid black;
            border-radius: 5px;
            font-size: 16px;
            margin-bottom: 10px;
        }

        .book-now-btn {
            background-color: #1a73e8;
            color: white;
            border: none;
            padding: 15px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 18px;
            font-weight: 600;
            transition: background-color 0.3s;
            margin-top: 10px;
        }

        .book-now-btn:hover {
            background-color: #0d62c9;
        }

        .quality-icon {
            width: 70px;
            height: 70px;
        }

        .quality-contents {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            color: #2c3e50;
            padding: 50px;
            gap: 40px;
        }

        .newsletter {
            background-color: #1a73e8;
            color: white;
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            padding: 30px 20px;         
        }

        #name, #newsletter-email {
            padding: 10px 10px;
            border: none;
            font-size: 16px;
        }

        .subscribe-btn {
            background-color: white;
            color: #0d62c9;
            border: none;
            padding: 10px;
            cursor: pointer;
            font-size: 16px;
            font-weight: 600;
            transition: background-color 0.3s;
            margin-top: 10px;
        }

        .footer-content {
            background-color: #f1f1f1;
            display: grid;
            grid-template-columns: 1fr  1fr 1fr 1fr;
            align-items: center;
            padding: 20px 50px;

        }

        .social-icon {
            width: 30px;
            height: 30px;
            margin-left: 10px;
        }

        .footer-description {
            color: black;
            font-size: 14px;
            margin: 0;
            text-align: center;
            background-color: #f1f1f1;
            font-size: 15px;
            padding-bottom: 10px;
        }

        .footer-logo {
            padding: 30px 0;
        }

        ul li, .imp-links a{
            list-style: none;
            padding: 0;
            color: black;
            text-decoration: none;
        }

        ul li:hover, .imp-links a:hover {
            color: #1a73e8;
        }


        @media (max-width: 992px) {
    .services {
        grid-template-columns: 1fr;
    }

    .container {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        gap: 15px;
    }

    .header-content {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 600px) {
    .left-div h1 {
        font-size: 1.8rem;
    }

    .para {
        font-size: 1rem;
    }

    .btn {
        font-size: 16px;
        padding: 12px 20px;
    }
}