/* Custom CSS Variables */
:root {
    --primary-color: #121212;
    --secondary-color: #FFD700;
    --accent-color:white;
    --warning-color: #ff6f00;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --text-dark: #2c3e50;
    --text-muted: #6c757d;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}
html, body {
    overflow-x: hidden;
    width: 100%;
}


/* Custom Bootstrap Color Classes */
.bg-primary { background-color: var(--primary-color) !important; }
.text-primary { color: var(--white) !important; }
.btn-primary { 
    background-color: var(--primary-color); 
    border-color: var(--primary-color);
    transition: var(--transition);
}
.btn-primary:hover { 
    background-color: #FFD700; 
    border-color: #FFD700;
    transform: translateY(-2px);
}

.text-accent { color: var(--accent-color) !important; }
.bg-accent { background-color: var(--accent-color) !important; }
.btn-accent {
    background-color: #FFD700;
    border-color: var(--white);
    color:black;
    font-weight: 600;
    transition: var(--transition);
}
.btn-accent:hover {
    background-color: #FFD700;
    border-color: #FFD700;
    color:black;
    transform: translateY(-2px);
}

/* Global Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--primary-color);
    scroll-behavior: smooth;
}

.rounded-lg { border-radius: 12px !important; }

/* Navigation Styles */
.navbar {
    background: linear-gradient(135deg, var(--primary-color) 0%, #000000 100%) !important;
    padding: 1rem 0;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.navbar-logo {
    position: absolute;
    top: -4px;   /* Adjust vertical position */
    left: 90px;  /* Push it to the left edge */
}

.navbar-logo img {
    height: 80px;  /* Adjust the size of the logo */
    width: auto;
}

.navbar-brand {
    position: absolute;
    font-size: 2.0rem;
    color: #CBBF76 !important;
    left: 160px;
    top: 13px;
}

.navbar-nav .nav-link {
    color: #FFD700 !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    margin: 0 0.25rem;
    border-radius: 6px;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover {
    color: var(--accent-color) !important;
    background-color: rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.9) 100%),
                url('https://images.pexels.com/photos/2881229/pexels-photo-2881229.jpeg?auto=compress&cs=tinysrgb&w=1600') center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}
.hero-section h1{
   color:  #CBBF76;
}
.hero-section p {
    color: #FFD700; /* Gold */
}

.hero-overlay {
    position: relative;
    z-index: 2;
    padding: 80px 0 0;
}
.hero-section h1 {
    font-size: 2rem; /* Smaller font size for small screens */
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.2;
    
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 1.8rem;
        text-align: center; /* Optional: center align for better look */
    }

    .hero-section p {
        font-size: 1rem;
        text-align: center;
    }

    .hero-buttons {
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .hero-buttons a {
        width: 100%;
    }
}

/* Prevent container from pushing outside */
.hero-section .container {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100%;
}

.hero-buttons .btn {
    margin-bottom: 10px;
    padding: 12px 30px;
    font-weight: 600;
    transition: var(--transition);
}

.hero-stats {
    margin-top: 3rem;
}

.stat-card {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-card h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #FFD700 ; 
}

/* Service Cards */
#services h5,
#services h2 {
    background: linear-gradient(45deg, #FFD700, #FFA500, #FFD700, #FFFACD);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}



#services p {
    background: linear-gradient(45deg, #363636, #575814, #FFD700, #000000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.service-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.service-icon i {
    font-size: 1.8rem;
    color: var(--text-dark);
}

.service-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-content {
    padding: 2rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    color: var(--primary-color);
}

.service-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
}


#about h2,
#about h6,
#about p {
    color: #FFD700; /* Gold */
}


/* Portfolio Cards */
.portfolio-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

#portfolio h2,
#portfolio h6,
#portfolio p {
    color: #FFD700; /* Gold */
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.portfolio-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgb(119, 111, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.portfolio-card:hover .portfolio-image {
    transform: scale(1.1);
}

.portfolio-content {
    text-align: center;
    padding: 2rem;
}

.portfolio-tags .badge {
    margin: 0 0.25rem;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

#contact h2,
#contact p {
    color: #FFD700; /* Gold */
}

.form-control, .form-select {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus, .form-select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgb(255, 230, 0);
}

.form-label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

/* Contact Info */
.contact-info {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 16px;
    height: fit-content;
}

.contact-item {
    padding: 1rem 0;
    border-bottom: 1px solid #dee2e6;
}

.contact-item:last-child {
    border-bottom: none;
}

.map-container {
    margin-top: 2rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* Footer */
footer {
    background: linear-gradient(300deg, var(--secondary-color) 0%, #000000 0%) !important;
}

footer h5,
footer h6 {
    color: #FFD700 !important; /* Gold */
}


.social-links a {
    transition: var(--transition);
color: #FFD700 !important; /* Gold */
}

.social-links a:hover {
    color: var(--accent-color) !important;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 2rem 0;
        text-align: center;
    }
    
    .hero-stats {
        margin-top: 2rem;
    }
    
    .stat-card h3 {
        font-size: 2rem;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
    
    .display-5 {
        font-size: 2rem;
    }
    
    .service-content {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .contact-info {
        margin-top: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        top: 15px;
        right: 15px;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
    
    .portfolio-content {
        padding: 1rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Utility Classes */
.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #fbff00 100%) !important;
}

.bg-gradient-accent {
    background: linear-gradient(135deg, var(--accent-color) 0%, #ffe602 100%) !important;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important;
}

/* Smooth scrolling offset for fixed navbar */
html {
    scroll-padding-top: 80px;
}





