:root {
    --dark-bg: #0F0F0F;
    --dark-secondary: #1A1A1A;
    --text-primary: #FFFFFF;
    --text-secondary: #CCCCCC;
    --accent-gold: #D4AF37;
    --accent-hover: #B89B30;
    --dark-overlay: rgba(0, 0, 0, 0.7);
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.navbar {
    background-color: rgba(10, 10, 10, 0.95);
    padding: 10px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--text-primary);
}

.navbar-nav .nav-link {
    color: var(--text-secondary);
    margin: 0 15px;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--accent-gold);
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-gold);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    width: 100%;
}

.navbar-toggler {
    border: none;
    color: var(--text-primary);
}

/* Modern Button (Keep as requested) */
.btn-modern {
    display: inline-block;
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background-color: var(--dark-bg);
    border: 2px solid #fff;
    border-radius: 10px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease-in-out, border 0.3s ease-in-out;
    text-align: center;
    text-decoration: none;
}

/* Background transition from bottom to center */
.btn-modern::before {
    content: "";
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    transition: bottom 0.4s ease-in-out;
    border-radius: 50% 50% 0 0;
    z-index: 0;
}

.btn-modern:hover::before {
    bottom: 0;
    height: 120px;
}

/* Default text (Normal State) */
.btn-modern .text-default {
    position: relative;
    z-index: 2;
    display: block;
    transition: transform 0.4s ease-in-out;
}

/* Hover text (Appears from bottom) */
.btn-modern .text-hover {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    text-align: center;
    color: #000;
    transition: bottom 0.4s ease-in-out;
    z-index: 3;
}

.btn-modern:hover .text-default {
    transform: translateY(-60px);
}

.btn-modern:hover .text-hover {
    bottom: 50%;
    transform: translateY(50%);
}

.btn-custom {
    background-color: var(--accent-gold);
    color: var(--dark-bg);
    padding: 12px 30px;
    border-radius: 0;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
}

