/* Mobile CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #070707;
    overflow-x: hidden;
    position: relative;
    font-size: 14px; /* Smaller font size for better compactness */
}

/* Header Section */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 10px; /* Reduced padding */
    background-color: #000;
    color: #fff;
}

.menu-icon {
    display: flex;
    flex-direction: column;
    gap: 3px; /* Reduced gap for compactness */
    cursor: pointer;
    font-size: 24px; /* Smaller icon */
}

.menu-icon span {
    width: 28px;
    height: 4px;
    background-color: white;
    transition: 0.3s;
}

.menu-icon:hover span {
    background-color: #f39c12;
}

.logo {
    font-size: 20px; /* Smaller font */
    font-weight: 600;
    color: #ffffff;
    display: flex;
    align-items: center;
}

/* Side Navigation */
.side-nav {
    position: fixed;
    top: 0;
    left: -250px;
    height: 100%;
    width: 250px;
    background-color: #050505;
    padding-top: 60px;
    transition: transform 0.3s ease;
}

.side-nav.open {
    transform: translateX(250px);
}

.side-nav ul {
    list-style-type: none;
    padding: 0;
}

.side-nav ul li {
    padding: 10px 12px; /* Reduced padding */
    border-bottom: 2px solid white;
}

.side-nav ul li a {
    color: white;
    font-size: 14px; /* Smaller font size for mobile */
    display: block;
    text-decoration: none;
    padding: 6px 0; /* Reduced padding */
    transition: background-color 0.3s ease;
}

.side-nav ul li a:hover {
    background-color: #f39c12;
}
header {
    animation: fadeInUp 1s ease-out;
}

.main-content {
    animation: fadeInUp 2s ease-out;
    padding: 10px 20px;
}


/* Mobile-specific media queries */
@media (max-width: 768px) {
    body {
        font-size: 13px; /* Smaller base font size for small screens */
    }

    .menu-icon {
        font-size: 22px; /* Smaller icon size */
    }

    .logo {
        font-size: 18px; /* Smaller logo font */
    }
}

@media (max-width: 480px) {
    body {
        font-size: 12px; /* Smallest font for very small screens */
    }

    .menu-icon {
        font-size: 20px; /* Very small menu icon */
    }

    .logo {
        font-size: 16px; /* Very small logo text */
    }
}
/* Main Content Adjustments for Mobile */
.main-content {
    padding: 20px 10px; /* Reduce padding for better mobile space utilization */
    font-size: 14px; /* Default font size for mobile screens */
}

.main-content h1, .main-content h2 {
    font-size: 15px; /* Smaller heading font size */
    line-height: 1.4; /* Ensure line spacing is readable */
    text-align: center; /* Center align for better visual balance */
    margin-bottom: 15px; /* Space below the headings */
}

.main-content p {
    font-size: 14px; /* Adjust font size for better readability on mobile */
    line-height: 1.6; /* Increase line height for mobile readability */
    margin-bottom: 20px; /* Space between paragraphs */
}

.main-content h1 i, .main-content h2 i {
    font-size: 28px; /* Smaller icon size */
    margin-right: 10px; /* Adjust icon spacing */
}

/* Lists and Sub-Lists */
.main-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.main-content ul li {
    font-size: 14px; /* Smaller list font */
    margin-bottom: 10px; /* Space between list items */
}

.main-content ul li ul li {
    font-size: 13px; /* Slightly smaller font for sublist items */
}

/* Order Now Button Adjustments */
.order-btn {
    font-size: 16px; /* Smaller font size for mobile */
    padding: 12px 25px; /* Reduced padding for better fit */
    width: 50%; /* Full width for better mobile accessibility */
    text-align: center; /* Center text */
}

/* Icon inside the order button */
.order-btn i {
    margin-right: 8px; /* Adjusted margin for the icon */
}

/* Example Bot Link Adjustments */
.example-bot-text {
    font-size: 14px;
    margin-bottom: 15px;
    text-align: center;
}

.example-bot-link {
    font-size: 14px;
    text-decoration: none;
    color: #e52e71;
    transition: transform 0.3s;
    display: inline-block;
    margin-top: 10px;
}


.example-bot-link:hover {
    transform: scale(1.1); /* Slight scale effect on hover */
}

/* Adjusting for Smaller Screens (max-width 480px) */
@media (max-width: 480px) {
    .main-content {
        padding: 15px 20px; /* Even smaller padding for very small screens */
    }

    .main-content h1 {
        font-size: 21px; /* Further reduction for very small screens */
    }

    .main-content h2 {
        font-size: 20px;
        text-align: left;
    }

    .order-btn {
        font-size: 14px; /* Even smaller text */
        padding: 10px 20px; /* Even more compact button */
    }
    .main-content p{
        text-align: left;
    }

    .example-bot-text, .example-bot-link {
        font-size: 13px; /* Adjust text size */
    }
}
