 /* Global Reset and Base Styling */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Arial', sans-serif;
      
      background-size: cover;
      background-repeat: no-repeat;
      background-attachment: fixed;
      background-position: center top;
      color: #111;
      overflow-y: auto;
    }

    .container {
      width: 90%;
      max-width: 1200px;
      margin: auto;
    }

    /* Header */
    .header {
      background: linear-gradient(90deg, #e5e5e5, #ffffff);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      padding: 20px 0;
    }

    .logo {
      color: #6b1515;
      font-size: 2rem;
      font-weight: bold;
      text-shadow: 1px 1px 0 silver;
    }

    .nav-links {
      list-style: none;
      display: flex;
      gap: 20px;
    }

    .nav-links a {
      color: #6b1515;
      text-decoration: none;
      font-weight: bold;
      transition: all 0.3s ease;
    }

    .nav-links a:hover {
      color: #000;
    }

    /* Hero */
    .hero {
      text-align: center;
      padding: 100px 0;
      background: linear-gradient(145deg, #ffffff, #e3e3e3);
    }

    .hero h2 {
      font-size: 3rem;
      color: #6b1515;
    }

    .hero p {
      font-size: 20px;
      margin: 20px 0;
      color: #333;
    }

    .btn {
      display: inline-block;
      padding: 12px 30px;
      background-color: #6b1515;
      color: white;
      text-decoration: none;
      border-radius: 5px;
      font-weight: bold;
      transition: transform 0.3s ease, background 0.3s ease;
    }

    .btn:hover {
      background-color: #000;
      transform: scale(1.05);
    }

    /* Sections */
    .portfolio, .about, .services, .contact {
      padding: 80px 0;
      text-align: center;
    }

    .portfolio-gallery {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .portfolio-gallery img {
      max-width: 300px;
      border-radius: 10px;
      transition: transform 0.3s ease;
    }

    .portfolio-gallery img:hover {
      transform: scale(1.05);
    }

    .service-buttons {
      display: flex;
      flex-direction: column;
      gap: 20px;
      align-items: center;
      margin-top: 30px;
    }

    .service-btn {
      padding: 15px 40px;
      background: linear-gradient(135deg, #6b1515, #000);
      color: #fff;
      text-decoration: none;
      font-size: 1.2rem;
      border-radius: 50px;
      border: 2px solid transparent;
      transition: all 0.4s ease;
      box-shadow: 0 8px 15px rgba(0,0,0,0.2);
      max-width: 400px;
      text-align: center;
      width: 100%;
    }

    .service-btn:hover {
      background: linear-gradient(135deg, #000, #6b1515);
      border-color: #aaa;
      transform: scale(1.05);
      box-shadow: 0 12px 20px rgba(0,0,0,0.3);
    }

    .contact-form {
      max-width: 600px;
      margin: auto;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .contact-form input,
    .contact-form textarea {
      padding: 15px;
      border: 1px solid #ccc;
      border-radius: 5px;
      background-color: #fff;
      color: #000;
      font-size: 1rem;
    }

    .contact-form button {
      padding: 15px;
      font-size: 1rem;
      cursor: pointer;
      background-color: #6b1515;
      color: #fff;
      border: none;
      border-radius: 5px;
      transition: background 0.3s ease;
    }

    .contact-form button:hover {
      background-color: #000;
    }

    footer {
      text-align: center;
      padding: 20px 0;
      background-color: #eee;
      color: #6b1515;
    }

    .animate {
      opacity: 0;
      transform: translateY(20px);
      transition: all 0.8s ease-out;
    }

    .animate.visible {
      opacity: 1;
      transform: translateY(0);
    }

    #preloader {
      position: fixed;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      z-index: 999;
      background-color: #ffffff;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    #preloader::after {
      content: "Initializing Systems...";
      color: #6b1515;
      font-size: 1.5rem;
      font-weight: bold;
      animation: pulse 1.5s infinite;
    }

    @keyframes pulse {
      0% {opacity: 1;}
      50% {opacity: 0.5;}
      100% {opacity: 1;}
    }

    .slider {
      display: flex;
      overflow-x: auto;
      gap: 20px;
      padding: 20px 0;
    }

    .slider img {
      max-height: 200px;
      border-radius: 10px;
      transition: transform 0.3s ease;
    }

    .slider img:hover {
      transform: scale(1.1);
    }

    .video-section {
      margin-top: 40px;
    }

    .video-section iframe {
      max-width: 100%;
      border-radius: 10px;
    }

    /* About Section */
    .about-content {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      align-items: center;
      justify-content: center;
      padding: 40px 0;
    }

    .about-img {
      width: 300px;
      height: 300px;
      overflow: hidden;
      border-radius: 50%;
      border: 8px solid #6b1515;
      box-shadow: 0 0 30px rgba(107, 21, 21, 0.5), 0 0 60px rgba(107, 21, 21, 0.2);
      transition: transform 0.5s ease, box-shadow 0.5s ease;
    }

    .about-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 50% 25%;
      border-radius: 50%;
      animation: float 6s ease-in-out infinite;
    }

    .about-img:hover {
      transform: scale(1.05);
      box-shadow: 0 0 50px rgba(107, 21, 21, 0.7), 0 0 80px rgba(107, 21, 21, 0.3);
    }

    .about-text {
      flex: 1;
      min-width: 300px;
      font-size: 1.1rem;
      color: #111;
      animation: fadeIn 2s ease forwards;
      opacity: 0;
    }

    @keyframes float {
      0% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
      100% { transform: translateY(0); }
    }

    @keyframes fadeIn {
      to { opacity: 1; }
    }