  /* Ensure FA4 icons in footer and other areas still work - Load after FA5 */
  .footer .social_profile a i.fa,
  .footer .social_profile a .fa,
  .footer .social_profile .fa,
  .footer .social_profile i.fa,
  .whatsapp-icon .fa,
  .whatsapp-icon i.fa,
  .whatsapp-container .fa,
  .whatsapp-container i.fa {
    font-family: 'FontAwesome' !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    line-height: 1 !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: inline-block !important;
  }
  
  /* Services section uses FA5 */
  .section-services .icon i.fas,
  .section-services .icon i.fab {
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
  }

  /* Ensure page scrolling works */
  html {
    scroll-behavior: smooth;
  }

  body {
    overflow-x: hidden;
    overflow-y: auto;
  }

  /* Navbar Visibility Fix */
  #navigation {
    z-index: 9999 !important;
    transition: all 0.3s ease;
  }

  #navigation.navbar-fixed {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  }

  /* Make navbar visible on hero section */
  body:not(.scrolled) #navigation {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }

  body:not(.scrolled) #navigation #main-menu ul li a {
    color: #232434 !important;
  }

  body:not(.scrolled) #navigation #main-menu ul li a:hover {
    color: var(--primary-color) !important;
  }

  /* Hero Slider Section */
  .hero-slider-section {
    position: relative;
    width: 100%;
    /* Offset fixed header so slider isn't hidden under navbar */
    padding-top: 100px;
    box-sizing: border-box;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    margin-top: 0;
  }

  .heroSwiper {
    width: 100%;
    height: 100%;
  }

  .hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    /* Fill entire hero area (no left/right spacing) */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
  }


    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgb(0 73 145 / 14%) 0%, rgb(0 53 105 / 63%) 100%);
        z-index: 1;
        transition: opacity 0.5s ease;
    }

  .swiper-slide-active .hero-overlay {
    opacity: 1;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
    color: #ffffff;
  }

  .hero-title {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #ffffff;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 1s ease-out;
    line-height: 1.2;
    letter-spacing: -0.5px;
  }

  .hero-subtitle {
    font-size: 24px;
    font-weight: 400;
    color: #ffffff;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
    max-width: 800px;
    margin: 0 auto 35px;
    animation: fadeInUp 1.2s ease-out;
    line-height: 1.6;
  }

  .hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.4s ease-out;
    margin-top: 30px;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }

  .btn-hero-primary {
    background: #ffffff;
    color: var(--primary-color);
    border: 2px solid #ffffff;
  }

  .btn-hero-primary:hover {
    background: transparent;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
  }

  .btn-hero-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
  }

  .btn-hero-secondary:hover {
    background: #ffffff;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
  }

  .swiper-slide-active .hero-title,
  .swiper-slide-active .hero-subtitle {
    animation: fadeInUp 1s ease-out;
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(40px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Hero Navigation Container */
  .heroSwiper {
    position: relative;
  }

  .hero-nav-wrapper {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(30px);
    padding: 10px 16px;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  /* Hero Navigation Buttons - Custom Design */
  .hero-nav-btn {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: #ffffff;
    padding: 0;
    margin: 0;
    position: relative;
    overflow: hidden;
  }

  .hero-nav-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
  }

  .hero-nav-btn:hover::before {
    width: 100%;
    height: 100%;
  }

  .hero-nav-btn svg {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
  }

  .hero-nav-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.4);
  }

  .hero-nav-btn:hover svg {
    transform: scale(1.2);
  }

  .hero-nav-btn:active {
    transform: scale(1.05);
  }

  .hero-nav-btn.hero-nav-prev:hover svg {
    transform: translateX(-3px) scale(1.2);
  }

  .hero-nav-btn.hero-nav-next:hover svg {
    transform: translateX(3px) scale(1.2);
  }

  /* Hide pagination - removed as per user request */
  .hero-pagination {
    display: none !important;
  }

  @media screen and (max-width: 991px) {
    .hero-slider-section {
      padding-top: 80px;
      height: calc(70vh - 80px);
      min-height: 500px;
    }

    .hero-title {
      font-size: 42px;
    }

    .hero-subtitle {
      font-size: 18px;
    }
  }

  @media screen and (max-width: 767px) {
    .hero-slider-section {
      padding-top: 70px;
      height: calc(60vh - 70px);
      min-height: 400px;
    }

    .hero-title {
      font-size: 36px;
      margin-bottom: 15px;
    }

    .hero-subtitle {
      font-size: 18px;
      padding: 0 20px;
      margin-bottom: 25px;
    }

    .hero-buttons {
      gap: 15px;
      margin-top: 20px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
      padding: 14px 30px;
      font-size: 16px;
    }

    .hero-nav-wrapper {
      bottom: 30px;
      padding: 8px 14px;
      gap: 12px;
    }

    .hero-nav-btn {
      width: 50px;
      height: 50px;
    }

    .hero-nav-btn svg {
      width: 20px;
      height: 20px;
    }
  }

  @media screen and (max-width: 479px) {
    .hero-slider-section {
      padding-top: 70px;
      height: calc(50vh - 70px);
      min-height: 350px;
    }

    .hero-title {
      font-size: 28px;
    }

    .hero-subtitle {
      font-size: 14px;
    }
  }


  
  /* Services Section Styles */
  .section-services {
    font-family: 'Lexend', sans-serif;
    background-color: #f8f9fa;
    color: #232434;
    padding-top: 80px;
    padding-bottom: 100px;
  }

  .section-services .header-section {
    margin-bottom: 50px;
  }

  .section-services .header-section .title {
    position: relative;
    padding-bottom: 14px;
    margin-bottom: 25px;
    font-weight: 600;
    font-size: 40px;
    color: #232434;
  }

  .section-services .header-section .title:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
  }

  .section-services .header-section .title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(30px);
    width: 10px;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 3px;
  }

  .section-services .header-section .description {
    font-size: 16px;
    color: #444;
    line-height: 26px;
    text-align: center;
  }

  .section-services .single-service {
    position: relative;
    margin-top: 30px;
    background-color: #fff;
    border-radius: 10px;
    padding: 40px 30px;
    overflow: hidden;
    min-height: 350px;
    transition: all 0.6s ease;
  }

  .section-services .single-service .bg-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 1;
    border-radius: 10px;
  }

  .section-services .single-service .bg-image-overlay::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 73, 145, 0.4);
    border-radius: 10px;
  }

  .section-services .single-service:hover .bg-image-overlay {
    opacity: 1;
  }

  .section-services .single-service .content {
    position: relative;
    z-index: 25;
    transition: all 0.3s ease;
  }

  .section-services .single-service .circle-before {
    position: absolute;
    top: 0;
    right: 0px;
    transform: translate(40%, -40%);
    width: 150px;
    height: 150px;
    background-color: var(--primary-color);
    border: 6px solid var(--secondary-color);
    border-radius: 50%;
    opacity: 0.5;
    z-index: 2;
    transition: all .6s;
    pointer-events: none;
  }

  .section-services .single-service:hover .circle-before {
    width: 100%;
    height: 100%;
    transform: none;
    border: 0;
    border-radius: 0;
    opacity: 0;
    background-color: transparent;
  }

  .section-services .single-service .icon {
    display: inline-block;
    margin-bottom: 26px;
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    border-radius: 5px;
    line-height: 70px;
    text-align: center;
    color: #fff !important;
    font-size: 30px;
    transition: all .3s;
    position: relative;
    z-index: 25;
  }

  .section-services .single-service .icon i {
    display: inline-block;
    line-height: 70px;
    vertical-align: middle;
    width: 100%;
    height: 100%;
    text-align: center;
    color: inherit !important;
  }

  .section-services .single-service .icon i::before {
    display: inline-block;
    vertical-align: middle;
    line-height: 70px;
  }

  .section-services .single-service:hover .icon {
    background-color: #fff !important;
    color: var(--primary-color) !important;
  }

  .section-services .single-service:hover .icon i {
    color: var(--primary-color) !important;
  }

  .section-services .single-service .title {
    margin-bottom: 18px;
    font-weight: 600;
    font-size: 23px;
    color: #232434;
    transition: color .3s;
    position: relative;
    z-index: 25;
  }

  .section-services .single-service:hover .title {
    color: #fff;
  }

  .section-services .single-service .description {
    margin-bottom: 20px;
    font-size: 14px;
    color: #444;
    transition: color .3s;
    line-height: 24px;
    position: relative;
    z-index: 25;
  }

  .section-services .single-service:hover .description {
    color: #fff;
  }

  .section-services .single-service a {
    position: relative;
    font-size: 18px;
    color: #232434;
    text-decoration: none;
    font-weight: 500;
    transition: color .3s;
    z-index: 25;
    display: inline-block;
  }

  .section-services .single-service:hover a {
    color: #fff;
  }

  .section-services .single-service a:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-color: var(--primary-color);
    transition: background-color .3s;
  }

  .section-services .single-service:hover a:after {
    background-color: #fff;
  }

  @media (max-width: 768px) {
    .section-services {
      padding-top: 60px;
      padding-bottom: 80px;
    }
    
    .section-services .header-section .title {
      font-size: 32px;
    }
    
    .section-services .single-service {
      min-height: 320px;
      padding: 30px 20px;
    }
  }

  /* Certification Section Styles */
  .certification-section {
    background-color: var(--primary-color);
    font-family: 'Lexend', sans-serif;
  }

  .certification-title {
    font-size: 36px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
  }

  .certification-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #ffffff;
    border-radius: 3px;
  }

  .certification-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 26px;
    margin-top: 20px;
    text-align: center;
  }

  .certification-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
  }

  .certification-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 73, 145, 0.15);
  }

  .certification-image-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
  }

  .certification-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    max-height: 150px;
  }

  .certification-card:hover .certification-image {
    transform: scale(1.05);
  }

  @media (max-width: 768px) {
    .certification-title {
      font-size: 28px;
    }

    .certification-card {
      margin-bottom: 20px;
      min-height: 180px;
    }

    .certification-image {
      max-height: 120px;
    }
  }

  /* About Hero Section Styles */
  .about-hero-section {
    background-color: #fff;
    font-family: 'Lexend', sans-serif;
    padding-top: 100px;
    padding-bottom: 100px;
  }

  /* Image Container with Layered Effect */
  .about-image-container {
    position: relative;
    width: 100%;
    height: 600px;
  }

  .about-main-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 85%;
    height: 85%;
    z-index: 2;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  }

  .about-primary-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .about-main-image:hover .about-primary-image {
    transform: scale(1.05);
  }

  .about-overlay-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 70%;
    height: 70%;
    z-index: 1;
    border-radius: 8px;
    overflow: hidden;

    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  }

  .about-secondary-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.1);
  }

  /* Content Wrapper */
  .about-content-wrapper {
    padding-left: 40px;
  }

  .about-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--tertiary-color);
    margin-bottom: 20px;
  }

  .about-main-title {
    font-size: 42px;
    font-weight: 600;
    color: #232434;
    line-height: 1.3;
    margin-bottom: 25px;
  }

  .about-description {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 35px;
    text-align: left;
  }

  .about-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #232434;
    color: #fff;
    padding: 14px 30px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #232434;
  }

  .about-cta-button:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 73, 145, 0.3);
  }

  .about-cta-button i {
    font-size: 14px;
    transition: transform 0.3s ease;
  }

  .about-cta-button:hover i {
    transform: translateX(5px);
  }

  /* Feature Boxes */
  .about-feature-box {
    text-align: center;
    padding: 40px 30px;
    background: #fff;
    border-radius: 8px;
    transition: all 0.3s ease;
    height: 100%;
  }

  .about-feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .about-feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 73, 145, 0.05);
    border-radius: 50%;
    transition: all 0.3s ease;
  }

  .about-feature-icon i {
    font-size: 36px;
    color: var(--primary-color);
    transition: all 0.3s ease;
  }

  .about-feature-box:hover .about-feature-icon {
    background: var(--primary-color);
    transform: scale(1.1);
  }

  .about-feature-box:hover .about-feature-icon i {
    color: #fff;
  }

  .about-feature-title {
    font-size: 22px;
    font-weight: 600;
    color: #232434;
    margin-bottom: 15px;
  }

  .about-feature-text {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
  }

  @media (max-width: 991px) {
    .about-content-wrapper {
      padding-left: 0;
      margin-top: 40px;
    }

    .about-main-title {
      font-size: 36px;
    }

    .about-image-container {
      height: 500px;
      margin-bottom: 30px;
    }

    .about-feature-box {
      margin-bottom: 30px;
    }
  }

  @media (max-width: 768px) {
    .about-hero-section {
      padding-top: 60px;
      padding-bottom: 60px;
    }

    .about-image-container {
      height: 400px;
    }

    .about-main-image {
      width: 90%;
      height: 80%;
    }

    .about-overlay-image {
      width: 75%;
      height: 65%;
    }

    .about-main-title {
      font-size: 28px;
      margin-bottom: 20px;
    }

    .about-description {
      font-size: 15px;
      margin-bottom: 25px;
    }

    .about-cta-button {
      padding: 12px 25px;
      font-size: 13px;
    }

    .about-feature-box {
      padding: 30px 20px;
    }

    .about-feature-icon {
      width: 70px;
      height: 70px;
      margin-bottom: 20px;
    }

    .about-feature-icon i {
      font-size: 30px;
    }

    .about-feature-title {
      font-size: 20px;
    }

    .about-feature-text {
      font-size: 14px;
    }
  }

  /* Values Section Styles */
  .values-section {
    background-color: #fff;
    font-family: 'Lexend', sans-serif;
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .values-heading-wrapper {
    margin-bottom: 30px;
  }

  .values-section-title {
    font-size: 42px;
    font-weight: 600;
    color: #232434;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 20px;
    text-align: left;
  }

  .values-section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
  }

  .values-section-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-top: 20px;
    text-align: left;
  }

  .values-image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
  }

  .values-image-wrapper:hover {
    box-shadow: 0 8px 30px rgba(0, 73, 145, 0.15);
  }

  .values-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
  }

  .values-image-wrapper:hover .values-image {
    transform: scale(1.03);
  }

  .values-content {
    padding-left: 40px;
  }

  .value-item {
    padding: 25px;
    background: #fff;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }

  .value-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--primary-color);
    transition: height 0.3s ease;
    border-radius: 0 0 4px 4px;
  }

  .value-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 73, 145, 0.12);
    border-color: rgba(0, 73, 145, 0.1);
    background: #fafafa;
  }

  .value-item:hover::before {
    height: 100%;
  }

  .value-item:hover .value-number {
    color: var(--primary-color);
    transform: scale(1.1);
  }

  .value-item:hover .value-title {
    color: var(--primary-color);
  }

  .value-number {
    display: block;
    font-size: 48px;
    font-weight: 300;
    color: #e0e0e0;
    line-height: 1;
    margin-bottom: 15px;
    font-family: 'Lexend', sans-serif;
    transition: all 0.3s ease;
  }

  .value-title {
    font-size: 22px;
    font-weight: 600;
    color: #232434;
    margin-bottom: 12px;
    line-height: 1.3;
    transition: color 0.3s ease;
  }

  .value-description {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
    text-align: left;
    transition: color 0.3s ease;
  }

  .value-item:hover .value-description {
    color: #444;
  }

  @media (max-width: 991px) {
    .values-content {
      padding-left: 0;
      margin-top: 40px;
    }

    .value-item {
      margin-bottom: 30px !important;
    }

    .values-section-title {
      font-size: 36px;
    }

    .values-heading-wrapper {
      margin-bottom: 25px;
    }
  }

  @media (max-width: 768px) {
    .values-section {
      padding-top: 60px;
      padding-bottom: 60px;
    }

    .values-section-title {
      font-size: 32px;
    }

    .value-item {
      padding: 20px;
    }

    .value-number {
      font-size: 40px;
    }

    .value-title {
      font-size: 20px;
    }

    .value-description {
      font-size: 14px;
    }
  }

  /* Home Gallery Section (Lightbox) */


  .home-gallery__title {
    font-size: 42px;
    font-weight: 600;
    color: #232434;
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 18px;
  }

  .home-gallery__title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
  }

  .home-gallery__subtitle {
    margin: 16px 0 0;
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    text-align: left;
  }

  .home-gallery__cta {
    white-space: nowrap;
  }

  .home-gallery__item {
    border: 0;
    padding: 0;
    background: transparent;
    width: 100%;
    display: block;
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4 / 3;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .home-gallery__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.01);
    transition: transform 0.45s ease;
  }

  .home-gallery__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.0) 0%, rgba(0, 0, 0, 0.45) 100%);
    opacity: 0;
    transition: opacity 0.25s ease;
  }

  .home-gallery__icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.92);
    color: var(--primary-color);
    font-size: 26px;
    transform: translateY(10px);
    transition: transform 0.25s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  }

  .home-gallery__item:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 34px rgba(0, 73, 145, 0.18);
  }

  .home-gallery__item:hover .home-gallery__img {
    transform: scale(1.08);
  }

  .home-gallery__item:hover .home-gallery__overlay {
    opacity: 1;
  }

  .home-gallery__item:hover .home-gallery__icon {
    transform: translateY(0);
  }

  /* Modal / Lightbox */
  .home-gallery-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
  }

  .home-gallery-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .home-gallery-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
  }

  .home-gallery-modal__dialog {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    transform: scale(0.98);
    transition: transform 0.2s ease;
  }

  .home-gallery-modal.is-open .home-gallery-modal__dialog {
    transform: scale(1);
  }

  .home-gallery-modal__img {
    max-width: min(1000px, 92vw);
    max-height: 78vh;
    width: auto;
    height: auto;
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    background: #111;
  }

  .home-gallery__item:focus-visible,
  .home-gallery-modal__close:focus-visible,
  .home-gallery-modal__nav:focus-visible {
    outline: 3px solid rgba(127, 203, 230, 0.9);
    outline-offset: 3px;
  }

  .home-gallery-modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, 0.92);
    color: #232434;
    font-size: 28px;
    line-height: 44px;
    cursor: pointer;
    transition: transform 0.2s ease;
  }

  .home-gallery-modal__close:hover {
    transform: scale(1.06);
  }

  .home-gallery-modal__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, 0.92);
    color: #232434;
    font-size: 26px;
    cursor: pointer;
    transition: transform 0.2s ease;
  }

  .home-gallery-modal__nav:hover {
    transform: translateY(-50%) scale(1.06);
  }

  .home-gallery-modal__prev {
    left: 18px;
  }

  .home-gallery-modal__next {
    right: 18px;
  }

  .home-gallery-modal__counter {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.92);
    color: #232434;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
  }

  @media (max-width: 768px) {
    .home-gallery__title {
      font-size: 32px;
    }
    .home-gallery-modal__img {
      max-height: 72vh;
    }
  }

  .swiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 300px;
  }

  .swiper-slide img {
    display: block;
    width: 100%;
  }

  /* Group of DSA Section */
  .group-dsa-section {
    background: #f8f9fa;
  }

  .group-dsa-content {
    padding-right: 2rem;
  }

  .group-dsa-headline {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 24px;
    line-height: 1.2;
  }

  .group-dsa-description {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 32px;
    text-align: justify;
  }

  .group-dsa-main-image {
    margin-top: 32px;
  }

  .group-dsa-main-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 73, 145, 0.15);
  }

  .group-dsa-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .group-dsa-panel {
    background: var(--primary-color);
    border-radius: 8px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .group-dsa-panel:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 73, 145, 0.3);
    background: #003d7a;
  }

  .group-dsa-panel-image {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    min-width: 100px;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
  }

  .group-dsa-panel-image img {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    filter: none;
    opacity: 1;
    visibility: visible;
  }

  .group-dsa-panel-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding-left: 20px;
  }

  .group-dsa-panel-title {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
  }

  .group-dsa-panel-text {
    display: none;
  }

  @media (max-width: 991px) {
    .group-dsa-content {
      padding-right: 0;
      margin-bottom: 40px;
    }

    .group-dsa-headline {
      font-size: 36px;
    }

    .group-dsa-main-image {
      margin-top: 24px;
    }
  }

  @media (max-width: 768px) {
    .group-dsa-headline {
      font-size: 32px;
    }

    .group-dsa-description {
      font-size: 15px;
    }

    .group-dsa-panel {
      padding: 18px 20px;
      gap: 16px;
    }

    .group-dsa-panel-image {
      width: 80px;
      height: 80px;
      min-width: 80px;
      min-height: 80px;
      padding: 12px;
    }

    .group-dsa-panel-title {
      font-size: 18px;
    }

    .group-dsa-panel-content {
      padding-left: 16px;
    }
  }

  /* Why Choose Us Section */
  .why-choose-us-section {
    background: #ffffff;
  }

  .why-choose-us-content {
    padding-right: 2rem;
  }

  .why-choose-us-headline {
    font-size: 42px;
    font-weight: 700;
    color: #232434;
    margin-bottom: 24px;
    line-height: 1.2;
  }

  .why-choose-us-description {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 32px;
    text-align: left;
  }

  .why-choose-us-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  /* Why Choose Us - compact CTA button */
  .why-choose-us-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--primary-color);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.2px;
    text-decoration: none;
    line-height: 1;
    box-shadow: 0 6px 18px rgba(0, 73, 145, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    white-space: nowrap;
  }

  .why-choose-us-btn:hover {
    background: #003d7a;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 10px 26px rgba(0, 73, 145, 0.25);
    text-decoration: none;
  }

  .why-choose-us-btn i {
    font-size: 12px;
  }

  .why-choose-us-link {
    font-size: 16px;
    font-weight: 500;
    color: var(--tertiary-color);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
  }

  .why-choose-us-link:hover {
    color: #a0050d;
    text-decoration: none;
  }

  .why-choose-us-features {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .why-choose-us-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-left: 1px solid #e0e0e0;
  }

  .why-choose-us-panel {
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-right: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.3s ease;
  }

  .why-choose-us-panel:hover {
    background-color: #f8f9fa;
  }

  .why-choose-us-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    border-radius: 8px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
  }

  .why-choose-us-icon:hover {
    background: var(--secondary-color);
  }

  .why-choose-us-icon i {
    font-size: 32px;
    color: #ffffff;
  }

  .why-choose-us-panel-content {
    flex: 1;
  }

  .why-choose-us-panel-title {
    font-size: 20px;
    font-weight: 600;
    color: #232434;
    margin-bottom: 10px;
    line-height: 1.3;
  }

  .why-choose-us-panel-text {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
    text-align: left;
  }

  .why-choose-us-panel-text .highlight-text {
    color: var(--tertiary-color);
    font-weight: 500;
  }

  .why-choose-us-divider {
    height: 1px;
    background: #e0e0e0;
    margin: 0;
    border-left: 1px solid #e0e0e0;
  }

  @media (max-width: 991px) {
    .why-choose-us-content {
      padding-right: 0;
      margin-bottom: 40px;
    }

    .why-choose-us-headline {
      font-size: 36px;
    }

    .why-choose-us-row {
      grid-template-columns: 1fr;
      border-left: none;
    }

    .why-choose-us-panel {
      border-right: none;
      border-left: none;
    }

    .why-choose-us-divider {
      border-left: none;
    }
  }

  @media (max-width: 768px) {
    .why-choose-us-headline {
      font-size: 32px;
    }

    .why-choose-us-description {
      font-size: 15px;
    }

    .why-choose-us-panel {
      padding: 20px;
    }

    .why-choose-us-icon {
      width: 50px;
      height: 50px;
      margin-bottom: 12px;
    }

    .why-choose-us-icon i {
      font-size: 28px;
    }

    .why-choose-us-panel-title {
      font-size: 18px;
    }

    .why-choose-us-panel-text {
      font-size: 13px;
    }
  }

  /* Testimonials Section */
  .testimonials-section {
    background: #f8f9fa;
    overflow: hidden;
  }

  .testimonials-divider {
    width: 60px;
    border-top: 2px solid var(--primary-color);
    margin: 20px auto;
  }

  .testimonials-subtitle {
    color: #666;
    font-size: 16px;
    margin-top: 10px;
  }

  .testimonials-scroll-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 20px 0;
  }

  .testimonials-scroll-container {
    display: flex;
    gap: 20px;
    animation: scroll-testimonials 30s linear infinite;
    width: fit-content;
  }

  .testimonials-scroll-container:hover {
    animation-play-state: paused;
  }

  @keyframes scroll-testimonials {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }

  .snip1533 {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    color: #9e9e9e;
    display: inline-block;
    font-family: 'Lexend', Arial, sans-serif;
    font-size: 16px;
    margin: 35px 10px 10px;
    width: 350px;
    min-width: 350px;
    height: 320px;
    position: relative;
    text-align: center;
    background-color: #ffffff;
    border-radius: 5px;
    border-top: 5px solid var(--primary-color);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
  }

  .snip1533 *,
  .snip1533 *:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.1s ease-out;
    transition: all 0.1s ease-out;
  }

  .snip1533 figcaption {
    padding: 50px 25px 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .snip1533 figcaption:before {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
    color: var(--primary-color);
    content: "\f10e";
    font-family: 'FontAwesome';
    font-size: 32px;
    font-style: normal;
    left: 50%;
    line-height: 60px;
    position: absolute;
    top: -30px;
    width: 60px;
  }

  .snip1533 h3 {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    margin: 10px 0 5px;
  }

  .snip1533 h4 {
    font-weight: 400;
    margin: 0;
    opacity: 0.7;
    font-size: 14px;
    color: #666;
  }

  .snip1533 blockquote {
    font-style: italic;
    font-weight: 300;
    margin: 0 0 20px;
    font-size: 15px;
    line-height: 1.6;
    flex: 1;
    display: flex;
    align-items: flex-start;
  }

  .snip1533 blockquote p {
    margin: 0;
    color: #666;
  }

  .snip1533:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 73, 145, 0.2);
    border-top-color: var(--secondary-color);
  }

  @media (max-width: 991px) {
    .snip1533 {
      width: 300px;
      min-width: 300px;
      height: 300px;
    }

    .testimonials-scroll-container {
      gap: 15px;
    }
  }

  @media (max-width: 767px) {
    .snip1533 {
      width: 280px;
      min-width: 280px;
      height: 320px;
      margin: 35px 5px 10px;
    }

    .testimonials-scroll-container {
      gap: 10px;
    }
  }

  /* CTA Section */
  .cta-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #003d7a 100%);
    overflow: hidden;
  }

  .cta-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../img/bg/dsa-bg\ \(1\).png');
    background-size: cover;
    background-position: center center;
    opacity: 0.15;
    z-index: 1;
  }

  .cta-section .container {
    position: relative;
    z-index: 2;
  }

  .cta-content {
    color: #ffffff;
  }

  .cta-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
  }

  .cta-description {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
  }

  .cta-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 25px;
  }

  .cta-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
  }

  .cta-feature-item i {
    color: var(--secondary-color);
    font-size: 20px;
  }

  .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .cta-btn-primary {
    background: #ffffff;
    color: var(--primary-color);
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    min-width: 200px;
    justify-content: center;
  }

  .cta-btn-primary:hover {
    background: var(--secondary-color);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    text-decoration: none;
  }

  .cta-btn-primary i {
    font-size: 20px;
    transition: transform 0.3s ease;
  }

  .cta-btn-primary:hover i {
    transform: translateX(5px);
  }

  .cta-btn-secondary {
    background: transparent;
    color: #ffffff;
    padding: 14px 40px;
    border: 2px solid #ffffff;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    min-width: 200px;
    text-align: center;
  }

  .cta-btn-secondary:hover {
    background: #ffffff;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
    text-decoration: none;
  }

  @media (max-width: 991px) {
    .cta-section {
      padding: 60px 0;
    }

    .cta-title {
      font-size: 36px;
    }

    .cta-description {
      font-size: 16px;
    }

    .cta-buttons {
      margin-top: 30px;
    }
  }

  @media (max-width: 767px) {
    .cta-section {
      padding: 50px 0;
    }

    .cta-title {
      font-size: 32px;
    }

    .cta-description {
      font-size: 15px;
    }

    .cta-features {
      flex-direction: column;
      gap: 15px;
    }

    .cta-btn-primary,
    .cta-btn-secondary {
      width: 100%;
      max-width: 300px;
    }
  }

  /* FSSAI Clearance Section */
  .fssai-section {
    background: #f8f9fa;
    position: relative;
  }

  .fssai-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .fssai-image-wrapper img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
  }

  .fssai-image-wrapper:hover img {
    transform: scale(1.05);
  }

  .fssai-content {
    padding-left: 30px;
  }

  .fssai-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
  }

  .fssai-title {
    font-size: 42px;
    font-weight: 700;
    color: #232434;
    margin-bottom: 20px;
    line-height: 1.2;
  }

  .fssai-description {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
  }

  .fssai-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
  }

  .fssai-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #444;
  }

  .fssai-feature-item i {
    color: var(--primary-color);
    font-size: 20px;
    flex-shrink: 0;
  }

  .fssai-feature-item span {
    line-height: 1.5;
  }

  .fssai-cta {
    margin-top: 30px;
  }

  .fssai-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 73, 145, 0.2);
  }

  .fssai-btn:hover {
    background: var(--secondary-color);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 73, 145, 0.3);
    text-decoration: none;
  }

  .fssai-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
  }

  .fssai-btn:hover i {
    transform: translateX(5px);
  }

  @media (max-width: 991px) {
    .fssai-content {
      padding-left: 0;
      margin-top: 30px;
    }

    .fssai-title {
      font-size: 36px;
    }
  }

  @media (max-width: 767px) {
    .fssai-title {
      font-size: 32px;
    }

    .fssai-description {
      font-size: 15px;
    }

    .fssai-feature-item {
      font-size: 15px;
    }

    .fssai-btn {
      width: 100%;
      justify-content: center;
    }
  }

  /* Page Loader */
  .page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
  }

  .page-loader.hidden {
    opacity: 0;
    visibility: hidden;
  }

  .loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
  }

  .loader-logo {
    width: 200px;
    height: auto;
    animation: logoPulse 2s ease-in-out infinite;
  }

  .loader-logo img {
    width: 100%;
    height: auto;
    display: block;
  }

  @keyframes logoPulse {
    0%, 100% {
      transform: scale(1);
      opacity: 1;
    }
    50% {
      transform: scale(1.1);
      opacity: 0.8;
    }
  }

  .loader-spinner {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
  }

  .spinner-ring {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary-color);
    animation: spinnerBounce 1.4s ease-in-out infinite;
  }

  .spinner-ring:nth-child(1) {
    animation-delay: 0s;
  }

  .spinner-ring:nth-child(2) {
    animation-delay: 0.2s;
  }

  .spinner-ring:nth-child(3) {
    animation-delay: 0.4s;
  }

  @keyframes spinnerBounce {
    0%, 80%, 100% {
      transform: scale(0);
      opacity: 0.5;
    }
    40% {
      transform: scale(1);
      opacity: 1;
    }
  }

  @media (max-width: 768px) {
    .loader-logo {
      width: 150px;
    }

    .spinner-ring {
      width: 10px;
      height: 10px;
    }
  }

  /* LinkedIn Video Section */
  .linkedin-video-section {
    background: #f8f9fa;
  }

  .linkedin-section-title {
    font-size: 42px;
    font-weight: 700;
    color: #232434;
    margin-bottom: 15px;
    text-align: center;
  }

  .linkedin-divider {
    width: 60px;
    border-top: 2px solid var(--primary-color);
    margin: 20px auto 15px;
  }

  .linkedin-subtitle {
    color: #666;
    font-size: 16px;
    margin-top: 10px;
    text-align: center;
  }

  .linkedin-video-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    background: #ffffff;
    margin: 0 auto;
  }

  .linkedin-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
  }

  /* Hide scrollbars */
  .linkedin-video-wrapper::-webkit-scrollbar,
  .linkedin-iframe::-webkit-scrollbar {
    display: none;
  }

  .linkedin-video-wrapper,
  .linkedin-iframe {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  @media (max-width: 991px) {
    .linkedin-section-title {
      font-size: 36px;
    }

    .linkedin-video-wrapper {
      height: 450px;
    }
  }

  @media (max-width: 767px) {
    .linkedin-section-title {
      font-size: 32px;
    }

    .linkedin-subtitle {
      font-size: 15px;
    }

    .linkedin-video-wrapper {
      height: 400px;
    }
  }

  @media (max-width: 575px) {
    .linkedin-video-wrapper {
      height: 350px;
    }
  }
