  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  body {
      background-color: #f8f9fa;
      color: #333;
      line-height: 1.6;
  }

  a {
      text-decoration: none;
      color: inherit;
  }

  ul {
      list-style: none;
  }

  .container {
      width: 90%;
      max-width: 1200px;
      margin: 0 auto;
  }

  .btn {
      display: inline-block;
      padding: 12px 24px;
      background-color: #0056b3;
      color: white;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      font-weight: 600;
      transition: all 0.3s ease;
  }

  .btn:hover {
      background-color: #004494;
      transform: translateY(-2px);
  }

  .section-title {
      text-align: center;
      margin-bottom: 40px;
      color: #0056b3;
      position: relative;
      font-size: 18px;
      margin-top:-57px;
  }

  .section-title:after {
      content: '';
      display: block;
      width: 80px;
      height: 3px;
      background-color: #0056b3;
      margin: 10px auto 0;
  }

  /* ========= TOP HEADER BAR ========= */
  .g-international {
      background-color: #0056b3;
      color: white;
      padding: 8px 0;
      font-size: 14px;
      border-bottom: 2px solid #f9425f;
  }

  .g-international .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
  }

  .left-info {
      display: flex;
      align-items: center;
  }

  .item {
      display: flex;
      align-items: center;
      margin-right: 20px;
       white-space: nowrap;
       margin-top: 5px;
  }

 .item svg {
    width: 18px;
    height: 18px;
    margin-right: 6px;
}


  .right-social {
      /*display: flex;*/
      align-items: baseline;
  }

  .right-social span {
      margin-right: 15px;
  }

  .social-icon {
      margin-left: 12px;
      transition: transform 0.3s ease;
  }

  .social-icon:hover {
      transform: translateY(-3px);
  }

  /* ========= MAIN HEADER ========= */
  .g-international-header {
      background-color: white;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      position: sticky;
      top: 0;
      z-index: 1000;
      border-bottom: 2px solid #f9425f;
  }

  .g-int-header-nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 0;
  }

  .g-int-header-logo-img {
      height: 70px;
      width: auto;
  }

  .g-int-header-menu ul {
      display: flex;
      align-items: center;
  }

  .g-int-header-menu li {
      margin-left: 25px;
      position: relative;
  }

  .g-int-header-menu a {
      font-weight: 500;
      transition: color 0.3s ease;
  }

  .g-int-header-menu a:hover {
      color: #0056b3;
  }

  .g-int-header-dropdown {
      position: relative;
  }

  .g-int-mega-menu {
      position: absolute;
      top: 100%;
      left: 0;
      background-color: white;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      border-radius: 4px;
      min-width: 200px;
      padding: 10px 0;
      display: none;
      flex-direction: column;
      z-index: 100;
  }

  .g-int-mega-menu a {
      padding: 10px 20px;
      transition: background-color 0.3s;
  }

  .g-int-mega-menu a:hover {
      background-color: #f0f0f0;
  }

  .g-int-header-dropdown:hover .g-int-mega-menu {
      display: flex;
  }

  .g-int-header-whatsapp-btn {
      display: flex;
      align-items: center;
      background-color: #25D366;
      color: white;
      padding: 8px 15px;
      border-radius: 4px;
      transition: background-color 0.3s;
      border: 2px solid #f9425f;
      border-radius: 16px;
  }

  .g-int-header-whatsapp-btn:hover {
      background-color: #128C7E;
  }

  .g-int-header-whatsapp-btn svg {
      margin-right: 8px;
  }

  /* ========= HAMBURGER MENU ========= */
  .g-int-header-hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
  }

  .g-int-header-hamburger span {
      width: 25px;
      height: 3px;
      background-color: #333;
      margin: 3px 0;
      transition: 0.3s;
  }

  .g-int-header-hamburger.active span:nth-child(1) {
      transform: rotate(-45deg) translate(-5px, 6px);
  }

  .g-int-header-hamburger.active span:nth-child(2) {
      opacity: 0;
  }

  .g-int-header-hamburger.active span:nth-child(3) {
      transform: rotate(45deg) translate(-5px, -6px);
  }

  /* ========= MOBILE SIDEBAR ========= */
  .g-int-header-sidebar {
      position: fixed;
      top: 0;
      right: -300px;
      width: 300px;
      height: 100vh;
      background-color: white;
      box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
      padding: 20px;
      transition: right 0.3s ease;
      z-index: 1001;
      overflow-y: auto;
  }

  .g-int-header-sidebar.active {
      right: 0;
  }

  .sidebar-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
      padding-bottom: 15px;
      border-bottom: 1px solid #eee;
  }

  .sidebar-logo {
      height: 150px;
  }

  .close-sidebar {
      background: none;
      border: none;
      font-size: 24px;
      cursor: pointer;
      color: #333;
  }

  .g-int-header-sidebar a {
      display: block;
      padding: 12px 0;
      border-bottom: 1px solid #eee;
      font-weight: 500;
  }

  .mobile-dropdown button {
      width: 100%;
      text-align: left;
      background: none;
      border: none;
      padding: 12px 0;
      border-bottom: 1px solid #eee;
      font-size: 16px;
      font-weight: 500;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
  }

  .submenu {
      display: none;
      flex-direction: column;
      padding-left: 20px;
  }

  .submenu a {
      padding: 10px 0;
      border-bottom: 1px solid #f5f5f5;
  }

  .g-int-header-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      display: none;
      z-index: 999;
  }

  .g-int-header-overlay.active {
      display: block;
  }

  /* ========= HERO SECTION ========= */
  .hero {
      background: url('/img/BANNER1.jpeg');
      background-size: cover;
      background-position: center;
      color: white;
      padding: 225px 0;
      text-align: center;
  }

  .hero h1 {
      font-size: 2.5rem;
      margin-bottom: 20px;
  }

  .hero p {
      font-size: 1.2rem;
      max-width: 700px;
      margin: 0 auto 30px;
  }

  .search-box {
      max-width: 700px;
      margin: 0 auto;
      background: white;
      border-radius: 8px;
      padding: 10px;
      display: flex;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .search-box input {
      flex: 1;
      padding: 15px;
      border: none;
      border-radius: 4px;
      font-size: 16px;
  }

  .search-box button {
      background-color: #0056b3;
      color: white;
      border: none;
      padding: 0 25px;
      border-radius: 4px;
      cursor: pointer;
      font-weight: 600;
      transition: background-color 0.3s;
  }

  .search-box button:hover {
      background-color: #004494;
  }



  /* ========= ABOUT SECTION ========= */
  .about-section {
      padding: 80px 0;
      background-color: white;
  }

  .about-content {
      display: flex;
      align-items: center;
      gap: 50px;
  }

  .about-text {
      flex: 1;
  }

  .about-text h2 {
      color: #0056b3;
      margin-bottom: 20px;
      font-size: 15px;
  }

  .about-text p {
      margin-bottom: 20px;
      color: #555;
      text-align: justify;
  }

  .about-image {
      flex: 1;
  }

  .about-image img {
      width: 100%;
      border-radius: 8px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  .iso-box {
    width: 100%;
    background: linear-gradient(to right, #b31217, #e52d27);
    padding: clamp(12px, 3vw, 20px) clamp(15px, 3vw, 25px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: clamp(10px, 3vw, 18px);
    box-shadow: 2px 4px 14px rgba(0,0,0,0.25);
    height: 10px;
}

/* Responsive Icon */
.iso-box img {
    width: clamp(20px, 4vw, 30px);
    height: clamp(20px, 4vw, 30px);
    border: 2px solid #000;
    border-radius: 4px;
}

/* Responsive Text */
.iso-text {
    color: #ffffff;
    font-size: clamp(14px, 2.8vw, 20px);
    font-weight: 700;
    font-family: Arial, sans-serif;
}

  /* ========= CONTACT SECTION ========= */
  .contact-section {
      padding: 80px 0;
  }

  .contact-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
  }

  .contact-info h3 {
      color: #0056b3;
      margin-bottom: 20px;
  }

  .contact-details {
      margin-bottom: 30px;
  }

  .contact-item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 15px;
  }

  .contact-item svg {
      margin-right: 10px;
      margin-top: 5px;
      flex-shrink: 0;
  }

  .contact-form input,
  .contact-form textarea {
      width: 100%;
      padding: 12px 15px;
      margin-bottom: 20px;
      border: 1px solid #ddd;
      border-radius: 4px;
      font-size: 16px;
  }

  .contact-form textarea {
      height: 150px;
      resize: vertical;
  }

  /* ========= FOOTER ========= */
  footer {
      background-color: #00264d;
      color: white;
      padding: 60px 0 20px;
  }

  .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
      margin-bottom: 40px;
  }

  .footer-column h3 {
      margin-bottom: 20px;
      font-size: 1.2rem;
      position: relative;
      padding-bottom: 10px;
  }

  .footer-column h3:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 40px;
      height: 2px;
      background-color: #0056b3;
  }

  .footer-column ul li {
      margin-bottom: 10px;
  }

  .footer-column ul li a:hover {
      color: #4da8ff;
  }

  .footer-logo {
      height: 150px;
      margin-bottom: 15px;
      background: white;
      border-radius: 7px;
      width: 162px;
      padding: 10px;
      box-shadow: 2px 2px 6px rgb(0 0 0 / 56%);
  }

  .footer-bottom {
      text-align: center;
      padding-top: 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      font-size: 10px;
      color: #aaa;
  }
  .hero-slider {
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    display: none;
}

