@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&family=Pacifico&display=swap');

/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.stylish1 {
    font-family: "Dancing Script", cursive;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

.stylish2 {
    font-family: "Pacifico", cursive;
    font-weight: 400;
    font-style: normal;
}

/* Before glowing typing text display should be none */
#insideHero{
    display: none;
}

body {
    font-family: "Abhaya Libre", Sans-serif-serif;
    line-height: 1.6;
    color: #b8860b;
    background-color: black;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: 65px;
}

/* Container */
.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    color: #b8860b;
}

/* Hero Section */
.hero {
    background: #13161a;
    ;
    /* You can use a background image here */
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}



.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    background: #24272e;
    color: #b8860b;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-size: 1.5em;
    cursor: pointer;
    transition: background 0.3s ease;
    text-decoration: none;
}

.btn:hover {
    background: #eee;
}

/* Sections */
section {
    padding: 3rem 0;
}

section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

/* About Section */
.about p {
    text-align: center;
    margin-bottom: 2rem;
}

/* Project Section */
/* Project Section */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    /* Responsive grid */
    grid-gap: 1.5rem;
}

.project-item {
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    text-align: center;
    background-color: #13161a;
}

.project-item img {
    margin-bottom: 1rem;
    border-radius: 5px;
}

.project-item h3 {
    margin-bottom: 0.5rem;
}

.container h3 {
    font-family: cursive;
    text-decoration: underline;
}

/* Client Section */
.client-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.client-logos img {
    margin: 1rem;
    max-height: 80px;
    /* Adjust as needed */
}

/* Happy Customers Section */
.testimonial {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 5px;
    text-align: center;
}

.testimonial p {
    margin-bottom: 0.5rem;
}

/* Contact Section */
.contact form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.contact input,
.contact textarea {
    margin-bottom: 1rem;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #333333;
}

.contact textarea {
    height: 150px;
}

.contact button {
    background: #24272e;
    color: #b8860b;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact button:hover {
    background: #3949ab;
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
}

.assetImage {
    height: 14em;
}

.uncommingImage {
    height: 14em;
}

/* .client_contaniner{
    width: 20em;
} */

* {
    box-sizing: border-box;
    /* Include padding and border in element's total width and height */
}

.container {
    width: 90%;
    /* Makes the container responsive, leave some side margin */
    max-width: 1200px;
    /* Optional: Limit max width on larger screens */
    margin: 0 auto;
    /* Center the container */
    padding: 0 1rem;
    /* Adds some padding on the sides for mobile */
    display: none;
}

/* Header & Navigation */
header {
    background: black;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    /* Align logo left, nav toggle right */
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    color: #b8860b;
    max-width: 250px;
}

/* Navigation Styles */
nav {
    width: 100%;
    /* Take full width of the header on mobile */
}

.nav-list {
    list-style: none;
    /* Remove bullet points from list */
    padding: 0;
    margin: 0;
    display: flex;
    /* Default to horizontal layout */
    justify-content: flex-end;
    /* Align nav items to the right */
    flex-wrap: wrap;
    /* Allow items to wrap on smaller screens */
    font-size: 2em;
}

.nav-list li {
    margin-left: 1rem;
    /* Spacing between nav items */
    position: relative;
    /* For dropdown positioning */
}

.nav-list li a {
    display: block;
    /* Makes entire link area clickable */
    padding: 0.5rem;
    text-decoration: none;
    color: #b8860b;
}

/* Dropdown */
.dropdown {
    display: none;
    position: absolute;
    background: #f4f4f4;
    border: 1px solid #ccc;
    padding: 0.5rem 0;
    min-width: 150px;
    left: 0;
    /* Position dropdown to the left of the parent */
    top: 100%;
    /* Position dropdown below parent */
}

.nav-list li:hover>.dropdown {
    /* Only show dropdown on hover for desktop */
    display: block;
}

.dropdown li {
    margin: 0 !important;
}

.dropdown li a {
    display: block;
    padding: 0.5rem 1rem;
    white-space: nowrap;
}

/* Nav Toggle Button */
.nav-toggle {
    display: none;
    /* Hide toggle on larger screens */
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    position: absolute;
    /* Position it absolutely in the header */
    right: 1rem;
    /* Position it on the right */
    top: 50%;
    /* Vertically center it */
    transform: translateY(-50%);
    /* Adjust for vertical centering */
}

.nav-toggle .bar {
    display: block;
    width: 5em;
    height: 0.47em;
    background-color: #333;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    /* Smooth transitions for animation */
}

/* Toggled Nav Styles */
.nav-list.active {
    /* Class to be added with JavaScript when toggled */
    display: flex;
    flex-direction: column;
    /* Stack items vertically */
    align-items: center;
    /* Center items on mobile */
    width: 100%;
    margin-top: 1rem;
    /* Add space between header and nav items */
}

.nav-list.active li {
    margin: 0.5rem 0;
    /* Vertical spacing between items */
    width: 100%;
    /* Make list items full width */
    text-align: center;
    /* Center text of list items */
}

.nav-list.active li .dropdown {
    position: relative;
    /* Reset to normal positioning in mobile view */
    width: 100%;
    text-align: center;
    top: 0;
    /* Ensure dropdown starts right below the item */
    left: 0;
    /* Align to the left edge */
    display: none;
    /* Initially hide dropdown items */
}

.nav-list.active li.open .dropdown {
    display: block;
    /* Show dropdown when parent li has 'open' class */
}

/* Toggle button animation */
.nav-toggle.active .bar:nth-child(1) {
    transform: translateY(17px) rotate(45deg);
}

.nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

#insta_svg {
    width: 100%;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#insta_img {
    width: 4em;
    text-decoration: none;
    color: #b8860b;
}

/* Media Queries for Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-list {
        display: none;
        /* Initially hide the navigation */
    }

    .nav-toggle {
        display: block;
        /* Show toggle button */
    }

    .dropdown {
        position: relative;
        width: 100%;
        text-align: center;
    }
}

/* Add images to the Assets folder */
/* Media Queries (Basic Responsiveness) */
@media (max-width: 768px) {
    .container {
        width: 100%;
    }

    header .container,
    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin: 0.5rem 0;
    }

    .dropdown {
        position: relative;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 548px) {
    .logo img {
        max-width: 66%;
    }
}
