 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     font-family: var(--font-family);
 }

 :root {
     --font-heading-1-size: 40px;
     --font-heading-2-size: 34px;
     --font-heading-3-size: 22px;
     --font-heading-4-size: 20px;
     --font-heading-5-size: 18px;
     --font-heading-6-size: 16px;
     --font-paragraph-size: 16px;
     --text-primary: #046a38;
     --text-secondary: #FFDE00;
     --text-white: #fff;
     --text-dark: #000;
     --text-light: #eeeeee;
 }

 body {
     --font-family: Lexend Mega, sans-serif;
     --heading-font-family: Poppins, sans-serif;
     /* cursor: url('airplane.svg') 12 12, auto; */
 }

 h1 {
     font-size: var(--font-heading-1-size);
 }

 h2 {
     font-size: var(--font-heading-2-size);
 }

 h3 {
     font-size: var(--font-heading-3-size);
 }

 h4 {
     font-size: var(--font-heading-4-size);
 }

 h5 {
     font-size: var(--font-heading-5-size);
 }

 h6 {
     font-size: var(--font-heading-6-size);
 }

 h1,
 h2,
 h3,
 h4,
 h5,
 h6 {
     font-family: var(--heading-font-family);
 }

 p {
     font-size: var(--font-paragraph-size);
 }

 /* Announcement bar */

 .announcement-bar {
     background-color: var(--text-primary);
     color: var(--text-white);
     padding: 12px 20px;
     font-size: 14px;
 }

 .announcement-bar a {
     color: var(--text-white);
     text-decoration: none;
     margin: 0 5px;
 }

 .announcement-bar a:hover {
     color: var(--text-secondary);
 }

 .social-icons {
     display: flex;
     align-items: center;
     gap: 8px;
 }

 .social-icons a {
     font-size: 16px;
 }

 .social-icons .separator {
     color: var(--text-white);
     user-select: none;
 }

 .announcement-content {
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 @media (max-width: 576px) {
     .announcement-bar {
         padding: 8px 12px;
     }

     .announcement-content {
         flex-direction: column;
         gap: 5px;
     }

     .social-icons {
         flex-wrap: nowrap;
     }

     .social-icons .separator {
         display: none;
     }

     .menu-links {
         display: flex;
         flex-wrap: wrap;
         gap: 8px;
     }
 }

 /* Header */
 .custom-header {
     min-height: 82px;
     display: flex;
     align-items: center;
     position: relative;
 }

 .logo-img {
     height: auto;
     width: 230px;
     display: block;
 }

 .custom-navbar {
     gap: 8px;
 }

 .dropdown-arrow {
     font-size: 13px;
     transition: transform 0.3s ease;
 }

.dropdown-arrow-btn.show .dropdown-arrow {
    transform: rotate(180deg);
}


 .custom-dropdown-menu .dropdown-item {
     color: var(--text-primary);
     font-size: 15px;
     font-weight: 600;
     padding: 10px 18px;
 }

 .custom-dropdown-menu .dropdown-item:hover,
 .custom-dropdown-menu .dropdown-item:focus {
     background: var(--text-primary);
     color: var(--text-secondary);
 }

 .custom-toggler {
     color: var(--text-primary);
     font-size: 25px;
     z-index: 1102;
 }

 .close-icon {
     display: none;
 }

 .drawer-toggle:checked+.custom-toggler .menu-icon {
     display: none;
 }

 .drawer-toggle:checked+.custom-toggler .close-icon {
     display: inline-block;
 }

 .mobile-login-btn {
     color: var(--text-primary);
     font-size: 16px;
     font-weight: 700;
     text-decoration: none;
     z-index: 1102;
 }

 .mobile-login-btn:hover {
     color: var(--text-secondary);
 }

.dropdown-arrow-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;    
    height: 20px;
    padding: 0;
    margin-left: -8px;  
    cursor: pointer;
    position: relative;
    top: 2px; 
}

 .custom-nav-dropdown {
    display: flex;
    align-items: center;
    gap: 2px;
}

 /* Mobile Drawer */
 .mobile-drawer {
     position: fixed;
     top: 0;
     left: -100%;
     width: 100%;
     max-width: 100%;
     height: 100vh;
     background: var(--text-white);
     padding: 92px 24px 30px;
     z-index: 1101;
     transition: left 0.32s ease;
     overflow-y: auto;
 }

 .drawer-toggle:checked~.mobile-drawer {
     left: 0;
 }

 .drawer-backdrop {
     display: none;
 }

 .drawer-toggle:checked~.drawer-backdrop {
     display: block;
     position: fixed;
     inset: 0;
     z-index: 1100;
 }

 .drawer-list,
 .drawer-submenu {
     list-style: none;
     margin: 0;
     padding: 0;
 }

 .drawer-list a,
 .drawer-summary {
     color: var(--text-primary);
     text-decoration: none;
     font-size: 19px;
     font-weight: 700;
     padding: 14px 0;
     border-bottom: 1px solid var(--text-light);
     display: flex;
     align-items: center;
     justify-content: space-between;
 }

 .drawer-summary {
     cursor: pointer;
     list-style: none;
 }

 .drawer-summary::-webkit-details-marker {
     display: none;
 }

 .drawer-arrow {
     font-size: 14px;
     transition: transform 0.3s ease;
 }

 .drawer-details[open] .drawer-arrow {
     transform: rotate(180deg);
 }

 .drawer-submenu {
     padding: 8px 0 8px 16px;
 }

 .drawer-submenu a {
     color: var(--text-primary);
     font-size: 16px;
     font-weight: 500;
     padding: 9px 0;
     border-bottom: none;
     text-decoration: none;
     display: block;
 }

 .drawer-submenu {
     padding: 8px 0 16px 16px;
     border-bottom: 1px solid var(--text-light);
 }

 .drawer-details {
     margin-bottom: 0;
 }

 .drawer-list {
     margin-top: 0;
 }

 .drawer-list li:first-child a {
     padding-top: 14px;
 }

 .drawer-submenu a:hover,
 .drawer-list a:hover,
 .drawer-summary:hover {
     color: var(--text-secondary);
 }

 @media (max-width: 380px) {
     .logo-img {
         width: 150px;
         height: auto;
     }

     .mobile-login-btn {
         font-size: 15px;
     }

     .custom-toggler {
         font-size: 23px;
     }
 }

 @media (max-width: 991px) {
     .custom-header {
         --mobile-header-offset: 140px;
     }

     .mobile-drawer {
         top: var(--mobile-header-offset);
         height: calc(100vh - var(--mobile-header-offset));
         padding: 10px 34px 30px;
         width: 100%;
         max-width: 100%;
     }

     .drawer-toggle:checked~.drawer-backdrop {
         top: var(--mobile-header-offset);
     }
 }

 /* slider */
 .hero-slider {
     position: relative;
     overflow: hidden;
     overflow-x: hidden;

 }

 .hero-slider .carousel-item {
     height: 650px;
     position: relative;
 }

 .hero-slider .carousel-item img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .hero-slider .carousel-item::before {
     content: "";
     position: absolute;
     inset: 0;
     background: linear-gradient(90deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.15));
     z-index: 1;
 }

 .hero-content {
     position: absolute;
     top: 50%;
     left: 8%;
     transform: translateY(-50%);
     z-index: 2;
     max-width: 560px;
     color: var(--text-white);
     animation: contentUp 1s ease forwards;
 }

 .hero-content .subheading {
     display: inline-block;
     font-size: var(--font-heading-5-size);
     letter-spacing: 2px;
     margin-bottom: 15px;
     color: var(--text-secondary);
 }

 .hero-content h1 {
     font-size: var(--font-heading-1-size);
     font-weight: 700;
     line-height: 1.1;
     margin-bottom: 28px;
 }

 .hero-content h2 {
     font-size: var(--font-heading-1-size);
     font-weight: 700;
     line-height: 1.1;
     margin-bottom: 28px;
 }

 .hero-btn {
     position: relative;
     display: inline-block;
     padding: 14px 34px;
     border: 2px solid var(--text-white);
     color: var(--text-white);
     text-decoration: none;
     font-weight: 600;
     border-radius: 50px;
     overflow: hidden;
     z-index: 1;
     transition: color 0.4s ease;
 }

 .hero-btn::before {
     content: "";
     position: absolute;
     left: 0;
     bottom: -100%;
     width: 100%;
     height: 100%;
     background: var(--text-secondary);
     transition: all 0.4s ease;
     z-index: -1;
 }

 .hero-btn:hover::before {
     bottom: 0;
 }

 .hero-btn:hover {
     color: #111;
     border-color: var(--text-secondary);
 }

 .hero-slider .custom-arrow {
     width: 72px;
     height: 120px;
     top: 50%;
     transform: translateY(-50%);
     opacity: 0;
     visibility: hidden;
     z-index: 10;
     transition: all 0.35s ease;
 }

 .hero-slider:hover .custom-arrow {
     opacity: 1;
     visibility: visible;
 }

 .hero-slider .carousel-control-prev {
     left: 0px;
 }

 .hero-slider .carousel-control-prev span {
     /* border-radius: 0 60px 60px 0; */
     border-radius: 50%;
     /* આખો ગોળ એરો બની જશે */
     width: 50px;
     height: 50px;
 }


 .hero-slider .carousel-control-next {
     right: 0px;
 }

 .hero-slider .carousel-control-next span {
     /* border-radius: 60px 0 0 60px; */
     border-radius: 50%;
     /* આખો ગોળ એરો બની જશે */
     width: 50px;
     height: 50px;
 }


 /* .custom-arrow span {
     width: 42px;
     height: 120px;
     background: var(--text-white);
     color: var(--text-primary);
     font-size: 32px;
     display: flex;
     align-items: center;
     justify-content: center;
     clip-path: none;
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
     transition: all 0.35s ease;
 }

 .custom-arrow:hover span {
     background: var(--text-secondary);
     color: var(--text-primary);
 } */

 .custom-arrow span {
     width: 50px;
     height: 50px;
     background: #fff;
     color: var(--text-primary);
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 50%;
     position: relative;
     overflow: hidden;
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
     transition: all 0.35s ease;
 }

 .custom-arrow span::before {
     content: "";
     position: absolute;
     left: 0;
     bottom: -100%;
     width: 100%;
     height: 100%;
     background: var(--text-secondary);
     transition: all 0.35s ease;
     z-index: 1;
 }

 .custom-arrow:hover span::before {
     bottom: 0;
 }

 .custom-arrow span svg {
     position: relative;
     z-index: 2;
     transition: all 0.35s ease;
 }

 .custom-arrow:hover span svg {
     color: var(--text-primary);
 }

 .hero-slider img {
     transition: transform 0.8s ease;
 }

 @keyframes contentUp {
     from {
         opacity: 0;
         transform: translateY(-40%);
     }

     to {
         opacity: 1;
         transform: translateY(-50%);
     }
 }

 @media (max-width: 991px) {
     .hero-slider .carousel-item {
         height: 520px;
     }

     .hero-content {
         left: 6%;
         max-width: 480px;
     }

     .hero-content h1 {
         font-size: 42px;
     }
 }

 /* Mobile */
 @media (max-width: 575px) {
     .hero-slider .carousel-item {
         height: 430px;
     }

     .hero-content {
         left: 24px;
         right: 24px;
         max-width: 100%;
     }

     .hero-content .subheading {
         font-size: 13px;
     }

     .hero-content h1 {
         font-size: 30px;
         margin-bottom: 22px;
     }

     .hero-btn {
         padding: 11px 26px;
         font-size: 14px;
     }

     .custom-arrow {
         width: 46px;
         height: 46px;
     }

     .custom-arrow span {
         width: 46px;
         height: 46px;
         font-size: 30px;
     }

     .carousel-control-prev {
         left: 10px;
     }

     .carousel-control-next {
         right: 10px;
     }
 }

 /* feature */
 .hero-slider {
     position: relative;
     overflow: visible;
 }

 .hero-slider .carousel-item {
     height: 650px;
     position: relative;
 }

 .hero-slider .carousel-item img {
     height: 100%;
     width: 100%;
     object-fit: cover;
 }

 .hero-feature-wrap {
     position: relative;
     margin-top: -130px;
     z-index: 20;
     padding-bottom: 20px;
 }

 .feature-card {
     position: relative;
     background: var(--text-white);
     min-height: 270px;
     padding: 44px 26px 35px;
     text-align: center;
     overflow: hidden;
     box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
     transition: all 0.45s ease;
     border-radius: 20px;
 }

 .feature-card::before {
     content: "";
     position: absolute;
     inset: auto 20px 0 20px;
     height: 4px;
     background: linear-gradient(90deg, #0b5f45, #7ac943);
     transform: scaleX(0);
     transform-origin: center;
     transition: all 0.45s ease;
 }

 .feature-card::after {
     content: "";
     position: absolute;
     width: 170px;
     height: 170px;
     border-radius: 50%;
     background: rgba(122, 201, 67, 0.12);
     top: -80px;
     right: -80px;
     transition: all 0.5s ease;
 }

 .feature-icon {
     width: 85px;
     height: 85px;
     margin: 0 auto 25px;
     display: flex;
     align-items: center;
     justify-content: center;
     border: 1px solid rgba(122, 201, 67, 0.25);
     border-radius: 20px;
     color: var(--text-primary);
     font-size: 34px;
     transition: all .3s ease;
 }

 .feature-card h4 {
     font-size: 20px;
     font-weight: 800;
     color: #101828;
     text-transform: uppercase;
     margin-bottom: 14px;
 }

 .feature-card p {
     font-size: 15px;
     line-height: 1.6;
     color: #7a7a7a;
     margin: 0;
 }

 .feature-card:hover {
     box-shadow: 0 28px 65px rgba(11, 95, 69, 0.18);
 }

 .feature-card:hover::before {
     transform: scaleX(1);
 }

 .feature-card:hover::after {
     width: 260px;
     height: 260px;
     top: -110px;
     right: -110px;
 }

 .feature-card:hover .feature-icon {
     background: var(--text-primary);
     color: var(--text-white);
     border-color: var(--text-primary);
 }

 @media (max-width: 991px) {
     .hero-slider {
         padding-bottom: 80px;
     }

     .hero-slider .carousel-item {
         height: 560px;
     }

     .hero-feature-wrap {
         margin-top: -90px;
     }

     .feature-card {
         min-height: 250px;
     }
 }

 @media (max-width: 575px) {
     .hero-slider {
         padding-bottom: 40px;
     }

     .hero-slider .carousel-item {
         height: 520px;
     }

     .hero-feature-wrap {
         margin-top: -60px;
     }

     .feature-card {
         min-height: auto;
         padding: 34px 22px 30px;
     }

     .feature-icon {
         width: 78px;
         height: 78px;
         font-size: 32px;
         margin-bottom: 20px;
     }

     .feature-card h4 {
         font-size: 17px;
     }

     .feature-card p {
         font-size: 14px;
     }
 }

 /* counter section */
 .counter-section {
     padding: 50px 0;
     background: var(--text-white);
     background: linear-gradient(180deg, #f4faf7 0%, #ffffff 100%);
 }

 .counter-item {
     display: flex;
     align-items: center;
     gap: 18px;
     border-right: 1px solid rgba(0, 0, 0, 0.08);
     padding: 15px 25px;
     height: 100%;
 }

 .counter-icon {
     width: 60px;
     height: 60px;
     background: var(--text-primary);
     border-radius: 14px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--text-white);
     font-size: 24px;
     flex-shrink: 0;
 }

 .counter-content h3 {
     margin: 0;
     font-size: 38px;
     font-weight: 800;
     color: #111;
     line-height: 1;
 }

 .counter-content p {
     margin: 8px 0 0;
     color: #666;
     font-size: 15px;
     font-weight: 500;
 }

 /* Tablet */
 @media(max-width:991px) {
     .counter-section {
         padding: 20px 0;
     }

     .counter-item {
         border-right: none;
         padding: 18px 15px;
     }

     .counter-content h3 {
         font-size: 30px;
     }
 }

 /* Mobile - 1 item per line */
 @media (max-width: 575px) {

     .counter-section .row>[class*="col-"] {
         width: 100%;
         flex: 0 0 100%;
         max-width: 100%;
     }

     .counter-item {
         border: none !important;
         padding: 20px 15px;
         margin-bottom: 20px;

         display: flex;
         flex-direction: column;
         justify-content: center;
         align-items: center;
         text-align: center;
         gap: 12px;
     }

     .counter-icon {
         width: 55px;
         height: 55px;
         font-size: 22px;
         margin: 0 auto;
     }

     .counter-content h3 {
         font-size: 28px;
         margin-bottom: 5px;
     }

     .counter-content p {
         font-size: 14px;
         margin: 0;
     }
 }

 /* scroll feature section */
 .immigration-feature-section {
     padding: 70px 0;
     background: #ffffff;
 }

 .immigration-feature-wrapper {
     position: relative;
     border: 1px solid #e4e4e4;
     border-radius: 20px;
     padding: 0px 42px 0px 28px;
     background: #ffffff;
 }

 .immigration-feature-scroll-area {
     height: 560px;
     overflow-y: auto;
     scroll-snap-type: y mandatory;
     scroll-behavior: smooth;
     padding-right: 18px;
 }

 .immigration-feature-scroll-area::-webkit-scrollbar {
     width: 0;
     scroll-snap-type: y mandatory;
     scroll-behavior: smooth;
 }

 .immigration-feature-item {
     min-height: 560px;
     display: flex;
     align-items: center;
     scroll-snap-align: start;
     opacity: 0.28;
     transition: opacity 0.35s ease;
 }

 .immigration-feature-item.active {
     opacity: 1;
 }

 .immigration-feature-image {
     height: 390px;
     border-radius: 18px;
     overflow: hidden;
     background: #f3f3f3;
 }

 .immigration-feature-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .immigration-feature-content {
     padding-left: 20px;
 }


 .immigration-feature-number {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     width: 58px;
     height: 58px;
     border: 2px solid #007c50;
     border-radius: 50%;
     font-size: 18px;
     font-weight: 700;
     color: #007c50;
     margin-bottom: 20px;
     position: relative;
 }

 .immigration-feature-number::after {
     content: "";
     position: absolute;
     width: 70px;
     height: 70px;
     border: 1px dashed rgba(0, 124, 80, .3);
     border-radius: 50%;
 }

 .immigration-feature-content h2 {
     font-size: var(--font-heading-2-size);
     font-weight: 700;
     color: #111111;
     margin-bottom: 16px;
 }

 .immigration-feature-content p {
     max-width: 520px;
     font-size: 17px;
     line-height: 1.7;
     color: #555555;
     margin-bottom: 26px;
 }

 .immigration-feature-dots {
     position: absolute;
     right: 18px;
     top: 50%;
     transform: translateY(-50%);
     display: flex;
     flex-direction: column;
     gap: 12px;
     z-index: 5;
 }

 .immigration-feature-dot {
     width: 10px;
     height: 10px;
     border: 1px solid #007c50;
     background: transparent;
     border-radius: 50%;
     padding: 0;
     cursor: pointer;
     transition: 0.3s ease;
 }

 .immigration-feature-dot.active {
     height: 28px;
     border-radius: 20px;
     background: #007c50;
 }

 /* Tablet */
 @media (max-width: 991px) {
     .immigration-feature-section {
         padding: 45px 0;
     }

     .immigration-feature-wrapper {
         padding: 22px 36px 22px 22px;
     }

     .immigration-feature-scroll-area {
         height: 620px;
     }

     .immigration-feature-item {
         min-height: 620px;
     }

     .immigration-feature-image {
         height: 300px;
     }

     .immigration-feature-content {
         padding-left: 0;
         text-align: center;
     }

     .immigration-feature-content h2 {
         font-size: 34px;
     }
 }

 /* Mobile */
 @media (max-width: 575px) {
     .immigration-feature-section {
         padding: 35px 0;
     }

     .immigration-feature-wrapper {
         padding: 16px 28px 16px 16px;
         border-radius: 18px;
     }

     .immigration-feature-scroll-area {
         height: 610px;
         padding-right: 8px;
     }

     .immigration-feature-item {
         min-height: 610px;
     }

     .immigration-feature-image {
         height: 220px;
         border-radius: 14px;
     }

     .immigration-feature-content h2 {
         font-size: 27px;
     }

     .immigration-feature-content p {
         font-size: 15px;
         line-height: 1.6;
     }

     .immigration-feature-dots {
         right: 9px;
     }
 }

 /* Service Feature Section */
 .service-feature-section {
     padding: 70px 0;
     background: #fff;
     overflow: hidden;
 }

 .service-feature-header {
     max-width: 780px;
     margin: 0 auto 50px;
 }

 .service-feature-header h2 {
     font-size: var(--font-heading-2-size);
     font-weight: 800;
     color: #111;
     margin-bottom: 14px;
     line-height: 1.2;
 }

 .service-feature-header p {
     font-size: 16px;
     line-height: 1.7;
     color: #666;
     margin: 0;
 }

 /* Card item default hidden after 9 */
 .service-feature-item {
     display: none;
 }

 .service-feature-item.service-visible {
     display: block;
     animation: serviceFadeUp 0.45s ease forwards;
 }

 @keyframes serviceFadeUp {
     from {
         opacity: 0;
         transform: translateY(18px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 /* Card */
 .service-feature-card {
     height: 100%;
     min-height: 285px;
     padding: 34px 30px;
     border: 1px solid rgba(0, 124, 80, 0.16);
     border-radius: 18px;
     background: #fff;
     transition: all 0.35s ease;
     position: relative;
     overflow: hidden;

     display: flex;
     flex-direction: column;
 }

 .service-feature-card::before {
     content: "";
     position: absolute;
     top: 0;
     left: 30px;
     width: 54px;
     height: 4px;
     background: #007c50;
     border-radius: 0 0 10px 10px;
 }

 .service-feature-card:hover {
     border-color: #007c50;
     transform: translateY(-6px);
 }

 .service-feature-card h3 {
     font-size: 22px;
     font-weight: 700;
     color: #111;
     margin: 10px 0 16px;
     line-height: 1.35;

     display: -webkit-box;
     -webkit-line-clamp: 2;
     -webkit-box-orient: vertical;
     overflow: hidden;
     min-height: 60px;
 }

 .service-feature-card p {
     font-size: 15px;
     line-height: 1.7;
     color: #666;
     margin-bottom: 26px;

     display: -webkit-box;
     -webkit-line-clamp: 3;
     -webkit-box-orient: vertical;
     overflow: hidden;

     min-height: 76px;
 }

 /* Button always bottom aligned */
 .service-feature-btn {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     width: max-content;
     min-width: 138px;
     height: 44px;
     padding: 0 22px;
     border: 1px solid #007c50;
     border-radius: 30px;
     color: #007c50;
     font-size: 14px;
     font-weight: 600;
     text-decoration: none;
     background: transparent;
     position: relative;
     overflow: hidden;
     z-index: 1;
     transition: color 0.35s ease, border-color 0.35s ease;
     margin-top: auto;
 }

 .service-feature-btn::before {
     content: "";
     position: absolute;
     left: 0;
     bottom: 0;
     width: 100%;
     height: 0;
     background: var(--text-secondary, #f4b400);
     z-index: -1;
     transition: height 0.35s ease;
 }

 .service-feature-btn:hover {
     color: #000;
     border-color: var(--text-secondary, #f4b400);
 }

 .service-feature-btn:hover::before {
     height: 100%;
 }

 /* Loader */
 .service-feature-loader {
     margin-top: 38px;
     display: none;
 }

 .service-feature-loader span {
     display: inline-block;
     width: 9px;
     height: 9px;
     margin: 0 4px;
     background: #007c50;
     border-radius: 50%;
     animation: serviceLoader 1s infinite ease-in-out;
 }

 .service-feature-loader span:nth-child(2) {
     animation-delay: 0.15s;
 }

 .service-feature-loader span:nth-child(3) {
     animation-delay: 0.3s;
 }

 @keyframes serviceLoader {

     0%,
     80%,
     100% {
         opacity: 0.3;
         transform: scale(0.8);
     }

     40% {
         opacity: 1;
         transform: scale(1);
     }
 }

 /* Responsive */
 @media (max-width: 991px) {
     .service-feature-section {
         padding: 50px 0;
     }

     .service-feature-header h2 {
         font-size: 34px;
     }

     .service-feature-card {
         min-height: 270px;
         padding: 30px 26px;
         text-align: center;
         align-items: center;
     }

     .service-feature-card::before {
         left: 50%;
         transform: translateX(-50%);
     }

     .service-feature-card h3 {
         min-height: 56px;
     }

     .service-feature-card p {
         min-height: 76px;
     }
 }

 @media (max-width: 767px) {
     .service-feature-section {
         padding: 33px 0;
     }

     .service-feature-header {
         margin-bottom: 35px;
     }

     .service-feature-header h2 {
         font-size: 28px;
     }

     .service-feature-header p {
         font-size: 15px;
     }

     .service-feature-card {
         min-height: auto;
         border-radius: 15px;
         padding: 28px 22px;
         text-align: center;
     }

     .service-feature-card h3 {
         font-size: 20px;
         min-height: auto;
         -webkit-line-clamp: 2;
     }

     .service-feature-card p {
         min-height: auto;
         -webkit-line-clamp: 3;
     }

     .service-feature-btn {
         margin-left: auto;
         margin-right: auto;
     }
 }

 /* flow */
 .immistack-workflow-section {
     padding: 80px 0;
     background: linear-gradient(180deg, #ffffff 0%, #f4fbf7 100%);
     overflow: hidden;
 }

 .workflow-main-header {
     max-width: 850px;
     margin: 0 auto 65px;
 }

 .workflow-sub-badge {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     padding: 7px 18px;
     border-radius: 50px;
     background: rgba(4, 106, 56, 0.08);
     color: #046a38;
     font-size: 14px;
     font-weight: 700;
     margin-bottom: 16px;
 }

 .workflow-main-header h2 {
     margin: 0 0 14px;
     color: #111;
     font-size: 46px;
     line-height: 1.15;
     font-weight: 800;
 }

 .workflow-main-header p {
     margin: 0;
     color: #555;
     font-size: 19px;
     line-height: 1.7;
 }

 .workflow-group {
     position: relative;
     padding: 32px;
     margin-bottom: 38px;
     background: #fff;
     border: 1px solid rgba(4, 106, 56, 0.12);
     border-radius: 26px;
     box-shadow: 0 22px 60px rgba(0, 0, 0, 0.06);
 }

 .workflow-group:last-child {
     margin-bottom: 0;
 }

 .workflow-info {
     position: sticky;
     top: 100px;
     padding: 28px 24px;
     min-height: 100%;
     border-radius: 22px;
     background: linear-gradient(135deg, #046a38 0%, #034f2a 100%);
     color: #fff;
     overflow: hidden;
 }

 .workflow-info::after {
     content: "";
     position: absolute;
     width: 150px;
     height: 150px;
     right: -60px;
     bottom: -60px;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.12);
 }

 .workflow-number {
     display: inline-flex;
     width: 52px;
     height: 52px;
     align-items: center;
     justify-content: center;
     border-radius: 16px;
     background: rgba(255, 255, 255, 0.16);
     color: #fff;
     font-size: 18px;
     font-weight: 800;
     margin-bottom: 22px;
 }

 .workflow-info h3 {
     position: relative;
     margin: 0 0 12px;
     color: #fff;
     font-size: 27px;
     line-height: 1.25;
     font-weight: 800;
     z-index: 1;
 }

 .workflow-info p {
     position: relative;
     margin: 0;
     color: rgba(255, 255, 255, 0.82);
     font-size: 15px;
     line-height: 1.7;
     z-index: 1;
 }

 .workflow-flow-box {
     position: relative;
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 36px 24px;
     padding: 12px 0;
 }

 .workflow-step {
     position: relative;
     min-height: 138px;
     padding: 22px 16px 20px;
     border-radius: 18px;
     background: #fff;
     border: 1px solid rgba(4, 106, 56, 0.15);
     display: flex;
     flex-direction: column;
     justify-content: center;
     transition: all 0.35s ease;
     box-shadow: 0 12px 28px rgba(0, 0, 0, 0.045);
 }

 .workflow-step span {
     position: absolute;
     top: 14px;
     left: 16px;
     font-size: 12px;
     font-weight: 800;
     color: #046a38;
     background: rgba(4, 106, 56, 0.08);
     padding: 5px 9px;
     border-radius: 50px;
 }

 .workflow-step h4 {
     margin: 22px 0 0;
     color: #111;
     font-size: 16px;
     line-height: 1.35;
     font-weight: 700;
     text-align: center;
 }

 .workflow-step:hover {
     border-color: #046a38;
     box-shadow: 0 18px 38px rgba(4, 106, 56, 0.13);
 }

 .workflow-step:hover span {
     background: #046a38;
     color: #fff;
 }

 /* Desktop Snake Flow */
 @media (min-width: 1200px) {

     .workflow-flow-box {
         grid-template-columns: repeat(4, 1fr);
         gap: 53px 31px;
     }

     .workflow-step:nth-child(1) {
         grid-column: 1;
         grid-row: 1;
     }

     .workflow-step:nth-child(2) {
         grid-column: 2;
         grid-row: 1;
     }

     .workflow-step:nth-child(3) {
         grid-column: 3;
         grid-row: 1;
     }

     .workflow-step:nth-child(4) {
         grid-column: 4;
         grid-row: 1;
     }

     .workflow-step:nth-child(5) {
         grid-column: 4;
         grid-row: 2;
     }

     .workflow-step:nth-child(6) {
         grid-column: 3;
         grid-row: 2;
     }

     .workflow-step:nth-child(7) {
         grid-column: 2;
         grid-row: 2;
     }

     .workflow-step:nth-child(8) {
         grid-column: 1;
         grid-row: 2;
     }

     .workflow-step::before,
     .workflow-step::after {
         content: "";
         position: absolute;
         display: block;
         z-index: 2;
     }

     /* 1 -> 2 -> 3 -> 4 */
     .workflow-step:nth-child(1)::before,
     .workflow-step:nth-child(2)::before,
     .workflow-step:nth-child(3)::before {
         top: 50%;
         right: -25px;
         width: 25px;
         height: 2px;
         background: rgba(4, 106, 56, 0.45);
         transform: translateY(-50%);
     }

     .workflow-step:nth-child(1)::after,
     .workflow-step:nth-child(2)::after,
     .workflow-step:nth-child(3)::after {
         top: 50%;
         right: -30px;
         width: 10px;
         height: 10px;
         border-top: 2px solid #046a38;
         border-right: 2px solid #046a38;
         transform: translateY(-50%) rotate(45deg);
     }

     /* 4 -> 5 vertical down arrow */
     .workflow-step:nth-child(4)::before {
         left: 50%;
         bottom: -48px;
         width: 2px;
         height: 48px;
         background: rgba(4, 106, 56, 0.45);
         transform: translateX(-50%);
     }

     .workflow-step:nth-child(4)::after {
         left: 50%;
         bottom: -51px;
         width: 11px;
         height: 11px;
         border-right: 2px solid #046a38;
         border-bottom: 2px solid #046a38;
         transform: translateX(-50%) rotate(45deg);
     }

     /* 5 -> 6 -> 7 -> 8 */
     .workflow-step:nth-child(5)::before,
     .workflow-step:nth-child(6)::before,
     .workflow-step:nth-child(7)::before {
         top: 50%;
         left: -25px;
         width: 25px;
         height: 2px;
         background: rgba(4, 106, 56, 0.45);
         transform: translateY(-50%);
     }

     .workflow-step:nth-child(5)::after,
     .workflow-step:nth-child(6)::after,
     .workflow-step:nth-child(7)::after {
         top: 50%;
         left: -30px;
         width: 10px;
         height: 10px;
         border-left: 2px solid #046a38;
         border-bottom: 2px solid #046a38;
         transform: translateY(-50%) rotate(45deg);
     }

     .workflow-step:nth-child(8)::before,
     .workflow-step:nth-child(8)::after {
         display: none;
     }
 }

 /* Laptop / Tablet */
 @media (max-width: 1199px) {

     .workflow-main-header h2 {
         font-size: 38px;
     }

     .workflow-flow-box {
         grid-template-columns: repeat(2, 1fr);
         gap: 24px;
     }

     .workflow-step::before,
     .workflow-step::after {
         content: "";
         position: absolute;
         display: block;
         z-index: 2;
     }

     .workflow-step:nth-child(odd)::before {
         top: 50%;
         right: -25px;
         width: 25px;
         height: 2px;
         background: rgba(4, 106, 56, 0.45);
         transform: translateY(-50%);
     }

     .workflow-step:nth-child(odd)::after {
         top: 50%;
         right: -30px;
         width: 10px;
         height: 10px;
         border-top: 2px solid #046a38;
         border-right: 2px solid #046a38;
         transform: translateY(-50%) rotate(45deg);
     }

     .workflow-step:nth-child(even)::before,
     .workflow-step:nth-child(even)::after {
         display: none;
     }
 }

 /* Mobile */
 @media (max-width: 991px) {
     .immistack-workflow-section {
         padding: 60px 0;
     }

     .workflow-main-header {
         margin-bottom: 42px;
     }

     .workflow-main-header h2 {
         font-size: 34px;
     }

     .workflow-main-header p {
         font-size: 16px;
     }

     .workflow-group {
         padding: 22px;
         border-radius: 22px;
         margin-bottom: 28px;
     }

     .workflow-info {
         position: relative;
         top: auto;
         margin-bottom: 8px;
     }

     .workflow-flow-box {
         grid-template-columns: 1fr;
         gap: 16px;
         padding-left: 22px;
     }

     .workflow-flow-box::before {
         content: "";
         position: absolute;
         top: 12px;
         left: 7px;
         width: 2px;
         height: calc(100% - 24px);
         background: rgba(4, 106, 56, 0.18);
     }

     .workflow-step {
         min-height: auto;
         padding: 20px 18px 20px;
         align-items: flex-start;
     }

     .workflow-step::before {
         content: "";
         position: absolute;
         top: 50% !important;
         left: -22px !important;
         right: auto !important;
         bottom: auto !important;
         width: 22px !important;
         height: 2px !important;
         background: rgba(4, 106, 56, 0.35) !important;
         transform: translateY(-50%) !important;
         display: block !important;
         z-index: 2;
     }

     .workflow-step::after {
         content: "";
         position: absolute;
         top: 50% !important;
         left: -28px !important;
         right: auto !important;
         bottom: auto !important;
         width: 12px !important;
         height: 12px !important;
         border: 3px solid #046a38 !important;
         border-radius: 50% !important;
         background: #fff !important;
         transform: translateY(-50%) !important;
         display: block !important;
         z-index: 3;
     }

     .workflow-step span {
         position: static;
         margin-bottom: 12px;
     }

     .workflow-step h4 {
         margin: 0;
         text-align: left;
         font-size: 16px;
     }
 }

 @media (max-width: 575px) {
     .immistack-workflow-section {
         padding: 50px 0;
     }

     .workflow-main-header h2 {
         font-size: 29px;
     }

     .workflow-sub-badge {
         font-size: 13px;
     }

     .workflow-group {
         padding: 18px;
     }

     .workflow-info {
         padding: 24px 20px;
     }

     .workflow-info h3 {
         font-size: 24px;
     }

     .workflow-info p {
         font-size: 14px;
     }

     .workflow-flow-box {
         padding-left: 18px;
     }

     .workflow-step {
         border-radius: 16px;
     }
 }


 /* Service Showcase Section */
 .service-showcase-section {
     padding: 0 15px 80px;
     background: #fff;
     overflow: hidden;
 }

 .service-showcase-bg {
     background: var(--text-primary);
     min-height: 450px;
     border-radius: 0 0 30px 30px;
     display: flex;
     align-items: flex-start;
     justify-content: center;
     padding: 90px 20px 0;
 }

 .service-showcase-header {
     text-align: center;
     max-width: 800px;
 }

 .service-showcase-header p {
     margin: 0 0 12px;
     color: var(--text-secondary);
     font-size: 20px;
     line-height: 1.6;
 }

 .service-showcase-header h2 {
     margin: 0;
     color: #fff;
     font-size: 48px;
     font-weight: 800;
     line-height: 1.2;
 }

 .service-card-wrapper {
     max-width: 1200px;
     margin: -140px auto 0;
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 30px;
     position: relative;
     z-index: 2;
 }

 .service-card {
     background: #fff;
     border: 1px solid #e5e5e5;
     border-radius: 20px;
     overflow: hidden;
     height: 100%;
     display: flex;
     flex-direction: column;
     /* transition:0.3s ease; */
 }

 .service-card:hover {
     border-color: #007c50;
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
 }


 .service-card-image {
     height: 260px;
     overflow: hidden;
 }

 .service-card-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
     transition: 0.5s ease;
 }


 .service-card-content {
     padding: 25px;
     flex: 1;
     display: flex;
     flex-direction: column;
 }


 .service-card-content h3 {
     margin: 0 0 15px;
     font-size: var(--font-heading-3-size);
     font-weight: 800;
     color: #111;
     white-space: nowrap;
     overflow: hidden;
     text-overflow: ellipsis;
 }

 .service-card-content p {
     margin: 0;
     color: #666;
     font-size: 16px;
     line-height: 1.7;
     display: -webkit-box;
     -webkit-line-clamp: 3;
     -webkit-box-orient: vertical;
     overflow: hidden;
     min-height: 82px;
     margin-bottom: 26px;
 }

 .service-read-btn {
     position: relative;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     margin-top: auto;

     width: max-content;
     padding: 12px 26px;

     border: 1px solid #007c50;
     border-radius: 50px;

     color: #007c50;
     font-size: 15px;
     font-weight: 700;
     text-decoration: none;

     overflow: hidden;
     z-index: 1;

     transition: color 0.35s ease;
 }

 .service-read-btn::before {
     content: "";
     position: absolute;
     left: 0;
     bottom: 0;
     width: 100%;
     height: 0;
     background: var(--text-secondary);
     z-index: -1;
     transition: height 0.35s ease;
 }

 .service-read-btn:hover {
     color: var(--text-dark);
     border-color: var(--text-secondary);
 }

 .service-read-btn:hover::before {
     height: 100%;
 }

 @media(max-width:991px) {

     .service-showcase-bg {
         min-height: 400px;
     }

     .service-showcase-header h2 {
         font-size: 40px;
     }

     .service-card-wrapper {
         grid-template-columns: repeat(2, 1fr);
         margin-top: -120px;
     }

 }

 @media(max-width:767px) {

     .service-showcase-section {
         padding: 0 12px 60px;
     }

     .service-showcase-bg {
         min-height: 320px;
         padding-top: 70px;
         border-radius: 0 0 20px 20px;
     }

     .service-showcase-header p {
         font-size: 15px;
     }

     .service-showcase-header h2 {
         font-size: 32px;
     }

     .service-card-wrapper {
         grid-template-columns: 1fr;
         gap: 20px;
         margin-top: -80px;
     }

     .service-card-image {
         height: 220px;
     }

     .service-card-content {
         padding: 20px;
         text-align: center;
     }

     .service-card-content h3 {
         font-size: 22px;
     }

     .service-card-content p {
         font-size: 15px;
         min-height: 76px;
     }

     .service-read-btn {
         padding: 11px 22px;
         font-size: 14px;
     }
 }

 @media(max-width:767px) {
     .service-read-btn {
         margin-left: auto;
         margin-right: auto;
     }
 }

 /* testimonial */

 .creative-testimonial-section {
     padding: 70px 0;
     background: linear-gradient(180deg, #f4faf7 0%, #ffffff 100%);
     overflow: hidden;
 }

 .creative-testimonial-heading {
     max-width: 760px;
     margin: 0 auto 45px;
 }

 .creative-testimonial-heading span {
     display: inline-block;
     color: #007c50;
     background: rgba(0, 124, 80, 0.08);
     padding: 7px 18px;
     border-radius: 30px;
     font-size: 14px;
     font-weight: 700;
     margin-bottom: 14px;
 }

 .creative-testimonial-heading h2 {
     font-size: 42px;
     font-weight: 800;
     color: #111;
     margin-bottom: 14px;
 }

 .creative-testimonial-heading p {
     font-size: 16px;
     line-height: 1.7;
     color: #666;
     margin: 0;
 }

 .creative-testimonial-slider {
     max-width: 900px;
     margin: 0 auto;
     position: relative;
 }

 .creative-testimonial-card {
     position: relative;
     background: #fff;
     border-radius: 26px;
     padding: 55px 55px 45px;
     text-align: center;
     border: 1px solid rgba(0, 124, 80, 0.12);
     overflow: hidden;
 }

 .creative-testimonial-card::before {
     content: "";
     position: absolute;
     width: 180px;
     height: 180px;
     right: -70px;
     top: -70px;
     background: rgba(0, 124, 80, 0.08);
     border-radius: 50%;
 }

 .creative-testimonial-card::after {
     content: "";
     position: absolute;
     width: 90px;
     height: 90px;
     left: -35px;
     bottom: -35px;
     background: rgba(0, 124, 80, 0.06);
     border-radius: 50%;
 }

 .creative-quote-bg {
     width: 64px;
     height: 64px;
     margin: 0 auto 28px;
     background: #007c50;
     color: #fff;
     border-radius: 18px 18px 18px 4px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 26px;
     position: relative;
     z-index: 2;
 }

 .creative-testimonial-review {
     max-width: 720px;
     margin: 0 auto 34px;
     font-size: 18px;
     line-height: 1.8;
     color: #444;
     position: relative;
     z-index: 2;
 }

 .creative-testimonial-user {
     display: inline-flex;
     align-items: center;
     gap: 16px;
     background: #f7fbf9;
     padding: 10px 22px 10px 10px;
     border-radius: 60px;
     position: relative;
     z-index: 2;
 }

 .creative-testimonial-user img {
     width: 64px;
     height: 64px;
     border-radius: 50%;
     object-fit: cover;
     border: 4px solid #fff;
 }

 .creative-testimonial-user h4 {
     font-size: 18px;
     font-weight: 800;
     color: #111;
     margin: 0 0 3px;
     text-align: left;
 }

 .creative-testimonial-user span {
     display: block;
     font-size: 14px;
     color: #007c50;
     font-weight: 600;
     text-align: left;
 }

 .creative-testimonial-arrow {
     width: 58px;
     height: 58px;
     border: none;
     border-radius: 50%;
     background: #fff;
     color: #007c50;
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     z-index: 5;
     display: flex;
     align-items: center;
     justify-content: center;
     overflow: hidden;
     opacity: 0;
     visibility: hidden;
     box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
     transition: all 0.35s ease;
 }

 .creative-testimonial-arrow::before {
     content: "";
     position: absolute;
     left: 0;
     bottom: -100%;
     width: 100%;
     height: 100%;
     background: var(--text-secondary);
     border-radius: 50%;
     transition: all 0.35s ease;
 }

 .creative-testimonial-arrow:hover::before {
     bottom: 0;
 }

 .creative-testimonial-arrow i {
     font-size: 27px;
     position: relative;
     z-index: 2;
     transition: all 0.35s ease;
 }

 .creative-testimonial-arrow:hover i {
     color: #fff;
 }

 .creative-testimonial-slider:hover .creative-testimonial-arrow {
     opacity: 1;
     visibility: visible;
 }

 .creative-testimonial-prev {
     left: -34px;
 }

 .creative-testimonial-next {
     right: -34px;
 }

 @media (max-width: 991px) {
     .creative-testimonial-section {
         padding: 50px 0;
     }

     .creative-testimonial-heading h2 {
         font-size: 34px;
     }

     .creative-testimonial-card {
         padding: 45px 30px 38px;
     }

     .creative-testimonial-arrow {
         width: 56px;
         height: 56px;
         opacity: 1;
         visibility: visible;
         display: none;
     }

     .creative-testimonial-arrow i {
         font-size: 22px;
     }

     .creative-testimonial-prev {
         left: 8px;
     }

     .creative-testimonial-next {
         right: 8px;
     }
 }

 @media (max-width: 575px) {
     .creative-testimonial-section {
         padding: 33px 0;
     }

     .creative-testimonial-heading {
         margin-bottom: 32px;
     }

     .creative-testimonial-heading h2 {
         font-size: 28px;
     }

     .creative-testimonial-heading p {
         font-size: 15px;
     }

     .creative-testimonial-card {
         padding: 38px 18px 34px;
         border-radius: 20px;
     }

     .creative-quote-bg {
         width: 54px;
         height: 54px;
         font-size: 22px;
         margin-bottom: 22px;
     }

     .creative-testimonial-review {
         font-size: 15px;
         line-height: 1.7;
         margin-bottom: 28px;
     }

     .creative-testimonial-user {
         width: 100%;
         justify-content: flex-start;
         padding: 10px 16px 10px 10px;
     }

     .creative-testimonial-user img {
         width: 56px;
         height: 56px;
     }

     .creative-testimonial-user h4 {
         font-size: 16px;
     }

     .creative-testimonial-user span {
         font-size: 13px;
     }

     .creative-testimonial-arrow {
         width: 46px;
         height: 46px;
         display: none;
     }

     .creative-testimonial-arrow i {
         font-size: 18px;
     }
 }

 /* Parallax CTA Section */

 .immi-parallax-section {
     position: relative;
     min-height: 520px;
     display: flex;
     align-items: center;
     background-image: url("https://images.unsplash.com/photo-1556761175-b413da4baf72?w=1600");
     background-size: cover;
     background-position: center;
     background-repeat: no-repeat;
     background-attachment: fixed;
     overflow: hidden;
 }

 .immi-parallax-overlay {
     position: absolute;
     inset: 0;
     background: rgba(0, 0, 0, 0.55);
     z-index: 1;
 }

 .immi-parallax-content {
     position: relative;
     z-index: 2;
     max-width: 780px;
     margin: 0 auto;
     color: #fff;
     padding: 80px 15px;
 }

 .immi-parallax-subtitle {
     display: inline-block;
     font-size: 15px;
     font-weight: 600;
     letter-spacing: 1px;
     color: #ffffff;
     margin-bottom: 14px;
     text-transform: uppercase;
 }

 .immi-parallax-content h2 {
     font-size: 46px;
     font-weight: 800;
     line-height: 1.2;
     margin-bottom: 18px;
 }

 .immi-parallax-content p {
     font-size: 17px;
     line-height: 1.8;
     color: rgba(255, 255, 255, 0.88);
     margin-bottom: 32px;
 }

 .immi-parallax-btn {
     position: relative;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     padding: 13px 32px;
     border-radius: 50px;
     background: var(--text-primary);
     color: #fff;
     font-size: 15px;
     font-weight: 700;
     text-decoration: none;
     overflow: hidden;
     transition: 0.3s ease;
 }

 .immi-parallax-btn:hover {
     background: #056335;
     color: #fff;
 }

 /* Tablet */
 @media (max-width: 991px) {
     .immi-parallax-section {
         min-height: 460px;
     }

     .immi-parallax-content h2 {
         font-size: 36px;
     }

     .immi-parallax-content p {
         font-size: 16px;
     }
 }

 /* Mobile */
 @media (max-width: 767px) {
     .immi-parallax-section {
         min-height: 430px;
         background-attachment: scroll;
         background-position: center;
     }

     .immi-parallax-content {
         padding: 70px 15px;
     }

     .immi-parallax-content h2 {
         font-size: 28px;
     }

     .immi-parallax-content p {
         font-size: 15px;
         line-height: 1.7;
     }

     .immi-parallax-btn {
         padding: 12px 26px;
         font-size: 14px;
     }
 }

 /* footer */
 .footer-wrapper {
     position: relative;
     padding-top: 70px;
 }

 .footer-top-cards {
     position: relative;
     z-index: 10;
     margin-bottom: -90px;
 }

 .footer-contact-card {
     background: #fff;
     border-radius: 20px;
     padding: 35px 25px;
     text-align: center;
     height: 100%;
     transition: 0.35s ease;
     border: 1px solid rgba(0, 124, 80, 0.16);
 }

 .footer-contact-card:hover {
     border-color: var(--text-primary);
 }

 .footer-contact-icon {
     width: 70px;
     height: 70px;
     margin: 0 auto 18px;
     border-radius: 20px;
     border: 1px solid rgba(122, 201, 67, 0.25);
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--text-primary);
     font-size: 28px;
     transition: .3s;
 }

 .footer-contact-card:hover .footer-contact-icon {
     background: var(--text-primary);
     color: #fff;
 }

 .footer-contact-card h4 {
     font-size: 24px;
     font-weight: 700;
     margin-bottom: 12px;
     color: #111;
 }

 .footer-contact-card p {
     margin: 0;
     font-size: 15px;
     color: #666;
     line-height: 1.7;
 }

 .custom-footer {
     background: var(--text-primary);
     padding: 170px 0 0;
     color: #fff;
 }

 .footer-grid {
     --footer-col-width: 25%;

     display: flex;
     flex-wrap: wrap;
     row-gap: 40px;
 }

 .footer-column {
     flex: 0 0 var(--footer-col-width);
     max-width: var(--footer-col-width);
     padding-right: 35px;
 }

 .footer-logo {
     font-size: 34px;
     font-weight: 800;
     color: #fff;
     margin-bottom: 18px;
 }

 .footer-column h4 {
     color: #fff;
     font-size: 22px;
     font-weight: 700;
     margin-bottom: 25px;
 }

 .footer-column p {
     color: rgba(255, 255, 255, .85);
     line-height: 1.9;
     font-size: 15px;
 }

 .footer-column ul {
     padding: 0;
     margin: 0;
     list-style: none;
 }

 .footer-column ul li {
     margin-bottom: 14px;
 }

 .footer-column ul li a {
     color: rgba(255, 255, 255, .85);
     text-decoration: none;
     transition: .3s;
 }

 .footer-column ul li a:hover {
     color: #fff;
     padding-left: 6px;
 }

 .footer-social {
     display: flex;
     gap: 12px;
     margin-top: 25px;
 }

 .footer-social a {
     width: 42px;
     height: 42px;
     border-radius: 12px;
     background: rgba(255, 255, 255, .12);
     display: flex;
     align-items: center;
     justify-content: center;
     color: #fff;
     text-decoration: none;
     transition: .3s;
 }

 .footer-social a:hover {
     background: #fff;
     color: var(--text-primary);
 }

 .footer-bottom {
     border-top: 1px solid rgba(255, 255, 255, .15);
     margin-top: 60px;
     padding: 22px 0;
     text-align: center;
     color: rgba(255, 255, 255, .85);
     font-size: 14px;
 }

 @media(max-width:991px) {

     .footer-grid {
         --footer-col-width: 50%;
     }

     .footer-column {
         padding-right: 20px;
     }

     .custom-footer {
         padding-top: 150px;
     }
 }

 @media(max-width:767px) {

     .footer-top-cards {
         margin-bottom: 30px;
     }

     .custom-footer {
         padding-top: 60px;
     }

     .footer-grid {
         --footer-col-width: 100%;
     }

     .footer-column {
         max-width: 100%;
         padding-right: 0;
         text-align: center;
     }

     .footer-column h4 {
         text-align: center;
     }

     .footer-column p {
         text-align: center;
     }

     .footer-column ul {
         text-align: center;
     }

     .footer-column ul li {
         text-align: center;
     }

     .footer-social {
         justify-content: center;
     }

     .footer-contact-card {
         padding: 28px 20px;
     }

     .footer-contact-card h4 {
         font-size: 20px;
     }

     .footer-contact-card p {
         text-align: center;
     }

     .footer-contact-icon {
         width: 60px;
         height: 60px;
         font-size: 24px;
         margin: 0 auto 15px;
     }

     .footer-logo {
         font-size: 28px;
         text-align: center;
     }

     .footer-bottom {
         margin-top: 40px;
         text-align: center;
     }
 }

 /* plane */
.scroll-airplane-wrap {
    position: fixed;
    top: 0;
    right: 30px;     
    left: auto;
    width: 120px;     
    height: 190px;
    z-index: 9999;
    pointer-events: none;
    will-change: transform;
    transform-origin: center center;
}

.airplane-float {
    width: 100%;
    height: 100%;
    animation: airplaneFloat 3.2s ease-in-out infinite;
}

.airplane-svg {
    width: 100%;
    height: 100%;
    display: block;
    filter: drop-shadow(-12px 18px 15px rgba(0, 0, 0, 0.12));
}

@keyframes airplaneFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(7px); }
}

@media (max-width: 768px) {
    .scroll-airplane-wrap {
        width: 130px;
        height: 130px;
        right: 15px;
    }
}


 /* page banner */

 /* Software Page Banner Section */
 .software-page-banner {
     position: relative;
     min-height: 380px;
     background-image: url("https://images.unsplash.com/photo-1551434678-e076c223a692?auto=format&fit=crop&w=1600&q=80");
     background-size: cover;
     background-position: center;
     background-repeat: no-repeat;
     display: flex;
     align-items: center;
     overflow: hidden;
 }

 /* Green Overlay */
 .software-banner-overlay {
     position: absolute;
     inset: 0;
     background: linear-gradient(90deg,
             rgba(61, 130, 97, 0.92),
             rgba(3, 77, 42, 0.78),
             rgba(2, 56, 31, 0.55));
     z-index: 1;
 }

 /* Banner Content */
 .software-banner-content {
     position: relative;
     z-index: 2;
     padding: 80px 0;
 }

 .software-banner-content h1 {
     margin: 0 0 16px;
     font-size: 52px;
     font-weight: 800;
     line-height: 1.2;
     color: #ffffff;
     letter-spacing: -0.5px;
 }

 /* Breadcrumb */
 .software-breadcrumb {
     margin: 0;
     padding: 0;
     display: inline-flex;
     align-items: center;
     justify-content: center;
 }

 /* Breadcrumb Item */
 .software-breadcrumb .breadcrumb-item {
     font-size: 16px;
     font-weight: 500;
     color: #d9f5e7;
     display: flex;
     align-items: center;
 }

 /* Breadcrumb Link */
 .software-breadcrumb .breadcrumb-item a {
     color: #ffffff;
     text-decoration: none;
     transition: all 0.3s ease;
 }

 /* Breadcrumb Link Hover */
 .software-breadcrumb .breadcrumb-item a:hover {
     color: var(--text-secondary);
 }

 /* Active Breadcrumb */
 .software-breadcrumb .breadcrumb-item.active {
     color: var(--text-secondary);
 }

 /* Breadcrumb Slash */
 .software-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
     content: "/";
     color: #b9e4cf;
     padding: 0 10px;
 }

 /* Responsive */
 @media (max-width: 991px) {
     .software-page-banner {
         min-height: 330px;
     }

     .software-banner-content {
         padding: 70px 0;
     }

     .software-banner-content h1 {
         font-size: 42px;
     }
 }

 @media (max-width: 767px) {
     .software-page-banner {
         min-height: 280px;
         background-position: center;
     }

     .software-banner-overlay {
         background: linear-gradient(180deg,
                 rgba(4, 106, 56, 0.94),
                 rgba(3, 77, 42, 0.82),
                 rgba(2, 56, 31, 0.62));
     }

     .software-banner-content {
         padding: 60px 0;
     }

     .software-banner-content h1 {
         font-size: 34px;
         margin-bottom: 14px;
     }

     .software-breadcrumb .breadcrumb-item {
         font-size: 14px;
     }

     .software-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
         padding: 0 8px;
     }
 }

 @media (max-width: 480px) {
     .software-page-banner {
         min-height: 250px;
     }

     .software-banner-content {
         padding: 50px 0;
     }

     .software-banner-content h1 {
         font-size: 30px;
     }

     .software-breadcrumb .breadcrumb-item {
         font-size: 13px;
     }
 }

 /* software page */
 /* 1 */

 .immi-demo-section {
     padding: 60px 0;
     background: transparent;
     overflow: hidden;
 }

 /* Left Content */
 .immi-demo-content {
     max-width: 540px;
 }

 .immi-demo-subtitle {
     display: block;
     color: var(--text-primary);
     font-size: 14px;
     font-weight: 700;
     margin-bottom: 12px;
     letter-spacing: 0.5px;
     text-transform: uppercase;
 }

 .immi-demo-content h2 {
     color: var(--text-dark);
     font-size: 40px;
     font-weight: 800;
     line-height: 1.2;
     margin-bottom: 18px;
 }

 .immi-demo-content h2::first-line {
     color: var(--text-primary);
 }

 .immi-demo-content p {
     color: #555;
     font-size: 16px;
     line-height: 1.7;
     margin: 0;
 }

 /* Form Box */
 .immi-demo-form-box {
     max-width: 480px;
     margin-left: auto;
     background: var(--text-white);
     padding: 32px;
     border-radius: 22px;
     border: 1px solid rgba(4, 106, 56, 0.12);
     box-shadow: 0 18px 45px rgba(4, 106, 56, 0.11);
     position: relative;
     overflow: hidden;
 }

 .immi-demo-form-box::before {
     content: "";
     position: absolute;
     top: -65px;
     right: -65px;
     width: 135px;
     height: 135px;
     background: var(--text-secondary);
     border-radius: 50%;
     opacity: 0.22;
 }

 .immi-demo-form-box::after {
     content: "";
     position: absolute;
     bottom: -55px;
     left: -55px;
     width: 120px;
     height: 120px;
     background: var(--text-primary);
     border-radius: 50%;
     opacity: 0.07;
 }

 .immi-demo-form-box h3 {
     position: relative;
     z-index: 1;
     color: var(--text-primary);
     font-size: 26px;
     font-weight: 800;
     margin-bottom: 22px;
 }

 .immi-demo-form-box form {
     position: relative;
     z-index: 1;
 }

 .immi-demo-form-box .form-control {
     width: 100%;
     height: 50px;
     border-radius: 10px;
     border: 1px solid #dfe8e3;
     background: #fbfbfb;
     color: var(--text-dark);
     font-size: 14px;
     padding: 12px 16px;
     box-shadow: none;
     transition: all 0.3s ease;
 }

 .immi-demo-form-box .form-control::placeholder {
     color: #777;
 }

 .immi-demo-form-box .form-control:focus {
     border-color: var(--text-primary);
     background: var(--text-white);
     box-shadow: 0 0 0 4px rgba(4, 106, 56, 0.1);
 }

 /* Button */
 .immi-demo-btn {
     width: 100%;
     height: 50px;
     border: none;
     border-radius: 10px;
     background: var(--text-primary);
     color: var(--text-white);
     font-size: 15px;
     font-weight: 700;
     text-transform: capitalize;
     transition: all 0.3s ease;
     position: relative;
     overflow: hidden;
     z-index: 1;
 }

 .immi-demo-btn::before {
     content: "";
     position: absolute;
     left: 0;
     bottom: -100%;
     width: 100%;
     height: 100%;
     background: var(--text-secondary);
     transition: all 0.35s ease;
     z-index: -1;
 }

 .immi-demo-btn:hover::before {
     bottom: 0;
 }

 .immi-demo-btn:hover {
     color: var(--text-dark);
 }

 /* Privacy Note */
 .immi-demo-note {
     color: #666;
     font-size: 12px;
     line-height: 1.65;
     text-align: center;
     margin: 16px 0 0;
 }

 /* Tablet View */
 @media (max-width: 991px) {
     .immi-demo-section {
         padding: 55px 0;
     }

     .immi-demo-content {
         max-width: 100%;
         text-align: center;
     }

     .immi-demo-content h2 {
         font-size: 34px;
     }

     .immi-demo-content p {
         max-width: 680px;
         margin: 0 auto;
     }

     .immi-demo-form-box {
         max-width: 520px;
         margin: 0 auto;
     }
 }

 /* Mobile View */
 @media (max-width: 575px) {
     .immi-demo-section {
         padding: 45px 0;
     }

     .immi-demo-content h2 {
         font-size: 28px;
         line-height: 1.28;
         margin-bottom: 14px;
     }

     .immi-demo-subtitle {
         font-size: 12px;
         margin-bottom: 10px;
     }

     .immi-demo-content p {
         font-size: 15px;
         line-height: 1.65;
     }

     .immi-demo-form-box {
         padding: 24px 18px;
         border-radius: 18px;
         margin-top: 6px;
     }

     .immi-demo-form-box h3 {
         font-size: 22px;
         margin-bottom: 18px;
         text-align: center;
     }

     .immi-demo-form-box .form-control {
         height: 48px;
         font-size: 14px;
         border-radius: 9px;
     }

     .immi-demo-btn {
         height: 48px;
         font-size: 14px;
         border-radius: 9px;
     }

     .immi-demo-note {
         font-size: 11.5px;
         line-height: 1.6;
     }

     .immi-demo-note br {
         display: none;
     }
 }

 /* 2 */
 /* Dashboard & Assessment Report Section */
 .software-preview-section {
     padding: 80px 0;
     background: #fff;
     overflow: hidden;
 }

 .software-preview-header {
     max-width: 760px;
     margin: 0 auto 45px;
 }

 .software-preview-subtitle {
     display: inline-block;
     margin-bottom: 12px;
     color: #046a38;
     font-size: 16px;
     font-weight: 700;
     letter-spacing: 0.5px;
 }

 .software-preview-header h2 {
     margin: 0 0 16px;
     color: #000;
     font-size: 42px;
     font-weight: 800;
     line-height: 1.2;
 }

 .software-preview-header p {
     margin: 0;
     color: #555;
     font-size: 17px;
     line-height: 1.7;
 }

 .software-preview-card {
     height: 100%;
     background: #fff;
     border: 1px solid rgba(4, 106, 56, 0.14);
     border-radius: 24px;
     overflow: hidden;
     transition: all 0.35s ease;
 }

 .software-preview-card:hover {
     border-color: rgba(4, 106, 56, 0.35);
     box-shadow: 0 18px 45px rgba(4, 106, 56, 0.12);
 }

 .software-preview-img-box {
     position: relative;
     width: 100%;
     background: linear-gradient(135deg, rgba(4, 106, 56, 0.08), rgba(255, 222, 0, 0.12));
     padding: 18px;
     overflow: hidden;
 }

 .software-preview-img-box img {
     width: 100%;
     height: 360px;
     object-fit: cover;
     border-radius: 18px;
     display: block;
     transition: transform 0.4s ease;
 }

 .software-preview-card:hover .software-preview-img-box img {
     transform: scale(1.03);
 }

 .software-preview-content {
     padding: 24px 26px 28px;
 }

 .software-preview-content h3 {
     margin: 0 0 10px;
     color: #046a38;
     font-size: 24px;
     font-weight: 800;
     line-height: 1.3;
 }

 .software-preview-content p {
     margin: 0;
     color: #555;
     font-size: 15.5px;
     line-height: 1.7;
 }

 /* Tablet Responsive */
 @media (max-width: 991px) {
     .software-preview-section {
         padding: 65px 0;
     }

     .software-preview-header h2 {
         font-size: 34px;
     }

     .software-preview-header p {
         font-size: 16px;
     }

     .software-preview-img-box img {
         height: 280px;
     }

     .software-preview-content h3 {
         font-size: 22px;
     }
 }

 /* Mobile Responsive */
 @media (max-width: 767px) {
     .software-preview-section {
         padding: 55px 0;
     }

     .software-preview-header {
         margin-bottom: 32px;
     }

     .software-preview-subtitle {
         font-size: 14px;
     }

     .software-preview-header h2 {
         font-size: 28px;
     }

     .software-preview-header p {
         font-size: 15px;
         line-height: 1.6;
     }

     .software-preview-card {
         border-radius: 20px;
     }

     .software-preview-img-box {
         padding: 12px;
     }

     .software-preview-img-box img {
         height: auto;
         max-height: 260px;
         object-fit: contain;
         border-radius: 15px;
     }

     .software-preview-content {
         padding: 20px;
     }

     .software-preview-content h3 {
         font-size: 21px;
     }

     .software-preview-content p {
         font-size: 14.5px;
     }
 }

 /* Small Mobile */
 @media (max-width: 480px) {
     .software-preview-section {
         padding: 45px 0;
     }

     .software-preview-header h2 {
         font-size: 25px;
     }

     .software-preview-header p {
         font-size: 14px;
     }

     .software-preview-img-box img {
         max-height: 220px;
     }

     .software-preview-content {
         padding: 18px;
     }
 }


 /* 3 */

 /* Immi Process Section */
Main Section
.crm-feature-section {
    padding: 85px 0;
    overflow: hidden;
    background: #ffffff;
}


.crm-feature-heading {
    max-width: 790px;
    margin: 0 auto 78px;
}

.crm-feature-heading span {
    display: inline-block;
    margin-bottom: 9px;
    color: var(--text-primary);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.crm-feature-heading h2 {
    margin: 0 0 13px;
    color: var(--text-dark);
    font-size: var(--font-heading-2-size);
    font-weight: 800;
    line-height: 1.2;
}

.crm-feature-heading p {
    max-width: 700px;
    margin: 0 auto;
    color: #626262;
    font-size: var(--font-paragraph-size);
    line-height: 1.7;
}

.crm-feature-row {
    margin-bottom: 115px;
}

.crm-feature-row:last-child {
    margin-bottom: 0;
}

.crm-feature-content {
    max-width: 610px;
}

.crm-content-right {
    margin-left: auto;
}

.crm-feature-subtitle {
    display: inline-block;
    margin-bottom: 6px;
    color: var(--text-primary);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.crm-feature-content h3 {
    margin: 0 0 10px;
    color: var(--text-dark);
    font-size: 33px;
    font-weight: 800;
    line-height: 1.23;
}

.crm-feature-content p {
    margin: 0 0 17px;
    color: #626262;
    font-size: 15px;
    line-height: 1.68;
}

.crm-feature-two-part {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.crm-feature-part {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.crm-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #282828;
    font-size: 14px;
    line-height: 1.35;
}

.crm-feature-item i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 21px;
    height: 21px;
    min-width: 21px;
    border-radius: 50%;
    background: rgba(4, 106, 56, 0.12);
    color: var(--text-primary);
    font-size: 10px;
}

.crm-feature-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-width: 140px;
    margin-top: 8px;
    padding: 11px 23px;
    overflow: hidden;
    border: 2px solid var(--text-primary);
    border-radius: 50px;
    background: transparent;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    z-index: 1;
    transition: color 0.35s ease, border-color 0.35s ease;
}

.crm-feature-btn::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -105%;
    width: 100%;
    height: 100%;
    background: var(--text-primary);
    z-index: -1;
    transition: bottom 0.35s ease;
}

.crm-feature-btn:hover {
    border-color: var(--text-primary);
    color: #ffffff;
}

.crm-feature-btn:hover::before {
    bottom: 0;
}

.crm-demo-btn {
    border-color: var(--text-secondary);
    color: var(--text-dark);
}

.crm-demo-btn::before {
    background: var(--text-secondary);
}

.crm-demo-btn:hover {
    border-color: var(--text-secondary);
    color: var(--text-dark);
}

.crm-feature-image {
    position: relative;
    height: 385px;
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.13);
}

.crm-feature-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(4, 106, 56, 0.12), transparent 55%);
    pointer-events: none;
}