.hero-slide.active {
    display: block;
}

.hero-slide img {
     width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block;
}



.hero-text {
    /* position: absolute; */
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 25px;
    border-radius: 6px;
    color: #fff;
    text-align: center;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: white;
    cursor: pointer;
    padding: 10px;
    transition: 0.3s;
}

.hero-arrow.left { left: 20px; }
.hero-arrow.right { right: 20px; }

.hero-arrow:hover { color: #f9425f; }

/* Responsive */
@media(max-width:768px){
    .hero-slider { height: 35vh; }
    .hero-text h1 { font-size: 18px; }
}


  /* ========= RESPONSIVE STYLES ========= */
  @media (max-width: 992px) {
      .g-int-header-menu {
          display: none;
      }

      .g-int-header-hamburger {
          display: flex;
      }

      .about-content {
          flex-direction: column;
          margin-top;-31px;
      }

      .contact-container {
          grid-template-columns: 1fr;
      }
  }

  @media (max-width: 768px) {
      .g-international .container {
          /*flex-direction: column;*/
          text-align: center;
      }

      .hero {
          padding: 100px 0;
      }

      .left-info {
          margin-bottom: 10px;
      }

      .hero h1 {
          font-size: 2rem;
      }

      .search-box {
          flex-direction: column;
      }

      .search-box input {
          margin-bottom: 10px;
      }
  }