  /* Import Poppins font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Page Background */
body {
    background-color: #fcf1e3; /* soft cream/pale color */
    color: #333;
    font-family: 'Poppins', sans-serif;
}

/* Primary Hero Button */
.btn-hero {
    background-color: #6b0300; /* deep maroon */
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(107,3,0,0.4); /* subtle shadow */
}

.btn-hero:hover {
    background-color: #930404; /* slightly brighter on hover */
    transform: translateY(-2px);
    box-shadow: 0 7px 20px rgba(147,4,4,0.5);
}

/* Copy Button */
.copy-btn {
    background-color: #6b0300;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: bold;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.copy-btn:hover {
    background-color: #930404;
    transform: translateY(-2px);
}


.hero h1{
        color: #ff8255 !important;
        
}
.hero{
    border-radius: 22px;
      box-shadow: 0 7px 20px rgba(147,4,4,0.5);
}






/* Section Background */
.why-us-section {
    /*background: #fcf1e3;*/
    padding-top: 60px;
    padding-bottom: 60px;
}

/* Section Title */
.why-us-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #ff6b35;
    font-size: 32px;
    margin-bottom: 50px;
    position: relative;
}

.why-us-title::after {
    content: '';
    width: 60px;
    height: 4px;
    /*background-color: #6b0300;*/
    display: block;
    margin: 15px auto 0 auto;
    border-radius: 2px;
}

/* Cards */
.why-us-card {
    background: #fff;
    border-radius: 25px;
    padding: 30px 20px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.why-us-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 30px rgba(107,3,0,0.2);
}

/* Icon */
.icon-wrapper {
    font-size: 40px;
    color: #6b0300;
}

/* Card Titles */
.why-us-card .card-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #6b0300;
    font-size: 22px;
    margin-bottom: 15px;
}

/* Card Text */
.why-us-card .card-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #333;
    font-size: 16px;
    line-height: 1.6;
}



.main-content h2 {
     font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #ff6b35;
    font-size: 32px;
    margin-bottom: 50px;
    position: relative;
}






/*---------------------------Mobile view data-----------------------------------*/

/* Header */
.custom-header {
  background: #fcf1e3;
  padding: 10px 15px;
  font-family: 'Poppins', sans-serif;
  position: relative;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Container */
.custom-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}

/* Logo */
.logo-img {
  height: 45px;
}

@media (max-width: 768px) {
  .logo-img {
    height: 35px; /* smaller on mobile */
  }
}

/* Desktop menu */
.menu-desktop {
  display: flex;
  align-items: center;
  gap: 20px;
}

.menu-link {
  color: #6b0300;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s;
}

.menu-link:hover {
  color: #ff4500;
}

.contact-btn {
  background: #6b0300;
  color: #fff;
  padding: 6px 15px;
  border-radius: 20px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: background 0.3s;
}

.contact-btn:hover {
  background: #ff4500;
}

/* Hamburger icon */
.hamburger {
  font-size: 24px;
  cursor: pointer;
  color: #6b0300;
  display: none; /* hide on desktop */
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
    position: absolute;
    right: 15px; /* align to right */
    top: 50%;
    transform: translateY(-50%);
  }
}

/* Mobile Menu */
.menu-mobile {
  display: none;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  background: #fff3e0;
  padding: 10px 15px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  border-radius: 10px;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 999;
}

.menu-mobile.show {
  display: flex;
}

.menu-link-mobile {
  padding: 10px 15px;
  border-radius: 10px;
  color: #6b0300;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s;
}

.menu-link-mobile:hover {
  background: #ffe0b2;
}










    
    
 body.translator-body {
      font-family: 'Segoe UI', sans-serif;
      background: linear-gradient(135deg, #ff9933, #ff6600);
      min-height: 100vh;
      margin: 0;
      padding: 20px;
      display: flex;
      justify-content: center;
      align-items: center;
      color: #fff;
    }

    .translator-container {
      background: #fff;
      color: #333;
      max-width: 600px;
      width: 100%;
      padding: 30px;
      border-radius: 15px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.2);
      text-align: center;
      animation: fadeIn 1s ease-in-out;
    }

    .translator-title {
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 20px;
      color: #e65100;
    }

    .translator-input {
      width: 100%;
      padding: 12px;
      margin-bottom: 15px;
      border: 2px solid #ff9800;
      border-radius: 10px;
      font-size: 16px;
      resize: none;
      transition: 0.3s;
    }
    .translator-input:focus {
      outline: none;
      border-color: #e65100;
      box-shadow: 0 0 8px rgba(230, 81, 0, 0.4);
    }

    .translator-btn {
      background: #e65100;
      color: #fff;
      font-size: 16px;
      font-weight: bold;
      border: none;
      padding: 12px 30px;
      border-radius: 30px;
      cursor: pointer;
      transition: all 0.3s ease-in-out;
    }
    .translator-btn:hover {
      background: #ff9800;
      transform: translateY(-2px);
    }

    .translator-output {
      margin-top: 20px;
      padding: 15px;
      background: #fff3e0;
      border-radius: 10px;
      font-size: 18px;
      font-weight: 600;
      color: #e65100;
      min-height: 50px;
      border: 1px solid #ffcc80;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* Responsive */
    @media (max-width: 600px) {
      .translator-container {
        padding: 20px;
      }
      .translator-title {
        font-size: 20px;
      }
    }
    
    
    
    .copy-btn {
      margin-top: 10px;
      background: #e65100;
      color: #fff;
      font-size: 14px;
      font-weight: bold;
      border: none;
      padding: 8px 20px;
      border-radius: 20px;
      cursor: pointer;
      transition: all 0.3s ease-in-out;
    }
    .copy-btn:hover {
      background: #ff9800;
      transform: translateY(-2px);
    }