.crm-feature-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.crm-feature-image:hover img {
    transform: scale(1.05);
}

.crm-demo-modal .modal-dialog {
  max-width: 620px;
  padding: 10px;
  margin: 25px auto;
}

.crm-demo-modal .modal-content {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 20px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.crm-demo-modal .modal-body {
  padding: 28px 28px 22px;
}

.crm-popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: rgba(4, 106, 56, 0.1);
  color: #046a38;
  font-size: 15px;
  z-index: 2;
  transition: all 0.3s ease;
}

.crm-popup-close:hover {
  background: #046a38;
  color: #fff;
}

.crm-popup-heading {
  padding-right: 38px;
  margin-bottom: 16px;
}

.crm-popup-heading h3 {
  margin: 0 0 5px;
  color: #151515;
  font-size: 25px;
  font-weight: 800;
  line-height: 1.25;
}

.crm-popup-heading p {
  margin: 0;
  color: #626262;
  font-size: 13px;
  line-height: 1.5;
}

.crm-demo-modal label {
  margin-bottom: 5px;
  color: #242424;
  font-size: 13px;
  font-weight: 700;
}

.crm-demo-modal label span {
  color: #046a38;
}

.crm-demo-modal .form-control,
.crm-demo-modal .form-select {
  height: 42px;
  border: 1px solid #dddddd;
  border-radius: 8px;
  box-shadow: none;
  color: #333;
  font-size: 13px;
  padding: 8px 12px;
}

