 
* {
  box-sizing: border-box;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* Navbar Section */

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Arial, sans-serif;
    }

    header {
      background-color: #1a1a1a;
    }

    .top-nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 5px 40px;
      height: 70px;
      position: relative;
    }

    .logo-with-text {
      display: flex;
      align-items: center;
      padding: 10px 0px;
      color: white;
    }

    .company-logo {
      height: 70px;
      margin-right: 15px;
      padding-top: 10px;
    }

    .company-title {
      font-size: 18px;
      color: white;
    }

    .main-menu {
      display: flex;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .main-menu a {
      text-decoration: none;
      color: white;
      font-size: 16px;
    }

    .main-menu a:hover {
      color: #00AEEF;
    }

    .social-icons i {
      font-size: 18px;
      margin-left: 10px;
      color: white;
      cursor: pointer;
    }

    .hamburger {
      font-size: 28px;
      color: white;
      display: none;
      cursor: pointer;
    }

    .product-dropdown {
      display: none;
      flex-direction: column;
      padding-left: 15px;
    }

    .product-dropdown a {
      padding: 4px 0;
      font-size: 15px;
      color: white;
      text-decoration: none;
    }

    .product-dropdown.show {
      display: flex;
    }

    .product-icon {
      display: none;
      margin-left: 5px;
      color: #8B1C13;
    }

    .desktop-only {
      display: flex;
    }

    .mobile-only {
      display: none;
    }

    /* Mobile Styles */
    @media screen and (max-width: 768px) {
      .hamburger {
        display: block;
      }

      .main-menu {
        display: none;
        flex-direction: column;
        background-color: #060606;
        width: 100%;
        position: absolute;
        top: 70px;
        left: 0;
        z-index: 999;
        padding: 10px 20px;
      }

      .main-menu.show {
        display: flex !important;
      }

      .main-menu a {
        padding: 8px 0;
        font-size: 16px;
      }

      .products-toggle {
        margin-left: 107px;
      }

      .product-dropdown a {
        margin-left: 80px;
        margin-top: 5px;
      }

      .product-dropdown a::before {
        content: '•';
        /* bullet character */
        position: absolute;
        left: 100px;
        color: white;
        /* bullet color */
        font-size: 20px;
        line-height: 1;
      }

      .desktop-only {
        display: none !important;
      }

      .mobile-only {
        display: block;
        width: 100%;
      }

      .product-icon {
        display: inline;
      }

      .product-wrapper .product-dropdown {
        padding-left: 20px;
      }
    }

    @media screen and (max-width: 415px){
    .company-title {
      font-size: 13px;
      color: white;
    }
    }

    /* Desktop Dropdown */
    @media screen and (min-width: 769px) {
      .product-dropdown-container {
        display: flex;
        justify-content: center;
        gap: 20px;
        background-color: #1a1a1a;
        padding: 10px 20px;
        flex-wrap: wrap;
      }

      .dropdown {
        position: relative;
      }

      .dropdown-toggle {
        background: none;
        border: none;
        color: white;
        font-size: 16px;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 5px;
      }

      .dropdown-toggle i {
        font-size: 13px;
        color: #fff;
      }

      .dropdown-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #333;
        min-width: 260px;
        z-index: 1000;
        flex-direction: column;
        padding: 10px;
        border-radius: 4px;
        padding-left: 20px;
      }

      .dropdown-menu a {
        color: white;
        padding: 5px 10px;
        text-decoration: none;
        display: block;
      }

      .dropdown-menu a::before {
        content: '•';
        /* bullet character */
        position: absolute;
        left: 10px;
        color: white;
        /* bullet color */
        font-size: 20px;
        line-height: 1;
      }

      .dropdown-menu a:hover {
        background-color: #8B1C13;
      }

      .dropdown:hover .dropdown-menu {
        display: block;
      }
    }

    

