/* General Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.hello{
    display: flex;
}
.me-4{
   color: red;
}
.mblNavBar{
    display: none;
}
/* Navbar Styles */
.navbar {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    justify-content: center;
}
.navbar-brand img {
    height: 65px;
}
.nav-link {
    font-weight: 500;
    color: #333;
    margin-right: 15px;
}
.nav-link:hover {
    color: white;
}
.btn-danger {
    font-weight: 600;
    padding: 8px 20px;
}
.d-none{
    display: flex !important;
}
/* Hero Section */
.hero-section {
    background-color: #f8f9fa;
}

/* Mobile View */
@media (max-width: 768px) {
    .hero-section {
        padding: 30px 0; /* Reduce padding for smaller screens */
        /* Adjust margin for better fit */
    }
    .hello{
        display:none;
    }
    .mblNavBar{
        display: flex;
    }
    .d-none{
        display: none !important;
    }
    
}
/* General Dropdown Styling */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    list-style: none;
    min-width: 150px;
}

/* Show dropdown menu on hover */
.dropdown:hover > .dropdown-menu,
.dropdown:focus-within > .dropdown-menu {
    display: block;
}

/* Styling submenu */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-left: 5px;
}

/* Show submenu on hover */
.dropdown-submenu:hover > .dropdown-menu,
.dropdown-submenu:focus-within > .dropdown-menu {
    display: block;
}

/* Basic Link Styling */
.dropdown-item {
    padding: 10px;
    display: block;
    color: black;
    text-decoration: none;
}

.dropdown-item:hover {
    background: lightgray;
}


@media (max-width: 480px) {
    .hero-section {
        padding: 20px 0; /* Further reduce padding */
       /* Optimize for smaller screens */
    }
}

.hero-section h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
}
.hero-section p {
    color: #555;
}
.hero-section input {
    max-width: 300px;
    margin-right: 10px;
}
.hero-section img {
    max-width: 90%;
    margin-top: 4%;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}


.who-we-are {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #222;
    line-height: 36%;
    text-align: center;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.faq-container {
    width: 80%;
    /* max-width: 800px; */
    margin: 20px auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
    text-align: center;
    color: #333;
}

.faq {
    margin-bottom: 10px;
}

.faq-question {
    width: 100%;
    padding: 10px;
    /* background: #007BFF; */
    color: black;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 16px;
    outline: none;
    transition: 0.3s;
    border-radius: 5px;
}

.faq-question:hover {
    /* background: #0056b3; */
}

.faq-answer {
    display: none;
    padding: 10px;
    background: #f9f9f9;
    border-left: 3px solid #007BFF;
    margin-top: 5px;
    border-radius: 5px;
}

.faq-answer.active {
    display: block;
}

@media (max-width: 600px) {
    .faq-container {
        width: 95%;
    }
    .faq-question {
        font-size: 14px;
    }
}
.custom-button {
    font-size: 18px;
    padding: 12px 24px;
    border-radius: 8px;
}

/* Mobile View Adjustments */
@media (max-width: 576px) {
    .custom-button {
        font-size: 16px;
        padding: 10px 20px;
    }
    .hero-section img {
        max-width: 90%;
        margin-top: 15%;
        border-radius: 15px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
}

.section-description {
    font-size: 1.125rem;
    color: #555;
    max-width: 975px;
    margin: 0 auto;
    line-height: 1.8;
    text-align: center;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .section-description {
        font-size: 1rem;
    }
}


.expertise-section {
    background-color: #fff;
    padding: 50px 0;
}

.expertise-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    height: 100%;
}

.expertise-card:hover {
    transform: translateY(-5px);
}

.icon {
    font-size: 2rem;
    color: #dc3545;
}

.btn-danger {
    background-color: #dc3545;
    color: white;
    border: none;
}


h2 {
    font-weight: bold;
    color: #222;
}

.accordion-button {
    background-color: #fff;
    color: #222;
    border: none;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-item {
    border-radius: 8px;
    margin-bottom: 10px;
    border: none;
    background-color:#555 ;
}

.accordion-button:not(.collapsed) {
    background-color: #f8f9fa;
}

.accordion-body {
    background-color: #fff;
    border-radius: 0 0 8px 8px;
}

@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    h2 {
        font-size: 1.5rem;
    }

    .accordion-button {
        font-size: 1rem;
    }
}

.section-title {
    font-size: 28px;
    font-weight: bold;
    color: #1a1a1a;
}

.section-subtitle {
    font-size: 16px;
    color: #555;
    /* margin-bottom: 30px; */
}

.feature-box {
    text-align: center;
    padding: 20px;
}

.icon {
    font-size: 50px;
    color: red;
    margin-bottom: 10px;
}

h4 {
    font-size: 18px;
    font-weight: bold;
    color: #1a1a1a;
}



/* Mobile Responsive */
@media (max-width: 768px) {
    .feature-box {
        margin-bottom: 20px;
    }
}

.strategy-section {
    padding: 50px 0;
}

.section-title {
    font-size: 28px;
    font-weight: bold;
    color: #222;
    margin-bottom: 30px;
}

.strategy-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    margin-bottom: 20px;
}

