/* GLOBAL RESET & BASE STYLES */
html
{
    overflow-y: scroll;
}
body.menu-open {
  overflow: hidden;
  flex-direction: column;

}
.page-wrapper {
  overflow-x: hidden;
}
* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      overflow-y: scroll;
    }

    body {
      font-family: Arial, sans-serif;
      background-color: #f9f9f9;
      color: #333;
  
    }

    body.menu-open {
      overflow: hidden;
    }

    header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      padding: 15px 30px;
      background-color: #f0f0f0;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      position: relative;
      z-index: 1000;
    }

   
  .logo {
    display: flex;
    align-items: center;
  }

  .logo-img {
    height: 60px; /* You can adjust this */
    width: auto;  /* Keeps aspect ratio */
  }

  @media (max-width: 768px) {
    .logo-img {
      height: 60px;
    }
  }


    .register {
      color: #3a0000;
    }

    .karo {
      color: #f89418;
    }

    nav {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 15px;
    }

    nav ul li {
      position: relative;
    }

    nav ul li a {
      text-decoration: none;
      color: #333;
      font-weight: bold;
      padding: 10px;
      transition: color 0.3s, transform 0.2s;
    }

    nav ul li a:hover {
      color: #f4a100;
      transform: scale(1.1);
    }

    .dropdown-content {
      display: none;
      position: absolute;
      background-color: #fff;
      min-width: 160px;
      box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
      top: 100%;
      left: 0;
      z-index: 10;
    }

    .dropdown:hover .dropdown-content {
      display: block;
    }

    .dropdown-content a {
      color: black;
      padding: 12px 16px;
      display: block;
    }

    .dropdown-content a:hover {
      background-color: #f4a100;
      color: white;
    }

    .contact-btn a {
      text-decoration: none;
      background: #f4a100;
      color: #fff;
      margin-left: 30px;
      padding: 10px 15px;
      border-radius: 20px;
      font-weight: bold;
      transition: background 0.3s ease, transform 0.2s ease;
    }

    .contact-btn a:hover {
      background: #333;
      transform: scale(1.1);
    }

    .menu-toggle {
      display: none;
      font-size: 28px;
      cursor: pointer;
      transition: transform 0.3s;
    }

    .menu-toggle:hover {
      transform: rotate(90deg);
    }

    @media (max-width: 768px) {
      .menu-toggle {
        display: block;
      }

      nav {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #fff;
        position: absolute;
        top: 70px;
        left: 0;
        padding: 10px 0;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
      }

      nav.active {
        display: flex;
      }

      nav ul {
        flex-direction: column;
        text-align: center;
      }

      nav ul li {
        padding: 10px 0;
      }

      .dropdown-content {
        position: static;
        box-shadow: none;
        background: transparent;
      }

      .contact-btn {
        margin-top: 10px;
        text-align: center;
        width: 100%;
        margin-bottom: 10px;
      }
    }

    /* WHY CHOOSE US SECTION */
    .why-choose {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      padding: 60px 10%;
      gap: 30px;
      position: relative;
      overflow: hidden;
      background-color: #fff9f3;
    }

   

    /* IMAGE SECTION */
    .why-choose img {
      width: 100%;
      max-width: 490px;
      border-radius: 20px;
      box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease-in-out;
    }

    .why-choose img:hover {
      transform: scale(1.05);
    }

    /* TEXT CONTENT */
    .why-text {
      flex: 1;
      padding: 15px 30px;
      min-width: 360px;
      position: relative;
      z-index: 1;
      text-align: left;
    }

    .why-text h2 {
      font-size: 2rem;
      font-weight: bold;
      color: orange;
      margin-bottom: 20px;
      text-transform: uppercase;
      padding: 10px 0;
    }

    .why-text h2 span {
      color: #ff6600;
    }

    .why-text p {
      font-size: 18px;
      color: #333;
      font-weight: 600;
      margin-bottom: 25px;
      max-width: 600px;
      line-height: 1.6;
    }

    /* GRID CONTAINER */
    .grid {
        margin-left: 10%;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
    }

    /* INDIVIDUAL GRID BOX */
    .box {
      display: flex;
      align-items: center;
      background: white;
      padding: 12px 15px;
      border-radius: 8px;
      box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.1);
      font-size: 14px;
      font-weight: bold;
      transition: all 0.3s ease-in-out;
      cursor: pointer;
    }

    .box img {
      width: 20px;
      margin-right: 10px;
    }

    .box:hover {
      background: #ff6600;
      color: white;
      transform: translateY(-5px);
      box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
    }

    /* RESPONSIVE DESIGN */
    @media (max-width: 768px) {
      .why-choose {
        flex-direction: column;
        text-align: center;
        padding: 40px 5%;
      }

      .why-choose img {
        max-width: 300px;
      }

      .why-text h2 {
        font-size: 1.5rem;
      }

      .why-text p {
        font-size: 16px;
        margin-left: auto;
        margin-right: auto;
      }

      .grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }

      .decor-circle {
        display: none; /* Hide on small screens */
      }
    }

    /* FOOTER STYLES */
    footer {
      background: #0c0c0c;
      padding: 40px 20px;
    }

    .footer-container {
      max-width: 1200px;
      margin: auto;
    }

    .footer-sections {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 25px;
      text-align: left;
    }

    .footer-column h3 {
      font-size: 18px;
      color: #f8b400;
      position: relative;
      display: inline-block;
      margin-bottom: 10px;
    }

    .footer-column h3::after {
      content: '';
      width: 50%;
      height: 3px;
      background: #f8b400;
      display: block;
      margin-top: 4px;
      transition: width 0.3s ease-in-out;
    }

    .footer-column h3:hover::after {
      width: 100%;
    }

    .footer-column ul {
      color: white;
      list-style: none;
    }

    .footer-column ul li {
      font-size: 14px;
      margin: 6px 0;
      cursor: pointer;
      transition: color 0.3s ease, transform 0.3s ease;
    }

    .footer-column ul li:hover {
      color: #f8b400;
      transform: translateX(5px);
    }

    .footer-button {
      text-align: center;
      margin-top: 20px;
    }

    .footer-button button {
      background: transparent;
      color: white;
      border: 2px solid #f8b400;
      padding: 12px 25px;
      cursor: pointer;
      font-size: 16px;
      transition: all 0.3s ease;
      border-radius: 5px;
    }

    .footer-button button:hover {
      background: #f8b400;
      color: black;
      transform: scale(1.1);
    }

    .footer-content {
      margin-top: 30px;
    }

    .footer-content h3 {
      font-size: 18px;
      color: #f7941d;
      margin-top: 20px;
    }

    .footer-content p {
      font-size: 14px;
      color: #ccc;
      line-height: 1.5;
      margin-bottom: 10px;
    }

    .legal-links {
      margin-top: 20px;
    }

    .legal-links a {
      color: #f7941d;
      text-decoration: none;
      margin: 0 10px;
      font-size: 14px;
      transition: color 0.3s ease;
    }

    .legal-links a:hover {
      text-decoration: underline;
      color: #ffa500;
    }

    .footer-note {
      font-size: 14px;
      margin-top: 15px;
      color: #bbb;
    }

    .disclaimer {
      font-size: 12px;
      margin-top: 10px;
      color: white;
    }

    @media (max-width: 768px) {
      .footer-sections {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .footer-column h3::after {
        width: 100%;
      }

      .legal-links a {
        display: block;
        margin: 5px 0;
      }
    }
     /* HERO SECTION */
    .hero {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      padding: 10px 10px;
      
      gap: 30px;
      background: linear-gradient(to right, #fef3e4, #ffd8a8);
      position: relative;
    }

    /* HERO TEXT */
    .hero-text {
      flex: 1;
      min-width: 320px;
    }

    .hero-text h4 {
      padding: 10px 20px;
      font-size: 20px;
      font-weight: 600;
      color: #0e1a70;
    }

    .hero-text h1 {
      font-size: 45px;
      color: #360404;
      padding: 10px 20px;
      padding-top: 1%;
    }

    .hero-text h1 span {
      color: #ff6600;
    }

    .hero-text p {
      padding: 10px 20px;
      font-size: 18px;
      color: #360404;
      font-weight: 500;
      margin-top: 10px;
    }

    .cta-button {
      display: inline-block;
      margin-top: 20px;
      padding: 12px 40px;
      background: #ff6600;
      color: white;
      font-size: 16px;
      font-weight: bold;
      border-radius: 8px;
      text-decoration: none;
      transition: 0.3s ease-in-out;
      margin-left: 2%;
    }

    .cta-button:hover {
      background: #d94c00;
      transform: scale(1.1);
    }

    /* HERO IMAGE */
    .hero-image {
      flex: 1;
      min-width: 320px;
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .hero-image img {
      width: 100%;
      max-width: 400px;
      border-radius: 20px;
      clip-path: polygon(0 0, 90% 0, 100% 10%, 100% 100%, 10% 100%, 0 90%);
      transition: 0.3s ease-in-out;
    }

    .hero-image img:hover {
      padding: 10px 10px;
      transform: scale(1.05);
    }

    /* RESPONSIVE DESIGN */
    @media (max-width: 768px) {
      .hero {
        flex-direction: column;
        text-align: center;
        padding: 40px 5%;
      }

      .hero-text h1 {
        font-size: 35px;
      }

      .hero-text p {
        font-size: 16px;
      }

      .cta-button {
        padding: 10px 25px;
        font-size: 14px;
        margin-left: 0;
      }

      .hero-image img {
        max-width: 300px;
      }

      /* WHY CHOOSE US SECTION */
    .why-choose {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      padding: 60px 10%;
      gap: 60px;
      position: relative;
      overflow: hidden;
      background-color: #fff9f3;
    }

    /* Decorative Circle */
    .decor-circle {
      width: 50px;
      height: 50px;
      background: rgba(244, 186, 78, 0.6);
      border-radius: 50%;
      position: absolute;
      z-index: 0;
      left: 48%;
      top: 21%;
      transform: translate(-50%, -50%);
    }

    /* IMAGE SECTION */
    .why-choose img {
      width: 100%;
      max-width: 450px;
      border-radius: 20px;
      box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease-in-out;
    }

    .why-choose img:hover {
      transform: scale(1.05);
    }

    /* TEXT CONTENT */
    .why-text {
      flex: 1;
      min-width: 360px;
      position: relative;
      z-index: 1;
      text-align: left;
    }

    .why-text h2 {
      font-size: 2rem;
      font-weight: bold;
      color: orange;
      margin-bottom: 20px;
      text-transform: uppercase;
      padding: 10px 0;
    }

    .why-text h2 span {
      color: orange;
    }

    .why-text p {
      font-size: 18px;
      color: #333;
      font-weight: 600;
      margin-bottom: 25px;
      max-width: 600px;
      line-height: 1.6;
    }

    /* GRID CONTAINER */
    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 15px;
    }

    /* INDIVIDUAL GRID BOX */
    .box {
      display: flex;
      align-items: center;
      background: white;
      padding: 12px 15px;
      border-radius: 8px;
      box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.1);
      font-size: 16px;
      font-weight: bold;
      transition: all 0.3s ease-in-out;
      cursor: pointer;
      margin-right: 17%;
    }

    .box img {
      width: 20px;
      margin-right: 10px;
    }

    .box:hover {
      background: #ff6600;
      color: white;
      transform: translateY(-5px);
      box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
    }

    /* RESPONSIVE DESIGN */
    @media (max-width: 768px) {
      .why-choose {
        flex-direction: column;
        text-align: center;
        padding: 40px 5%;
      }

      .why-choose img {
        max-width: 300px;
      }

      .why-text h2 {
        font-size: 1.5rem;
      }

      .why-text p {
        font-size: 16px;
        margin-left: auto;
        margin-right: auto;
      }

      .grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }

      .decor-circle {
        display: none; /* Hide on small screens */
      }
    }

    /* Contact Section */
    .contact-section {
      text-align: center;
      padding: 60px 20px;
      background-color: #f3f6fc;
    }

    .contact-title {
      font-size: 32px;
      margin-bottom: 30px;
      color: #f7941d;
      font-weight: bold;
    }
  }

    /* Contact Container */
    .contact-container {
      display: flex;
      max-width: 1100px;
      margin: auto;
      border-radius: 12px;
      padding: 30px;
      gap: 30px;
      flex-wrap: wrap;
      background: rgba(255, 255, 255, 0.7);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    }

    /* Left Side - Contact Info */
    .contact-info {
      flex: 1;
      min-width: 280px;
      font-size: 15px;
      font-weight: 500;
    }

    .info-box {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
      padding: 15px;
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.8);
      border-left: 4px solid #f7941d;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease, background 0.3s ease;
    }

    .info-box:hover {
      background: rgba(255, 255, 255, 1);
      transform: scale(1.03);
    }

    .info-box i {
      font-size: 28px;
      color: #f7941d;
      margin-right: 15px;
    }

    .info-box h5 {
      margin: 0 0 5px;
      font-size: 16px;
      text-align: left;
    }

    .info-box p {
      margin: 0;
      text-align: left;
    }

    /* Right Side - Contact Form */
    .contact-form {
      flex: 1;
      min-width: 280px;
      text-align: left;
    }

    .contact-form h4 {
      margin-bottom: 15px;
      color: #333;
      font-weight: bold;
    }

    .contact-form input,
    .contact-form textarea {
      width: 100%;
      padding: 12px;
      margin-bottom: 12px;
      border: none;
      border-radius: 6px;
      background-color: #fff;
      box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
      transition: box-shadow 0.3s;
    }

    .contact-form input:focus,
    .contact-form textarea:focus {
      box-shadow: 0 0 8px rgba(247, 148, 29, 0.3);
      outline: none;
    }

    .contact-form button {
      width: 100%;
      padding: 12px;
      background: linear-gradient(135deg, #f7941d, #d67c12);
      color: white;
      border: none;
      cursor: pointer;
      border-radius: 6px;
      font-size: 16px;
      font-weight: bold;
      transition: transform 0.2s ease, background 0.3s ease;
    }

    .contact-form button:hover {
      transform: translateY(-3px);
      background: linear-gradient(135deg, #d67c12, #f7941d);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .contact-container {
        flex-direction: column;
        padding: 20px;
      }

      .contact-form,
      .contact-info {
        width: 100%;
      }

      .contact-form h4 {
        text-align: center;
      }
    }
     .customer-testimonials {

      padding: 60px 20px;
      background-color: #fff;
      text-align: center;
    }

    .customer-testimonials h2 {
      font-size: 32px;
      margin-bottom: 40px;
      color: orange;
    }


    .swiper {
      margin: 0 auto;
      padding: 0 5%;
      padding-bottom: 40px;
    }

    .swiper-slide {
      display: flex;
      justify-content: center;
    }

    .blog-card {
      background: white;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      width: 85%;
      max-width: 350px;
    }

    .blog-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }

    .blog-card img {
      width: 80%;
      height: 200px;
      object-fit: cover;
    }

    .blog-card h5 {
      font-weight: bold;
      color: #f7941d;
      margin-top: 10px;
    }

    .blog-card p {
      color: #555;
      font-size: 15px;
      margin: 10px 0;
    }

    .swiper-pagination-bullet {
      background: #f7941d;
    }

    @media (max-width: 768px) {
      .swiper {
        padding: 0 5%;
      }
    }

    @media (max-width: 480px) {
      .customer-testimonials h2 {
        font-size: 24px;
      }
    }
