/* Global styles */
* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

.header {
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7),rgba(0, 0, 0, 0.7)), url(images/one.PNG);
    background-position: center;
    background-size: cover;
    position: relative;
}

nav {
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

nav img {
    width: 180px;
}

.nav-toggle {
    display: none;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
    position: absolute;
    top: 2%;
    right: 6%;
}

.nav-links {
    flex: 1;
    text-align: right;
}

.nav-links ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.nav-links ul li {
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}

.nav-links ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
}

.nav-links ul li::after {
    content: '';
    width: 0%;
    height: 2px;
    background: #f44336;
    display: block;
    margin: auto;
    transition: 0.5s;
}

.nav-links ul li:hover::after {
    width: 100%;
}

/* Dropdown styles */
.dropbtn {
    text-decoration: none;
    font-size: 13px;
    color: #fff;
    background-color: transparent;
    border: none;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.8); /* Dark background for dropdown */
    border-radius: 5px; /* Optional: Rounded corners for dropdown */
}

.dropdown-content a {
    color: #fff;
    text-decoration: none;
    display: block;
    text-align: center;
    padding: 5px 0;
    font-size: 10px;
}

.dropdown-content a::after {
    content: '';
    width: 0%;
    height: 2px;
    background: #f44336;
    display: block;
    margin: auto;
    transition: 0.5s;
}

.dropdown-content a:hover::after {
    width: 100%;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.text-box {
    width: 90%;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.text-box h1 {
    font-size: 62px;
}

.text-box p {
    margin: 10px 0 40px;
    font-size: 14px;
    color: #fff;
}

.more-btn {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
}

/* Media Queries */
@media (max-width: 1024px) {
    .text-box h1 {
        font-size: 48px;
    }
    
    .text-box p {
        font-size: 13px;
    }
    
    .more-btn {
        padding: 10px 28px;
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .nav-links {
        width: 100%;
        text-align: right;
    }
    
    .nav-links ul {
        flex-direction: column;
        gap: 10px;
        background-color: rgba(0, 0, 0, 0.8); /* Dark background for mobile menu */
        border-radius: 5px; /* Optional: Rounded corners for mobile menu */
        padding: 10px; /* Optional: Padding for mobile menu */
        position: absolute;
        top: 80px; /* Adjust this according to your design */
        right: 6%;
        z-index: 10;
        display: none; /* Initially hide mobile menu */
    }
    
    .nav-links.active ul {
        display: flex; /* Show mobile menu when active */
    }
    
    .nav-links ul li {
        display: block;
    }
    
    .text-box h1 {
        font-size: 36px;
    }
    
    .text-box p {
        font-size: 12px;
    }
    
    .more-btn {
        padding: 8px 24px;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    nav img {
        width: 150px;
    }
    
    .text-box h1 {
        font-size: 24px;
    }
    
    .text-box p {
        font-size: 11px;
    }
    
    .more-btn {
        padding: 6px 20px;
        font-size: 10px;
    }
}



.more-btn:hover {
    border: 1px solid #f44336;
    background: #f44336;
    transition: 1s;
}

.btn {
    display: inline-block;
    text-decoration: none;
    color: #777;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    cursor: pointer;
    position: absolute;
    width: 80%;
}

.btn:hover {
    border: 1px solid #f44336;
    background: #f44336;
    transition: 1s;
}

.about {
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}

h1 {
    font-size: 36px;
    font-weight: 600;
}

p {
    color: #777;
    font-size: 14px;
    line-height: 22px;
    padding: 10px;
    text-align: left;
}

.cont_info{
    text-align: center;
}

