/* Base Styles */
:root {
    --color-primary: #0284c7;
    --color-primary-dark: #0369a1;
    --color-primary-light: #38bdf8;
    --color-white: #ffffff;
    --color-black: #111827;
    --color-gray-50: #f9fafb;
    --color-gray-100: #f3f4f6;
    --color-gray-200: #e5e7eb;
    --color-gray-300: #d1d5db;
    --color-gray-400: #9ca3af;
    --color-gray-500: #6b7280;
    --color-gray-600: #4b5563;
    --color-gray-700: #374151;
    --color-gray-800: #1f2937;
    --color-gray-900: #111827;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --border-radius: 0.375rem;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Montserrat", sans-serif;
    line-height: 1.5;
    color: var(--color-gray-800);
    background-color: var(--color-white);
    overflow-x: hidden;
  }
  

  img {
    max-width: 100%;
    height: auto;
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  /* Buttons */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  
  .btn-primary {
    background-color: var(--color-white);
    color: var(--color-primary);
    border: none;
  }
  
  .btn-primary:hover {
    background-color: var(--color-gray-100);
  }
  
  .btn-outline {
    background-color: transparent;
    color: var(--color-white);
    border: 1px solid var(--color-white);
  }
  
  .btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
  
  .btn-secondary {
    background-color: transparent;
    color: var(--color-gray-800);
    border: 1px solid var(--color-gray-300);
  }
  
  .btn-secondary:hover {
    background-color: var(--color-gray-100);
  }
  
  .btn svg {
    margin-left: 0.5rem;
  }
  
  /* Header */
  .header {
    background-color: var(--color-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  
  .header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
  }
  
  .logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  
  .logo-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
  }
  
  .logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-gray-800);
  }
  
  .main-nav {
    display: none;
  }
  
  .main-nav.active {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--color-white);
    box-shadow: var(--shadow);
    padding: 1rem;
  }
  
  .nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .nav-link {
    color: var(--color-gray-600);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
  }
  
  .nav-link:hover,
  .nav-link.active {
    color: var(--color-primary);
  }
  
  .menu-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-gray-800);
  }
  
  /* Hero Section */
  .hero {
    background: linear-gradient(to right, var(--color-primary-dark), var(--color-primary));
    padding: 4rem 0;
    color: var(--color-white);
  }
  
  .hero .container {
    display: grid;
    gap: 2rem;
  }
  
  .hero-title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  
  .hero-text {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
  }
  
  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 250px;
  }
  
  .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* About Section */
  .about {
    padding: 4rem 0;
    background-color: var(--color-gray-50);
  }
  
  .section-header {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
  }
  
  .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-gray-800);
    margin-bottom: 1rem;
  }
  
  .section-description {
    font-size: 1.125rem;
    color: var(--color-gray-600);
  }
  
  .features {
    display: grid;
    gap: 2rem;
  }
  
  .feature-card {
    background-color: var(--color-white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
  }
  
  .feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-gray-800);
    margin-bottom: 0.75rem;
  }
  
  .feature-description {
    color: var(--color-gray-600);
  }
  
  /* Gallery */
  .gallery {
    padding: 4rem 0;
  }
  
  .gallery .section-title {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .gallery-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 200px;
    transition: transform 0.3s ease;
  }
  
  .gallery-item:hover {
    transform: scale(1.03);
  }
  
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .gallery-action {
    text-align: center;
    margin-top: 2rem;
  }
  
  /* Footer */
  .footer {
    background-color: var(--color-gray-800);
    color: var(--color-white);
    padding: 3rem 0 1.5rem;
  }
  
  .footer-content {
    display: grid;
    gap: 2rem;
  }
  
  .footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .footer-text {
    color: var(--color-gray-300);
    line-height: 1.7;
  }
  
  .footer-bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-gray-700);
    text-align: center;
  }
  a{
    text-decoration: none;
    color: inherit;
  }
  a p{margin-left: 10px;}
  
  .copyright {
    color: var(--color-gray-400);
    font-size: 0.875rem;
  }
  
  /* Media Queries */
  @media (min-width: 768px) {
    .logo-text {
      display: block;
    }
  
    .main-nav {
      display: block;
    }
  
    .nav-list {
      flex-direction: row;
      gap: 2rem;
    }
  
    .menu-toggle {
      display: none;
    }
  
    .hero .container {
      grid-template-columns: 1fr 1fr;
      align-items: center;
    }
  
    .hero-title {
      font-size: 2.5rem;
    }
  
    .hero-buttons {
      flex-direction: row;
    }
  
    .hero-image {
      height: 350px;
    }
  
    .features {
      grid-template-columns: repeat(3, 1fr);
    }
  
    .gallery-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  
    .footer-content {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  @media (min-width: 1024px) {
    .hero-title {
      font-size: 3rem;
    }
  
    .hero-image {
      height: 400px;
    }
  }
  
  @media (max-width: 640px) 
  {  footer{text-align: center;
    display: flex;
  justify-content: center;
font-size: 0.975rem;}
  
.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-gray-700);
  text-align: center;
  font-size: 0.875rem;
}
  
}