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

html, body {
  width: 100%;
  height: 100%;
  overflow-x: hidden; /* Optional: horizontal scroll remove */
}

    /* Hero Container */
        .hero-container {
      min-height: 100vh;
      width: 100%;
      background: linear-gradient(rgba(20,15,15,0.75), rgba(20,15,15,0.75)), url('https://images.pexels.com/photos/958545/pexels-photo-958545.jpeg');
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 20px 40px;
      overflow: hidden;
    }

    /* Decorative Images */
    .deco-image { position: absolute; background-size: cover; background-position: center; border: 4px solid #333; box-shadow: 0 10px 30px rgba(0,0,0,0.5), inset 0 0 0 1px rgba(255,255,255,0.05); border-radius: 4px; z-index: 1; overflow: hidden; background-color: #222; transform-origin: center; pointer-events: none; }
    #img-top-left { width:15vw;height:12vw;top:15%;left:8%;background-image:url('https://images.pexels.com/photos/376464/pexels-photo-376464.jpeg?auto=compress&cs=tinysrgb&w=300');transform:rotate(-5deg); }
    #img-mid-left { width:18vw;height:15vw;top:40%;left:4%;background-image:url('https://images.pexels.com/photos/1279330/pexels-photo-1279330.jpeg?auto=compress&cs=tinysrgb&w=300');transform:rotate(3deg); }
    #img-bottom-left { width:12vw;height:10vw;bottom:10%;left:7%;background-image:url('https://images.pexels.com/photos/70497/pexels-photo-70497.jpeg?auto=compress&cs=tinysrgb&w=300');transform:rotate(-8deg); }
    #img-bottom-left-overlap { width:10vw;height:8vw;bottom:5%;left:0%;background-image:url('https://images.pexels.com/photos/1437267/pexels-photo-1437267.jpeg?auto=compress&cs=tinysrgb&w=300');transform:rotate(10deg); }
    #img-top-right { width:16vw;height:13vw;top:18%;right:7%;background-image:url('https://images.pexels.com/photos/1099680/pexels-photo-1099680.jpeg?auto=compress&cs=tinysrgb&w=300');transform:rotate(8deg); }
    #img-mid-right { width:18vw;height:15vw;top:35%;right:4%;background-image:url('https://images.pexels.com/photos/262978/pexels-photo-262978.jpeg?auto=compress&cs=tinysrgb&w=300');transform:rotate(-3deg); }
    #img-bottom-right { width:14vw;height:11vw;bottom:15%;right:8%;background-image:url('https://images.pexels.com/photos/1437267/pexels-photo-1437267.jpeg?auto=compress&cs=tinysrgb&w=300');transform:rotate(6deg); }
    #img-bottom-right-overlap { width:11vw;height:9vw;bottom:8%;right:0%;background-image:url('https://images.pexels.com/photos/699953/pexels-photo-699953.jpeg?auto=compress&cs=tinysrgb&w=300');transform:rotate(-10deg); }

    /* Header & Nav */
    header { width:100%;max-width:1200px;display:flex;justify-content:space-between;align-items:center;padding:20px 0;position:relative;z-index:100; }
    .logo { font-family:'Playfair Display', serif; font-size:42px; font-weight:700; color:#f0f0f0; }
    nav ul { list-style:none; display:flex; gap:35px; position:relative; }
    nav li { position:relative; cursor:pointer; }
    nav a { color:#e0e0e0; font-size:14px; font-weight:700; text-decoration:none; transition:color 0.3s; }
    nav a:hover { color:#e4a853; }
    nav a::after { content:' ▾'; font-size:0.8em; }
    .btn-theme { text-decoration:none; color:#fff; background:#111; padding:10px 20px; border:1px solid #666; font-size:13px; font-weight:700; transition:background 0.3s; }
    .btn-theme:hover { background:#000; }

    /* Mobile Toggle */
    .mobile-toggle {
      display: none;
      flex-direction: column;
      cursor: pointer;
      padding: 5px;
      z-index: 101;
    }
    .mobile-toggle span {
      width: 25px;
      height: 3px;
      background-color: #fff;
      margin: 3px 0;
      transition: 0.3s;
    }
    .mobile-toggle.active span:nth-child(1) {
      transform: rotate(-45deg) translate(-5px, 6px);
    }
    .mobile-toggle.active span:nth-child(2) {
      opacity: 0;
    }
    .mobile-toggle.active span:nth-child(3) {
      transform: rotate(45deg) translate(-5px, -6px);
    }
   
    

    /* Hero Content */
    .hero-content { flex-grow:1; display:flex; flex-direction:column; justify-content:center; align-items:center; text-align:center; max-width:800px; padding:60px 20px; z-index:2; }
    h1 { font-family:'Playfair Display', serif; font-size:72px; margin-bottom:20px; color:#f0f0f0; text-shadow:2px 2px 5px rgba(0,0,0,0.5); }
    h1 span { color:#e4a853; }
    .hero-content p { font-size:18px; max-width:600px; line-height:1.6; color:#dcdcdc; margin-bottom:30px; text-shadow:1px 1px 3px rgba(0,0,0,0.5); }

    /* Preview Bar */
    .hover-preview { position:absolute; top:100%; left:0; height:300px; width:100%; background:rgba(15,15,15,0.97); display:flex; justify-content:center; gap:10px; padding:20px; opacity:0; visibility:hidden; transform:translateY(10px); transition:all 0.3s ease; z-index:99; }
    .hover-preview img { width:150px; height:200px; margin-top: 30px; object-fit:cover; border:2px solid #333; border-radius:4px; box-shadow:0 4px 10px rgba(0,0,0,0.4); transition:transform 0.3s; }
    .hover-preview img:hover { transform:scale(1.05); }
/* Basic Navigation Styling (adjust as per your existing design) */
.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex; /* Aligns main menu items horizontally */
}

.main-nav ul li {
    position: relative; /* Important for positioning the dropdown */
}

.main-nav ul li a {
    display: block;
    padding: 15px 20px; /* Adjust padding as needed */
    color: #fff; /* White text for main menu items */
    text-decoration: none;
    font-family: Arial, sans-serif; /* Use your preferred font */
    font-size: 16px;
    text-transform: uppercase;
}

/* Underline for active/hover state on main menu items (like "PAGES" in your image) */
.main-nav ul li a:hover,
.main-nav ul li.active-page a { /* Add 'active-page' class to the current page's li */
    /* This styling seems to be for an active state rather than hover */
    /* To replicate the orange underline, you might use a pseudo-element or border-bottom */
    /* Example using border-bottom, adjust thickness and color */
    border-bottom: 2px solid orange;
}


/* Dropdown Container Styling */
.dropdown-menu {
    display: none; /* Hidden by default */
    position: absolute;
    top: 100%; /* Position below the parent menu item */
    left: 0;
    background-color: #000; /* Black background as in the image */
    min-width: 250px; /* Adjust width as needed */
    z-index: 100; /* Ensure it appears above other content */
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); /* Subtle shadow */
    list-style: none;
    padding: 10px 0; /* Padding inside the dropdown */
}

/* Dropdown Item Styling */
.dropdown-menu li {
    width: 100%; /* Ensure full width for dropdown items */
}

.dropdown-menu li a {
    color: #fff; /* White text for dropdown items */
    padding: 12px 20px; /* Padding for dropdown links */
    text-decoration: none;
    display: block;
    text-align: left; /* Align text to the left */
    font-size: 15px; /* Slightly smaller font for dropdown items */
    text-transform: none; /* No uppercase for dropdown items */
}

.dropdown-menu li a:hover {
    background-color: #333; /* Slightly lighter background on hover */
    color: orange; /* Example hover color for text */
}

/* Show Dropdown on Hover */
.has-dropdown:hover .dropdown-menu {
    display: block;
}

/* Optional: Styling for the dropdown icon (if using Font Awesome) */
.has-dropdown a i {
    margin-left: 5px; /* Space between text and icon */
    font-size: 12px; /* Adjust icon size */
}
    @media (max-width:768px) {
      .hover-preview { flex-wrap:wrap; }
      .hover-preview img { width:100px; height:70px; }
      h1 { font-size:48px; }
          /* Mobile Navigation */
      .mobile-toggle {
        display: flex;
      }
      
      nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 0;
        transition: right 0.3s ease;
        z-index: 100;
        padding: 80px 20px 20px 20px;
        overflow-y: auto;
      }
      
      nav ul.active {
        right: 0;
      }
      
      nav li {
        width: 100%;
        text-align: left;
        border-bottom: 1px solid #333;
      }
      
      nav a {
        font-size: 16px;
        padding: 15px 0;
        display: block;
        border-bottom: none;
      }
      
      .btn-theme {
        display: none;
      }
      
      .has-dropdown .dropdown-menu {
        position: static;
        display: none;
        background-color: transparent;
        box-shadow: none;
        padding: 0;
        margin-left: 20px;
        min-width: auto;
      }
      
      .has-dropdown .dropdown-menu.show {
        display: block;
      }
      
      .has-dropdown .dropdown-menu li {
        border-bottom: 1px solid #222;
      }
      
      .has-dropdown .dropdown-menu li a {
        font-size: 14px;
        padding: 10px 0;
        color: #ccc;
      }
      
      .hover-preview {
        display: none;
      }
    }
    
    .section {
         font-family: 'Georgia', serif;
      background-color: #fff;
      color: #000;
      padding: 40px 20px;
      max-width: 1200px;
      margin: auto;
      text-align: center;
    }

    .section h1 {
      font-size: 42px;
      font-weight: normal;
      letter-spacing: 1px;
      line-height: 1.3;
      margin-bottom: 50px;
    }

    .features {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      justify-content: center;
    }

    .feature-box {
      flex: 1 1 300px;
      max-width: 350px;
      text-align: center;
    }

    .feature-box img {
      width:200px;
      max-height: 300px;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 20px;
    }

    .feature-box h3 {
      font-family: 'Georgia', serif;
      font-size: 15px;
      font-weight: bold;
      margin-bottom: 12px;
    }

    .feature-box p {
      font-family: Arial, sans-serif;
      font-size: 12px;
      line-height: 1.3;
      color: #444;
    }

    @media (max-width: 768px) {
      .section h1 {
        font-size: 30px;
      }

      .features {
        flex-direction: column;
        align-items: center;
      }
    }

        .demo-section {
        background-color: #fdf7f3;
      font-family: 'Georgia', serif;
      padding: 40px 20px;
      color: #111;
      max-width: 1200px;
      margin: auto;
      text-align: center;
    }
    .demo-grid {
      display: flex;
      flex-wrap: nowrap; /* Keep in one row on desktop */
      justify-content: center;
      gap: 40px;
    }
    .demo-card {
      position: relative;
      flex: 1 1 330px; /* Flexible but min 330px */
      max-width: 330px;
      background-color: #fff;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      cursor: pointer;
    }
    .demo-card:hover {
      transform: scale(1.03);
      box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    }
    .demo-card img {
      width: 300px;
   
      height: 300px;
      display: block;
    }
    .badge {
      position: absolute;
      top: 10px;
      left: 10px;
      background-color: #f75a00;
      color: #fff;
      font-size: 11px;
      font-family: Arial, sans-serif;
      padding: 4px 8px;
      border-radius: 3px;
      text-transform: uppercase;
    }
    .demo-title {
      margin-top: 15px;
      margin-bottom: 10px;
      font-size: 14px;
      font-weight: bold;
      font-family: Arial, sans-serif;
      letter-spacing: 0.5px;
    }
    /* Responsive for tablets and phones */
    @media (max-width: 768px) {
      .demo-grid {
        flex-wrap: wrap;
        flex-direction: column;
        gap: 30px;
        align-items: center;
      }
      .demo-title {
        font-size: 13px;
      }
      .demo-card {
        max-width: 90%;
      }
    }

    .section {
      text-align: center;
      max-width: 1000px;
      margin: auto;
    }

    .tagline {
      font-family: Arial, sans-serif;
      font-weight: bold;
      font-size: 14px;
      color: #d35400;
      text-transform: uppercase;
      letter-spacing: 1px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 25px;
    }

    .tagline::before,
    .tagline::after {
      content: "";
      flex: 1;
      height: 1px;
      background-color: #d35400;
      margin: 0 12px;
      max-width: 60px;
    }

    h1 {
      font-size: 40px;
      line-height: 1.3;
      margin-bottom: 15px;
      font-weight: normal;
    }

    p.subtitle {
      font-family: Arial, sans-serif;
      color: #444;
      font-size: 15px;
    }

    @media (max-width: 768px) {
      h1 {
        font-size: 28px;
      }

      .tagline {
        font-size: 12px;
      }

      p.subtitle {
        font-size: 14px;
      }

      .tagline::before,
      .tagline::after {
        max-width: 40px;
      }
    }
    .sect {
        margin: 0;
      font-family: 'Open Sans', sans-serif;
      background-color: #111;
      color: #fff;
      overflow-x: hidden;
      background: url('https://images.unsplash.com/photo-1543353071-873f17a7a088?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
      padding: 100px 20px 60px;
      text-align: center;
      position: relative;
    }

    .sect .subheading {
      color: #F97316;
      font-weight: bold;
      font-size: 14px;
      letter-spacing: 1px;
      margin-bottom: 10px;
    }

    .sect h1 {
      font-family: 'Playfair Display', serif;
      font-size: 52px;
      margin: 0 auto;
      max-width: 800px;
      color: #111;
      line-height: 1.3;
    }

    .demo-preview {
      position: relative;
      max-width: 950px;
      margin: 60px auto 0;
    }

    .demo-preview img {
      width: 600px;
      height: 400px;
      border-radius: 10px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }

    .demo-icon {
      position: absolute;
      top: -25px;
      right: 30px;
      width: 60px;
      height: 60px;
      background-color: #F97316;
      color: white;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 28px;
      font-weight: bold;
      box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    }

    .features-row {
      margin-top: 50px;
      display: flex;
      justify-content: center;
      gap: 40px;
      flex-wrap: wrap;
    }

    .feature-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      color: #FFA94D;
      text-align: center;
    }

    .feature-icon {
      width: 60px;
      height: 60px;
      border: 1px solid #FFA94D;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 24px;
      margin-bottom: 10px;
    }

    .feature-item span {
      font-size: 14px;
      font-weight: 500;
    }

    @media (max-width: 768px) {
      .section h1 {
        font-size: 36px;
      }

      .demo-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
        right: 20px;
      }

      .features-row {
        gap: 30px;
        margin-top: 40px;
      }
    }

    @media (max-width: 480px) {
      .section h1 {
        font-size: 28px;
      }

      .demo-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
        right: 10px;
      }

      .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
      }

      .feature-item span {
        font-size: 13px;
      }
    }

    

    .wrapper {
         font-family: "Georgia", serif;
      background-color: #f7f4f0;
      color: #222;
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      padding: 50px 5%;
      gap: 40px;
      flex-wrap: nowrap;
    }

    .left-text {
      flex: 1;
      max-width: 50%;
    }

    .left-text h5 {
      color: #d36c00;
      font-size: 14px;
      margin-bottom: 10px;
      letter-spacing: 1px;
    }

    .left-text h1 {
      font-size: 40px;
      font-weight: bold;
      margin-bottom: 20px;
    }

    .left-text p {
      font-size: 17px;
      line-height: 1.6;
      margin-bottom: 20px;
    }

    .left-text ul {
      list-style: none;
      font-size: 16px;
    }

    .left-text ul li {
      margin-bottom: 10px;
      position: relative;
      padding-left: 24px;
    }

    .left-text ul li::before {
      content: "✔";
      position: absolute;
      left: 0;
      color: #d36c00;
    }

    .right-image {
      flex: 1;
      max-width: 50%;
      display: flex;
      justify-content: center;
    }

    .right-image img {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    /* Responsive: Stack on small screens */
    @media (max-width: 768px) {
      .wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .left-text,
      .right-image {
        max-width: 100%;
      }
    }
    

    .wrap {
         font-family: "Georgia", serif;
      background-color: #f7f4f0;
      color: #222;
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      padding: 50px 5%;
      gap: 40px;
      flex-wrap: nowrap;
    }

    .l-image {
      flex: 1;
      max-width: 50%;
      display: flex;
      justify-content: center;
    }

    .l-image img {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .r-text {
      flex: 1;
      max-width: 50%;
    }

    .r-text h5 {
      color: #d36c00;
      font-size: 14px;
      margin-bottom: 10px;
      letter-spacing: 1px;
    }

    .r-text h1 {
      font-size: 40px;
      font-weight: bold;
      margin-bottom: 20px;
      line-height: 1.3;
    }

    .r-text p {
      font-size: 17px;
      line-height: 1.6;
      margin-bottom: 20px;
    }

    .r-text ul {
      list-style: none;
      font-size: 16px;
      padding-left: 0;
    }

    .r-text ul li {
      margin-bottom: 10px;
      position: relative;
      padding-left: 24px;
    }

    .r-text ul li::before {
      content: "✔";
      position: absolute;
      left: 0;
      color: #d36c00;
    }

    @media (max-width: 768px) {
      .wrap {
        flex-direction: column;
        text-align: center;
        align-items: center;
      }

      .l-image,
      .r-text {
        max-width: 100%;
      }

      .r h1 {
        font-size: 32px;
      }

      .r p,
      .r ul {
        font-size: 15px;
      }
    }
.new{
     font-family: 'Inter', sans-serif;
      background-color: #0b0b1d;
      color: #ffffff;
      margin: 0;
      padding: 0;
}
     .section-dark {
      text-align: center;
      padding: 80px 20px 40px;
      max-width: 1200px;
      margin: auto;
    }

    .subtitle {
      color: #e1612b;
      font-weight: 600;
      text-transform: uppercase;
      margin-bottom: 15px;
      position: relative;
      display: inline-block;
      font-size: 14px;
      letter-spacing: 1px;
    }

    .subtitle::before,
    .subtitle::after {
      content: '';
      display: inline-block;
      width: 50px;
      height: 1px;
      background-color: #e1612b;
      vertical-align: middle;
      margin: 0 12px;
    }

    h1 {
      font-family: 'Playfair Display', serif;
      font-size: 40px;
      line-height: 1.3;
      margin-bottom: 25px;
      font-weight: 700;
    }

    .description {
      color: #b5c7d1;
      font-size: 16px;
      max-width: 800px;
      margin: auto;
      line-height: 1.7;
    }

    /* Slider */
    .slider-container {

      overflow: hidden;
      position: relative;
      max-width: 100%;
      padding: 60px 0;
    }

    .slider {
      display: flex;
      transition: transform 0.8s ease-in-out;
    }

    .slide {
      min-width: 200px;
      max-width: 250px;
      height: 250px;
      flex: 0 0 auto;
      margin: 0 10px;
      border-radius: 8px;
      overflow: hidden;
      background-color: #111;
      box-shadow: 0 4px 12px rgba(0,0,0,0.5);
      transition: transform 0.3s ease;
    }

    .slide img {
      width: 100%;
      height: auto;
      display: block;
    }

    /* Navigation dots */
    .dots {
      text-align: center;
      margin-top: 20px;
    }

    .dot {
      height: 10px;
      width: 10px;
      margin: 0 6px;
      background-color: #888;
      border-radius: 50%;
      display: inline-block;
      transition: background-color 0.3s;
      cursor: pointer;
    }

    .dot.active {
      background-color: #e1612b;
    }

    @media (max-width: 768px) {
      h1 {
        font-size: 28px;
      }

      .slide {
        min-width: 80%;
      }
    }
      .se {
      background-color: #fef8f4;
      font-family: 'Georgia', serif;
      padding: 40px 20px;
      text-align: center;
      max-width: 1000px;
      margin: auto;
    }

    .tag {
      font-family: Arial, sans-serif;
      font-weight: bold;
      font-size: 14px;
      color: #d35400;
      text-transform: uppercase;
      letter-spacing: 1px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 25px;
    }

    .tag::before,
    .tag::after {
      content: "";
      flex: 1;
      height: 1px;
      background-color: #d35400;
      margin: 0 12px;
      max-width: 60px;
    }

    h1 {
      font-size: 40px;
      line-height: 1.3;
      margin-bottom: 15px;
      font-weight: normal;
    }

    p.subtitle {
      font-family: Arial, sans-serif;
      color: #444;
      font-size: 15px;
    }

    @media (max-width: 768px) {
      h1 {
        font-size: 28px;
      }

      .tag {
        font-size: 12px;
      }

      p.subtitle {
        font-size: 14px;
      }

      .tag::before,
      .tag::after {
        max-width: 40px;
      }
    }

    
    .s {
      font-family: 'Inter', sans-serif;
      background-color: #fff;
      color: #000;
      padding: 60px 20px;
      text-align: center;
      max-width: 1200px;
      margin: auto;
    }

    .subtitle {
      color: #e1612b;
      font-weight: 600;
      text-transform: uppercase;
      margin-bottom: 10px;
      position: relative;
      display: inline-block;
    }

    .subtitle::before,
    .subtitle::after {
      content: '';
      display: inline-block;
      width: 50px;
      height: 1px;
      background-color: #e1612b;
      vertical-align: middle;
      margin: 0 12px;
    }

    
    .fs {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: #ffffff;
      color: #333;
      margin: 0;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 40px 20px;
      max-width: 1200px;
      margin: 60px auto;
      padding: 0 20px;
    }

    .f {
      text-align: center;
    }

    .f h3 {
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 8px;
    }

    .f p {
      font-size: 14px;
      color: #666;
      line-height: 1.4;
      margin: 0;
    }

    @media (max-width: 1024px) {
      .features {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .fs {
        grid-template-columns: 1fr;
      }
    }
      .build-section {
        margin-top: 70px;
  background: url('m.png') no-repeat center center/cover;
  padding: 100px 20px;
  text-align: center;
  color: white;
  position: relative;
}

.build-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.65);
  z-index: 0;
}

.build-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.sub-headline {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff6c1b;
  font-weight: bold;
  margin-bottom: 20px;
  gap: 10px;
  font-size: 0.95rem;
  flex-wrap: wrap;
}

.sub-headline .line {
  width: 30px;
  height: 2px;
  background: #ff6c1b;
}

.build-content h2 {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.3;
}

.build-content p {
  font-size: 1.05rem;
  margin-bottom: 25px;
  color: #ddd;
}

.purchase-btn {
  background-color: #ff6c1b;
  padding: 12px 25px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 3px;
  transition: 0.3s ease;
  display: inline-block;
}

.purchase-btn:hover {
  opacity: 0.85;
}

/* ✅ Responsive Styles */
@media (max-width: 768px) {
  .build-content h2 {
    font-size: 2rem;
  }

  .build-content p {
    font-size: 0.95rem;
  }

  .purchase-btn {
    font-size: 0.95rem;
    padding: 10px 20px;
  }

  .sub-headline {
    flex-direction: column;
    gap: 5px;
    font-size: 0.9rem;
  }

  .sub-headline .line {
    width: 20px;
  }
}

@media (max-width: 480px) {
  .build-section {
    padding: 60px 15px;
  }

  .build-content h2 {
    font-size: 1.5rem;
  }

  .purchase-btn {
    width: 100%;
    max-width: 300px;
  }
}
   