  @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    margin: 0;
    overflow-x: hidden;
    line-height: 1.6;
    color: #2c2c2c;
  }

  .fullscreen-slider {
    position: relative;
    width: 100vw;
    height: calc(100vh - 80px);
    overflow: hidden;
    z-index: 2;
  }

  .fullscreen-slider::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3), transparent);
    z-index: 1;
    pointer-events: none;
  }

  .about-intro-content {
    gap: 20px;
    display: flex;
    flex-direction: column;
  }

  #sliderImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: opacity 0.6s ease-in-out;
  }

  .slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    z-index: 2;
    padding-left: 5%;
  }

  .slider-content {
    text-align: left;
    color: white;
    max-width: 800px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    padding: 50px 40px;
    min-width: 400px;
    gap: 30px;
    min-height: 400px;
    border-radius: 24px;
  }

  .slider-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.7rem;
    font-weight: 600;
    margin-bottom: 0;
    color: white;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.8);
    letter-spacing: -0.02em;
    line-height: 1.1;
  }

  .slider-content p {
    font-size: 1.1rem;
    margin-bottom: 0;
    font-weight: 300;
    opacity: 0.95;
    line-height: 1.2;
    max-width: 600px;
    font-style: normal;
  }

  .slider-content p em {
    font-style: normal;
  }

  .slider-content button {
    background: #90c52d;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.02em;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
  }

  .slider-content button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
  }

  .slider-content button:hover {
    background: #90c52d;
    transform: translateY(-2px);
  }

  .slider-content button:hover::before {
    left: 100%;
  }

  .slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
  }

  .dot {
    height: 12px;
    width: 12px;
    margin: 0 3px;
    background: white;
    background-color: white;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
  }

  .dot.active,
  .dot:hover {
    background-color: #90c52d;
    border: 2px solid #90c52d;
    transform: scale(1.2);
  }
  /* Floating Vegetables Animation Styles */
  .animation-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
  }

  .vegetable {
    position: absolute;
    opacity: 0.15;
    filter: blur(0.5px);
    animation: float linear infinite;
    will-change: transform;
  }

  @keyframes float {
    0% {
      transform: translateY(100vh) translateX(0) rotate(0deg);
    }

    100% {
      transform: translateY(-120vh) translateX(var(--drift)) rotate(var(--rotation));
    }
  }

  .vegetable span {
    display: block;
    animation: rotate linear infinite;
  }

  @keyframes rotate {
    0% {
      transform: rotate(0deg);
    }

    100% {
      transform: rotate(360deg);
    }
  }

  /* Blog Section Styles */
  .blog-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #fafbfc 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
  }

  .blog-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #90C52D, transparent);
  }

  .blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .blog-header {
    text-align: center;
    margin-bottom: 50px;
  }

  .blog-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    color: #2c2c2c;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: -0.02em;
    position: relative;
  }

  .blog-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #90c52d;
    border-radius: 2px;
  }

  .blog-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
  }

  .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
  }

  .blog-card {
    background: white;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    box-shadow: 0 0px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
    z-index: 1;
  }

  .blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0px 5px rgba(0, 0, 0, 0.2);
  }

  .blog-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
  }

  .blog-card:hover .blog-image {
    transform: scale(1.05);
  }

  .blog-category {
    display: inline-block;
    background: linear-gradient(135deg, #90c52d, #7ab526);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .blog-content {
    padding: 20px;
  }

  .blog-title {
    margin-bottom: 15px;
    line-height: 1.4;
  }

  .blog-title a {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
  }

  .blog-title a:hover {
    color: #90c52d;
  }

  .blog-excerpt {
    color: #666;
    line-height: 1.3;
    margin-bottom: 15px;
    font-size: 0.9rem;
  }

  .blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
  }

  .blog-date {
    color: #999;
    font-size: 0.8rem;
  }

  .read-more {
    color: #90c52d;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    transition: color 0.3s ease;
  }

  .read-more:hover {
    color: #7ab526;
  }

  .blog-footer {
    text-align: center;
  }

  .view-all-blogs {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #90c52d;
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.02em;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
    z-index: 2;
  }

  .view-all-blogs::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
  }

  .view-all-blogs:hover {
    background: #90c52d;
    transform: translateY(-2px);
  }

  .view-all-blogs:hover::before {
    left: 100%;
  }


  /* About Intro Section */
  .about-intro-section {
    padding: 50px 0;
    background: white !important;
    position: relative;
    overflow: hidden;

  }

  .about-intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(134, 38, 43, 0.2), transparent);
  }

  .about-intro-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(144, 197, 45, 0.05) 0%, transparent 70%);
    border-radius: 50%;
  }

  .about-intro-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
  }

  .about-intro-header {
    text-align: center;
    margin-bottom: 60px;
  }

  .about-intro-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #2c2c2c;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: -0.02em;
    position: relative;
    line-height: 1.2;
  }

  .about-intro-header h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: 3px;
            background: linear-gradient(90deg, transparent, #90c52d, transparent);
    border-radius: 2px;
  }

  .about-subtitle {
    font-size: 1.3rem;
    color: #666;
    font-weight: 400;
    margin: 0;
  }

  .about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    align-items: start;
  }

  .about-intro-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .about-highlight {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: white;
    align-items: center;
    border-radius: 20px;
    box-shadow: 0 0px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
  }

  .about-highlight:hover {
    box-shadow: 0 0px 5px rgba(0, 0, 0, 0.2);
  }

  .highlight-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(144, 197, 45, 0.1), rgba(122, 181, 38, 0.1));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5px;
  }

  .about-highlight h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    color: #2c2c2c;
    margin-bottom: 10px;
    font-weight: 600;
  }

  .about-highlight p {
    font-size: 1rem;
    color: #555;
    line-height: 1.2;
    margin: 0;
  }

  .about-intro-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 0px 5px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
  }

  .stat-item {
    text-align: center;
  }

  .stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #90c52d;
    line-height: 1;
    margin-bottom: 8px;
  }

  .stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 0px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f5f5f5;
  }

  .feature-item:hover {
    box-shadow: 0 0px 5px rgba(0, 0, 0, 0.2);
  }

  .feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
  }

  .feature-item span:last-child {
    font-weight: 600;
    color: #2c2c2c;
    font-size: 0.95rem;
  }

  .about-intro-footer {
    text-align: center;
  }

  .about-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 40px;
    font-weight: 400;
  }

  .about-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }

  .learn-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
    z-index: 2 !important;
  }

  .learn-more-btn.primary {
    background: #90c52d;
    color: white;
    box-shadow: 0 4px 15px rgba(144, 197, 45, 0.3);
  }

  .learn-more-btn.secondary {
    /* background: transparent; */
    color: #90c52d;
    background-color: white;
    border: 2px solid #90c52d;
    z-index: 2 !important;
  }

  .learn-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
  }

  .learn-more-btn.primary:hover {
    background: #7ab526;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(144, 197, 45, 0.4);
  }

  .learn-more-btn.secondary:hover {
    background: #90c52d;
    color: white;
    transform: translateY(-2px);
  }

  .learn-more-btn:hover::before {
    left: 100%;
  }

  .learn-more-btn svg {
    transition: transform 0.3s ease;
  }

  .learn-more-btn:hover svg {
    transform: translateX(4px);
  }

  /* Why Choose Section */
  .why-choose-section {
    padding: 50px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
  }

  .why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #90C52D, transparent);
  }

  .why-choose-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
  }

  .why-choose-section .section-header {
    text-align: center;
    margin-bottom: 70px;
  }

  .section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(144, 197, 45, 0.1), rgba(122, 181, 38, 0.1));
    color: #90c52d;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(144, 197, 45, 0.2);
  }

  .why-choose-section .section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #2c2c2c;
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
    position: relative;
  }

  .why-choose-section .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: 3px;
            background: linear-gradient(90deg, transparent, #90c52d, transparent);
    border-radius: 2px;
  }

  .why-choose-section .section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
  }

  .why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
  }

  .choose-card {
    background: white;
    border-radius: 20px;
    padding: 30px 25px;
    overflow: visible;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e0e0e0;
    position: relative;
    box-shadow: 0 0px 5px rgba(0, 0, 0, 0.1);
    transform-style: preserve-3d;
    perspective: 1000px;
  }

  .choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(144, 197, 45, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 20px;
  }

  .choose-card:hover {
    box-shadow: 0 0px 5px rgba(0, 0, 0, 0.2);
    border-color: rgba(144, 197, 45, 0.3);
  }

  .choose-card:hover::before {
    opacity: 1;
  }

  .card-inner {

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  .choose-icon-wrapper {
    position: relative;
    flex-shrink: 0;
    margin-top: 20px;
  }

  .icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(144, 197, 45, 0.1), rgba(122, 181, 38, 0.05));
    border-radius: 20px;
    transition: all 0.4s ease;
  }

  .choose-card:hover .icon-bg {
    transform: translate(-50%, -50%) rotate(10deg) scale(1.1);
    background: linear-gradient(135deg, rgba(144, 197, 45, 0.15), rgba(122, 181, 38, 0.1));
  }

  .choose-icon-wrapper svg {
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
  }

  .choose-card:hover .choose-icon-wrapper svg {
    transform: scale(1.1);
  }

  .choose-content {
    flex: 1;
  }

  .choose-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    color: #2c2c2c;
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.3;
  }

  .choose-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.1;
    margin-bottom: 20px;
  }

  .card-stats {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }

  .stat-badge {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    color: #90c52d;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(144, 197, 45, 0.2);
    transition: all 0.3s ease;
  }

  .choose-card:hover .stat-badge {
    background: linear-gradient(135deg, rgba(144, 197, 45, 0.1), rgba(122, 181, 38, 0.05));
    border-color: rgba(144, 197, 45, 0.3);
  }

  /* Core Services Section */
  .core-services-section {
    padding: 50px 0;
    background: white;
    position: relative;
    overflow: hidden;
  }

  .core-services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #90C52D, transparent);
  }

  .core-services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
  }

  .core-services-section .section-header {
    text-align: center;
    margin-bottom: 70px;
  }

  .core-services-section .section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #2c2c2c;
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
    position: relative;
  }

  .core-services-section .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: 3px;
            background: linear-gradient(90deg, transparent, #90c52d, transparent);
    border-radius: 2px;
  }

  .core-services-section .section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .service-card {
    background: white;
    box-shadow: 0 0px 5px rgba(0, 0, 0, 0.1);
    padding: 35px 30px;
    border-radius: 20px;
    border: 1px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    justify-content: center;
    display: flex;
    flex-direction: column;
  }

  .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #90c52d, #7ab526);
    transform: scaleY(0);
    transition: transform 0.4s ease;
  }

  .service-card:hover {
    box-shadow: 0 0px 5px rgba(0, 0, 0, 0.2);
    border-color: rgba(144, 197, 45, 0.3);
  }

  .service-card:hover::before {
    transform: scaleY(1);
  }

  .service-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(144, 197, 45, 0.08);
    line-height: 1;
    transition: all 0.4s ease;
  }

  .service-card:hover .service-number {
    color: rgba(144, 197, 45, 0.15);
    transform: scale(1.1);
  }

  .service-icon-wrapper {
    position: relative;
    width: 70px;
    height: 70px;
    margin-bottom: 25px;
  }

  .service-icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(144, 197, 45, 0.1), rgba(122, 181, 38, 0.05));
    border-radius: 18px;
    transition: all 0.4s ease;
  }

  .service-card:hover .service-icon-bg {
    transform: rotate(10deg) scale(1.1);
    background: linear-gradient(135deg, rgba(144, 197, 45, 0.15), rgba(122, 181, 38, 0.1));
  }

  .service-icon-wrapper svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.4s ease;
    z-index: 2;
  }

  .service-card:hover .service-icon-wrapper svg {
    transform: translate(-50%, -50%) scale(1.1);
  }

  .service-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    color: #2c2c2c;
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.3;
  }

  .service-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.1;
    margin: 0;
  }

  /* Industries Section */
  .industries-section {
    padding: 50px 0 !important;
    background: white !important;
    position: relative;
  }

  .industries-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #90C52D, transparent);
  }

  .industries-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
  }

  .industries-section .section-header {
    text-align: center;
    margin-bottom: 70px;
  }

  .industries-section .section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-top: 0;
    color: #2c2c2c;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
    position: relative;
  }

  .industries-section .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: 3px;
            background: linear-gradient(90deg, transparent, #90c52d, transparent);
    border-radius: 2px;
  }

  .industries-section .section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
  }

  .industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .industry-card {
    background: white;
    width: 250px;
    height: 250px;
    margin: 0 auto;
    padding: 30px 20px;
    border-radius: 50%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(144, 197, 45, 0.03), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  .industry-icon-circle {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, rgba(144, 197, 45, 0.1), rgba(122, 181, 38, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
  }
  .industry-icon {
    font-size: 2rem;
    transition: transform 0.4s ease;
  }

  .industry-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 19px !important;
    color: #2c2c2c;
    margin-bottom: 8px;
    font-weight: 600;
    position: relative;
    z-index: 2;
    line-height: 1.2;
  }

  .industry-card p {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.3;
    margin: 0;
    position: relative;
    z-index: 2;
  }

  /* Trade Process Section */
  .trade-process-section {
    padding: 50px 0;
    background: white;
    position: relative;
  }

  .trade-process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #90C52D, transparent);
  }

  .trade-process-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
  }

  .trade-process-section .section-header {
    text-align: center;
    margin-bottom: 70px;
  }

  .trade-process-section .section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #2c2c2c;
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
    position: relative;
  }

  .trade-process-section .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: 3px;
            background: linear-gradient(90deg, transparent, #90c52d, transparent);
    border-radius: 2px;
  }

  .trade-process-section .section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
  }

  .process-timeline {
    position: relative;
  }

  .process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #90c52d, #7ab526);
  }

  .process-step {
    display: flex;
    gap: 30px;
    position: relative;
  }

  .process-step:nth-child(odd) {
    flex-direction: row-reverse;
    /* text-align: right; */
  }

  .process-step:nth-child(odd) .step-content {
    margin-right: calc(50% + 50px);
  }

  .process-step:nth-child(even) .step-content {
    margin-left: calc(50% + 50px);
  }

  .process-step:last-child {
    margin-bottom: 0;
  }

  .step-marker {
    flex-shrink: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    top: 30px;
  }

  .step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border: 3px solid #90c52d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #90c52d;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
  }

  .step-number::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #90c52d, #7ab526);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
  }

  .process-step:hover .step-number {
    color: white;
    transform: translateX(-50%) scale(1.15) rotate(360deg);
    box-shadow: 0 15px 45px rgba(144, 197, 45, 0.4), 0 0 0 8px rgba(144, 197, 45, 0.1);
    border-color: transparent;
  }

  .process-step:nth-child(even):hover .step-number {
    transform: translateX(calc(+50% + 0px)) scale(1.15) rotate(360deg);
  }

  .process-step:hover .step-number::before {
    opacity: 1;
  }

  .step-content {
    flex: 1;
    background: white;
    padding: 20px 30px;
    border-radius: 20px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 0px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: calc(50% - 70px);
    position: relative;
    overflow: hidden;
    z-index: 1;
  }

  .step-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(144, 197, 45, 0.05), transparent);
    transition: left 0.6s ease;
  }

  .process-step:hover .step-content::before {
    left: 100%;
  }

  .process-step:nth-child(odd):hover .step-content {
    transform: translateX(-15px) translateY(-5px);
    box-shadow: -10px 20px 60px rgba(144, 197, 45, 0.15), 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: #90c52d;
  }

  .process-step:nth-child(even):hover .step-content {
    transform: translateX(15px) translateY(-5px);
    box-shadow: 10px 20px 60px rgba(144, 197, 45, 0.15), 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: #90c52d;
  }

  .step-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    color: #2c2c2c;
    margin-bottom: 10px;
    font-weight: 600;
    transition: color 0.3s ease;
  }

  .process-step:hover .step-content h3 {
    color: #90c52d;
  }

  .step-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
    transition: color 0.3s ease;
  }

  .process-step:hover .step-content p {
    color: #2c2c2c;
  }


  /* Global Reach Section */
  .global-reach-section {
    padding: 50px 0;
    background: white;
    position: relative;
    overflow: hidden;
  }

    .global-reach-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #90C52D, transparent) !important;
  }

  .global-reach-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(144, 197, 45, 0.03) 0%, transparent 50%),
      radial-gradient(circle at 80% 80%, rgba(144, 197, 45, 0.02) 0%, transparent 50%);
    pointer-events: none;
  }

  .global-reach-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 1;
  }

  .global-reach-section .section-header {
    text-align: center;
    margin-bottom: 60px;
  }

  .global-reach-section .section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-top: 0;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: 15px;
  }

  .global-reach-section .section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #90c52d, transparent);
    border-radius: 2px;
  }

  .global-reach-section .section-header p {
    font-size: 1.1rem;
    color: #666;
    font-weight: 400;
  }

  .global-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
  }

  .global-stat-card {
    background: #ffffff;
    padding: 36px 24px;
    border-radius: 14px;
    text-align: center;
    border: 1px solid #e8eaed;
    box-shadow: 0 0px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .global-stat-card:hover {
    box-shadow: 0 0px 5px rgba(0, 0, 0, 0.2);
    border-color: rgba(144, 197, 45, 0.3);
  }

  .stat-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    color: #90c52d;
    transition: all 0.3s ease;
  }

  .global-stat-card:hover .stat-icon {
    transform: scale(1.1);
    color: #7ab526;
  }

  .stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
    margin-bottom: 8px;
  }

  .stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    letter-spacing: 0.3px;
  }

  .compliance-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 0 auto;
  }

  .compliance-item {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    padding: 28px;
    border-radius: 16px;
    border: 1px solid #e8eaed;
    box-shadow: 0 0px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
  }

  .compliance-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(180deg, #90c52d, #7ab526);
    transform: scaleY(0);
    transition: transform 0.4s ease;
  }

  .compliance-item::after {
    content: '';
    position: absolute;
    right: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(144, 197, 45, 0.03), transparent);
    transition: right 0.6s ease;
  }

  .compliance-item:hover {
    box-shadow: 0 0px 5px rgba(0, 0, 0, 0.2);
    border-color: rgba(144, 197, 45, 0.4);
  }

  .compliance-item:hover::before {
    transform: scaleY(1);
  }

  .compliance-item:hover::after {
    right: 100%;
  }

  .compliance-icon-wrapper {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(144, 197, 45, 0.12), rgba(144, 197, 45, 0.06));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 4px 12px rgba(144, 197, 45, 0.08);
  }

  .compliance-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(144, 197, 45, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  .compliance-item:hover .compliance-icon-wrapper {
    background: linear-gradient(135deg, rgba(144, 197, 45, 0.18), rgba(144, 197, 45, 0.1));
    transform: scale(1.08) rotate(5deg);
    box-shadow: 0 6px 16px rgba(144, 197, 45, 0.15);
  }

  .compliance-item:hover .compliance-icon-wrapper::before {
    opacity: 1;
  }

  .compliance-icon {
    width: 28px;
    height: 28px;
    color: #90c52d;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
  }

  .compliance-item:hover .compliance-icon {
    color: #7ab526;
    filter: drop-shadow(0 2px 4px rgba(144, 197, 45, 0.3));
  }

  .compliance-content {
    flex: 1;
    position: relative;
    z-index: 1;
  }

  .compliance-content h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #1a1a1a;
    margin: 0 0 8px 0;
    font-weight: 600;
    line-height: 1.3;
    transition: color 0.3s ease;
  }

  .compliance-item:hover .compliance-content h4 {
    color: #90c52d;
  }

  .compliance-content p {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
    transition: color 0.3s ease;
  }

  .compliance-item:hover .compliance-content p {
    color: #555;
  }

  .cta-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #90c52d 0%, #7ab526 100%);
    position: relative;
    overflow: hidden;
    z-index: 1;
  }

  .cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
  }

  .cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
  }

  .cta-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
  }

  .cta-content {
    text-align: center;
  }

  .cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: white;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }

  .cta-content>p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
  }

  .cta-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
  }

  .cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 1.05rem;
    font-weight: 500;
  }

  .cta-icon {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
  }

  .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
  }

  .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
  }

  .cta-btn:hover::before {
    left: 100%;
  }

  .cta-btn.primary {
    background: white;
    color: #90c52d;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }

  .cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  }

  .cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
  }

  .cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
  }

  .cta-btn svg {
    transition: transform 0.3s ease;
  }

  .cta-btn:hover svg {
    transform: translateX(5px);
  }

  .cta-trust {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
  }

  .cta-trust p {
    margin: 0;
  }

  /* Category Section */
  .category-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #fefefe 0%, #f8f9fa 50%, #ffffff 100%);
    font-family: 'Inter', sans-serif;
    position: relative;
  }

  .category-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #90C52D, transparent);
  }

  .category-section h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #2c2c2c;
    margin-bottom: 80px;
    font-weight: 600;
    letter-spacing: -0.02em;
    text-transform: none;
    position: relative;
    line-height: 1.2;
  }

  .category-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #90c52d;
    border-radius: 2px;
  }

  .categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
  }

  .category {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    padding: 0.5rem;
    max-height: 400px;
    max-width: 320px;
    margin: auto;
    cursor: pointer;
    transition: all 0.8s ease;
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.1);
  }



  .category:hover {
    transform: translateY(-15px) scale(1.02);
    border: none;
    max-height: 320px;
    box-shadow: 0 0px 10px #90C52D4A;
  }

  .category img {
    width: 100%;
    border-radius: 15px;
    height: 300px;
    margin-bottom: 0px;
    object-fit: cover;
    transition: all 0.8s ease;
    filter: brightness(1) contrast(1.05) saturate(1.1);
  }

  .category:hover img {
    filter: brightness(1.1) contrast(1.1) saturate(1.2);
    scale: calc(1.1);
  }

  .category h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    line-height: 1;
    right: 0;
    background: transparent;
    color: #2c2c2c;
    padding: 10px 0;
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.5px;
    transition: all 0.8s ease;
    z-index: 3;
    position: relative;
    text-transform: uppercase;
    backdrop-filter: blur(5px);
  }

  .category:hover h3 {
    background: #0000003C;
    padding: 10px 0;
    font-weight: 600;
    color: #FFFFFF;
    transform: translateY(-40px);
    scale: calc(1.1);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
  }

  /* Testimonials Section */
  .testimonials-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #fafbfc 100%);
    position: relative;
  }

  .testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #90C52D, transparent);
  }

  .testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
  }

  .testimonials-header {
    text-align: center;
    margin-bottom: 60px;
  }

  .testimonials-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    color: #2c2c2c;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: -0.02em;
    position: relative;
    line-height: 1.2;
  }

  .testimonials-header h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: 3px;
            background: linear-gradient(90deg, transparent, #90c52d, transparent);
    border-radius: 2px;
  }

  .testimonials-header p {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
    font-weight: 400;
  }

  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
  }

  .testimonial-card {
    background: white;
    padding: 35px 30px;
    border-radius: 20px;
    box-shadow: 0 0px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
    z-index: 1;
  }

  .testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #90c52d, #7ab526);
  }

  .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0px 5px rgba(0, 0, 0, 0.2);
  }

  .testimonial-rating {
    margin-bottom: 20px;
  }

  .stars {
    font-size: 1.2rem;
    letter-spacing: 2px;
  }

  .testimonial-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.3;
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
  }

  .testimonial-text::before {
    content: '"';
    font-size: 4rem;
    color: rgba(144, 197, 45, 0.2);
    position: absolute;
    top: -15px;
    left: -10px;
    font-family: 'Playfair Display', serif;
    line-height: 1;
  }

  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .author-info h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #2c2c2c;
    margin-bottom: 5px;
    font-weight: 600;
  }

  .author-info span {
    font-size: 0.9rem;
    color: #90c52d;
    line-height: 1.2;
    font-weight: 500;
  }

