* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

h1, h2, h3, h4, h5 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
}

.section-heading {
    text-align: center;
}

.navbar-dark .navbar-nav .nav-link {
    color: #fff;
}

.section-heading {
    text-align: center;
}

.section-heading h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 42px;
    font-weight: 700;
}

.line {
    position: relative;
    width: 80px;
    height: 1px;
    background: #d4af37;
}

.line::after {
    content: "◆";
    position: absolute;
    top: 50%;
    color: #d4af37;
    font-size: 12px;
    transform: translateY(-50%);
}

.left::after {
    right: -15px;
    top: 1px;
}

.right::after {
    left: -15px;
    top: 1px;
}

.project-tabs {
    border: none;
    gap: 15px;
}

.project-tabs .nav-link {
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    padding: 12px 30px;
    background: #111;
    color: #fff;
    font-weight: 600;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-tabs .nav-link:hover {
    background: #d4af37;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.project-tabs .nav-link.active {
    background: linear-gradient(135deg, #d4af37, #f5d76e);
    color: #000;
    border-color: #d4af37;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.tab-content {
    margin-top: 40px;
}

body {
    background: #0d0d0d;
    color: white;
}

.hero-content {
    margin-top: 20%;
}

.navbar {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.navbar-brand {
    font-size: 28px;
    font-weight: 700;
    padding: 0;
    color: #d4af37 !important;
}

.text-justify {
    text-align: justify;
}

.menu .navbar-brand img {
    width: 90px;
}

.menu .nav-link {
    position: relative;
    padding: 8px 20px !important;
    transition: all 0.4s ease;
    border-radius: 30px;
}

.nav-tabs .nav-link {
    color: #fff;
}

.nav-tabs {
    border-bottom: 1px solid #d4af37;
    margin-bottom: 20px;
}

.nav-tabs .nav-link:hover {
    border-color: #d4af37 #d4af37 #d4af37;
    background-color: #d4af37;
    isolation: isolate;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: #fff;
    background-color: #d4af37;
    border-color: #d4af37 #d4af37 #d4af37;
}

.menu .nav-link:hover {
    color: #fff !important;
    background: #d4af37;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

.carousel-item img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    filter: brightness(50%);
}

.hero-content h1 {
    font-size: 65px;
    font-weight: 700;
    line-height: 1.2;
}

.gold-text {
    color: #d4af37;
}

.hero-content p {
    margin-top: 20px;
    font-size: 18px;
    color: #ddd;
}

.btn-gold {
    background: #d4af37;
    color: black;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: 0.3s;
}

.btn-gold:hover {
    background: white;
    transform: translateY(-3px);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 700;
}

.section-title p {
    color: #bbb;
}

.about-section,
.services-section,
.projects-section,
.vision-section,
.contact-section {
    padding: 100px 0;
}

.about-img img {
    width: 100%;
    border-radius: 20px;
}

.service-card {
    background: #161616;
    padding: 40px 25px;
    border-radius: 20px;
    text-align: center;
    transition: 0.4s;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    background: #1f1f1f;
}

.service-card i {
    font-size: 45px;
    color: #d4af37;
    margin-bottom: 20px;
}

.project-card {
    overflow: hidden;
    border-radius: 20px;
    position: relative;
}

.project-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: 0.5s;
}

.project-card:hover img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    padding: 20px;
}

.vision-box {
    background: #161616;
    padding: 40px;
    border-radius: 20px;
    height: 100%;
}

.contact-box {
    background: #161616;
    padding: 40px;
    border-radius: 20px;
}

.form-control {
    background: #222;
    border: none;
    color: white;
    padding: 14px;
    /* margin-bottom: 20px; */
}

.form-control:focus {
    background: #222;
    color: white;
    box-shadow: none;
    border: 1px solid #d4af37;
}

footer {
    background: black;
    padding: 10px 0;
    text-align: center;
    color: #999;
}

.social-icons a {
    color: white;
    margin: 0 10px;
    font-size: 20px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #d4af37;
}


.project-card {
    overflow: hidden;
    position: relative;
}

.project-card img {
    width: 100%;
    transition: all .6s ease;
}

.error-message {
    color: #dc3545;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

.project-card::after {
    content: "";
    position: absolute;
    inset: 15px;
    border: 1px solid #d4af37;
    opacity: 0;
    transition: .4s;
}

.project-card:hover img {
    transform: scale(1.1);
}

.project-card:hover::after {
    opacity: 1;
}
.mobile-version {
    display: none;
}

@media(max-width:768px) {
    .hero-content h1 {font-size: 30px;}
     .section-heading h2 {
        font-size: 32px;
        gap: 22px;
    }
    .menu .nav-link {
            text-align: center;
    
    }

    .navbar-nav.ms-auto .nav-item:nth-child(1) {
margin-top: 20px;
    }
    .desktop-version {
        display: none;
    }
    .mobile-version {
    display: block;
}
    .about-section, .services-section, .projects-section, .vision-section, .contact-section {
        padding: 20px 0;
    }
    .project-tabs .nav-link {
        padding: 5px 20px;
    }
    .section-title p, p{
        font-size: 14px;
    }
    .vision-section p  {
        text-align: justify;
    }

    .line {
        width: 50px;
    }

    .left::after {
        right: -12px;
    }

    .right::after {
        left: -12px;
    }
    
}

@media (max-width: 576px) {

    .section-heading h2 {
        font-size: 24px;
        gap: 22px;
    }

    .line {
        width: 30px;
    }

    .line::after {
        font-size: 10px;
    }

    .left::after {
        right: -10px;
    }

    .right::after {
        left: -10px;
    }
}