/* WHAT CAN WE DO Section */
    .partners {
      text-align: center;
      padding: 80px 20px;
      background: white;
      border-radius: 20px;
      box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
      max-width: 1100px;
      margin: auto;
    }

    .container {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 40px;
    }

    .text-section {
      flex: 1;
      min-width: 280px;
      text-align: left;
    }

    .text-section h5 {
      font-weight: 600;
      font-size: 1.7rem;
      margin-bottom: 10px;
      text-transform: uppercase;
    }

    .text-section p {
      font-size: 20px;
      font-weight: 500;
      transition: transform 0.3s ease;
      margin-bottom: 10px;
    }

    .buttons {
      margin-top: 20px;
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
    }

    .btn {
      padding: 12px 25px;
      border-radius: 25px;
      font-weight: bold;
      font-size: 15px;
      cursor: pointer;
      transition: transform 0.3s ease;
      border: none;
    }

    .btn-orange {
      background-color: #ff9f43;
      color: white;
      box-shadow: 0px 4px 10px rgba(255, 159, 67, 0.5);
    }

    .btn-white {
      background-color: white;
      border: 2px solid #ff9f43;
      color: #ff9f43;
    }

    .btn:hover {
      transform: scale(1.05);
    }

    .image-section {
      flex: 1;
      min-width: 250px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .image-wrapper {
      display: flex;
    }

    .image-wrapper img {
      width: 100%;
      max-width: 250px;
      border-radius: 10px;
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .image-wrapper img:hover {
      transform: scale(1.05);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

    /* Responsive Styles */
    @media (max-width: 768px) {
      .container {
        flex-direction: column;
        text-align: center;
      }

      .text-section {
        text-align: center;
      }

      .buttons {
        justify-content: center;
      }

      .text-section h4 {
        font-size: 1.5rem;
      }

      .text-section p {
        font-size: 18px;
      }
    }

    @media (max-width: 480px) {
      .btn {
        padding: 10px 20px;
        font-size: 14px;
      }

      .image-wrapper img {
        max-width: 200px;
      }

      .text-section p {
        font-size: 16px;
      }
    }
    .flow-section {
      padding: 50px 10%;
      background-color: white;
      text-align: center;
    }

    .flow-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: relative;
      flex-wrap: wrap;
      gap: 40px;
    }

    .flow-step {
      background-color: #072e58;
      padding: 15px 20px;
      border-radius: 12px;
      color: white;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      text-align: center;
      flex: 1;
      
    }


    .flow-step:nth-child(2) {
      background-color: #f7931e;
      color: #fff;
    }

    .flow-step img {
      width: 40px;
      margin-bottom: 10px;
    }

    .flow-step p {
      margin: 0;
      font-weight: bold;
      font-size: 16px;
      line-height: 1.3;
    }

    .flow-arrows {
      position: absolute;
      top: 40%;
      left: 0;
      width: 100%;
      height: 60px;
      pointer-events: none;
    }

    @media (max-width: 768px) {
      .flow-container {
        flex-direction: column;
        gap: 30px;
      }

      .flow-arrows {
        display: none;
      }

      .flow-step {
        max-width: 90%;
      }
    }

    @media (max-width: 480px) {
      .flow-step img {
        width: 35px;
      }

      .flow-step p {
        font-size: 14px;
      }
    }

    /* Section Styling */
    .our-services {
      text-align: center;
      padding: 50px 20px;
      background-color: white;
    }

    .section-title {
      font-size: 32px;
      font-weight: bold;
      color: #333;
      margin-bottom: 20px;
    }

    .highlight {
      color: orange;
    }

    /* Grid Layout */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
      justify-content: center;
      max-width: 1000px;
      margin: 0 auto 30px auto;
      padding: 0 20px;
    }

    /* Service Item */
    .service-item {
      background: white;
      padding: 20px;
      border-radius: 10px;
      text-align: center;
      font-size: 16px;
      font-weight: bold;
      box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease-in-out;
      cursor: pointer;
    }

    .service-item i {
      font-size: 30px;
      color: orange;
      margin-bottom: 10px;
      transition: transform 0.3s ease;
    }

    .service-item:hover {
      background: orange;
      color: white;
      transform: scale(1.05);
    }

    .service-item:hover i {
      transform: rotate(360deg);
      color: white;
    }

    /* CTA Text */
    .cta-text {
      font-size: 20px;
      font-weight: 500;
      transition: transform 0.3s ease;
      max-width: 600px;
      margin: auto;
    }

    .cta-text a {
      color: orange;
      text-decoration: none;
      font-weight: bold;
    }

    .cta-text a:hover {
      text-decoration: underline;
    }

    @media (max-width: 768px) {
      .section-title {
        font-size: 28px;
      }

      .service-item {
        font-size: 15px;
      }

      .cta-text {
        font-size: 18px;
      }
    }

    @media (max-width: 480px) {
      .section-title {
        font-size: 24px;
      }

      .service-item i {
        font-size: 26px;
      }

      .cta-text {
        font-size: 16px;
      }
    }