/* ========================================
   RESPONSIVE MEDIA QUERIES FOR FULLSCREEN SLIDER
   ======================================== */

/* Large Tablets and Small Desktops (1024px - 1200px) */
@media (max-width: 1200px) {
  .fullscreen-slider {
    height: calc(100vh - 70px);
  }

  .slider-overlay {
    width: 60%;
    padding-left: 4%;
  }

  .slider-content {
    max-width: 700px;
    padding: 40px 35px;
    min-width: 350px;
    gap: 25px;
    min-height: 350px;
  }

  .slider-content h1 {
    font-size: 2.4rem;
  }

  .slider-content p {
    font-size: 1rem;
  }

  .slider-content button {
    padding: 14px 28px;
    font-size: 1rem;
  }
}

/* Tablets (768px - 1024px) */
@media (max-width: 1024px) {
  .fullscreen-slider {
    height: 70vh;
    min-height: 500px;
  }

  .fullscreen-slider::after {
    width: 70%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4), transparent);
  }

  .slider-overlay {
    width: 70%;
    padding-left: 3%;
  }

  .slider-content {
    max-width: 600px;
    padding: 35px 30px;
    min-width: 300px;
    gap: 20px;
    min-height: 300px;
  }

  .slider-content h1 {
    font-size: 2.2rem;
    line-height: 1.2;
  }

  .slider-content p {
    font-size: 0.95rem;
    line-height: 1.4;
    max-width: 500px;
  }

  .slider-content button {
    padding: 13px 26px;
    font-size: 0.95rem;
  }

  .slider-dots {
    bottom: 25px;
  }

  .dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
  }
}

