body {
    font-family: 'Poppins', sans-serif;
}

.navbar-brand img {
    height: 50px;
}

.navbar-nav a {
    color: #fff !important;
    margin-left: 20px;
    font-weight: 500;
}

.navbar-nav a:hover {
    color: #fdb913 !important;
}

.navbar {
    padding: 15px 0;
}

.navbar.scrolled {
    background: #000 !important;
}

/* DROPDOWN STYLES */
#services-dropdown {
    max-height: 480px;
    overflow-y: auto;
    overflow-x: hidden !important;
    width: 320px !important;
    border: 1px solid #444;
    padding: 10px 0;
}

#services-dropdown .dropdown-header {
    color: #fdb913 !important;
    font-weight: 700;
    padding: 15px 20px 5px !important;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1.5px;
    background: transparent !important;
}

#services-dropdown .dropdown-item {
    font-size: 14px;
    padding: 8px 20px;
    white-space: normal;
    color: #ddd !important;
}

#services-dropdown .dropdown-item:hover {
    background: #fdb913 !important;
    color: #000 !important;
}

#hero img {
    height: 100vh;
    object-fit: cover;
}

.carousel-caption {
    bottom: 40%;
}

#hero .overlay {
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    width: 100%;
    height: 100%;
}

#hero .content {
    position: relative;
    top: 40%;
}

.about h2 {
    font-weight: 700;
}

.about-list {
    list-style: none;
    padding: 0;
}

.about-list li {
    margin-bottom: 10px;
}

.section-title {
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #fdb913;
    border-radius: 2px;
}

.section-subtitle {
    color: #666;
    max-width: 600px;
    margin: 0 auto 40px;
}

.services {
    background: radial-gradient(circle at center, #1a1a1a 0%, #000 100%);
}

.service-box {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 40px 30px;
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    color: #fff;
}

.service-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: 0.5s;
}

.service-box:hover::before {
    left: 100%;
}

.icon-box {
    width: 80px;
    height: 80px;
    background: rgba(253, 185, 19, 0.1);
    color: #fdb913;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    border-radius: 20px;
    margin-bottom: 25px;
    transition: 0.5s;
    border: 1px solid rgba(253, 185, 19, 0.2);
}

.service-box h4 {
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.service-box p {
    color: #aaa;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.learn-more {
    color: #fdb913;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    margin-top: auto;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
}

.learn-more i {
    margin-left: 8px;
    transition: 0.3s;
}

.service-box:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.08);
    border-color: #fdb913;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 20px rgba(253, 185, 19, 0.1);
}

.service-box:hover .icon-box {
    background: #fdb913;
    color: #000;
    box-shadow: 0 0 30px rgba(253, 185, 19, 0.4);
    transform: rotateY(180deg);
}

.service-box:hover p {
    color: #fff;
}

.service-box:hover .learn-more {
    letter-spacing: 1px;
}

.service-box:hover .learn-more i {
    transform: translateX(5px);
}

.project-box {
    position: relative;
    overflow: hidden;
}

.project-box img {
    transition: 0.4s;
}

.project-box:hover img {
    transform: scale(1.1);
}

.project-box .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s;
}

.project-box:hover .overlay {
    opacity: 1;
}

.project-img {
    border-radius: 10px;
    transition: 0.3s;
}

.project-img:hover {
    transform: scale(1.05);
}

.contact input,
.contact textarea {
    border-radius: 5px;
    border: none;
}

.contact iframe {
    margin-top: 10px;
}
/* FOOTER STYLES */
.main-footer {
    background: #0a0a0a;
    color: #fff;
    padding-bottom: 0;
}

.footer-logo {
    height: 60px;
}

.footer-about {
    color: #aaa;
    font-size: 14px;
    line-height: 1.6;
}

.footer-heading {
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-left: 15px;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-heading::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: #fdb913;
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: 0.3s;
    font-size: 15px;
    display: inline-block;
}

.footer-links a:hover {
    color: #fdb913;
    transform: translateX(5px);
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    color: #aaa;
    font-size: 15px;
}

.footer-contact i {
    color: #fdb913;
    font-size: 18px;
    margin-right: 15px;
    margin-top: 3px;
}

.footer-contact a {
    color: #aaa;
    text-decoration: none;
    transition: 0.3s;
}

.footer-contact a:hover {
    color: #fdb913;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-radius: 50%;
    margin-right: 10px;
    transition: 0.3s;
    text-decoration: none;
    font-size: 18px;
}

.social-links a:hover {
    background: #fdb913;
    color: #000;
    transform: translateY(-3px);
}

.footer-bottom {
    background: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    font-size: 14px;
    color: #888;
}

@media (max-width: 991px) {
    .footer-heading {
        margin-top: 20px;
    }
}

/* PAGE SPECIFIC STYLES */
.page-hero {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('../images/bg.jpg');
    background-size: cover;
    background-position: center;
    border-bottom: 3px solid #fdb913;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #fdb913;
}

/* Project Gallery */
.project-card {
    transition: 0.4s;
    background: #fff;
}

.project-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.project-img-wrapper img {
    transition: 0.6s;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s;
}

.project-card:hover .project-img-wrapper img {
    transform: scale(1.1);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

/* Contact Page */
.icon-circle {
    width: 50px;
    height: 50px;
    background: rgba(253, 185, 19, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: 0.3s;
}

.contact-item:hover .icon-circle {
    background: #fdb913;
}

.contact-item:hover .icon-circle i {
    color: #000 !important;
}

.social-btn {
    width: 45px;
    height: 45px;
    background: #222;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: 0.3s;
    text-decoration: none;
}

.social-btn:hover {
    background: #fdb913;
    color: #000;
    transform: translateY(-5px);
}

.form-control:focus, .form-select:focus {
    box-shadow: none;
    border: 1px solid #fdb913 !important;
    background: #fff !important;
}
