:root {
      --theme-color: #0b5c8b;
      --theme-secondary: #1c8a7a;
      --theme-accent: #ed3237;
      --theme-light: #e7f3ff;
      --theme-dark: #002a4b;
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      font-family: "Inter", "Poppins", sans-serif;
      background: linear-gradient(88.39deg, var(--theme-light) 27.5%, #f4f7f9 86.65%);
      overflow-x: hidden;
      scroll-behavior: smooth;
    }
    
      /* Preloader Styles */
    #preloader {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, #1c618a, #005f9f, #4586f5);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9999;
      transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
    }
      /* Cookie Consent Styles */
  .cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: white;
    padding: 20px;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 42, 75, 0.2);
    z-index: 9998;
    transform: translateY(150%);
    transition: transform 0.5s ease-out;
    border-top: 4px solid var(--theme-color);
  }
  
  .cookie-consent.show {
    transform: translateY(0);
  }
  
  .cookie-content p {
    color: var(--theme-dark);
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.5;
  }
  
  .cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  
  .cookie-btn {
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
  }
  
  .necessary-btn {
    background: transparent;
    color: var(--theme-color);
    border: 2px solid var(--theme-color);
  }
  
  .necessary-btn:hover {
    background: rgba(28, 97, 138, 0.1);
  }
  
  .accept-btn {
    background: var(--theme-color);
    color: white;
  }
  .input-group .form-control{
    border-radius: 0!important;
    font-size: 14px;
  }
  .alternate-top-box{
    width: 750px;
    margin: 0 auto;
  }
  .accept-btn:hover {
    background: var(--theme-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(28, 97, 138, 0.3);
    color: #fff;
  }
  .form-check-input{
    border-radius: 4px!important;
  }
.form-check-input:checked{
background-color: var(--theme-color)!important;
}
    .preloader-content {
      text-align: center;
    }
    
    .preloader-logo {
      width: 120px;
      height: 120px;
      margin: 0 auto 30px;
      animation: pulse 1.5s infinite;
    }
    
    .preloader-logo img {
      width: 160px;
      height: 100%;
      margin-left: -25px;
      object-fit: contain;
    }
    
    .preloader-spinner {
      width: 50px;
      height: 50px;
      border: 5px solid rgba(255, 255, 255, 0.3);
      border-radius: 50%;
      border-top-color: white;
      animation: spin 1s linear infinite;
      margin: 0 auto;
    }
    
    .preloader-text {
      color: white;
      font-size: 18px;
      margin-top: 20px;
      font-weight: 500;
    }
      .chat-sticky {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #0b6e84, #0a6f9e);
    border-radius: 30px;
    padding: 15px 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Segoe UI', sans-serif;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(5, 84, 130, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    animation: float 3s ease-in-out infinite;
  }
  
  .chat-sticky span {
    position: relative;
    padding-left: 25px;
  }
  
  .chat-sticky span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M19.005 3.175H4.674C3.642 3.175 3 3.789 3 4.821V21.02l3.544-3.514h12.461c1.033 0 2.064-1.06 2.064-2.093V4.821c-.001-1.032-1.032-1.646-2.064-1.646zm-4.989 9.869H7.041V11.1h6.975v1.944zm3-4H7.041V7.1h9.975v1.944z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
  }
  
  .chat-sticky:hover {
    transform: translateY(-5px);

    background: linear-gradient(135deg, #0b6e84, #0a6f9e);
  }
  
  /* Animation Keyframes */
  @keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
  }
   

    @keyframes float {
      0% { transform: translateY(0px); }
      50% { transform: translateY(-15px); }
      100% { transform: translateY(0px); }
    }
    
    @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.05); }
      100% { transform: scale(1); }
    }
    
    @keyframes gradient {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }
    
    .gradient-bg {
      background: linear-gradient(135deg, #1c618a, #1c8a7a, #4586f5);
      background-size: 200% 200%;
      animation: gradient 15s ease infinite;
    }
    
    /* Navbar Styling */
    .navbar-site {
   
        background: linear-gradient(88.39deg, var(--theme-light) 27.5%, #f4f7f9 86.65%);
      box-shadow: 0 4px 20px rgba(0, 42, 75, 0.1);
    }
    
    .navbar-site .navbar-brand img {
      transition: all 0.3s ease;
      height: 50px;
    }
    
    .navbar-site .navbar-brand img:hover {
      transform: scale(1.05);
    }
    
    .nav-btn {
      padding: 8px 22px;
      border-radius: 30px;
      font-weight: 600;
      transition: all 0.3s ease;
      margin-left: 10px;
    }
    
    .nav-btn.login {
      background: transparent;
      color: var(--theme-color);
      border: 2px solid var(--theme-color);
    }
    
    .nav-btn.login:hover {
      background: var(--theme-color);
      color: white;
    }
    
    .nav-btn.signup {
      background: var(--theme-color);
      color: white;
      border: 2px solid var(--theme-color);
    }
    
    .nav-btn.signup:hover {
      background: var(--theme-dark);
      border-color: var(--theme-dark);
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    
    /* Hero Section */
    .hero-section {
      position: relative;
      overflow: hidden;
      padding: 100px 0 0 0 ;
    }
    
    
    
    .hero-text {
      font-size: 48px;
      font-weight: 800;
      line-height: 1.2;
    }
    .hero-img{
        width: 50%;
    }
    .logo-first {
      color: #4586f5;
      font-weight: 900;
    }
    
    .logo-second {
      color: #aaa9a9;
      font-weight: 900;
    }
    
    .logo-third {
      color: #ed3237;
      font-weight: 900;
    }
    
    .logo-fourth {
      color: #ffff;
      background-color: var(--theme-color);
      padding: 2px 10px;
      border-radius: 4px;
      display: inline-block;
    }
    
    .hero-subtext {
      font-weight: 500;
      font-size: 18px;
      color: #4f4f4f;
      max-width: 90%;
    }
    
    .btn-top a {
      position: relative;
      z-index: 10;
      text-align: center;
      color: white;
      font-size: 17px;
      font-weight: 600;
      padding: 12px 30px;
      border-radius: 30px;
      background: var(--theme-color);
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
      display: inline-block;
      text-decoration: none;
      box-shadow: 0 5px 15px rgba(28, 97, 138, 0.4);
    }
    
    .btn-top a:hover {
      background: var(--theme-dark);
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(28, 97, 138, 0.6);
    }
    
  
    .section-title {
      font-size: 36px;
      font-weight: 700;
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 8px;
    }
    
    .section-title:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: var(--theme-color);
      border-radius: 2px;
    }
    
    .section-title span {
      color: var(--theme-color);
    }
    
    .section-padding {
      padding: 80px 0;
    }
    
    .bg-section {
      background: rgba(255, 255, 255, 0.7);
      backdrop-filter: blur(10px);
      border-radius: 20px;
      padding: 40px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }
    
    /* Services Styling */
    .service-card {
      background-color: white;
      color: var(--theme-dark);
      padding: 30px;
      height: 100%;
      margin: 15px 0!important;
      text-align: center;
      border-radius: 15px;
      transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
      cursor: pointer;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      border: 1px solid rgba(0, 0, 0, 0.05);
      overflow: hidden;
      position: relative;
    }
    
    .service-card:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 5px;
      background: var(--theme-color);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s ease;
    }
    
    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }
    
    .service-card:hover:before {
      transform: scaleX(1);
    }
    
    .service-card:hover .service-img img {
      transform: scale(1.1);
    }
    
    .service-card:hover .service-btn a {
      background: var(--theme-color);
      color: white;
    }
    
    .service-img {
      width: 80px;
      height: 80px;
      margin: 0 auto 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: rgba(28, 97, 138, 0.1);
    }
    
    .service-img img {
      width: 70px;
      height: 70px;
      transition: all 0.3s ease;
    }
    
    .service-head {
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 15px;
      color: var(--theme-color);
    }
    
    .service-limited-text {
      font-size: 16px;
      color: #4f4f4f;
      line-height: 1.6;
    }
    
    .service-btn a {
      font-weight: 600;
      border: 1px solid var(--theme-color);
      color: var(--theme-color);
      background: transparent;
      padding: 6px 20px;
      border-radius: 30px;
      font-size: 14px;
      margin-top: 15px;
      display: inline-block;
      transition: all 0.3s ease;
      text-decoration: none;
    }
    

  
    
    .brand-card {
      background: white;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
      height: 100%;
    }
    
    .brand-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }
    
    .brand-img {
      height: 180px;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #1c618a;
    }
    
    .brand-img img {
      max-width: 80%;
      max-height: 80%;
      filter: brightness(0) invert(1);
      transition: all 0.3s ease;
    }
    
    .brand-card:hover .brand-img img {
      transform: scale(1.1);
    }
    
    .brand-year{
        font-size: 14px;
        align-self: flex-end;
        font-weight: 500;
    }
    
    .brand-title {
      font-weight: 700;
      color: var(--theme-dark);
      margin-bottom: 10px;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
    }
    
    .brand-desc {
      font-size: 13px;
      color: #666;
      margin-top: 6px;
    }
    
    
    .industries-section {
      background: linear-gradient(to bottom, #ffffff, #f0f9ff);
      position: relative;
      overflow: hidden;
    }
    
    .industry-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 25px;
    }
    
    .industry-item {
      background: white;
      border-radius: 15px;
      padding: 30px 20px;
      text-align: center;
      transition: all 0.3s ease;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      position: relative;
      overflow: hidden;
      z-index: 1;
      cursor: pointer;
    }
    
    .industry-item:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 0;
      background: var(--theme-color);
      z-index: -1;
      transition: height 0.3s ease;
    }
    
    .industry-item:hover:before {
      height: 100%;
    }
    
    .industry-item:hover {
      transform: translateY(-10px);
    }
    
    .industry-item:hover .industry-icon {
      background: white;
      color: var(--theme-color);
    }
    .blog-readfull{
        background-color: var(--theme-color);
        color: #fff!important;
    }
    .industry-item:hover .industry-title,
    .industry-item:hover .industry-desc,
    .industry-item .text-muted{
      color: white!important;
    }
     .industry-item .read-more {
        background-color: var(--theme-color) ;
        color: #fff;
     }
    .industry-icon {
      width: 70px;
      height: 70px;
      margin: 0 auto 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: rgba(28, 97, 138, 0.1);
      color: var(--theme-color);
      font-size: 28px;
      transition: all 0.3s ease;
    }
    
    .industry-title {
      font-weight: 700;
      margin-bottom: 10px;
      color: var(--theme-dark);
      transition: all 0.3s ease;
    }
    
    .industry-desc {
      font-size: 14px;
      color: #666;
      transition: all 0.3s ease;
    }
    
    .industry-desc h4{
        color: #565656;
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 8px;
    }
    .faq-section {
      background: linear-gradient(to bottom, #f0f9ff, #ffffff);
    }
    
    .faq-item {
      margin-bottom: 20px;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }
    
    .faq-question {
      background: white;
      padding: 20px;
      font-weight: 600;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: all 0.3s ease;
      border-top: 4px solid var(--theme-color);
    }
    
    .faq-question:hover {
      background: #f0f9ff;
    }
    
    .faq-question i {
      transition: transform 0.3s ease;
    }
    
    .faq-question.active i {
      transform: rotate(180deg);
    }
    
    .faq-answer {
      background: white;
      padding: 0 20px;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
    }
    
    .faq-answer.show {
      padding: 20px;
      max-height: 500px;
    }
    
  
    .contact-box {
      background: white;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      height: 100%;
      transition: all 0.3s ease;
    }
    .contact-box h4{
        font-size: 18px;
    }
    .contact-box:hover {
      transform: translateY(-10px);
    }
    
    .contact-heading {
      font-size: 24px;
      font-weight: 700;
      padding: 20px;
      background: var(--theme-color);
      color: white;
    }
    
    .contact-content {
      padding: 30px;
    }
    
    .icon-box i {
      font-size: 22px;
      color: white;
      background: var(--theme-color);
      padding: 10px;
      border-radius: 50%;
      width: 42px;
      height: 42px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .content-box h1 {
      font-size: 18px;
      font-weight: 700;
      color: var(--theme-dark);
    }
    
    .content-box p {
      font-size: 16px;
      color: #4f4f4f;
    }
    
    .text-contact-us {
      font-size: 17px;
      color: #2a2a2a;
      font-weight: 400;
      margin: 20px 0;
    }
    
    form label {
      font-size: 14px;
      color: #666;
      margin-bottom: 5px;
      font-weight: 500;
    }
    
    form input, form textarea {
      font-size: 16px !important;
      color: #2a2a2a !important;
      box-shadow: none !important;
      outline: none !important;
      background: #f9f9f9 !important;
      border: 1px solid #e0e0e0 !important;
      padding: 12px 15px !important;
      border-radius: 10px !important;
      transition: all 0.3s ease;
    }
    
    form input:focus, form textarea:focus {
      border-color: var(--theme-color) !important;
      box-shadow: 0 0 0 3px rgba(28, 97, 138, 0.1) !important;
    }
    
    .btn-form-submit button {
      background: var(--theme-color) !important;
      border: none !important;
      padding: 10px 30px !important;
      border-radius: 30px !important;
      font-weight: 600 !important;
      transition: all 0.3s ease;
    }
    
    .btn-form-submit button:hover {
      background: var(--theme-dark) !important;
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(28, 97, 138, 0.4);
    }
    

    footer {
      background: linear-gradient(88.39deg, #14305a 27.5%, #066a9b 86.65%);
      color: #fff;
      padding-top: 60px;
      position: relative;
    }
    
    .footer-wave {
      position: absolute;
      top: -100px;
      left: 0;
      width: 100%;
      height: 100px;
 
      background-size: cover;
      background-position: center;
    }
    
    .footer-content {
      position: relative;
      z-index: 2;
    }
    .preloader-logo .logo{
        width: 160px;
    }
    .footer-logo {
      max-width: 180px;
      margin-bottom: 20px;
      filter: brightness(0) invert(1);
    }
    
    .footer-desc {
      font-size: 15px;
      opacity: 0.8;
      margin-bottom: 20px;
    }
    
    .footer-title {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 20px;
      position: relative;
    }
    
    .footer-title:after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 0;
      width: 50px;
      height: 3px;
      background: white;
      border-radius: 2px;
    }
    
    .footer-links li {
      margin-bottom: 10px;
      list-style: none;
    }
    
    .footer-links li a {
      color: #e1e1e1;
      text-decoration: none;
      transition: all 0.3s ease;
      display: inline-block;
    }
    
    .footer-links li a:hover {
      color: white;
      transform: translateX(5px);
    }
    
    .social-links a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      color: white;
      margin-right: 10px;
      transition: all 0.3s ease;
      background-color: var(--theme-color);
    }
    
    .social-links a:hover {
      background: var(--theme-color);
      transform: translateY(-5px);
    }
    
    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding: 20px 0;
      margin-top: 40px;
    }
    
    .attribution {
      font-size: 14px;
      opacity: 0.7;
    }
    
    .attribution a {
      color: white;
      text-decoration: none;
    }
    
    .attribution a:hover {
      text-decoration: underline;
    }
      .brands-carousel-container {
    padding: 20px 0;
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
  }
  
  .brands-carousel-wrapper {
    overflow: hidden;
    padding: 20px 0;
    position: relative;
  }
  
  .brands-carousel {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
    padding: 0 50px;
  }
  
  .brand-card {
    min-width: calc(33% - 20px);
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    transform: scale(0.95);
    cursor: pointer;
  }
  
  .brand-card.center-card {
    background: var(--theme-color);
    transform: scale(1.05);
    color: white;
  }
  
  .brand-card.center-card .brand-title,
  .brand-card.center-card .brand-desc {
    color: white;
  }
  
  .brand-card.center-card .brand-img {
    background: rgba(255,255,255,0.2);
  }
  
  .brand-img {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    padding: 12px;
    border-radius: 6px;
  }
  
  .brand-img img {
    max-height: 100%;

  }
  .stat-item{
    width: 100%;
    display: block;
    font-size: 13px;
  }
  .brand-features span{
    display: block;
    font-size: 13px;
    width: 100%;
  }
  .center-card .brand-img img {
    filter: brightness(0) invert(1);
  }
  
  .brand-title {
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--theme-dark);
  }
  
  .brand-desc {
    font-size: 14px;
    color: #666;
  }
  
  .carousel-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
  }
  
 .brands-carousel-container .nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--theme-color);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .brands-carousel-container .nav-btn:hover {
    background: var(--theme-dark);
    transform: translateY(-3px);
  }
  
  .brand-btn {
    background: var(--theme-color);
    color: white;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    margin-top: 10px;
    justify-content: center;
    gap: 5px;
    transition: all 0.3s ease;
   
  }
  
  .brand-btn:hover {
    background: var(--theme-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(28, 97, 138, 0.3);
  }
  
  .center-card .brand-btn {
    text-align: center;
    background: white;
    color: var(--theme-color);
  }
  
  .center-card .brand-btn:hover {
    background: #f0f0f0;
    color: var(--theme-dark);
  }
  .icons-readfull {
    color: var(--theme-color);
  }
  .blog-article  p,
   .blog-article li{
    font-size: 15px;
    color: #2a2a2a;
  }
  .common-container {
      background: white;
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      padding: 50px;
    }
    
    .common-header {
      margin-bottom: 40px;
      text-align: center;
    }
    
    .common-header h1 {
      color: var(--theme-color);
      font-weight: 700;
      margin-bottom: 15px;
    }
    
    .common-header p {
      color: #666;
      font-size: 16px;
    }
    
    .common-section {
      margin-bottom: 40px;
    }
    
    .common-section h2 {
      color: var(--theme-color);
      font-weight: 600;
      margin-bottom: 20px;
      font-size: 24px;
      position: relative;
      padding-bottom: 10px;
    }
    
    .common-section h2:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 60px;
      height: 3px;
      background: var(--theme-color);
    }
    
    .common-section h3 {
      color: var(--theme-dark);
      font-weight: 600;
      margin: 25px 0 15px;
      font-size: 20px;
    }
    
    .common-section p, .common-section li {
      color: #555;
      margin-bottom: 15px;
      font-size: 16px;
    }
    
    .common-section ul {
      padding-left: 20px;
    }
    
    .common-section li {
      margin-bottom: 10px;
    }
     .highlight-box {
      background: rgba(28, 97, 138, 0.05);
      border-top: 4px solid var(--theme-color);
      padding: 20px;
      border-radius: 0 8px 8px 0;
      margin: 25px 0;
    }
    .custom-box-width{
      margin: 12px;
      width: 31%;
    }
