:root {
  --primary: #0288d1; /* Sky blue primary */
  --secondary: #e0f7fa;
  --accent: #4dd0e1;
  --dark: #01579b;
  --light: #f1f8ff;
  --gold: #FFD166;
}
    
    body {
      font-family: 'Poppins', sans-serif;
      color: #333;
      overflow-x: hidden;
      background-color: var(--secondary);
    }
    
    h1, h2, h3, h4, h5 {
      font-family: 'Playfair Display', serif;
      font-weight: 600;
    }
    
    .logo {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      font-size: 1.8rem;
      color: var(--primary);
      text-decoration: none;
      display: flex;
      align-items: center;
    }
    
    .logo img {
      height: 40px;
      margin-right: 10px;
    }
    
    .navbar {
      padding: 1rem 2rem;
    }
    
    .nav-link {
      font-weight: 500;
      color: var(--dark) !important;
      position: relative;
      padding: 0.5rem 1rem !important;
    }
    
    .nav-link:after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: 0;
      left: 0;
      background-color: var(--primary);
      transition: width 0.3s;
    }
    
    .nav-link:hover:after {
      width: 100%;
    }
    
    .hero-section {
      min-height: 90vh;
      background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('');
      background-size: cover;
      background-position: center;
      color: white;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
    }
    
    .hero-content {
      z-index: 2;
      max-width: 600px;
    }
    
    .hero-title {
      font-size: 3.5rem;
      margin-bottom: 1.5rem;
      line-height: 1.2;
    }
    
    .hero-subtitle {
      font-size: 1.2rem;
      margin-bottom: 2rem;
      opacity: 0.9;
    }
    
    .btn-primary {
      background-color: var(--primary);
      border-color: var(--primary);
      padding: 0.8rem 2rem;
      font-weight: 500;
      border-radius: 50px;
      transition: all 0.3s;
    }
    
    .btn-primary:hover {
      background-color: transparent;
      border-color: white;
      background-color: var(--accent);
      transform: translateY(-3px);
    }
    
    .section-title {
      position: relative;
      display: inline-block;
      margin-bottom: 3rem;
      color: var(--dark);
    }
    
    .section-title:after {
      content: '';
      position: absolute;
      width: 50%;
      height: 3px;
      bottom: -10px;
      left: 25%;
      background-color: var(--primary);
    }
    
    .about-img {
      border-radius: 15px;
      box-shadow: 0 15px 30px rgba(0,0,0,0.1);
      transition: transform 0.3s;
    }
    
    .about-img:hover {
      transform: scale(1.03);
    }
    
    .card {
      border: none;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
      transition: all 0.3s;
      height: 100%;
    }
    
    .card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    }
    
    .card-img-top {
      height: 220px;
      object-fit: cover;
    }
    
    .card-title {
      color: var(--dark);
      font-weight: 600;
    }
    
    .price {
      color: var(--primary);
      font-weight: 700;
      font-size: 1.2rem;
    }
    
    .service-icon {
      font-size: 3rem;
      color: var(--primary);
      margin-bottom: 1.5rem;
    }
    
    .social-dock {
      position: fixed;
      right: 20px;
      top: 50%;
      transform: translateY(-50%);
      z-index: 1000;
    }
    
    .social-icons {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    
    .social-icons li {
      margin-bottom: 15px;
    }
    
    .social-icons a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background-color: var(--primary);
      color: white;
      font-size: 1.2rem;
      transition: all 0.3s;
    }
    
    .social-icons a:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(230, 57, 70, 0.4);
    }
    
    footer {
      background-color: var(--dark);
      color: white;
      padding: 3rem 0;
    }
    
    .footer-logo {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
      color: white;
    }
    
    .footer-links h5 {
      margin-bottom: 1.5rem;
      position: relative;
      display: inline-block;
    }
    
    .footer-links h5:after {
      content: '';
      position: absolute;
      width: 50%;
      height: 2px;
      bottom: -8px;
      left: 0;
      background-color: var(--primary);
    }
    
    .footer-links ul {
      list-style: none;
      padding: 0;
    }
    
    .footer-links li {
      margin-bottom: 0.8rem;
    }
    
    .footer-links a {
      color: rgba(255,255,255,0.7);
      transition: all 0.3s;
      text-decoration: none;
    }
    
    .footer-links a:hover {
      color: white;
      padding-left: 5px;
    }
    
    .copyright {
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 1.5rem;
      margin-top: 2rem;
    }
    
    /* Animation classes */
    .fade-in {
      animation: fadeIn 1s ease-in;
    }
    
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    
    /* Responsive adjustments */
    @media (max-width: 992px) {
      .hero-title {
        font-size: 2.8rem;
      }
    }
    
    @media (max-width: 768px) {
      .navbar {
        padding: 1rem;
      }
      
      .hero-title {
        font-size: 2.2rem;
      }
      
      .hero-subtitle {
        font-size: 1rem;
      }
      
      .social-dock {
        display: none;
      }
      
      .footer-links {
        margin-bottom: 2rem;
      }
    }
    
    @media (max-width: 576px) {
      .hero-title {
        font-size: 1.8rem;
      }
      
      .section-title {
        font-size: 1.8rem;
      }
    }

    .text-warning {
  font-size: 1.2rem;
}