.btn-custom:hover {
    background-color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Keep the banner CSS intact */
.bg-inner-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 60% 30%, #ff00002e, #fff0 40%),
                radial-gradient(circle at 70% 35%, #ab40ff2e, #faf3ff03 20%, #fff0);
    background-position: center;
    padding-top: 100px;
    position: relative;
}

.bg-inner-banner {
    min-height: 420px;
}

.bg-inner-banner h1 {
    font-size: 60px;
}

.bg-inner-banner .gradient-svg,
.bg-inner-banner .left-svg,
.bg-inner-banner .right-svg {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.bg-inner-banner .left-svg {
    left: 80px;
}

.bg-inner-banner .right-svg {
    right: 80px;
}

.bg-inner-banner .gradient-svg {
    right: 80px;
}

.bg-inner-banner .left-svg img {
    width: 60px;
    transition: all 3s ease;
    animation: rightleft 3s infinite ease;
}

.bg-inner-banner .right-svg img {
    width: 60px;
    transition: all 3s ease;
    animation: updown 3s infinite ease;
}

.bg-inner-banner .gradient-svg img {
    width: 100px;
    transition: all 3s ease;
    animation: updown 3s infinite ease;
}

.bg-inner-banner .breadcrumb-item.active {
    color: #fff;
}

@keyframes updown {
    0%, 100% {
        transform: translateY(-20px);
    }
    50% {
        transform: translateY(20px);
    }
}

@keyframes rightleft {
    0%, 100% {
        transform: translateX(-20px);
    }
    50% {
        transform: translateX(20px);
    }
}

.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--dark-bg);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.section-title {
    position: relative;
    margin-bottom: 60px;
    font-weight: 700;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -15px;
    height: 3px;
    width: 70px;
    background-color: var(--accent-gold);
}

.section-padding {
    padding: 100px 0;
}

.section-dark {
    background-color: var(--dark-secondary);
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    cursor: pointer;
    border-radius: 20px;
}

.portfolio-item img {
    transition: all 0.5s ease;
    width: 100%;
    height: 360px;
    object-fit: cover;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark-overlay);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover img {
    transform: scale(1.2);
}

.portfolio-content h4 {
    color: var(--text-primary);
    font-size: 1.5rem;
    transform: translateY(20px);
    transition: all 0.4s ease;
    opacity: 0;
}

.portfolio-content p {
    color: var(--accent-gold);
    transform: translateY(20px);
    transition: all 0.4s ease;
    opacity: 0;
    transition-delay: 0.1s;
}

.portfolio-item:hover .portfolio-content h4,
.portfolio-item:hover .portfolio-content p {
    transform: translateY(0);
    opacity: 1;
}

.service-card {
    background-color: rgba(26, 26, 26, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.service-card .icon {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.service-card h4 {
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.service-card:hover h4 {
    color: var(--accent-gold);
}

.service-card .overflow-hidden img {
    transition: all ease 1s;
}

.service-card:hover .overflow-hidden img {
    transform: scale(1.2);
}

.service-card .image-icon {
    position: absolute;
    bottom: -100%;
    right: -100%;
    transform: rotate(-15deg);
    opacity: .7;
    transition: all ease 1s;
}

.service-card:hover .image-icon {
    bottom: 0%;
    right: 0%;

}

.image-icon img {
    width: 60px;
}

.about-image {
    position: relative;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: all ease 1s;
}

.about-image:hover img {
    filter: contrast(1.5) brightness(1.1);
    transform: scale(1.2);
}

.about-content {
    padding: 30px;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

/* OWL Dots - Centered, properly spaced */
.owl-carousel .owl-dots {
    text-align: center;
    margin-top: 25px;
}

.owl-carousel .owl-dot {
    display: inline-block;
    margin: 0 8px;
    background: #666; /* Inactive dot */
    border-radius: 50%;
    transition: background 0.3s ease;
    opacity: 0.7;
}

.owl-carousel .owl-dot.active,
.owl-carousel .owl-dot:hover {
    background: #f8c146; /* Highlight color */
    opacity: 1;
}

/* OWL Arrows - Clean buttons */
.owl-carousel .owl-nav {
    position: absolute;
    top: 40%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 20px !important;
    pointer-events: none;
}

.owl-carousel .owl-prev,
.owl-carousel .owl-next {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: #f8c146;
    font-size: 40px !important;
    border: none;
    border-radius: 50% !important;
    line-height: 40px !important;
    text-align: center;
    cursor: pointer;
    pointer-events: all;
    transition: all 0.3s ease;
}

.owl-carousel .owl-prev:hover,
.owl-carousel .owl-next:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.contact-info {
    margin-bottom: 30px;
}

.contact-info h4 {
    margin-bottom: 20px;
}

.contact-details {
    list-style: none;
    padding: 0;
}

.contact-details li {
    padding: 10px 0;
    display: flex;
    align-items: flex-start;
}

.contact-details i {
    color: var(--accent-gold);
    margin-right: 15px;
    margin-top: 5px;
}

.contact-form .form-control {
    background-color: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 1);
    color: var(--text-primary);
    padding: 12px 15px;
    margin-bottom: 20px;
    border-radius: 10px;
}

.contact-form .form-control:focus {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-gold);
    box-shadow: none;
}

.contact-form .form-control::placeholder {
    color: #fff;
}

footer {
    background-color: #080808;
    padding: 30px 0;
}

.social-icons {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0;
    margin-bottom: 20px;
}

.social-icons li {
    margin: 0 10px;
}

.social-icons a {
    display: flex;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--accent-gold);
    color: var(--dark-bg);
    transform: translateY(-5px);
}

.footer-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.hero-section, #about, #portfolio, #services, #testimonials, #contact {
    overflow: hidden;
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-padding {
        padding: 80px 0;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .navbar-collapse {
        background-color: rgba(10, 10, 10, 0.95);
        padding: 20px;
    }
    
    .navbar-nav .nav-link {
        padding: 10px 0;
    }
}

@media (max-width: 425px) {
    .bg-inner-banner .left-svg {
        left: 20px;
    }

    .bg-inner-banner .right-svg {
        right: 20px;
    }

    .bg-inner-banner .gradient-svg {
        right: 20px;
    }
}

@media (max-width: 375px) {
    .bg-inner-banner .left-svg {
        left: 10px;
    }

    .bg-inner-banner .right-svg {
        right: 10px;
    }

    .bg-inner-banner .gradient-svg {
        right: 10px;
    }
}