.brand-card {
            background: white;
            border-radius: 12px;
            padding: 30px 20px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            height: 100%;
            border: none;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        
        .brand-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .brand-logo {
            height: 60px;
     object-fit: cover;
            width: 250px;
            margin-bottom: 20px;
           
            transition: all 0.3s ease;
        }
        
        .brand-card:hover .brand-logo {
      
            transform: scale(1.1);
        }
        
        .brand-name {
            font-weight: 600;
            margin-bottom: 10px;
            color: #333;
        }
        
        .brand-description {
            color: #666;
            font-size: 14px;
            line-height: 1.5;
        }
        
        .brands-slider {
            position: relative;
            overflow: hidden;
        }
        
        .brands-container {
            display: flex;
            transition: transform 0.5s ease;
        }


    /* Responsive  */
    @media only screen and (max-width:1400px){
      .hero-text {
    font-size: 38px;

}
@media only screen and (max-width:1256px){
  .brands-carousel {
    gap: 43px;
   
}
}
@media only screen and (max-width:1200px){
    .custom-box-width{
      margin: 10px;
      width: 31%;
    }
}
@media only screen and (max-width:1198px){
  .brands-carousel {
    gap: 60px;
   
}
}
@media only screen and (max-width:1127px){
  .brands-carousel {
    gap: 80px;
   
}
}
    }
    @media only screen and (max-width: 992px) {
      .hero-text{
        margin-top: 10px!important;
      }
      .section-padding{
        padding-bottom: 10px!important;
      }
      .industries-section{
        padding-bottom: 70px!important;
      }
      .brands-carousel {
            gap: 30px;
        }
      .brand-card.center-card {
    background:#fff;
    transform: scale(1.05);
    color: rgb(47, 47, 47);
}
.brand-card.center-card .brand-img {
    background-color: var(--theme-color);
}
.center-card .brand-btn {
    text-align: center;
    background: var(--theme-color);
    color: #fff;
}
.brand-card.center-card .brand-title, .brand-card.center-card .brand-desc {
    color: #373737;
}
.center-card .brand-btn:hover {
    background: var(--theme-color);
    color: #fff;
}
.brand-card {
    min-width: calc(50% - 20px);
  
}
        .custom-box-width{
      margin: 8px;
      width: 48%;
    }
      .hero-text {
        font-size: 42px;
      }
      
      .section-title {
        font-size: 32px;
      }
      .container-custom{
        max-width: 100%;
      }
    }
    @media only screen and (max-width:868px){
      .nav-btn {
    padding: 6px 15px;
   
    font-size: 14px;
    margin-left: 0;
}
    }
    @media only screen and (max-width:824px){
        .custom-box-width{
      margin: 8px!important;
      width: 47%;
    }
    }
    @media (max-width: 768px) {
       .alternate-top-box{
    width: 100%;
    margin: 0 auto;
  }
        
      .nav-btn {
        margin-top: 6px;
      }
      .hero-text {
        font-size: 36px;
      }
     
      .section-padding {
        padding: 60px 0;
      }
      
      .bg-section {
        padding: 30px;
      }
      
     
      
      .contact-box {
        margin-bottom: 30px;
      }
    }
    @media only screen and (max-width:680px){
     .brands-carousel-container {
    padding: 0 15px;
  }
  
  .brands-carousel-wrapper {
    overflow: visible;
    padding: 0;
  }
  
  .brands-carousel {
    flex-direction: column;
    gap: 20px;
    padding: 0;
    transform: none !important;
  }
  
  .brand-card {
    min-width: 100% !important;
    transform: scale(1) !important;
    margin: 0 auto;
    max-width: 100%;
  }
  
  .brand-card.center-card {
    background: white;
    transform: scale(1) !important;
  }
  
  .brand-card.center-card .brand-img {
    background-color: var(--theme-color);
  }
  
  .center-card .brand-btn {
    background: var(--theme-color) !important;
    color: white !important;
  }
  
  .brand-card.center-card .brand-title,
  .brand-card.center-card .brand-desc {
    color: #373737;
  }
  
  .carousel-nav {
    display: none;
  }
  
  .brand-img {
    height: 100px;
    margin-bottom: 15px;
  }
  
  .brand-content {
    padding: 15px;
  }
  
  .brand-title {
    font-size: 20px;
  }
  
  .brand-desc {
    font-size: 14px;
  }
  
  .brand-btn {
    width: 100%;
    padding: 10px;
    margin-top: 15px;
  }
  
  .brand-stats,
  .brand-features {
    margin: 10px 0;
  }
  
  .stat-item,
  .brand-features span {
    font-size: 14px;
  }
  
  .brand-rating {
    margin-bottom: 10px;
  }
   .brands-carousel {
    transition: none !important;
  }
    }
    
  
    @media (max-width: 576px) {
      .brands-carousel-container{
        max-width: 100%;
      }
          .custom-box-width {
        margin: 8px !important;
        width: 46%;
    }
      .common-container,
      .contact-content {
  
    padding: 16px;
}
.common-header h1{
  font-size: 22px;
}
.common-section h2{
  font-size: 18px;
}
.common-section p, .common-section li {
    font-size: 14px;
}
      .form-control{
        font-size: 13px;
      }
     
      .brand-card {
        min-width: 100%;
    }
     .service-card {
        height: 100%;
 margin: 0!important;
      }
       
         .cookie-consent {
      left: 10px;
      right: 10px;
      bottom: 10px;
    }
    
    .cookie-buttons {
      flex-direction: column;
    }
    
    .cookie-btn {
      width: 100%;
    }
      .hero-text {
        font-size: 32px;
      }
      
      .section-title {
        font-size: 28px;
      }
      
      .btn-top a {
        width: 100%;
        text-align: center;
      }
      
      .nav-btn {
        padding: 6px 16px;
        font-size: 14px;
      }
    }
    @media only screen and (max-width:488px){
      .contact-heading {
    font-size: 20px;
}
      .industry-item {
    background: var(--theme-color);

}
.industry-title {
color: #fff;
}
.industry-desc {
color: #fff;
}
.industry-icon {
  
    background-color:#fff;
   
}
.industry-icon {
  
    color:var(--theme-color);
   
}
.industry-item .read-more {
    background-color:#fff;
    color: var(--theme-color);
}
             .custom-box-width {
        margin: 8px auto !important;
        width: 100%;
    }
      .hero-subtext {
   
    font-size: 14px!important;
    text-align: center;
    
}
    }
    @media only screen and (max-width:422px){
          .hero-text {
        font-size: 26px;
    }
    }

    

    /* Welcome Modal Styles ============================= */
.welcome-modal-content {
  border-radius: 20px;
  overflow: hidden;
  border: none;
  box-shadow: 0 20px 60px rgba(0, 42, 75, 0.3);
  animation: modalAppear 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalAppear {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(50px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.welcome-modal-header {
  background: linear-gradient(135deg, var(--theme-color), var(--theme-dark));
  color: white;
  border-bottom: none;
  padding: 25px 30px 15px;
  position: relative;
}

.welcome-modal-header .modal-title {
  font-weight: 700;
  font-size: 28px;
}

.welcome-modal-header .btn-close {
  filter: invert(1);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.welcome-modal-header .btn-close:hover {
  opacity: 1;
  transform: rotate(90deg);
}

.welcome-modal-body {
  padding: 30px;
  text-align: center;
}



.welcome-subtitle {
  color: var(--theme-color);
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.welcome-text {
  color: #555;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.welcome-features {
  text-align: left;
  max-width: 400px;
  margin: 0 auto 25px;
}

body.modal-open::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  backdrop-filter: blur(5px);
  background: rgba(255, 255, 255, 0.3);
  z-index: 1040; 
  pointer-events: none;
}



.welcome-modal-footer {
  border-top: 1px solid #eee;
  padding: 20px 30px;
  justify-content: center;
  gap: 15px;
}

.welcome-btn-primary {
  background: var(--theme-color);
  color: white!important;
  border: none;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.welcome-btn-primary:hover {
  background: var(--theme-dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(28, 97, 138, 0.3);
}

.welcome-btn-secondary {
  background: transparent;
  color: var(--theme-color);
  border: 2px solid var(--theme-color);
  padding: 8px 23px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.welcome-btn-secondary:hover {
  background: rgba(28, 97, 138, 0.1);
  transform: translateY(-3px);
}


@media (max-width: 768px) {
  .welcome-modal-header .modal-title {
    font-size: 22px;
  }
  
  .welcome-subtitle {
    font-size: 20px;
  }
  
  .welcome-modal-body {
    padding: 20px;
  }
  
  .welcome-modal-footer {
    flex-direction: column;
  }
  
  .welcome-btn-primary,
  .welcome-btn-secondary {
    width: 100%;
  }
}