
:root {
    /* Colors */
    --primary: #D4AF37;
    --secondary: #333333;
    --light: #FFFFFF;
    --dark: #000000;
    --gray: #F5F5F5;
    --dark-gray: #222222;
    --text: #333333;
    --text-light: #777777;
    
   
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-xxl: 4rem;
    
      --font-primary: 'Roboto', sans-serif;
    --font-secondary: 'Playfair Display', serif;
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

p {
    margin-bottom: var(--space-md);
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

.home{
    background-image: url(pexels-jvdm-1457842.jpg);
    background-size: cover;
    background-position: center;  
}

.navbar{
    background-color: var(--dark-gray);
}



.text-primary {
    color: var(--primary) !important;
}

.bg-light {
    background-color: var(--gray) !important;
}

.bg-dark {
    background-color: var(--dark-gray) !important;
    color: var(--light);
}

.section {
    padding: var(--space-xxl);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: var(--space-lg);
}

  .responsive-btn:hover {
    
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
  }

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--primary);
    margin-top: var(--space-sm);
}

.section-subtitle {
    display: block;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.btn {
    display: inline-block;
    padding: var(--space-sm) var(--space-lg);
    border-radius: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: transparent;
    color: var(--light);
    border-color: grey;
    transition: transform 0.3s ease;
}

.btn-primary:hover {
    background-color: transparent;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-color: grey;
}
.btn-primary:focus,
.btn-primary:active {
  outline: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
  border: 2px solid black !important;
}
.btn-outline-primary {
    background-color: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    color: var(--light);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-outline-primary:focus,
.btn-outline-primary:active {
  outline: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
  border: 2px solid black !important;
  color: black !important;
}


.btn-light {
    background-color: var(--light);
    color: var(--dark);
}

.btn-light:hover {
    background-color: transparent;
    color: var(--light);
    border-color: var(--light);
    transform: translateY(-3px);
}


.navbar {
    padding: var(--space-sm) 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: var(--space-xs) 0;
    background-color: rgba(0,0,0,0.9) !important;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.navbar-brand .logo-img {
    height: 50px;
    transition: all 0.3s ease;
}

.navbar.scrolled .navbar-brand .logo-img {
    height: 40px;
}

.nav-link {
    color: var(--light) !important;
    font-weight: 500;
    padding: var(--space-sm) var(--space-md) !important;
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--light);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover:after,
.nav-link.active:after {
    width: 80%;
}


.hero {
    height: 100vh;
    min-height: 700px;
    background: rgba(0,0,0,0.7);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    color: var(--light);
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: var(--space-md);
    animation: fadeInDown 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: var(--space-xl);
    font-weight: 300;
    animation: fadeInUp 1s ease;
}


.about-section {
    background-color: var(--light);
}

.about-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-image img {
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-content {
    padding-right: var(--space-xl);
}

.about-text {
    color: var(--text-light);
    margin-bottom: var(--space-lg);
}

.signature img {
    max-width: 200px;
}


.projects-section {
    background-color: var(--gray);
}

.project-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.project-image {
    position: relative;
    overflow: hidden;
}

.project-image img {
    transition: transform 0.5s ease;
    width: 100%;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    align-items: flex-end;
    opacity: 0;
    transition: all 0.3s ease;
    padding: var(--space-lg);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-info {
    transform: translateY(30px);
    transition: all 0.3s ease;
}

.project-card:hover .project-info {
    transform: translateY(0);
}

.project-info h3 {
    color: var(--light);
    margin-bottom: var(--space-xs);
}

.project-info p {
    color: var(--primary);
    margin-bottom: 0;
}
.view-more {
    padding: 10px 20px;
    font-weight: 400;
    border-radius: 10px;
    outline: none;
    border: none;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.view-more:hover {
    transform: scale(1.1);
}




.service-card {
    text-align: center;
    padding: var(--space-xl) var(--space-lg);
    background-color: var(--light);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.service-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    height: 100px !important;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
}

.service-card p {
    color: var(--text-light);
}

.stats-section {
    padding: var(--space-xl) 0;
}

.stat-item {
    text-align: center;
    transition: all 0.3s ease-in-out;
}
.stat-item:hover{
    transform:  translateY(-5px);
    transform: scale(1.1);
}

.stat-number {
    font-size: 3rem;
    color: white;
    margin-bottom: var(--space-xs);
    font-weight: 700;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--light);
    opacity: 0.8;
}

.about-us-section {
    background-color: var(--light);
}

.about-us-image {
    text-align: center;
}

.about-us-image img {
    max-width: 300px;
    opacity: 0.9;
}

.about-us-content {
    padding-left: var(--space-xl);
}

.about-features {
    list-style: none;
    margin-top: var(--space-lg);
}

.about-features li {
    margin-bottom: var(--space-sm);
    position: relative;
    padding-left: var(--space-lg);
}

.about-features i {
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--primary);
}

.cta-section {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7));
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: var(--space-xxl) 0;
    color: var(--light);
    text-align: center;
}

.cta-title {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

.cta-subtitle {
    font-size: 1.5rem;
    margin-bottom: var(--space-xl);
    font-weight: 300;
}


.footer {
    padding: var(--space-xxl) 0 var(--space-md);
}

.footer-logo {
    max-height: 60px;
    margin-bottom: var(--space-lg);
}

.footer-about p {
    color: rgba(255,255,255,0.7);
    margin-bottom: var(--space-lg);
}

.footer-heading {
    font-size: 1.5rem;
    margin-bottom: var(--space-lg);
    position: relative;
    padding-bottom: var(--space-sm);
}

.footer-heading:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--light);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--light);
    padding-left: var(--space-sm);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    margin-bottom: var(--space-sm);
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: var(--space-sm);
    color: white;
    width: 20px;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: var(--space-md);
    margin-top: var(--space-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    color: var(--light);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-left: var(--space-sm);
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--light);
    transform: translateY(-3px);
}









@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 991.98px) {
    html {
        font-size: 15px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle,
    .cta-subtitle {
        font-size: 1.3rem;
    }
    
    .about-content {
        padding-right: 0;
        margin-bottom: var(--space-xl);
    }
    
    .about-us-content {
        padding-left: 0;
        margin-top: var(--space-xl);
    }
}

@media (max-width: 767.98px) {
    .section {
        padding: var(--space-xl) 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .social-links {
        margin-top: var(--space-md);
    }
    
    .social-links a {
        margin: 0 var(--space-xs);
    }
}

@media (max-width: 575.98px) {
    html {
        font-size: 14px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle,
    .cta-subtitle {
        font-size: 1.1rem;
    }
    
    .btn {
        padding: var(--space-sm) var(--space-md);
    }
    
    .navbar-brand .logo-img {
        height: 40px;
    }
}