/* Small Tablets and Large Phones (640px - 768px) */
@media (max-width: 768px) {
  .fullscreen-slider {
            height: calc(100vh - 90px);
    min-height: 450px;
  }

  .fullscreen-slider::after {
    width: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
  }

  .slider-overlay {
    width: 100%;
    padding: 0 5%;
    justify-content: center;
    align-items: center;
    padding-bottom: 80px;
  }

  .slider-content {
    max-width: 100%;
    padding: 30px 25px;
    min-width: auto;
    width: 100%;
    gap: 18px;
    min-height: auto;
    text-align: center;
    align-items: center;
  }

  .slider-content h1 {
    font-size: 2rem;
    line-height: 1.2;
    text-align: center;
  }

  .slider-content p {
    font-size: 0.9rem;
    line-height: 1.4;
    max-width: 100%;
    text-align: center;
  }

  .slider-content button {
    padding: 12px 24px;
    font-size: 0.9rem;
    width: auto;
  }

  .slider-dots {
    bottom: 20px;
  }

  .dot {
    height: 9px;
    width: 9px;
    margin: 0 4px;
  }
}

/* Mobile Devices (480px - 640px) */
@media (max-width: 640px) {
  .fullscreen-slider {
            height: calc(100vh - 90px);
    min-height: 400px;
  }

  .slider-overlay {
    padding: 0 4%;
    padding-bottom: 70px;
  }

  .slider-content {
    padding: 25px 20px;
    gap: 15px;
    border-radius: 18px;
  }

  .slider-content h1 {
    font-size: 1.75rem;
    margin-bottom: 0;
  }

  .slider-content p {
    font-size: 0.85rem;
    line-height: 1.3;
  }

  .slider-content button {
    padding: 11px 22px;
    font-size: 0.85rem;
    border-radius: 12px;
  }

  .slider-dots {
    bottom: 18px;
  }

  .dot {
    height: 8px;
    width: 8px;
    margin: 0 3px;
  }
}

/* Small Mobile Devices (360px - 480px) */
@media (max-width: 480px) {
  .fullscreen-slider {
            height: calc(100vh - 90px);
    min-height: 380px;
  }

  .slider-overlay {
    padding: 0 3%;
    padding-bottom: 60px;
  }

  .slider-content {
    padding: 20px 18px;
    gap: 12px;
    border-radius: 16px;
  }

  .slider-content h1 {
    font-size: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 3px 6px rgba(0, 0, 0, 0.8);
  }

  .slider-content p {
    font-size: 0.8rem;
    line-height: 1.3;
  }

  .slider-content button {
    padding: 10px 20px;
    font-size: 0.8rem;
    border-radius: 10px;
  }

  .slider-dots {
    bottom: 15px;
  }

  .dot {
    height: 7px;
    width: 7px;
    margin: 0 2px;
    border-width: 1.5px;
  }

  .dot.active,
  .dot:hover {
    transform: scale(1.15);
  }
}

/* Extra Small Mobile Devices (below 360px) */
@media (max-width: 360px) {
  .fullscreen-slider {
        height: calc(100vh - 90px);
    min-height: 350px;
  }

  .slider-overlay {
    padding: 0 2.5%;
    padding-bottom: 55px;
  }

  .slider-content {
    padding: 18px 15px;
    gap: 10px;
    border-radius: 14px;
  }

  .slider-content h1 {
    font-size: 1.3rem;
    line-height: 1.2;
  }

  .slider-content p {
    font-size: 0.75rem;
    line-height: 1.3;
  }

  .slider-content button {
    padding: 9px 18px;
    font-size: 0.75rem;
    border-radius: 8px;
  }

  .slider-dots {
    bottom: 12px;
  }

  .dot {
    height: 6px;
    width: 6px;
    margin: 0 2px;
  }
}

/* Landscape Orientation for Mobile and Tablets */
@media (max-width: 1024px) and (orientation: landscape) {
  .fullscreen-slider {
    height: 85vh;
    min-height: 450px;
  }

  .slider-overlay {
    padding-bottom: 50px;
  }

  .slider-content {
    padding: 25px 30px;
    gap: 15px;
  }

  .slider-content h1 {
    font-size: 1.8rem;
  }

  .slider-content p {
    font-size: 0.85rem;
  }

  .slider-content button {
    padding: 10px 22px;
    font-size: 0.85rem;
  }

  .slider-dots {
    bottom: 15px;
  }
}

@media (max-width: 768px) and (orientation: landscape) {
  .fullscreen-slider {
    height: calc(100vh - 126px);
    min-height: 400px;
  }

  .slider-overlay {
    padding-bottom: 40px;
  }

  .slider-content {
    padding: 20px 25px;
    gap: 12px;
  }

  .slider-content h1 {
    font-size: 1.6rem;
  }

  .slider-content p {
    font-size: 0.8rem;
  }

  .slider-content button {
    padding: 9px 20px;
    font-size: 0.8rem;
  }
}

/* High Resolution Displays (Retina) */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  #sliderImage {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}



/* Print Styles */
@media print {
  .fullscreen-slider {
    height: auto;
    page-break-inside: avoid;
  }

  .slider-dots {
    display: none;
  }

  .slider-content button {
    display: none;
  }
}

/* ========================================
   RESPONSIVE MEDIA QUERIES FOR ABOUT-INTRO-SECTION
   ======================================== */

