/* styles.css */
:root {
    --primary-color: #3952e6;
}

body {
    font-family: 'Montserrat', sans-serif;
}

/* Navbar Styling */
.navbar {
    transition: all 0.3s ease-in-out; /* Smooth transition for the changes */
    padding: 1rem 1rem; /* Initial padding */
}

.navbar.scrolled {
    padding: 0.5rem 1rem; /* Reduced padding when scrolled */
}

.logo-img {
    transition: all 0.3s ease-in-out; /* Smooth transition for the changes */
    height: 60px; /* Initial height */
}

.navbar.scrolled .logo-img {
    height: 40px; /* Reduced height when scrolled */
}

/* Logo Styling */
.logo {
    display: flex;
    align-items: center;
    justify-content: center; /* Center the logo horizontally */
    padding: 10px; /* Add padding around the logo */
}

.logo-img {
    width: 200px; /* Increased size for better visibility */
    height: auto; /* Maintain aspect ratio */
}

.nav-link {
    margin: 0 10px;
    font-weight: 500;
    position: relative;
}

.nav-link.active {
    font-weight: bold; /* Make the active link bold */
  }
  
  .nav-link.active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px; /* Thickness of the underline */
    background-color: #007BFF; /* Color of the underline */
  }
.nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: calc(100vh - 80px);
    min-height: 600px;
    background-image: url('/img/hero/designer-workspace.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 30px 0;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 40px;
}

.btn-primary {
    background-color: var(--primary-color);
    border: none;
    padding: 15px 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #2a41d1;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Media Queries */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
}


.about-section {
    background-color: #f9f9f9;
  }
  
  .about-section h2 {
    font-size: 28px;
  }
  
  .about-section p {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .btn-primary {
    background-color: #007BFF;
    border: none;
  }
  
  .btn-primary:hover {
    background-color: #0056b3;
  }
/* pricing-section */
 
.pricing-section h2 {
    font-size: 28px;
  }
  
  .pricing-section p {
    font-size: 18px;
  }
  
  .card h3 {
    font-size: 20px;
  }
  
  .card p {
    font-size: 16px;
  }
  
  .card h4 {
    font-size: 24px;
  }
  .contact-section {
    background-color: #f9f9f9;
  }
  
  .contact-section h2 {
    font-size: 28px;
  }
  
  .contact-section p {
    font-size: 16px;
  }