.crm-demo-modal .form-control:focus,
.crm-demo-modal .form-select:focus {
  border-color: #046a38;
  box-shadow: 0 0 0 0.18rem rgba(4, 106, 56, 0.12);
}

.crm-popup-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px 18px;
  border: 2px solid #046a38;
  border-radius: 50px;
  background: #046a38;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.crm-popup-submit:hover {
  border-color: #034d2a;
  background: #034d2a;
}

.crm-popup-policy-text {
  margin: -2px 0 0;
  color: #666;
  font-size: 12px;
  line-height: 1.55;
  text-align: center;
}

.crm-popup-policy-text a {
  color: #046a38;
  font-weight: 700;
  text-decoration: none;
}

.crm-popup-policy-text a:hover {
  text-decoration: underline;
}

@media (max-width: 575px) {
  .crm-demo-modal .modal-dialog {
    max-width: 100%;
    margin: 12px auto;
    padding: 12px;
  }

  .crm-demo-modal .modal-body {
    padding: 24px 18px 20px;
  }

  .crm-popup-heading h3 {
    font-size: 22px;
  }
}


.crm-feature-section .crm-feature-row {
    transition: opacity 0.6s ease, transform 0.6s ease;
}


.crm-feature-section .crm-feature-row.crm-row-hidden {
    display: none !important;
}