/* Large Tablets and Small Desktops (1024px - 1200px) */
@media (max-width: 1200px) {
  .about-intro-section {
    padding: 50px 0;
  }

  .about-intro-container {
    padding: 0 25px;
  }

  .about-intro-header h2 {
    font-size: 3rem;
  }

  .about-subtitle {
    font-size: 1.2rem;
  }

  .about-intro-grid {
    gap: 50px;
  }

  .about-highlight {
    padding: 25px;
  }

  .about-highlight h3 {
    font-size: 1.3rem;
  }

  .about-stats {
    padding: 35px 25px;
  }

  .stat-number {
    font-size: 2.2rem;
  }
}

/* Tablets (768px - 1024px) */
@media (max-width: 1024px) {
  .about-intro-section {
    padding: 50px 0;
  }

  .about-intro-container {
    padding: 0 20px;
  }

  .about-intro-header {
    margin-bottom: 50px;
  }

  .about-intro-header h2 {
    font-size: 2.8rem;
    margin-bottom: 12px;
  }

  .about-intro-header h2::after {
    width: 80px;
    height: 3px;
    bottom: -10px;
  }

  .about-subtitle {
    font-size: 1.15rem;
  }

  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
  }

  .about-intro-left {
    gap: 30px;
  }

  .about-highlight {
    padding: 25px;
    gap: 18px;
  }

  .highlight-icon {
    width: 55px;
    height: 55px;
  }

  .about-highlight h3 {
    font-size: 1.25rem;
  }

  .about-highlight p {
    font-size: 0.95rem;
  }

  .about-stats {
    padding: 35px 25px;
    gap: 15px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.85rem;
  }

  .about-features {
    gap: 15px;
  }

  .feature-item {
    padding: 18px;
    gap: 12px;
  }

  .feature-icon {
    font-size: 1.4rem;
  }

  .feature-item span:last-child {
    font-size: 0.9rem;
  }

  .about-description {
    font-size: 1.05rem;
    margin-bottom: 35px;
  }

  .about-actions {
    gap: 18px;
  }

  .learn-more-btn {
    padding: 15px 30px;
    font-size: 0.95rem;
  }
}

/* Small Tablets and Large Phones (640px - 768px) */
@media (max-width: 768px) {
  .about-intro-section {
    padding: 50px 0;
  }

  .about-intro-container {
    padding: 0 18px;
  }

  .about-intro-header {
    margin-bottom: 40px;
  }

  .about-intro-header h2 {
    font-size: 2.4rem;
  }

  .about-subtitle {
    font-size: 1.1rem;
  }

  .about-intro-grid {
    gap: 35px;
    margin-bottom: 40px;
  }

  .about-intro-left {
    gap: 25px;
  }

  .about-highlight {
    flex-direction: column;
    text-align: center;
    padding: 22px;
  }

  .highlight-icon {
    width: 50px;
    height: 50px;
    margin-top: 0;
  }

  .about-highlight h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
  }

  .about-highlight p {
    font-size: 0.9rem;
  }

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    padding: 30px 20px;
    gap: 12px;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  .about-features {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .feature-item {
    padding: 16px;
  }

  .about-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
  }

  .about-actions {
    flex-direction: column;
    gap: 15px;
  }

  .learn-more-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 28px;
  }
}

/* Mobile Devices (480px - 640px) */
@media (max-width: 640px) {
  .about-intro-section {
    padding: 50px 0;
  }

  .about-intro-container {
    padding: 0 15px;
  }

  .about-intro-header {
    margin-bottom: 35px;
  }

  .about-intro-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .about-intro-header h2::after {
    width: 70px;
    height: 3px;
    bottom: -8px;
  }

  .about-subtitle {
    font-size: 1rem;
  }

  .about-intro-grid {
    gap: 30px;
    margin-bottom: 35px;
  }

  .about-intro-left {
    gap: 20px;
  }

  .about-highlight {
    padding: 20px;
    gap: 15px;
  }

  .highlight-icon {
    width: 48px;
    height: 48px;
  }

  .highlight-icon svg {
    width: 28px;
    height: 28px;
  }

  .about-highlight h3 {
    font-size: 1.1rem;
  }

  .about-highlight p {
    font-size: 0.85rem;
  }

  .about-stats {
    grid-template-columns: 1fr;
    padding: 25px 18px;
    gap: 20px;
  }

  .stat-item {
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
  }

  .stat-item:last-child {
    border-bottom: none;
  }

  .stat-number {
    font-size: 2rem;
    margin-bottom: 6px;
  }

  .stat-label {
    font-size: 0.85rem;
  }

  .feature-item {
    padding: 15px;
    gap: 10px;
  }

  .feature-icon {
    font-size: 1.3rem;
  }

  .feature-item span:last-child {
    font-size: 0.85rem;
  }

  .about-description {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
  }

  .learn-more-btn {
    padding: 13px 26px;
    font-size: 0.9rem;
    gap: 10px;
  }

  .learn-more-btn svg {
    width: 18px;
    height: 18px;
  }
}