/* About Section */

 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Arial, sans-serif;
      overflow-x: hidden;
    }

    .about-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      max-width: 1300px;
      width: 100%;
      padding: 20px;
      margin: 0 auto;
    }

    .left-content {
      flex: 1 1 400px;
      padding: 20px;
      max-width: 700px;
    }

    .left-content h2 {
      font-size: 44px;
      margin-bottom: 20px;
      font-family: "Merriweather", serif;
      text-align: center;
      color: #1F2A44;
    }

    .left-content p {
      font-size: 18px;
      line-height: 1.6;
      font-family: Roboto, sans-serif;
      text-align: justify;
      margin-bottom: 15px;
    }

    .about-btn-lm {
      padding: 10px 20px;
      border-radius: 10px;
      font-weight: bold;
      font-size: 16px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: none;
      cursor: pointer;
      font-family: "Merriweather", serif;
      background-color: #8B1C13;
      color: white;
      margin-top: 20px;
      text-decoration: none;
      margin-left: 200px;
    }

    .about-btn-lm:hover {
      background-color: white;
      color: #8B1C13;
      border: 1px solid #8B1C13;
    }

    .right-content {
      flex: 1 1 400px;
      position: relative;
      height: 400px;
      margin-top: 60px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .circle {
      position: absolute;
      width: 220px;
      height: 220px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      font-size: 24px;
      font-weight: bold;
      color: #111;
      box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
      mix-blend-mode: multiply;
    }

    .circle1 {
      background-color: #f99626;
      top: 0;
      left: 15%;
    }

    .circle2 {
      background-color: #00ce4f;
      top: 0;
      left: 45%;
    }

    .circle3 {
      background-color: #2dbaed;
      top: 150px;
      left: 30%;
      font-size: 20px;
      flex-direction: column;
    }

    .circle3 span:first-child {
      font-size: 30px;
      font-weight: bold;
    }

    .circle3 span:last-child {
      font-size: 24px;
      font-weight: bold;
    }

    @media screen and (max-width: 768px) {
      .about-container {
        flex-direction: column;
        align-items: center;
        padding: 5px 15px;
      }

      .left-content {
        max-width: 100%;
        margin: 0;
      }

      .about-btn-lm {
        margin-left: 80px;
      }

      .right-content {
        height: 500px;
        margin-top: 40px;
        width: 100%;
      }

      .circle {
        width: 200px;
        height: 200px;
      }

      .circle1 {
        top: 20px;
        left: 5%;
      }

      .circle2 {
        top: 20px;
        left: 55%;
      }

      .circle3 {
        top: 180px;
        left: 25%;
      }
    }

    @media screen and (max-width: 320px){
      .right-content {
        height: 200px;
      }
    }

    @media screen and (max-width: 480px) {
      .left-content h2 {
        font-size: 30px;
      }

      .left-content p {
        font-size: 16px;
      }

      .right-content {
        height: 200px;
      }

      .circle {
        width: 160px;
        height: 160px;
        font-size: 18px;
      }

      .circle1 {
        top: 10px;
        left: 10%;
      }

      .circle2 {
        top: 10px;
        left: 45%;
      }

      .circle3 {
        top: 130px;
        left: 26%;
      }

      .circle3 span:first-child {
        font-size: 22px;
      }

      .circle3 span:last-child {
        font-size: 18px;
      }
    }

/* Product Section */
* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    .product h1 {
      text-align: center;
      font-family: "Merriweather";
      font-size: 44px;
      padding: 5px 0px;
      color: #1F2A44;
    }

    .product p {
      text-align: center;
      font-family: Roboto;
      font-size: 18px;
    }

    .product-card-container {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      justify-content: center;
      padding: 20px 20px;
    }

    .product-card {
      position: relative;
      width: calc(33.33% - 20px);
      height: 300px;
      border-radius: 24px;
      overflow: hidden;
      cursor: pointer;
      display: flex;
      align-items: flex-end;
      padding: 40px;
      color: white;
      transition: all 0.4s ease;
      background-color: var(--color);
    }

    .product-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: var(--img);
      background-size: cover;
      background-position: center;
      transition: opacity 0.4s ease;
      z-index: 0;
    }

    /* Color First */
    .product-card.color-first {
      background-color: var(--color);
    }

    .product-card.color-first::before {
      opacity: 0;
    }

    .product-card.color-first:hover::before {
      opacity: 1;
    }

    .product-card.color-first:hover {
      background-color: transparent;
    }

    /* Image First */
    .product-card.image-first {
      background-color: transparent;
    }

    .product-card.image-first::before {
      opacity: 1;
    }

    .product-card.image-first:hover::before {
      opacity: 0;
    }

    .product-card.image-first:hover {
      background-color: var(--color);
    }

    .product-card-content {
      position: relative;
      z-index: 1;
    }

    .product-card h2 {
      font-size: 22px;
      margin-bottom: 10px;
      font-family: Poppins;
    }

    .product-card p {
      font-size: 14px;
      margin-bottom: 15px;
      line-height: 1.5;
      font-family: Roboto;
      color: white;
    }

    .product-btn {
      padding: 10px 20px;
      border-radius: 10px;
      font-weight: bold;
      font-size: 16px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: none;
      cursor: pointer;
      font-family: Poppins;
    }

    .product-btn.white {
      background-color: white;
      color: black;
    }

    .product-btn.white:hover {
      opacity: 0.9;
    }

    .product-btn-viewallproduct {
      margin-top: 40px;
      padding: 10px 20px;
      border-radius: 10px;
      font-weight: bold;
      font-size: 16px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: none;
      cursor: pointer;
      font-family: Poppins;
      background-color: #8B1C13;
      color: white;
      margin-bottom: 10px;
    }

    .product-btn-viewallproduct:hover {
      background-color: white;
      color: #8B1C13;
      border: 1px solid #8B1C13;
    }

    /* Tablet */
    @media (max-width: 1024px) {
      .product-card {
        width: calc(50% - 20px);
      }

      .product h1 {
        font-size: 36px;
      }
    }

    /* Mobile */
    @media (max-width: 768px) {
      .product-card {
        width: 100%;
        padding: 30px;
      }

      .product h1 {
        font-size: 30px;
      }

      .product-card h2 {
        font-size: 20px;
      }

      .product-card p {
        font-size: 13px;
      }
  /* Force image-first cards to behave like color-first */
  .product-card.image-first {
    background-color: var(--color) !important;
  }

  .product-card.image-first::before {
    opacity: 0 !important;
  }

  .product-card.image-first:hover::before {
    opacity: 1 !important;
  }

  .product-card.image-first:hover {
    background-color: transparent !important;
  }
}

    @media (max-width: 480px) {
      .product h1 {
        font-size: 24px;
        padding: 15px 10px;
      }

      .product p {
        font-size: 16px;
      }

      .product-card {
        padding: 25px;
        height: auto;
      }

      .product-card h2 {
        font-size: 18px;
      }

      .product-card p {
        font-size: 12px;
      }

      .product-btn {
        font-size: 14px;
        padding: 8px 16px;
      }

      .product-btn-viewallproduct {
        font-size: 14px;
        padding: 8px 16px;
      }
    }