.crm-feature-section .crm-feature-row.crm-row-show {
    display: flex !important;
    animation: immiRowFadeUp 0.65s ease forwards;
}

@keyframes immiRowFadeUp {
    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.crm-feature-loader {
    display: block;
    width: 100%;
    min-height: 45px;
    text-align: center;
    padding: 10px 0 35px;
}

.crm-feature-loader span {
    display: none;
    width: 34px;
    height: 34px;
    border: 3px solid rgba(4, 106, 56, 0.18);
    border-top-color: #046a38;
    border-radius: 50%;
    animation: immiLoaderRotate 0.75s linear infinite;
}

.crm-feature-loader.is-loading span {
    display: inline-block;
}

/* @media (max-width: 991px) {
    .crm-feature-section {
        padding: 65px 0;
    }

    .crm-feature-heading {
        margin-bottom: 58px;
    }

    .crm-feature-row {
        margin-bottom: 82px;
    }

    .crm-feature-content,
    .crm-content-right {
        max-width: 100%;
        margin-left: 0;
    }

    .crm-feature-content h3 {
        font-size: 30px;
    }

    .crm-feature-image {
        height: 350px;
    }
}

@media (max-width: 767px) {
    .crm-feature-section {
        padding: 52px 0;
    }

    .crm-feature-heading {
        margin-bottom: 45px;
    }

    .crm-feature-heading h2 {
        font-size: 30px;
    }

    .crm-feature-heading p {
        font-size: 15px;
    }

    .crm-feature-row {
        margin-bottom: 60px;
    }

    .crm-feature-content h3 {
        font-size: 27px;
    }

    .crm-feature-two-part {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .crm-feature-image {
        height: 290px;
        border-radius: 20px;
    }

    .crm-demo-modal .modal-body {
        padding: 26px 24px 28px;
    }

    .crm-popup-heading h3 {
        font-size: 24px;
    }
    .crm-demo-modal .modal-dialog {
        margin-top: 70px;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .crm-feature-heading h2 {
        font-size: 26px;
    }

    .crm-feature-content h3 {
        font-size: 24px;
    }

    .crm-feature-content p {
        font-size: 14px;
    }

    .crm-feature-image {
        height: 245px;
    }

    .crm-feature-btn {
        width: 100%;
    }

    .crm-demo-modal .modal-dialog {
        margin: 8px;
        padding: 0;
    }
} */


/* =========================================
   CRM Feature Section - Mobile Responsive
   Image First + Center Content
   ========================================= */
@media (max-width: 767px) {

    .crm-feature-section {
        padding: 52px 0;
    }

    .crm-feature-heading {
        max-width: 100%;
        margin-bottom: 45px;
        padding: 0 8px;
    }

    .crm-feature-heading span {
        margin-bottom: 8px;
        font-size: 12px;
        letter-spacing: 1px;
    }

    .crm-feature-heading h2 {
        margin-bottom: 13px;
        font-size: 30px;
        line-height: 1.25;
    }

    .crm-feature-heading p {
        max-width: 100%;
        font-size: 15px;
        line-height: 1.65;
    }

    /* All rows: mobile ma image first ane details after image */
    .crm-feature-section .crm-feature-row,
    .crm-feature-section .crm-feature-row.crm-feature-reverse {
        flex-direction: column;
        margin-bottom: 62px;
    }

    /* Normal rows:
       HTML ma content first che, image second che.
       Mobile ma image first karva mate order change. */
    .crm-feature-section .crm-feature-row:not(.crm-feature-reverse) > .col-lg-6:first-child {
        order: 2;
    }

    .crm-feature-section .crm-feature-row:not(.crm-feature-reverse) > .col-lg-6:last-child {
        order: 1;
    }

    /* Reverse rows:
       HTML ma image first che, content second che.
       Image first j rese. */
    .crm-feature-section .crm-feature-row.crm-feature-reverse .crm-image-column {
        order: 1;
    }

    .crm-feature-section .crm-feature-row.crm-feature-reverse .crm-content-column {
        order: 2;
    }

    /* Image */
    .crm-feature-image {
        height: 290px;
        margin-bottom: 2px;
        border-radius: 20px;
    }

    /* Details center */
    .crm-feature-content,
    .crm-content-right {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .crm-feature-subtitle {
        margin-bottom: 8px;
        font-size: 12px;
        letter-spacing: 0.7px;
    }

    .crm-feature-content h3 {
        max-width: 620px;
        margin: 0 auto 12px;
        font-size: 27px;
        line-height: 1.28;
    }

    .crm-feature-content p {
        max-width: 620px;
        margin: 0 auto 22px;
        font-size: 14px;
        line-height: 1.7;
    }

    /* Feature list */
    .crm-feature-two-part {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 350px;
        margin: 0 auto;
    }

    .crm-feature-part {
        align-items: center;
        gap: 10px;
    }

    .crm-feature-item {
        justify-content: center;
        width: 100%;
        gap: 8px;
        text-align: center;
        font-size: 14px;
    }

    .crm-feature-item i {
        flex: 0 0 21px;
    }

    /* Buttons full width nahi thase */
    .crm-feature-btn {
        width: auto;
        min-width: 140px;
        margin-top: 10px;
        padding: 11px 23px;
    }

    .crm-demo-modal .modal-dialog {
        margin-top: 70px;
        margin-bottom: 20px;
    }

    .crm-demo-modal .modal-body {
        padding: 26px 24px 28px;
    }

    .crm-popup-heading h3 {
        font-size: 24px;
    }
}


/* =========================================
   Small Mobile: 480px and below
   ========================================= */
@media (max-width: 480px) {

    .crm-feature-section {
        padding: 45px 0;
    }

    .crm-feature-heading {
        margin-bottom: 38px;
        padding: 0 4px;
    }

    .crm-feature-heading span {
        font-size: 11px;
        letter-spacing: 0.8px;
    }

    .crm-feature-heading h2 {
        font-size: 26px;
        line-height: 1.28;
    }

    .crm-feature-heading p {
        font-size: 14px;
        line-height: 1.65;
    }

    .crm-feature-section .crm-feature-row,
    .crm-feature-section .crm-feature-row.crm-feature-reverse {
        margin-bottom: 52px;
    }

    .crm-feature-image {
        height: 245px;
        border-radius: 17px;
    }

    .crm-feature-content h3 {
        margin-bottom: 11px;
        font-size: 24px;
        line-height: 1.3;
    }

    .crm-feature-content p {
        margin-bottom: 20px;
        font-size: 14px;
        line-height: 1.65;
    }

    .crm-feature-two-part {
        max-width: 100%;
        gap: 14px;
    }

    .crm-feature-part {
        gap: 9px;
    }

    .crm-feature-item {
        font-size: 13px;
        line-height: 1.45;
    }

    .crm-feature-item i {
        width: 20px;
        height: 20px;
        min-width: 20px;
        font-size: 9px;
    }

    /* Button original content width ma j rese */
    .crm-feature-btn {
        width: auto !important;
        min-width: 132px;
        padding: 10px 20px;
        font-size: 13px;
    }

    .crm-demo-modal .modal-dialog {
        margin: 8px;
        padding: 0;
    }

    .crm-demo-modal .modal-body {
        padding: 24px 18px 20px;
    }

    .crm-popup-heading h3,
    .crm-popup-heading p {
        white-space: normal;
    }

    .crm-popup-heading h3 {
        font-size: 20px;
    }
}


/* =========================================
   Very Small Mobile: 360px and below
   ========================================= */
@media (max-width: 360px) {

    .crm-feature-heading h2 {
        font-size: 24px;
    }

    .crm-feature-content h3 {
        font-size: 22px;
    }

    .crm-feature-image {
        height: 220px;
    }

    .crm-feature-item {
        font-size: 12.5px;
    }

    .crm-feature-btn {
        min-width: 125px;
        padding: 9px 18px;
    }
}

/* =========================================
   CRM Demo Popup - Mobile Compact View
   ========================================= */
@media (max-width: 767px) {

    .crm-demo-modal .modal-dialog {
        max-width: calc(100% - 24px);
        margin: 12px auto;
    }

    .crm-demo-modal .modal-content {
        max-height: calc(100vh - 24px);
        border-radius: 16px;
    }

    .crm-demo-modal .modal-body {
        max-height: calc(100vh - 24px);
        padding: 20px 18px 18px;
        overflow-y: auto;
    }

    .crm-popup-close {
        top: 8px;
        right: 8px;
        width: 30px;
        height: 30px;
        font-size: 13px;
    }

    .crm-popup-heading {
        padding-right: 32px;
        margin-bottom: 12px;
    }

    .crm-popup-heading h3 {
        margin-bottom: 3px;
        font-size: 20px;
        line-height: 1.2;
        white-space: normal;
    }

    .crm-popup-heading p {
        font-size: 12px;
        line-height: 1.4;
        white-space: normal;
    }

    .crm-demo-modal .row.g-3 {
        --bs-gutter-y: 10px;
    }

    .crm-demo-modal label {
        margin-bottom: 3px;
        font-size: 12px;
    }

    .crm-demo-modal .form-control {
        height: 38px;
        padding: 7px 10px;
        border-radius: 7px;
        font-size: 12px;
    }

    .crm-popup-submit {
        padding: 9px 16px;
        font-size: 13px;
    }
}


/* Small mobile devices */
@media (max-width: 480px) {

    .crm-demo-modal .modal-dialog {
        max-width: calc(100% - 16px);
        margin: 8px auto;
    }

    .crm-demo-modal .modal-content,
    .crm-demo-modal .modal-body {
        max-height: calc(100vh - 16px);
    }

    .crm-demo-modal .modal-body {
        padding: 17px 14px 15px;
    }

    .crm-popup-heading {
        margin-bottom: 10px;
    }

    .crm-popup-heading h3 {
        font-size: 18px;
    }

    .crm-popup-heading p {
        font-size: 11px;
    }

    .crm-demo-modal .row.g-3 {
        --bs-gutter-y: 8px;
    }

    .crm-demo-modal label {
        font-size: 11px;
    }

    .crm-demo-modal .form-control {
        height: 35px;
        padding: 6px 9px;
        font-size: 11px;
    }

    .crm-popup-submit {
        padding: 8px 14px;
        font-size: 12px;
    }
}

 /* 5 */

 /* Schedule Demo CTA Section */
 .schedule-demo-section {
     background: #046a38;
     padding: 80px 0;
     min-height: 300px;
     display: flex;
     align-items: center;
 }

 .schedule-demo-content {
     max-width: 850px;
     margin: 0 auto;
     text-align: center;
 }

 .schedule-demo-content h2 {
     color: #ffffff;
     font-size: 40px;
     font-weight: 800;
     line-height: 1.25;
     margin: 0 0 18px;
 }

 .schedule-demo-content p {
     color: rgba(255, 255, 255, 0.9);
     font-size: 17px;
     line-height: 1.7;
     max-width: 720px;
     margin: 0 auto 32px;
 }

 /* Button */
 .schedule-demo-btn {
     position: relative;
     z-index: 1;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     min-width: 190px;
     padding: 15px 32px;
     border: 2px solid #ffde00;
     border-radius: 50px;
     background: transparent;
     color: #ffffff;
     font-size: 16px;
     font-weight: 700;
     text-decoration: none;
     overflow: hidden;
     transition: color 0.35s ease, border-color 0.35s ease;
 }

 .schedule-demo-btn::before {
     content: "";
     position: absolute;
     left: 0;
     bottom: 0;
     width: 100%;
     height: 0;
     background: #ffde00;
     z-index: -1;
     transition: height 0.35s ease;
 }

 .schedule-demo-btn:hover {
     color: #046a38;
     border-color: #ffde00;
 }

 .schedule-demo-btn:hover::before {
     height: 100%;
 }

 /* Responsive */
 @media (max-width: 991px) {
     .schedule-demo-section {
         padding: 70px 0;
         min-height: 280px;
     }

     .schedule-demo-content h2 {
         font-size: 34px;
     }

     .schedule-demo-content p {
         font-size: 16px;
     }
 }

 @media (max-width: 767px) {
     .schedule-demo-section {
         padding: 60px 0;
         min-height: auto;
     }

     .schedule-demo-content {
         padding: 0 10px;
     }

     .schedule-demo-content h2 {
         font-size: 28px;
         margin-bottom: 15px;
     }

     .schedule-demo-content p {
         font-size: 15px;
         line-height: 1.65;
         margin-bottom: 28px;
     }

     .schedule-demo-btn {
         min-width: 175px;
         padding: 14px 26px;
         font-size: 15px;
     }
 }

 @media (max-width: 480px) {
     .schedule-demo-section {
         padding: 50px 0;
     }

     .schedule-demo-content h2 {
         font-size: 24px;
     }

     .schedule-demo-content p {
         font-size: 14.5px;
     }
 }

 /* how it works page */

 .immi-how-section {
    background: var(--text-white);
}

.immi-how-section h2 {
    font-size: var(--font-heading-2-size);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.immi-how-section p {
    font-size: var(--font-paragraph-size);
    line-height: 1.7;
    color: #5f6f7f;
    margin: 0 auto;
    max-width: 780px;
}

/* Responsive */
@media (max-width: 768px) {
    .immi-how-section h2 {
        font-size: 25px;
    }

    .immi-how-section p {
        font-size: 16px;
    }
}

/* about us */
.immistack-about-section {
    position: relative;
    padding: 90px 0;
    overflow: hidden;
}

.immistack-about-image-wrap {
    position: relative;
    padding: 25px;
}

.immistack-about-shape {
    position: absolute;
    width: 78%;
    height: 82%;
    left: 0;
    bottom: 0;
    background: var(--text-primary);
    border-radius: 30px;
    z-index: 1;
}

.immistack-about-image {
    position: relative;
    width: 100%;
    object-fit: cover;
    border-radius: 30px;
    z-index: 2;
    box-shadow: 0 25px 60px rgba(4, 106, 56, 0.18);
}

.immistack-about-content {
    position: relative;
    padding-left: 20px;
}

.immistack-about-tag {
    display: inline-block;
    background: rgba(4, 106, 56, 0.1);
    color: var(--text-primary);
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.immistack-about-content h2 {
    font-size: var(--font-heading-2-size);
    line-height: 1.25;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 22px;
}

.immistack-about-content p {
    font-size: var(--font-paragraph-size);
    line-height: 1.8;
    color: #5f5f5f;
    margin-bottom: 16px;
}

@media (max-width: 991px) {
    .immistack-about-section {
        padding: 70px 0;
    }

    .immistack-about-content {
        padding-left: 0;
    }

    .immistack-about-image {
        height: 430px;
    }
}

@media (max-width: 575px) {
    .immistack-about-section {
        padding: 55px 0;
    }

    .immistack-about-image-wrap {
        padding: 15px;
    }

    .immistack-about-image {
        height: 330px;
        border-radius: 22px;
    }

    .immistack-about-shape {
        border-radius: 22px;
    }

    .immistack-about-content h2 {
        font-size: 28px;
    }
}

/* contct us */
 .contact-section {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 60px 15px;
    }

    .contact-form-box {
      width: 100%;
      max-width: 850px;
      background: var(--text-white);
      padding: 40px;
      border-radius: 18px;
      box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
    }

    .contact-title {
      text-align: center;
      margin-bottom: 30px;
    }

    .contact-title h2 {
      font-size: var(--font-heading-2-size);
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 10px;
    }

    .contact-title p {
      font-size: var(--font-paragraph-size);
      color: #555;
      margin: 0;
    }

    .form-label {
      font-size: var(--font-paragraph-size);
      font-weight: 600;
      color: var(--text-primary);
      margin-bottom: 6px;
    }

    .form-control {
      height: 48px;
      border-radius: 10px;
      border: 1px solid #cfcfcf;
      font-size: var(--font-paragraph-size);
      padding: 10px 14px;
    }

    textarea.form-control {
      height: 130px;
      resize: none;
    }

    .form-control:focus {
      border-color: var(--text-primary);
      box-shadow: 0 0 0 0.18rem rgba(4, 106, 56, 0.18);
    }

    .invalid-feedback {
      font-size: 14px;
    }

    @media (max-width: 767px) {
      .contact-section {
        padding: 35px 12px;
      }

      .contact-form-box {
        padding: 25px 18px;
        border-radius: 14px;
      }

      .contact-title h2 {
        font-size: 28px;
      }

      .form-control {
        height: 45px;
        font-size: 15px;
      }

      textarea.form-control {
        height: 115px;
      }

      .submit-btn {
        width: 100%;
        padding: 12px 20px;
      }
    }