/* Small Mobile Devices (360px - 480px) */
@media (max-width: 480px) {
  .about-intro-section {
    padding: 40px 0;
  }

  .about-intro-section::after {
    width: 400px;
    height: 400px;
  }

  .about-intro-container {
    padding: 0 12px;
  }

  .about-intro-header {
    margin-bottom: 30px;
  }

  .about-intro-header h2 {
    font-size: 1.75rem;
  }

  .about-subtitle {
    font-size: 0.95rem;
  }

  .about-intro-grid {
    gap: 25px;
    margin-bottom: 30px;
  }

  .about-intro-left {
    gap: 18px;
  }

  .about-highlight {
    padding: 18px;
    gap: 12px;
    border-radius: 16px;
  }

  .highlight-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
  }

  .highlight-icon svg {
    width: 26px;
    height: 26px;
  }

  .about-highlight h3 {
    font-size: 1rem;
    margin-bottom: 6px;
  }

  .about-highlight p {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .about-stats {
    padding: 22px 15px;
    gap: 18px;
    border-radius: 16px;
  }

  .stat-item {
    padding: 12px 0;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  .about-features {
    gap: 10px;
  }

  .feature-item {
    padding: 14px;
    border-radius: 12px;
  }

  .feature-icon {
    font-size: 1.2rem;
  }

  .feature-item span:last-child {
    font-size: 0.8rem;
  }

  .about-description {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 22px;
  }

  .learn-more-btn {
    padding: 12px 24px;
    font-size: 0.85rem;
    border-radius: 20px;
  }
}

/* Extra Small Mobile Devices (below 360px) */
@media (max-width: 360px) {
  .about-intro-section {
    padding: 35px 0;
  }

  .about-intro-container {
    padding: 0 10px;
  }

  .about-intro-header {
    margin-bottom: 25px;
  }

  .about-intro-header h2 {
    font-size: 1.5rem;
  }

  .about-intro-header h2::after {
    width: 60px;
    height: 2px;
  }

  .about-subtitle {
    font-size: 0.9rem;
  }

  .about-intro-grid {
    gap: 20px;
    margin-bottom: 25px;
  }

  .about-intro-left {
    gap: 15px;
  }

  .about-highlight {
    padding: 15px;
    gap: 10px;
  }

  .highlight-icon {
    width: 42px;
    height: 42px;
  }

  .highlight-icon svg {
    width: 24px;
    height: 24px;
  }

  .about-highlight h3 {
    font-size: 0.95rem;
  }

  .about-highlight p {
    font-size: 0.75rem;
  }

  .about-stats {
    padding: 20px 12px;
    gap: 15px;
  }

  .stat-item {
    padding: 10px 0;
  }

  .stat-number {
    font-size: 1.6rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  .feature-item {
    padding: 12px;
    gap: 8px;
  }

  .feature-icon {
    font-size: 1.1rem;
  }

  .feature-item span:last-child {
    font-size: 0.75rem;
  }

  .about-description {
    font-size: 0.85rem;
    margin-bottom: 20px;
  }

  .learn-more-btn {
    padding: 11px 22px;
    font-size: 0.8rem;
    gap: 8px;
  }

  .learn-more-btn svg {
    width: 16px;
    height: 16px;
  }
}

/* Landscape Orientation for Mobile and Tablets */
@media (max-width: 1024px) and (orientation: landscape) {
  .about-intro-section {
    padding: 50px 0;
  }

  .about-intro-header {
    margin-bottom: 35px;
  }

  .about-intro-header h2 {
    font-size: 2.2rem;
  }

  .about-intro-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .about-highlight {
    flex-direction: row;
    text-align: left;
  }

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) and (orientation: landscape) {
  .about-intro-section {
    padding: 40px 0;
  }

  .about-intro-header h2 {
    font-size: 2rem;
  }

  .about-intro-grid {
    gap: 25px;
  }

  .about-highlight {
    padding: 18px;
  }

  .about-stats {
    padding: 25px 20px;
  }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
  .learn-more-btn {
    min-height: 44px;
  }

  .about-highlight,
  .feature-item {
    cursor: default;
  }
}

/* Print Styles */
@media print {
  .about-intro-section {
    padding: 30px 0;
    page-break-inside: avoid;
  }

  .about-intro-section::before,
  .about-intro-section::after {
    display: none;
  }

  .learn-more-btn {
    display: none;
  }
}

/* ========================================
   RESPONSIVE MEDIA QUERIES FOR WHY-CHOOSE-SECTION
   ======================================== */

/* Large Tablets (1024px - 1200px) */
@media (max-width: 1200px) {
  .why-choose-section {
    padding: 50px 0;
  }

  .why-choose-container {
    padding: 0 25px;
  }

  .why-choose-section .section-header h2 {
    font-size: 3rem;
  }

  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .choose-card {
    padding: 28px 22px;
  }

  .choose-content h3 {
    font-size: 1.4rem;
  }
}

/* Tablets (768px - 1024px) */
@media (max-width: 1024px) {
  .why-choose-section {
    padding: 50px 0;
  }

  .why-choose-container {
    padding: 0 20px;
  }

  .why-choose-section .section-header {
    margin-bottom: 50px;
  }

  .why-choose-section .section-header h2 {
    font-size: 2.8rem;
  }

  .why-choose-section .section-header h2::after {
    width: 80px;
    height: 3px;
  }

  .why-choose-section .section-header p {
    font-size: 1.1rem;
  }

  .why-choose-grid {
    gap: 18px;
  }

  .choose-card {
    padding: 26px 20px;
  }

  .card-inner {
    gap: 25px;
  }

  .choose-icon-wrapper {
    margin-top: 15px;
  }

  .icon-bg {
    width: 70px;
    height: 70px;
  }

  .choose-icon-wrapper svg {
    width: 36px;
    height: 36px;
  }

  .choose-content h3 {
    font-size: 1.3rem;
  }

  .choose-content p {
    font-size: 0.95rem;
  }

  .stat-badge {
    padding: 5px 12px;
    font-size: 0.7rem;
  }
}

/* Small Tablets (640px - 768px) */
@media (max-width: 768px) {
  .why-choose-section {
    padding: 50px 0;
  }

  .why-choose-container {
    padding: 0 18px;
  }

  .why-choose-section .section-header {
    margin-bottom: 40px;
  }

  .section-badge {
    padding: 7px 18px;
    font-size: 0.85rem;
  }

  .why-choose-section .section-header h2 {
    font-size: 2.4rem;
  }

  .why-choose-section .section-header p {
    font-size: 1.05rem;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .choose-card {
    padding: 25px 20px;
  }

  .card-inner {
    gap: 22px;
  }

  .choose-icon-wrapper {
    margin-top: 10px;
  }

  .choose-content h3 {
    font-size: 1.25rem;
  }

  .choose-content p {
    font-size: 0.9rem;
  }
}

/* Mobile Devices (480px - 640px) */
@media (max-width: 640px) {
  .why-choose-section {
    padding: 50px 0;
  }

  .why-choose-container {
    padding: 0 15px;
  }

  .why-choose-section .section-header {
    margin-bottom: 35px;
  }

  .section-badge {
    padding: 6px 16px;
    font-size: 0.8rem;
    margin-bottom: 15px;
  }

  .why-choose-section .section-header h2 {
    font-size: 2rem;
    margin-bottom: 12px;
  }

  .why-choose-section .section-header h2::after {
    width: 70px;
    bottom: -10px;
  }

  .why-choose-section .section-header p {
    font-size: 1rem;
  }

  .why-choose-grid {
    gap: 18px;
  }

  .choose-card {
    padding: 22px 18px;
    border-radius: 16px;
  }

  .card-inner {
    gap: 20px;
  }

  .choose-icon-wrapper {
    margin-top: 8px;
  }

  .icon-bg {
    width: 65px;
    height: 65px;
    border-radius: 16px;
  }

  .choose-icon-wrapper svg {
    width: 32px;
    height: 32px;
  }

  .choose-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }

  .choose-content p {
    font-size: 0.85rem;
    margin-bottom: 15px;
  }

  .card-stats {
    gap: 8px;
  }

  .stat-badge {
    padding: 5px 10px;
    font-size: 0.7rem;
  }
}

/* Small Mobile (360px - 480px) */
@media (max-width: 480px) {
  .why-choose-section {
    padding: 40px 0;
  }

  .why-choose-container {
    padding: 0 12px;
  }

  .why-choose-section .section-header {
    margin-bottom: 30px;
  }

  .section-badge {
    padding: 6px 14px;
    font-size: 0.75rem;
  }

  .why-choose-section .section-header h2 {
    font-size: 1.75rem;
  }

  .why-choose-section .section-header p {
    font-size: 0.95rem;
  }

  .why-choose-grid {
    gap: 15px;
  }

  .choose-card {
    padding: 20px 16px;
  }

  .card-inner {
    gap: 18px;
  }

  .icon-bg {
    width: 60px;
    height: 60px;
  }

  .choose-icon-wrapper svg {
    width: 30px;
    height: 30px;
  }

  .choose-content h3 {
    font-size: 1.1rem;
  }

  .choose-content p {
    font-size: 0.8rem;
  }

  .stat-badge {
    padding: 4px 10px;
    font-size: 0.65rem;
  }
}

/* Extra Small Mobile (below 360px) */
@media (max-width: 360px) {
  .why-choose-section {
    padding: 35px 0;
  }

  .why-choose-container {
    padding: 0 10px;
  }

  .why-choose-section .section-header {
    margin-bottom: 25px;
  }

  .section-badge {
    padding: 5px 12px;
    font-size: 0.7rem;
  }

  .why-choose-section .section-header h2 {
    font-size: 1.5rem;
  }

  .why-choose-section .section-header h2::after {
    width: 60px;
    height: 2px;
  }

  .why-choose-section .section-header p {
    font-size: 0.9rem;
  }

  .why-choose-grid {
    gap: 12px;
  }

  .choose-card {
    padding: 18px 14px;
  }

  .card-inner {
    gap: 15px;
  }

  .choose-icon-wrapper {
    margin-top: 5px;
  }

  .icon-bg {
    width: 55px;
    height: 55px;
  }

  .choose-icon-wrapper svg {
    width: 28px;
    height: 28px;
  }

  .choose-content h3 {
    font-size: 1rem;
  }

  .choose-content p {
    font-size: 0.75rem;
  }

  .card-stats {
    gap: 6px;
  }

  .stat-badge {
    padding: 4px 8px;
    font-size: 0.6rem;
  }
}

/* Landscape Orientation */
@media (max-width: 1024px) and (orientation: landscape) {
  .why-choose-section {
    padding: 50px 0;
  }

  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) and (orientation: landscape) {
  .why-choose-section {
    padding: 40px 0;
  }

  .why-choose-section .section-header h2 {
    font-size: 2rem;
  }
}

/* ========================================
   RESPONSIVE MEDIA QUERIES FOR CORE-SERVICES-SECTION
   ======================================== */

/* Large Tablets (1024px - 1200px) */
@media (max-width: 1200px) {
  .core-services-section {
    padding: 50px 0;
  }

  .core-services-container {
    padding: 0 25px;
  }

  .core-services-section .section-header h2 {
    font-size: 3rem;
  }

  .services-grid {
    gap: 25px;
  }

  .service-card {
    padding: 32px 28px;
  }
}

/* Tablets (768px - 1024px) */
@media (max-width: 1024px) {
  .core-services-section {
    padding: 50px 0;
  }

  .core-services-container {
    padding: 0 20px;
  }

  .core-services-section .section-header {
    margin-bottom: 50px;
  }

  .core-services-section .section-header h2 {
    font-size: 2.8rem;
  }

  .core-services-section .section-header h2::after {
    width: 80px;
    height: 3px;
  }

  .core-services-section .section-header p {
    font-size: 1.1rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .service-card {
    padding: 30px 26px;
  }

  .service-number {
    font-size: 2.5rem;
  }

  .service-icon-wrapper {
    width: 65px;
    height: 65px;
  }

  .service-icon-wrapper svg {
    width: 34px;
    height: 34px;
  }

  .service-card h3 {
    font-size: 1.3rem;
  }

  .service-card p {
    font-size: 0.9rem;
  }
}

/* Small Tablets (640px - 768px) */
@media (max-width: 768px) {
  .core-services-section {
    padding: 50px 0;
  }

  .core-services-container {
    padding: 0 18px;
  }

  .core-services-section .section-header {
    margin-bottom: 40px;
  }

  .section-badge {
    padding: 7px 18px;
    font-size: 0.85rem;
  }

  .core-services-section .section-header h2 {
    font-size: 2.4rem;
  }

  .core-services-section .section-header p {
    font-size: 1.05rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card {
    padding: 28px 24px;
  }

  .service-number {
    font-size: 2.2rem;
  }

  .service-icon-wrapper {
    width: 60px;
    height: 60px;
  }

  .service-icon-wrapper svg {
    width: 32px;
    height: 32px;
  }

  .service-card h3 {
    font-size: 1.25rem;
  }

  .service-card p {
    font-size: 0.88rem;
  }
}

/* Mobile Devices (480px - 640px) */
@media (max-width: 640px) {
  .core-services-section {
    padding: 50px 0;
  }

  .core-services-container {
    padding: 0 15px;
  }

  .core-services-section .section-header {
    margin-bottom: 35px;
  }

  .section-badge {
    padding: 6px 16px;
    font-size: 0.8rem;
  }

  .core-services-section .section-header h2 {
    font-size: 2rem;
  }

  .core-services-section .section-header h2::after {
    width: 70px;
  }

  .core-services-section .section-header p {
    font-size: 1rem;
  }

  .services-grid {
    gap: 18px;
  }

  .service-card {
    padding: 26px 22px;
    border-radius: 16px;
  }

  .service-number {
    font-size: 2rem;
    top: 18px;
    right: 18px;
  }

  .service-icon-wrapper {
    width: 58px;
    height: 58px;
    margin-bottom: 22px;
  }

  .service-icon-bg {
    border-radius: 16px;
  }

  .service-icon-wrapper svg {
    width: 30px;
    height: 30px;
  }

  .service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }

  .service-card p {
    font-size: 0.85rem;
  }
}

/* Small Mobile (360px - 480px) */
@media (max-width: 480px) {
  .core-services-section {
    padding: 40px 0;
  }

  .core-services-container {
    padding: 0 12px;
  }

  .core-services-section .section-header {
    margin-bottom: 30px;
  }

  .section-badge {
    padding: 6px 14px;
    font-size: 0.75rem;
  }

  .core-services-section .section-header h2 {
    font-size: 1.75rem;
  }

  .core-services-section .section-header p {
    font-size: 0.95rem;
  }

  .services-grid {
    gap: 15px;
  }

  .service-card {
    padding: 24px 20px;
  }

  .service-number {
    font-size: 1.8rem;
    top: 16px;
    right: 16px;
  }

  .service-icon-wrapper {
    width: 55px;
    height: 55px;
    margin-bottom: 20px;
  }

  .service-icon-wrapper svg {
    width: 28px;
    height: 28px;
  }

  .service-card h3 {
    font-size: 1.1rem;
  }

  .service-card p {
    font-size: 0.8rem;
  }
}

/* Extra Small Mobile (below 360px) */
@media (max-width: 360px) {
  .core-services-section {
    padding: 35px 0;
  }

  .core-services-container {
    padding: 0 10px;
  }

  .core-services-section .section-header {
    margin-bottom: 25px;
  }

  .section-badge {
    padding: 5px 12px;
    font-size: 0.7rem;
  }

  .core-services-section .section-header h2 {
    font-size: 1.5rem;
  }

  .core-services-section .section-header h2::after {
    width: 60px;
    height: 2px;
  }

  .core-services-section .section-header p {
    font-size: 0.9rem;
  }

  .services-grid {
    gap: 12px;
  }

  .service-card {
    padding: 20px 16px;
  }

  .service-number {
    font-size: 1.6rem;
    top: 14px;
    right: 14px;
  }

  .service-icon-wrapper {
    width: 50px;
    height: 50px;
    margin-bottom: 18px;
  }

  .service-icon-wrapper svg {
    width: 26px;
    height: 26px;
  }

  .service-card h3 {
    font-size: 1rem;
  }

  .service-card p {
    font-size: 0.75rem;
  }
}

/* Landscape Orientation */
@media (max-width: 1024px) and (orientation: landscape) {
  .core-services-section {
    padding: 50px 0;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) and (orientation: landscape) {
  .core-services-section {
    padding: 40px 0;
  }

  .core-services-section .section-header h2 {
    font-size: 2rem;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ========================================
   RESPONSIVE MEDIA QUERIES FOR INDUSTRIES-SECTION
   ======================================== */

/* Large Tablets (1024px - 1200px) */
@media (max-width: 1200px) {
  .industries-section {
    padding: 50px 0;
  }

  .industries-container {
    padding: 0 25px;
  }

  .industries-section .section-header h2 {
    font-size: 3rem;
  }

  .industries-grid {
    gap: 25px;
  }

  .industry-card {
    width: 230px;
    height: 230px;
    padding: 28px 18px;
  }
}

/* Tablets (768px - 1024px) */
@media (max-width: 1024px) {
  .industries-section {
    padding: 50px 0;
  }

  .industries-container {
    padding: 0 20px;
  }

  .industries-section .section-header {
    margin-bottom: 50px;
  }

  .industries-section .section-header h2 {
    font-size: 2.8rem;
  }

  .industries-section .section-header h2::after {
    width: 80px;
    height: 3px;
  }

  .industries-section .section-header p {
    font-size: 1.1rem;
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .industry-card {
    width: 220px;
    height: 220px;
    padding: 26px 16px;
  }

  .industry-icon-circle {
    width: 65px;
    height: 65px;
    margin-bottom: 12px;
  }

  .industry-icon {
    font-size: 1.8rem;
  }

  .industry-card h3 {
    font-size: 1.05rem;
  }

  .industry-card p {
    font-size: 0.78rem;
  }
}

/* Small Tablets (640px - 768px) */
@media (max-width: 768px) {
  .industries-section {
    padding: 50px 0;
  }

  .industries-container {
    padding: 0 18px;
  }

  .industries-section .section-header {
    margin-bottom: 40px;
  }

  .section-badge {
    padding: 7px 18px;
    font-size: 0.85rem;
  }

  .industries-section .section-header h2 {
    font-size: 2.4rem;
  }

  .industries-section .section-header p {
    font-size: 1.05rem;
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .industry-card {
    width: 100%;
    max-width: 200px;
    height: 200px;
    padding: 24px 14px;
  }

  .industry-icon-circle {
    width: 60px;
    height: 60px;
  }

  .industry-icon {
    font-size: 1.7rem;
  }

  .industry-card h3 {
    font-size: 1rem;
    margin-bottom: 6px;
  }

  .industry-card p {
    font-size: 0.75rem;
    line-height: 1;
  }
}

/* Mobile Devices (480px - 640px) */
@media (max-width: 640px) {
  .industries-section {
    padding: 50px 0;
  }

  .industries-container {
    padding: 0 15px;
  }

  .industries-section .section-header {
    margin-bottom: 35px;
  }

  .section-badge {
    padding: 6px 16px;
    font-size: 0.8rem;
  }

  .industries-section .section-header h2 {
    font-size: 2rem;
  }

  .industries-section .section-header h2::after {
    width: 70px;
  }

  .industries-section .section-header p {
    font-size: 1rem;
  }

  .industries-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .industry-card {
    width: 100%;
    max-width: 280px;
    height: auto;
    min-height: 180px;
    padding: 30px 20px;
    border-radius: 20px;
  }

  .industry-icon-circle {
    width: 55px;
    height: 55px;
    margin-bottom: 10px;
  }

  .industry-icon {
    font-size: 1.6rem;
  }

  .industry-card h3 {
    font-size: 1.05rem;
  }

  .industry-card p {
    font-size: 0.78rem;
  }
}

/* Small Mobile (360px - 480px) */
@media (max-width: 480px) {
  .industries-section {
    padding: 40px 0;
  }

  .industries-container {
    padding: 0 12px;
  }

  .industries-section .section-header {
    margin-bottom: 30px;
  }

  .section-badge {
    padding: 6px 14px;
    font-size: 0.75rem;
  }

  .industries-section .section-header h2 {
    font-size: 1.75rem;
  }

  .industries-section .section-header p {
    font-size: 0.95rem;
  }

  .industries-grid {
    gap: 15px;
  }

  .industry-card {
    max-width: 100%;
    min-height: 160px;
    padding: 25px 18px;
  }

  .industry-icon-circle {
    width: 50px;
    height: 50px;
  }

  .industry-icon {
    font-size: 1.5rem;
  }

  .industry-card h3 {
    font-size: 1rem;
  }

  .industry-card p {
    font-size: 0.75rem;
  }
}

/* Extra Small Mobile (below 360px) */
@media (max-width: 360px) {
  .industries-section {
    padding: 35px 0;
  }

  .industries-container {
    padding: 0 10px;
  }

  .industries-section .section-header {
    margin-bottom: 25px;
  }

  .section-badge {
    padding: 5px 12px;
    font-size: 0.7rem;
  }

  .industries-section .section-header h2 {
    font-size: 1.5rem;
  }

  .industries-section .section-header h2::after {
    width: 60px;
    height: 2px;
  }

  .industries-section .section-header p {
    font-size: 0.9rem;
  }

  .industries-grid {
    gap: 12px;
  }

  .industry-card {
    min-height: 150px;
    padding: 22px 16px;
  }

  .industry-icon-circle {
    width: 48px;
    height: 48px;
  }

  .industry-icon {
    font-size: 1.4rem;
  }

  .industry-card h3 {
    font-size: 0.95rem;
  }

  .industry-card p {
    font-size: 0.7rem;
  }
}

/* Landscape Orientation */
@media (max-width: 1024px) and (orientation: landscape) {
  .industries-section {
    padding: 50px 0;
  }

  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .industry-card {
    width: 180px;
    height: 180px;
  }
}

@media (max-width: 768px) and (orientation: landscape) {
  .industries-section {
    padding: 40px 0;
  }

  .industries-section .section-header h2 {
    font-size: 2rem;
  }

  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .industry-card {
    width: 160px;
    height: 160px;
    padding: 20px 12px;
  }
}

/* ========================================
   RESPONSIVE MEDIA QUERIES FOR TRADE-PROCESS-SECTION
   ======================================== */

/* Large Tablets (1024px - 1200px) */
@media (max-width: 1200px) {
  .trade-process-section {
    padding: 50px 0;
  }

  .trade-process-container {
    padding: 0 25px;
  }

  .trade-process-section .section-header h2 {
    font-size: 3rem;
  }

  .process-step {
    margin-bottom: 45px;
  }

  .step-number {
    width: 75px;
    height: 75px;
    font-size: 1.4rem;
  }

  .step-content {
    padding: 28px;
  }
}

/* Tablets (768px - 1024px) */
@media (max-width: 1024px) {
  .trade-process-section {
    padding: 50px 0;
  }

  .trade-process-container {
    padding: 0 20px;
  }

  .trade-process-section .section-header {
    margin-bottom: 50px;
  }

  .trade-process-section .section-header h2 {
    font-size: 2.8rem;
  }

  .trade-process-section .section-header h2::after {
    width: 80px;
    height: 3px;
  }

  .trade-process-section .section-header p {
    font-size: 1.1rem;
  }

  .process-timeline::before {
    display: none;
  }

  .process-step {
    flex-direction: column !important;
    text-align: left !important;
    margin-bottom: 35px;
  }

  .process-step:nth-child(odd) .step-content,
  .process-step:nth-child(even) .step-content {
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
  }

  .step-marker {
    position: relative;
    left: 0;
    transform: none;
    top: 0;
    margin-bottom: 20px;
  }

  .step-number {
    width: 70px;
    height: 70px;
    font-size: 1.3rem;
  }

  .process-step:hover .step-number {
    transform: scale(1.15);
  }

  .process-step:nth-child(even):hover .step-number {
    transform: scale(1.15);
  }

  .step-content {
    padding: 26px;
  }

  .step-content h3 {
    font-size: 1.3rem;
  }

  .step-content p {
    font-size: 0.9rem;
  }

  .process-step:nth-child(odd):hover .step-content,
  .process-step:nth-child(even):hover .step-content {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(144, 197, 45, 0.15);
  }
}

/* Small Tablets (640px - 768px) */
@media (max-width: 768px) {
  .trade-process-section {
    padding: 50px 0;
  }

  .trade-process-container {
    padding: 0 18px;
  }

  .trade-process-section .section-header {
    margin-bottom: 40px;
  }

  .section-badge {
    padding: 7px 18px;
    font-size: 0.85rem;
  }

  .trade-process-section .section-header h2 {
    font-size: 2.4rem;
  }

  .trade-process-section .section-header p {
    font-size: 1.05rem;
  }

  .process-step {
    margin-bottom: 30px;
  }

  .step-marker {
    margin-bottom: 18px;
  }

  .step-number {
    width: 65px;
    height: 65px;
    font-size: 1.2rem;
    border-width: 2.5px;
  }

  .step-content {
    padding: 24px;
    border-radius: 16px;
  }

  .step-content h3 {
    font-size: 1.25rem;
  }

  .step-content p {
    font-size: 0.88rem;
    line-height: 1.5;
  }
}

/* Mobile Devices (480px - 640px) */
@media (max-width: 640px) {
  .trade-process-section {
    padding: 50px 0;
  }

  .trade-process-container {
    padding: 0 15px;
  }

  .trade-process-section .section-header {
    margin-bottom: 35px;
  }

  .section-badge {
    padding: 6px 16px;
    font-size: 0.8rem;
  }

  .trade-process-section .section-header h2 {
    font-size: 2rem;
  }

  .trade-process-section .section-header h2::after {
    width: 70px;
  }

  .trade-process-section .section-header p {
    font-size: 1rem;
  }

  .process-step {
    margin-bottom: 25px;
  }

  .step-marker {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
  }

  .step-number {
    width: 60px;
    height: 60px;
    font-size: 1.1rem;
  }

  .step-content {
    padding: 22px;
  }

  .step-content h3 {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 8px;
  }

  .step-content p {
    font-size: 0.85rem;
    text-align: center;
  }
}

/* Small Mobile (360px - 480px) */
@media (max-width: 480px) {
  .trade-process-section {
    padding: 40px 0;
  }

  .trade-process-container {
    padding: 0 12px;
  }

  .trade-process-section .section-header {
    margin-bottom: 30px;
  }

  .section-badge {
    padding: 6px 14px;
    font-size: 0.75rem;
  }

  .trade-process-section .section-header h2 {
    font-size: 1.75rem;
  }

  .trade-process-section .section-header p {
    font-size: 0.95rem;
  }

  .process-step {
    margin-bottom: 22px;
    gap: 10px;
  }

  .step-marker {
    margin-bottom: 12px;
    justify-content: center;
  }

  .step-number {
    width: 55px;
    height: 55px;
    font-size: 1rem;
  }

  .step-content {
    padding: 20px;
  }

  .step-content h3 {
    font-size: 1.1rem;
    text-align: center;
  }

  .step-content p {
    font-size: 0.8rem;
    text-align: center;
  }
}

/* Extra Small Mobile (below 360px) */
@media (max-width: 360px) {
  .trade-process-section {
    padding: 35px 0;
  }

  .trade-process-container {
    padding: 0 10px;
  }

  .trade-process-section .section-header {
    margin-bottom: 25px;
  }

  .section-badge {
    padding: 5px 12px;
    font-size: 0.7rem;
  }

  .trade-process-section .section-header h2 {
    font-size: 1.5rem;
  }

  .trade-process-section .section-header h2::after {
    width: 60px;
    height: 2px;
  }

  .trade-process-section .section-header p {
    font-size: 0.9rem;
  }

  .process-step {
    margin-bottom: 20px;
  }

  .step-marker {
    margin-bottom: 10px;
    justify-content: center;
  }

  .step-number {
    width: 50px;
    height: 50px;
    font-size: 0.95rem;
  }

  .step-content {
    padding: 18px;
  }

  .step-content h3 {
    font-size: 1rem;
    text-align: center;
  }

  .step-content p {
    font-size: 0.75rem;
    text-align: center;
  }
}

/* Landscape Orientation */
@media (max-width: 1024px) and (orientation: landscape) {
  .trade-process-section {
    padding: 50px 0;
  }

  .process-step {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) and (orientation: landscape) {
  .trade-process-section {
    padding: 40px 0;
  }

  .trade-process-section .section-header h2 {
    font-size: 2rem;
  }

  .process-step {
    margin-bottom: 25px;
  }
}

/* ========================================
   RESPONSIVE MEDIA QUERIES FOR GLOBAL-REACH-SECTION
   ======================================== */

/* Large Tablets (1024px - 1200px) */
@media (max-width: 1200px) {
  .global-reach-section {
    padding: 50px 0;
  }

  .global-reach-container {
    padding: 0 25px;
  }

  .global-reach-section .section-header h2 {
    font-size: 2.7rem;
  }

  .global-stats-grid {
    gap: 20px;
  }

  .global-stat-card {
    padding: 32px 20px;
  }

  .compliance-grid {
    gap: 18px;
  }

  .compliance-item {
    padding: 26px;
  }
}

/* Tablets (768px - 1024px) */
@media (max-width: 1024px) {
  .global-reach-section {
    padding: 50px 0;
  }

  .global-reach-container {
    padding: 0 20px;
  }

  .global-reach-section .section-header {
    margin-bottom: 50px;
  }

  .global-reach-section .section-header h2 {
    font-size: 2.5rem;
  }

  .global-reach-section .section-header p {
    font-size: 1.05rem;
  }

  .global-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 50px;
  }

  .global-stat-card {
    padding: 30px 18px;
  }

  .stat-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 18px;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .stat-label {
    font-size: 0.85rem;
  }

  .compliance-grid {
    gap: 16px;
  }

  .compliance-item {
    padding: 24px;
  }

  .compliance-icon-wrapper {
    width: 52px;
    height: 52px;
  }

  .compliance-icon {
    width: 26px;
    height: 26px;
  }

  .compliance-content h4 {
    font-size: 1.05rem;
  }

  .compliance-content p {
    font-size: 0.85rem;
  }
}

/* Small Tablets (640px - 768px) */
@media (max-width: 768px) {
  .global-reach-section {
    padding: 50px 0;
  }

  .global-reach-container {
    padding: 0 18px;
  }

  .global-reach-section .section-header {
    margin-bottom: 40px;
  }

  .section-badge {
    padding: 7px 18px;
    font-size: 0.85rem;
  }

  .global-reach-section .section-header h2 {
    font-size: 2.2rem;
  }

  .global-reach-section .section-header p {
    font-size: 1rem;
  }

  .global-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 40px;
  }

  .global-stat-card {
    padding: 28px 16px;
  }

  .stat-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 16px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  .compliance-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .compliance-item {
    padding: 22px;
  }

  .compliance-icon-wrapper {
    width: 50px;
    height: 50px;
  }

  .compliance-icon {
    width: 25px;
    height: 25px;
  }

  .compliance-content h4 {
    font-size: 1rem;
  }

  .compliance-content p {
    font-size: 0.82rem;
  }
}

/* Mobile Devices (480px - 640px) */
@media (max-width: 640px) {
  .global-reach-section {
    padding: 50px 0;
  }

  .global-reach-container {
    padding: 0 15px;
  }

  .global-reach-section .section-header {
    margin-bottom: 35px;
  }

  .section-badge {
    padding: 6px 16px;
    font-size: 0.8rem;
  }

  .global-reach-section .section-header h2 {
    font-size: 1.9rem;
  }

  .global-reach-section .section-header p {
    font-size: 0.95rem;
  }

  .global-stats-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 35px;
  }

  .global-stat-card {
    padding: 26px 18px;
    border-radius: 12px;
  }

  .stat-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 14px;
  }

  .stat-number {
    font-size: 1.9rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  .compliance-grid {
    gap: 12px;
  }

  .compliance-item {
    padding: 20px;
    border-radius: 14px;
    align-items: center;
  }

  .compliance-icon-wrapper {
    width: 48px;
    height: 48px;
  }

  .compliance-icon {
    width: 24px;
    height: 24px;
  }

  .compliance-content h4 {
    font-size: 0.95rem;
  }

  .compliance-content p {
    font-size: 0.8rem;
  }
}

/* Small Mobile (360px - 480px) */
@media (max-width: 480px) {
  .global-reach-section {
    padding: 40px 0;
  }

  .global-reach-container {
    padding: 0 12px;
  }

  .global-reach-section .section-header {
    margin-bottom: 30px;
  }

  .section-badge {
    padding: 6px 14px;
    font-size: 0.75rem;
  }

  .global-reach-section .section-header h2 {
    font-size: 1.7rem;
  }

  .global-reach-section .section-header p {
    font-size: 0.9rem;
  }

  .global-stats-grid {
    gap: 12px;
    margin-bottom: 30px;
  }

  .global-stat-card {
    padding: 24px 16px;
  }

  .stat-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 12px;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  .compliance-grid {
    gap: 10px;
  }

  .compliance-item {
    padding: 18px;
        align-items: center;
    gap: 16px;
  }

  .compliance-icon-wrapper {
    width: 46px;
    height: 46px;
  }

  .compliance-icon {
    width: 23px;
    height: 23px;
  }

  .compliance-content h4 {
    font-size: 0.9rem;
  }

  .compliance-content p {
    font-size: 0.75rem;
  }
}

/* Extra Small Mobile (below 360px) */
@media (max-width: 360px) {
  .global-reach-section {
    padding: 35px 0;
  }

  .global-reach-container {
    padding: 0 10px;
  }

  .global-reach-section .section-header {
    margin-bottom: 25px;
  }

  .section-badge {
    padding: 5px 12px;
    font-size: 0.7rem;
  }

  .global-reach-section .section-header h2 {
    font-size: 1.5rem;
  }

  .global-reach-section .section-header p {
    font-size: 0.85rem;
  }

  .global-stats-grid {
    gap: 10px;
    margin-bottom: 25px;
  }

  .global-stat-card {
    padding: 22px 14px;
  }

  .stat-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 10px;
  }

  .stat-number {
    font-size: 1.6rem;
  }

  .stat-label {
    font-size: 0.7rem;
  }

  .compliance-grid {
    gap: 8px;
  }

  .compliance-item {
    padding: 16px;
        align-items: center;
    gap: 14px;
  }

  .compliance-icon-wrapper {
    width: 44px;
    height: 44px;
  }

  .compliance-icon {
    width: 22px;
    height: 22px;
  }

  .compliance-content h4 {
    font-size: 0.85rem;
  }

  .compliance-content p {
    font-size: 0.7rem;
  }
}

/* Landscape Orientation */
@media (max-width: 1024px) and (orientation: landscape) {
  .global-reach-section {
    padding: 50px 0;
  }

  .global-stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .compliance-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) and (orientation: landscape) {
  .global-reach-section {
    padding: 40px 0;
  }

  .global-reach-section .section-header h2 {
    font-size: 2rem;
  }

  .global-stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ========================================
   RESPONSIVE MEDIA QUERIES FOR CTA-SECTION
   ======================================== */

/* Large Tablets (1024px - 1200px) */
@media (max-width: 1200px) {
  .cta-section {
    padding: 50px 0;
  }

  .cta-container {
    padding: 0 25px;
  }

  .cta-content h2 {
    font-size: 3rem;
  }

  .cta-content > p {
    font-size: 1.2rem;
  }

  .cta-features {
    gap: 35px;
  }
}

/* Tablets (768px - 1024px) */
@media (max-width: 1024px) {
  .cta-section {
    padding: 50px 0;
  }

  .cta-section::before,
  .cta-section::after {
    width: 500px;
    height: 500px;
  }

  .cta-container {
    padding: 0 20px;
  }

  .cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 18px;
  }

  .cta-content > p {
    font-size: 1.15rem;
    margin-bottom: 35px;
  }

  .cta-features {
    gap: 30px;
    margin-bottom: 35px;
  }

  .cta-feature {
    font-size: 1rem;
  }

  .cta-buttons {
    gap: 18px;
    margin-bottom: 28px;
  }

  .cta-btn {
    padding: 16px 32px;
    font-size: 1rem;
  }

  .cta-trust {
    font-size: 0.9rem;
  }
}

/* Small Tablets (640px - 768px) */
@media (max-width: 768px) {
  .cta-section {
    padding: 50px 0;
  }

  .cta-section::before,
  .cta-section::after {
    width: 400px;
    height: 400px;
  }

  .cta-container {
    padding: 0 18px;
  }

  .cta-content h2 {
    font-size: 2.4rem;
    margin-bottom: 16px;
  }

  .cta-content > p {
    font-size: 1.1rem;
    margin-bottom: 32px;
  }

  .cta-features {
    gap: 25px;
    margin-bottom: 32px;
  }

  .cta-feature {
    font-size: 0.95rem;
  }

  .cta-icon {
    width: 22px;
    height: 22px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
  }

  .cta-btn {
    width: 100%;
    justify-content: center;
    padding: 15px 30px;
    font-size: 0.95rem;
  }

  .cta-trust {
    font-size: 0.85rem;
  }
}

/* Mobile Devices (480px - 640px) */
@media (max-width: 640px) {
  .cta-section {
    padding: 50px 0;
  }

  .cta-section::before {
    width: 350px;
    height: 350px;
    top: -40%;
  }

  .cta-section::after {
    width: 300px;
    height: 300px;
    bottom: -25%;
  }

  .cta-container {
    padding: 0 15px;
  }

  .cta-content h2 {
    font-size: 2rem;
    margin-bottom: 14px;
  }

  .cta-content > p {
    font-size: 1.05rem;
    margin-bottom: 28px;
  }

  .cta-features {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 28px;
  }

  .cta-feature {
    font-size: 0.9rem;
    justify-content: center;
  }

  .cta-icon {
    width: 20px;
    height: 20px;
  }

  .cta-buttons {
    gap: 12px;
    margin-bottom: 22px;
  }

  .cta-btn {
    padding: 14px 28px;
    font-size: 0.9rem;
    border-radius: 25px;
  }

  .cta-btn svg {
    width: 18px;
    height: 18px;
  }

  .cta-trust {
    font-size: 0.8rem;
  }

  .cta-trust p {
    line-height: 1.5;
  }
}

/* Small Mobile (360px - 480px) */
@media (max-width: 480px) {
  .cta-section {
    padding: 40px 0;
  }

  .cta-section::before {
    width: 300px;
    height: 300px;
  }

  .cta-section::after {
    width: 250px;
    height: 250px;
  }

  .cta-container {
    padding: 0 12px;
  }

  .cta-content h2 {
    font-size: 1.75rem;
    margin-bottom: 12px;
  }

  .cta-content > p {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .cta-features {
    gap: 12px;
    margin-bottom: 25px;
  }

  .cta-feature {
    font-size: 0.85rem;
        justify-content: center;
    gap: 8px;
  }

  .cta-icon {
    width: 18px;
    height: 18px;
    font-size: 0.7rem;
  }

  .cta-buttons {
    gap: 10px;
    margin-bottom: 20px;
  }

  .cta-btn {
    padding: 13px 26px;
    font-size: 0.85rem;
    gap: 8px;
  }

  .cta-btn svg {
    width: 16px;
    height: 16px;
  }

  .cta-trust {
    font-size: 0.75rem;
  }
}

/* Extra Small Mobile (below 360px) */
@media (max-width: 360px) {
  .cta-section {
    padding: 35px 0;
  }

  .cta-section::before {
    width: 250px;
    height: 250px;
  }

  .cta-section::after {
    width: 200px;
    height: 200px;
  }

  .cta-container {
    padding: 0 10px;
  }

  .cta-content h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .cta-content > p {
    font-size: 0.95rem;
    margin-bottom: 22px;
  }

  .cta-features {
    gap: 10px;
    margin-bottom: 22px;
  }

  .cta-feature {
    font-size: 0.8rem;
        justify-content: center;
  }

  .cta-icon {
    width: 16px;
    height: 16px;
  }

  .cta-buttons {
    gap: 8px;
    margin-bottom: 18px;
  }

  .cta-btn {
    padding: 12px 24px;
    font-size: 0.8rem;
    border-radius: 22px;
  }

  .cta-btn svg {
    width: 14px;
    height: 14px;
  }

  .cta-trust {
    font-size: 0.7rem;
  }
}

/* Landscape Orientation */
@media (max-width: 1024px) and (orientation: landscape) {
  .cta-section {
    padding: 50px 0;
  }

  .cta-content h2 {
    font-size: 2.2rem;
  }

  .cta-features {
    flex-direction: row;
    gap: 20px;
  }

  .cta-buttons {
    flex-direction: row;
  }
}

@media (max-width: 768px) and (orientation: landscape) {
  .cta-section {
    padding: 40px 0;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .cta-features {
    gap: 18px;
  }
}

/* ========================================
   RESPONSIVE MEDIA QUERIES FOR TESTIMONIALS-SECTION
   ======================================== */

/* Large Tablets (1024px - 1200px) */
@media (max-width: 1200px) {
  .testimonials-section {
    padding: 50px 0;
  }

  .testimonials-container {
    padding: 0 25px;
  }

  .testimonials-header h2 {
    font-size: 2.8rem;
  }

  .testimonials-grid {
    gap: 25px;
  }

  .testimonial-card {
    padding: 32px 28px;
  }
}

/* Tablets (768px - 1024px) */
@media (max-width: 1024px) {
  .testimonials-section {
    padding: 50px 0;
  }

  .testimonials-container {
    padding: 0 20px;
  }

  .testimonials-header {
    margin-bottom: 50px;
  }

  .testimonials-header h2 {
    font-size: 2.6rem;
  }

  .testimonials-header h2::after {
    width: 70px;
  }

  .testimonials-header p {
    font-size: 1.05rem;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .testimonial-card {
    padding: 30px 26px;
  }

  .testimonial-text {
    font-size: 0.95rem;
    margin-bottom: 22px;
  }

  .author-info h4 {
    font-size: 1.05rem;
  }

  .author-info span {
    font-size: 0.85rem;
  }
}

/* Small Tablets (640px - 768px) */
@media (max-width: 768px) {
  .testimonials-section {
    padding: 50px 0;
  }

  .testimonials-container {
    padding: 0 18px;
  }

  .testimonials-header {
    margin-bottom: 40px;
  }

  .testimonials-header h2 {
    font-size: 2.2rem;
  }

  .testimonials-header h2::after {
    width: 65px;
    bottom: -10px;
  }

  .testimonials-header p {
    font-size: 1rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonial-card {
    padding: 28px 24px;
    border-radius: 16px;
  }

  .testimonial-rating {
    margin-bottom: 18px;
  }

  .stars {
    font-size: 1.1rem;
  }

  .testimonial-text {
    font-size: 0.92rem;
    margin-bottom: 20px;
  }

  .testimonial-text::before {
    font-size: 3.5rem;
    top: -12px;
  }

  .author-info h4 {
    font-size: 1rem;
  }

  .author-info span {
    font-size: 0.82rem;
  }
}

/* Mobile Devices (480px - 640px) */
@media (max-width: 640px) {
  .testimonials-section {
    padding: 45px 0;
  }

  .testimonials-container {
    padding: 0 15px;
  }

  .testimonials-header {
    margin-bottom: 35px;
  }

  .testimonials-header h2 {
    font-size: 1.9rem;
    margin-bottom: 12px;
  }

  .testimonials-header h2::after {
    width: 60px;
  }

  .testimonials-header p {
    font-size: 0.95rem;
  }

  .testimonials-grid {
    gap: 18px;
  }

  .testimonial-card {
    padding: 26px 22px;
  }

  .testimonial-card::before {
    height: 3px;
  }

  .testimonial-rating {
    margin-bottom: 16px;
  }

  .stars {
    font-size: 1rem;
  }

  .testimonial-text {
    font-size: 0.88rem;
    line-height: 1.2;
    margin-bottom: 18px;
  }

  .testimonial-text::before {
    font-size: 3rem;
    top: -10px;
    left: -8px;
  }

  .author-info h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
  }

  .author-info span {
    font-size: 0.78rem;
  }
}

/* Small Mobile (360px - 480px) */
@media (max-width: 480px) {
  .testimonials-section {
    padding: 40px 0;
  }

  .testimonials-container {
    padding: 0 12px;
  }

  .testimonials-header {
    margin-bottom: 30px;
  }

  .testimonials-header h2 {
    font-size: 1.7rem;
  }

  .testimonials-header p {
    font-size: 0.9rem;
  }

  .testimonials-grid {
    gap: 15px;
  }

  .testimonial-card {
    padding: 24px 20px;
  }

  .testimonial-rating {
    margin-bottom: 14px;
  }

  .stars {
    font-size: 0.95rem;
  }

  .testimonial-text {
    font-size: 0.85rem;
    margin-bottom: 16px;
  }

  .testimonial-text::before {
    font-size: 2.8rem;
  }

  .author-info h4 {
    font-size: 0.9rem;
  }

  .author-info span {
    font-size: 0.75rem;
  }
}

/* Extra Small Mobile (below 360px) */
@media (max-width: 360px) {
  .testimonials-section {
    padding: 35px 0;
  }

  .testimonials-container {
    padding: 0 10px;
  }

  .testimonials-header {
    margin-bottom: 25px;
  }

  .testimonials-header h2 {
    font-size: 1.5rem;
  }

  .testimonials-header h2::after {
    width: 55px;
    height: 2px;
  }

  .testimonials-header p {
    font-size: 0.85rem;
  }

  .testimonials-grid {
    gap: 12px;
  }

  .testimonial-card {
    padding: 20px 18px;
  }

  .testimonial-rating {
    margin-bottom: 12px;
  }

  .stars {
    font-size: 0.9rem;
  }

  .testimonial-text {
    font-size: 0.8rem;
    margin-bottom: 14px;
  }

  .testimonial-text::before {
    font-size: 2.5rem;
    top: -8px;
  }

  .author-info h4 {
    font-size: 0.85rem;
  }

  .author-info span {
    font-size: 0.7rem;
  }
}

/* Landscape Orientation */
@media (max-width: 1024px) and (orientation: landscape) {
  .testimonials-section {
    padding: 50px 0;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) and (orientation: landscape) {
  .testimonials-section {
    padding: 40px 0;
  }

  .testimonials-header h2 {
    font-size: 2rem;
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
