/*
Theme Name: Akash 
Author: creative orion 
Author URI: https://creativeorion.com/
Description: At Akash Advertising Agency, we offer a wide range of advertising services designed to elevate your brand and drive results. From eye-catching outdoor advertising to impactful in-store displays, our solutions are tailored to meet your unique needs.Comprehensive Advertising Services for Every Business
Version: 1.0

*/

/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    background-color: #f9f9f9;
    margin: 0;
}

/* Header Styling */
header {
    background-color: #0073aa;
    color: #fff;
    padding: 1rem 2rem;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2rem;
}

/* Navigation Menu */
nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    background-color: #333;
    padding: 0.5rem 0;
}

nav ul li {
    margin: 0 1rem;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    padding: 0.5rem 1rem;
    transition: background-color 0.3s;
}

nav ul li a:hover {
    background-color: #0073aa;
    border-radius: 5px;
}

/* Footer Styling */
footer {
    text-align: center;
    background-color: #333;
    color: #fff;
    padding: 1rem 0;
    margin-top: 2rem;
}

/* Custom Classes */
.btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #005780;
}


/* Responsive Design */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
    }
    
    nav ul li {
        margin: 0.5rem 0;
    }
}