.step-number {
    background: red;
    color: white;
    font-size: 20px;
    font-weight: bold;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}

h4 {
    font-size: 18px;
    font-weight: bold;
    color: #222;
}



/* Mobile View */
@media (max-width: 768px) {
    .strategy-box {
        margin-bottom: 15px;
    }
}


.section-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.team-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    border: 3px solid #ddd;
}





.wrapper {
    width: 90%;
    max-width: 1536px;
    margin-inline: auto;
    position: relative;
    height: 200px; /* Increased height to accommodate images */
    /* margin-top: 5rem; */
    overflow: hidden;
    mask-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 1) 20%,
      rgba(0, 0, 0, 1) 80%,
      rgba(0, 0, 0, 0)
    );
  }
  
  @keyframes scrollLeft {
    to {
      left: -200px;
    }
  }
  
  .item {
    width: 200px;
    height: 200px; /* Increased height to match wrapper */
    background-color: transparent;
    border-radius: 6px;
    position: absolute;
    left: max(calc(200px * 10), 100%);
    animation-name: scrollLeft;
    animation-duration: 30s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    overflow: hidden; /* Ensure images don't overflow */
  }
  
  .item-image {
    width: 200px;
    height: 200px;
    display: block;
  }
  h6{
    font-weight: bold;
  }
  /* Animation delays for each item */
  .item1 {
    animation-delay: calc(30s / 10 * (10 - 1) * -1);
  }
  
  .item2 {
    animation-delay: calc(30s / 10 * (10 - 2) * -1);
  }
  
  .item3 {
    animation-delay: calc(30s / 10 * (10 - 3) * -1);
  }
  
  .item4 {
    animation-delay: calc(30s / 10 * (10 - 4) * -1);
  }
  
  .item5 {
    animation-delay: calc(30s / 10 * (10 - 5) * -1);
  }
  
  .item6 {
    animation-delay: calc(30s / 10 * (10 - 6) * -1);
  }
  
  .item7 {
    animation-delay: calc(30s / 10 * (10 - 7) * -1);
  }
  .item8 {
    animation-delay: calc(30s / 10 * (10 - 8) * -1);
  }
  .item9 {
    animation-delay: calc(30s / 10 * (10 - 9) * -1);
  }
  .item10 {
    animation-delay: calc(30s / 10 * (10 - 10) * -1);
  }
  
  
  
  /* Optional hover effect */
  .item:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  .trusted-brands-section {
    text-align: center;
    margin: 40px 0;
  }
  
  .trusted-brands-heading {
    font-size: 2rem;
    font-weight: bold;
    /* margin-bottom: 20px; */
    color: #333;
    text-align: center;
  }




.team-heading {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
}

.team-member {
    margin-bottom: 20px;
}

.team-member img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 5px solid #ddd;
    transition: transform 0.3s ease-in-out;
}

.team-member img:hover {
    transform: scale(1.1);
    border-color: #007bff;
}

.team-member h4 {
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
}

.team-member p {
    font-size: 14px;
    color: #6c757d;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .team-member img {
        width: 120px;
        height: 120px;
    }

    .team-heading {
        font-size: 20px;
    }
}

.section-title {
    font-weight: 700;
    margin-bottom: 30px;
}

/* Testimonial Cards */
.testimonial-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.stars {
    font-size: 18px;
    color: #fbbc04;
    margin-bottom: 10px;
}

.testimonial-text {
    font-size: 14px;
    color: #333;
    font-style: italic;
    margin-bottom: 15px;
}

/* Client Info */
.client-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.client-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .testimonial-card {
        margin-bottom: 20px;
    }
}

/* Form Input Styles */
.strategy-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: #000;
    }
    
    .strategy-form label {
    text-align: left;
    font-size: 14px;
    margin-bottom: -21px;
    }
    .strategy-form input {
    padding: 12px;
    border: 1px solid #444;
    border-radius: 5px;
    font-size: 16px;
    color: #000;
    }
    
    .strategy-form span {
    color: red;
    }
    /* Submit button */
    .submit-button {
    background-color: #e60000;
    color: white;
    padding: 12px;
    border: none;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    }
    
    .submit-button:hover {
    background-color: yellowgreen;
    }
    .content-form {
    width: 100%;
    max-width: 600px;
    margin: 18px auto;
    padding: 20px;
    color: white;
    text-align: center;
    font-family: Arial, sans-serif;
    }
    .content-form h6{
    color: #d8ff00;
    }