 :root {
      --primary: #052779;
      --secondary: #aabdeb;
      --accent: #f2ca80;
      --accent-dark: #caa15a;
      --light: #d5dffd;
      --dark: #0b1020;
      --text: #333;
      --white: #ffffff;
      --gray: #f5f5f5;
      --shadow: 0 10px 30px rgba(0,0,0,.15);
      --radius: 12px;
      --transition: all 0.3s ease;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Montserrat', sans-serif;
      color: var(--text);
      line-height: 1.6;
      background: linear-gradient(135deg, #f5f7ff 0%, #e8ecff 100%);
      overflow-x: hidden;
    }

    h1, h2, h3, h4, h5 {
      font-family: 'Playfair Display', serif;
      font-weight: 100;
      color: var(--primary);
    }

    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* Header Styles */
    header {
      background: rgba(255, 255, 255, 0.95);
      box-shadow: var(--shadow);
      position: sticky;
      top: 0;
      z-index: 100;
      padding: 15px 0;
    }

    .nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .logo {
      width: 50px;
      height: 50px;
      background: linear-gradient(135deg, var(--accent), var(--accent-dark));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-size: 20px;
      font-weight: bold;
      box-shadow: var(--shadow);
    }

    .logo img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ensures the image fills the circle nicely */
  border-radius: 50%;
}

    .brand-text h1 {
      font-size: 20px;
      line-height: 1.2;
    }

    .brand-text span {
      font-size: 14px;
      color: var(--accent-dark);
      font-family: 'Montserrat', sans-serif;
    }

    nav {
      display: flex;
      gap: 5px;
    }

    nav a {
      padding: 10px 15px;
      color: var(--primary);
      text-decoration: none;
      font-weight: 500;
      border-radius: var(--radius);
      transition: var(--transition);
    }

    nav a:hover, nav a.active {
      background: var(--primary);
      color: var(--white);
    }

    .cta-btn {
      background: linear-gradient(135deg, var(--accent), var(--accent-dark));
      color: var(--dark);
      padding: 10px 20px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      box-shadow: var(--shadow);
      transition: var(--transition);
    }

    .cta-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    }

    .menu-toggle {
      display: none;
      background: none;
      border: none;
      font-size: 24px;
      color: var(--primary);
      cursor: pointer;
    }

    /* Hero Section */
    .hero {
      padding: 50px 0;
      background: linear-gradient(135deg, rgba(5,39,121,0.05) 0%, rgba(170,189,235,0.1) 100%);
      text-align: center;
    }

    .hero-content {
      max-width: 800px;
      margin: 0 auto;
    }

    .hero h2 {
      font-size: 2rem;
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .hero p {
      font-size: 1.9rem;
      color: var(--primary);
      margin-bottom: 30px;
    }

    .hero-buttons {
      display: flex;
      gap: 15px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn {
      padding: 12px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: var(--transition);
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--accent), var(--accent-dark));
      color: var(--dark);
      box-shadow: var(--shadow);
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    }

    .btn-secondary {
      background: transparent;
      color: var(--primary);
      border: 2px solid var(--primary);
    }

    .btn-secondary:hover {
      background: var(--primary);
      color: var(--white);
    }

    /* Video Section */
    .video-section {
      padding: 80px 0;
      background: var(--white);
    }

    .video-container {
      position: relative;
      width: 100%;
      max-width: 600px;
      margin: 0 auto;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
    }

    .video-container video {
      width: 100%;
      display: block;
    }

    /* Features Section */
    .features {
      padding: 80px 0;
      background: var(--white);
    }

    .section-title {
      text-align: center;
      margin-bottom: 50px;
    }

    .section-title h2 {
      font-size: 2.5rem;
      position: relative;
      display: inline-block;
      padding-bottom: 15px;
    }

    .section-title h2:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background: linear-gradient(to right, var(--accent), var(--accent-dark));
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 4px;
    }

    .feature-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 30px;
      text-align: center;
      box-shadow: var(--shadow);
      transition: var(--transition);
    }

    .feature-card:hover {
      transform: translateY(-10px);
    }

    .feature-icon {
      width: 70px;
      height: 70px;
      background: linear-gradient(135deg, rgba(5,39,121,0.1) 0%, rgba(170,189,235,0.2) 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      color: var(--primary);
      font-size: 28px;
    }

    .feature-card h3 {
      margin-bottom: 15px;
      font-size: 1.5rem;
    }

    /* Pricing Section */
    .pricing {
      padding: 80px 0;
      background: linear-gradient(135deg, rgba(5,39,121,0.05) 0%, rgba(170,189,235,0.1) 100%);
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 50px;
    }

    .pricing-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 40px 30px;
      text-align: center;
      box-shadow: var(--shadow);
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }

    .pricing-card.popular:before {
      content: 'MOST POPULAR';
      position: absolute;
      top: 15px;
      right: -35px;
      background: var(--accent);
      color: var(--dark);
      padding: 5px 40px;
      font-size: 12px;
      font-weight: 600;
      transform: rotate(45deg);
    }

    .pricing-card:hover {
      transform: translateY(-10px);
    }

    .price-tag {
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--primary);
      margin: 20px 0;
    }

    .price-tag span {
      font-size: 1rem;
      font-weight: 400;
    }

    .pricing-features {
      list-style: none;
      margin: 20px 0;
      text-align: left;
    }

    .pricing-features li {
      padding: 8px 0;
      border-bottom: 1px solid #eee;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .pricing-features li i {
      color: var(--accent);
    }

    /* Gallery Section */
    .gallery {
      padding: 80px 0;
      background: var(--white);
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }

    .gallery-item {
      position: relative;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      height: 300px;
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: var(--transition);
    }

    .gallery-item:hover img {
      transform: scale(1.1);
    }

    .gallery-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
      padding: 20px;
      color: var(--white);
      transform: translateY(100%);
      transition: var(--transition);
    }

    .gallery-item:hover .gallery-overlay {
      transform: translateY(0);
    }

    /* Categories Section */
    .categories {
      padding: 80px 0;
      background: linear-gradient(135deg, rgba(5,39,121,0.05) 0%, rgba(170,189,235,0.1) 100%);
    }

    .categories-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
    }

    .category-card {
      background: var(--white);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: var(--transition);
      text-align: center;
    }

    .category-card:hover {
      transform: translateY(-10px);
    }

    .category-img {
      height: 200px;
      overflow: hidden;
    }

    .category-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: var(--transition);
    }

    .category-card:hover .category-img img {
      transform: scale(1.1);
    }

    .category-content {
      padding: 20px;
    }

    .category-content h3 {
      margin-bottom: 10px;
    }

    /* Order Form Section */
    .order {
      padding: 80px 0;
      background: var(--white);
    }

    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
    }

    .form-group {
      margin-bottom: 20px;
    }

    .form-group label {
      display: block;
      margin-bottom: 8px;
      font-weight: 500;
    }

    .form-control {
      width: 100%;
      padding: 15px;
      border: 1px solid #ddd;
      border-radius: var(--radius);
      font-family: 'Montserrat', sans-serif;
      transition: var(--transition);
    }

    .form-control:focus {
      outline: none;
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(5,39,121,0.1);
    }

    textarea.form-control {
      min-height: 120px;
      resize: vertical;
    }

    /* Footer */
    footer {
      background: var(--dark);
      color: var(--white);
      padding: 60px 0 30px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
      margin-bottom: 40px;
    }

    .footer-col h3 {
      color: var(--accent);
      margin-bottom: 20px;
      font-size: 1.5rem;
    }

    .footer-col p {
      margin-bottom: 20px;
      opacity: 0.8;
    }

    .social-links {
      display: flex;
      gap: 15px;
    }

    .social-links a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      background: rgba(255,255,255,0.1);
      border-radius: 50%;
      color: var(--white);
      text-decoration: none;
      transition: var(--transition);
    }

    .social-links a:hover {
      background: var(--accent);
      color: var(--dark);
    }

    .footer-links {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: 12px;
    }

    .footer-links a {
      color: var(--white);
      opacity: 0.8;
      text-decoration: none;
      transition: var(--transition);
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .footer-links a:hover {
      opacity: 1;
      color: var(--accent);
    }

    .copyright {
      text-align: center;
      padding-top: 30px;
      border-top: 1px solid rgba(255,255,255,0.1);
      opacity: 0.7;
    }

    /* Responsive Styles */
    @media (max-width: 992px) {
      .form-grid {
        grid-template-columns: 1fr;
      }
      
      .hero h2 {
        font-size: 2.8rem;
      }
    }

    @media (max-width: 768px) {
      .menu-toggle {
        display: block;
      }
      
      nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
        transition: var(--transition);
      }
      
      nav.active {
        left: 0;
      }
      
      .hero h2 {
        font-size: 2.3rem;
      }
      
      .hero p {
        font-size: 1.1rem;
      }
    }

    @media (max-width: 576px) {
      .hero h2 {
        font-size: 2rem;
      }
      
      .brand-text h1 {
        font-size: 18px;
      }
      
      .section-title h2 {
        font-size: 2rem;
      }
      
      .btn {
        padding: 10px 20px;
      }
    }

    /* Utility Classes */
    .text-center {
      text-align: center;
    }
    
    .mt-20 {
      margin-top: 20px;
    }
    
    .mb-20 {
      margin-bottom: 20px;
    }



    .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: contain;       /* keep full video */
  display: block;
  transform: scale(1.1);     /* zoom in a little */
  transform-origin: center;  /* zoom from center */
}
