:root {
    --primary-color: #4a90e2;
    --secondary-color: #50c878;
    --text-color: #2d3436;
    --light-gray: #f9f9f9;
    --dark-gray: #636e72;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: #fff;
}



/*scroll top*/


 .scroll-to-top {
            position: fixed;
            bottom: 85px;
            right: 20px;
            background-color: #007bff;
            color: white;
            border: none;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            font-size: 24px;
            cursor: pointer;
            display: none;
              box-shadow: 0 5px 15px rgba(0, 0, 0, 0.7);
            transition: opacity 0.3s;
            z-index: 999999;
        }

        .scroll-to-top:hover {
            background-color: #0056b3;
        }

        .scroll-to-top.visible {
            display: block;
        }

/* CSS (styles.css) */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    z-index: 1000;
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

.close-btn:hover {
    color: #ff0000;
}

.modal  h2 {
    margin-top: 0;
    color: #333;
        text-align: center;
}

.form-group {
    margin-bottom: 15px;
        margin-bottom: 15px;
    display: flex
;
    align-items: center;
}

.modal  label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

.modal input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
        outline: none;
    border: none;
    border-bottom: 1px solid #3980d7;
    border-radius: 0px;
    width: 70%;
}

.modal  input:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}

.submit-btn {
    width: 100%;
    padding: 12px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #218838;
}
/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 2rem;
}

.logo h1 {
font-size: 1rem;
    color: var(--text-color);
    padding: 0px 7px;
}

.logo span {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.order-btn {
    padding: 0.5rem 0.7rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.6);
}

.order-btn:hover {
    transform: translateY(-2px);
}

.cart {
    position: relative;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--dark-gray);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6rem 2rem 2rem;
    background: var(--light-gray);
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 2rem;
}

.hero-buttons a {
    padding: 0.4rem 1rem;
    margin-right: 0.5rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
        text-decoration: none;
}

.primary-btn {
    background: var(--primary-color);
    color: white;
}

.secondary-btn {
    background: var(--secondary-color);
    color: white;
}

.hero-buttons a:hover {
    transform: translateY(-2px);
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1)
}

.hero-image img {
    max-width: 500px;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Features */
.features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 4rem 2rem;
    flex-wrap: wrap;
}

.feature {
    text-align: center;
    max-width: 300px;
}

.feature i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature h3 {
    margin-bottom: 0.5rem;
}

/* Services */
.menu {
    padding: 4rem 2rem;
    text-align: center;
}

.menu h2 {
    margin-bottom: 2rem;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.menu-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.menu-item-content {
    padding: 1rem;
    text-align: left;
}

.menu-item-content h3 {
    margin-bottom: 0.5rem;
}

.menu-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.add-to-cart {
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
}

/* Training */
.special-offer {
    padding: 4rem 2rem;
    background: var(--light-gray);
    text-align: center;
}

.special-content {
    max-width: 800px;
    margin: 0 auto;
}

.special-content h2 {
    margin-bottom: 1rem;
}

.special-content h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.special-content p {
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
}

.training-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    gap: 2rem;
}

.training-details img {
    max-width: 300px;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

.training-list {
    text-align: left;
}

.training-list h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.training-list ul {
    list-style-type: disc;
    padding-left: 1.5rem;
}

.training-list li {
    margin-bottom: 0.5rem;
}

/* About */
.about {
    display: flex;
    padding: 4rem 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.about-content {
   flex: 1;
    padding: 2px;
}

.about-content h2 {
    margin-bottom: 1rem;
}

.stats {
   display: flex
;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat h3 {
    color: var(--primary-color);
    font-size: 2rem;
}

.about-image img {
    max-width: 500px;
    width: 100%;
    border-radius: 18px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding: 4rem 2rem;
    background: var(--text-color);
    color: white;
}

.footer-section h3 {
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
}

.social-links a {
    color: white;
    margin-right: 1rem;
    font-size: 1.5rem;
}

.footer-bottom {
    text-align: center;
    padding: 1rem;
    background: #222;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .navbar {
               padding: 1rem 0.3rem;
    }

    .nav-links.show {
        display: flex;
        flex-direction: column;
        text-align: center;
        justify-content: center;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: white;
        padding: 2rem;
        z-index: 99;
        background: #EEAECA;
background: radial-gradient(circle, rgba(238, 174, 202, 1) 0%, rgba(148, 187, 233, 1) 100%);
    }

    .hamburger {
        display: flex;
        box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.3);
        padding: 5px;
        border-radius: 4px;
        z-index: 999;
    }

    .hero,
    .about {
        flex-direction: column;
        padding: 4rem 1rem;
    }

    .hero-image img,
    .about-image img {
        max-width: 100%;
    }

    .training-details {
        flex-direction: column;
    }
}

/* Modal Styles */

.modal {

    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

.close-btn:hover {
    color: #ff0000;
}

.modal  h2 {
    margin-top: 0;
    color: #333;
}

.form-group {
    margin-bottom: 15px;
}

.modal  label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

.modal input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
        outline: none;
    border: none;
    border-bottom: 1px solid #3980d7;
    border-radius: 0px;
    width: 70%;
}

.modal  input:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}

.submit-btn {
    width: 100%;
    padding: 12px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #218838;
}
/*modal*/
.modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }
        .modal-content {
            background: white;
            padding: 20px;
            border-radius: 5px;
            width: 90%;
            max-width: 500px;
        }
        .close-btn {
            float: right;
            cursor: pointer;
            font-size: 20px;
        }
        .form-group {
            margin-bottom: 15px;
        }
        .form-group label {
            display: block;
        }
        .form-group input, .form-group textarea {
            width: 100%;
            padding: 8px;
            box-sizing: border-box;
        }
        .submit-btn {
            padding: 10px 20px;
            background: #007BFF;
            color: white;
            border: none;
            cursor: pointer;
        }
        .order-btn {
            padding: 10px 20px;
            background: #28a745;
            color: white;
            border: none;
            cursor: pointer;
        }