/* Mission Vission Section  */

.container {
  max-width: 1600px;
  margin: 0 auto;
  text-align: center;
  padding: 30px 20px;
  /* background-color: #fae6e5; */
  margin-bottom: 30px;
}

.subtitle {
  color: #1F2A44  ;
  font-family: "Merriweather";
  font-size: 44px;
}


.content {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 40px 0px;
}

.card {
  flex: 1 1 300px;
  border-radius: 20px;
  padding: 30px;
  min-height: 350px;
}

.vision {
  background-color: #8B1C13 ;
  text-align: left;
  height: 50%;
}

.mission {
  background-color: #8B1C13 ;
  text-align: left;
  height: 50%;
}

.image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.card h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #fff;
  font-family: "Merriweather";
}

.card p {
  font-size: 18px;
  line-height: 1.5;
  color: #e4e4e4;
  font-family: Roboto;
}

    @media (max-width: 1024px) {
      .subtitle {
        font-size: 36px;
      }

      .card h2 {
        font-size: 28px;
      }

      .card p {
        font-size: 16px;
      }
    }

    @media (max-width: 768px) {
      .content {
        flex-direction: column;
      }

      .card {
        width: 100%;
        margin-bottom: 20px;
        min-height: auto;
      }
      .card.image {
        display: none;
      }
    }

    @media (max-width: 480px) {
      .subtitle {
        font-size: 28px;
      }

      .card h2 {
        font-size: 24px;
      }

      .card p {
        font-size: 15px;
      }

      .card {
        padding: 20px;
      }
    }

    @media (max-width: 360px) {
      .subtitle {
        font-size: 24px;
      }

      .card h2 {
        font-size: 20px;
      }

      .card p {
        font-size: 14px;
      }
    }



/* Contact Section */

.start-project {
  text-align: center;
}

.start-project h1 {
  color: #1F2A44  ;
  font-family: "Merriweather";
  font-size: 44px;
  margin-bottom: 20px;
}

.start-project p {
  font-size: 1.25rem;
  color: #14213d;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
  font-family: Roboto;
}

.start-project button {
  padding: 12px 28px;
  background-color: #8B1C13 ;
  color: white;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.start-project button:hover {
  background-color: white;
  border: 1px solid #8B1C13 ;
  color: #8B1C13 ;
}
/* Responsive Typography */
@media (max-width: 1024px) {
  .start-project h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .start-project h1 {
    font-size: 1.8rem;
  }

  .start-project p {
    font-size: 1rem;
  }

  .start-project button {
    font-size: 0.95rem;
    padding: 10px 24px;
  }
}

@media (max-width: 480px) {
  .start-project h1 {
    font-size: 1.5rem;
  }

  .start-project p {
    font-size: 0.95rem;
  }

  .start-project button {
    font-size: 0.9rem;
    padding: 10px 20px;
  }
}


/* Scroll to Top Button */
#scrollTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
  font-size: 18px;
  background-color: #8B1C13;
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 999;
  transition: background 0.3s ease, transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

#scrollTopBtn:hover {
  background-color: #555;
  transform: scale(1.1);
}

/* Mobile responsiveness */
@media (max-width: 767px) {
  #scrollTopBtn {
    width: 40px;
    height: 40px;
    font-size: 16px;
    bottom: 15px;
    right: 15px;
  }
}

@media (max-width: 480px) {
  #scrollTopBtn {
    width: 36px;
    height: 36px;
    font-size: 14px;
    bottom: 45px;
    right: 12px;
  }
}

@media (max-width: 360px) {
  #scrollTopBtn {
    width: 32px;
    height: 32px;
    font-size: 12px;
    bottom: 50px;
    right: 15px;
  }
}