:root {
    --bg-dark: #0b0f17;
    --accent: #09c5ff;
    --accent-2: #6b2cff;
    --muted: #7b8794;
    --card: #ffffff;
    --text-color: #E9ECF6;
    --container: 1200px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    outline: none;
}

ul {
    padding: 0;
    margin: 0;
}

li {
    padding: 0;
    margin: 0;
}

a {
    padding: 0;
    margin: 0;
    text-decoration: none;
}

p {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--muted);
    line-height: 1.6;
    font-size: 16px;
}

.bg-area {
    background: url('../images/hero-bg.png') no-repeat center center/cover;
    padding: 30px 0 100px 0;
}

.indBg-area {
    background: url('../images/indHerobg.webp') no-repeat center center/cover;
    padding: 30px 0 100px 0;
}

.about_h_Bg {
    background: url('../img/about_hero_bg.webp') no-repeat center center/cover;
    padding: 30px 0 100px 0;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    /* ensure absolutely positioned nav-menu is placed relative to header */
}

.header.sticky {
    background: rgba(3, 52, 77, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
    padding: 5px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1300;
}

/* ensure header children ordering so toggle can sit right when shown */
.header-wrapper>.logo {
    order: 1;
}

.header-wrapper>.nav-menu {
    order: 2;
}

.header-wrapper>.header-btn {
    order: 3;
}

.header-wrapper>.nav-toggle {
    order: 4;
}

/* Nav base styles */
.nav-menu {
    position: relative;
}

.nav-menu .menu-list {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-menu .menu-list .nav-item {
    position: relative;
}

.nav-menu .menu-list .nav-item .nav-link {
    display: block;
    text-decoration: none;
    color: var(--card);
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #4f46e5, #7c3aed);
    border-radius: 2px;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-item:hover .nav-link::after {
    width: 80%;
}

/* Active state border */
.nav-link.active::after {
    width: 100%;
}



/* Title and description styling */
.dropdown-title {
    font-weight: 600;
    font-size: 15px;
    color: #111827;
    margin-bottom: 4px;
    transition: color 0.2s ease;
}

.dropdown-desc {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.4;
    transition: color 0.2s ease;
}

/* Hover effects */
.dropdown li a:hover {
    background: linear-gradient(to right, rgba(79, 70, 229, 0.05), transparent);
    padding-left: 30px;
}

.dropdown li a:hover .dropdown-title {
    color: #4f46e5;
}

.dropdown li a:hover .dropdown-desc {
    color: #4b5563;
}



.header-btn .get-started-btn {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 120%;
    color: #03344D;
    background: #fff;
    padding: 14px 25px;
    border-radius: 8px;
}

.header-btn .get-started-btn:hover {
    background-image: linear-gradient(90deg, #00C8F5 0%, #DB4E35 100%);
    color: #fff;
    position: relative;
    z-index: 2;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: none;
    outline: none;
    border: none;
}

/* Dropdown submenu styles */
.nav-menu .menu-list .nav-item .dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: var(--card);
    color: var(--bg-dark);
    box-shadow: 0 6px 18px rgba(2, 8, 23, 0.12);
    border-radius: 8px;
    min-width: 220px;
    padding: 10px 0;
    list-style: none;
    z-index: 50;
}

.nav-menu .menu-list .nav-item .dropdown.show {
    display: block;
}

.nav-menu .menu-list .nav-item .dropdown li a {
    display: block;
    padding: 8px 16px;
    color: var(--bg-dark);
    text-decoration: none;
    font-size: 14px;
}

.nav-menu .menu-list .nav-item .dropdown li a:hover {
    background: #f5f7fa;
}

/* Small screens: make dropdowns full width under the nav */
@media (max-width: 768px) {
    .nav-menu .menu-list {
        flex-direction: column;
    }

    .nav-menu .menu-list .nav-item .dropdown {
        position: static;
        box-shadow: none;
        border-radius: 0;
        padding-left: 12px;
    }
}

/* Mobile nav toggle button */
.nav-toggle {
    display: none;
    background: transparent;
    border: 0;
    cursor: pointer;
    /* keep a consistent hit area */
    width: 44px;
    height: 44px;
    padding: 0;
    position: absolute;
    /* positioned in header */
    z-index: 1200;
    /* ensure the toggle is clickable above other content */
}

.nav-toggle .bar {
    position: relative;
    display: block;
    width: 28px;
    height: 2px;
    margin: 0 auto;
    background: var(--card);
    transition: background 160ms ease;
}

.nav-toggle .bar::before,
.nav-toggle .bar::after {
    content: '';
    position: absolute;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--card);
    transition: transform 220ms ease, top 220ms ease, opacity 160ms ease;
}

.nav-toggle .bar::before {
    top: -9px;
}

.nav-toggle .bar::after {
    top: 9px;
}

/* Transform into an X when open */
.nav-toggle.open .bar {
    background: transparent;
}

.nav-toggle.open .bar::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle.open .bar::after {
    top: 0;
    transform: rotate(-45deg);
}

/* Mobile layout */
@media (max-width: 992px) {
    .nav-toggle {
        display: inline-flex;
        align-items: center;
    }

    .header-wrapper {
        gap: 12px;
    }

    /* OFF-CANVAS: make the nav a fixed left-side panel on mobile */
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 320px;
        max-width: 92%;
        background: var(--bg-dark);
        padding: 20px 18px;
        transform: translateX(-110%);
        transition: transform 300ms cubic-bezier(.2, .9, .2, 1);
        z-index: 1100;
        overflow-y: auto;
        box-shadow: 12px 0 30px rgba(2, 8, 23, 0.5);
    }

    .nav-menu.open {
        transform: translateX(0);
    }

    /* position the hamburger on the right while panel slides from the left */
    .nav-toggle {
        position: absolute;
        right: 0;
        top: 18px;
    }

    .nav-menu .menu-list {
        flex-direction: column;
        align-items: stretch;
    }

    .nav-menu .menu-list .nav-item {
        margin-bottom: 6px;
    }

    .nav-menu .menu-list .nav-item .nav-link {
        padding: 10px 8px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /* Dropdowns in mobile behave as nested lists */
    .nav-menu .menu-list .nav-item .dropdown {
        display: none;
    }

    .nav-menu .menu-list .nav-item .dropdown.show {
        display: block;
    }
}

/* Desktop: hide the duplicate mobile CTA */
.mobile-cta {
    display: none;
}

/* Dropdown Container */
.dropdown-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 776px;
    padding: 10px;
}

.solutions-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}


/* Dropdown Link Styles */
.dropdown-link {
    display: flex;
    align-items: flex-start;
    padding: 7px;
    border-radius: 8px;
    background: #f9fafb;
    text-decoration: none;
    color: inherit;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 4px solid transparent;
}

.dropdown-container .dropdown-title {
    position: relative;

}

.dropdown-container .dropdown-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #00C8F5 0%, #DB4E35 100%);
    border-radius: 2px;
}

.dropdown-link:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #00C8F5;
}

/* For Industries dropdown */
.industry-item .dropdown-link {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

/* For Solutions dropdown */
.solution-column .dropdown-link {
    align-items: center;
    gap: 15px;
    margin-bottom: 0 !important;
}

/* Solution Icon */
.solution-icon {
    font-size: 20px;
    color: #00C8F5;
    background: rgba(0, 200, 245, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    display: none !important;
}

.dropdown-link:hover .solution-icon {
    background: #00C8F5;
    color: white;
    transform: scale(1.1);
}

/* Solution Content */
.solution-content {
    flex: 1;
}

/* Dropdown Title & Description */
.dropdown-title {
    display: block;
    font-weight: 600;
    font-size: 13px;
    color: #111827;
    margin-bottom: 4px;
    transition: color 0.3s ease;
}

.dropdown-desc {
    display: block;
    font-size: 13px;
    color: #6b7280;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.dropdown-link:hover .dropdown-title {
    color: #00C8F5;
}

.dropdown-link:hover .dropdown-desc {
    color: #4b5563;
}

/* Arrow Icon */
.arrow-icon,
.dropdown-link>.fa-arrow-right {
    color: #9ca3af;
    font-size: 14px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-10px);
}

.dropdown-link:hover .arrow-icon,
.dropdown-link:hover>.fa-arrow-right {
    opacity: 1;
    transform: translateX(0);
    color: #00C8F5;
}

.solutions-dropdown {
    left: -174% !important;
}

/* Regular Dropdown (Get Started & Company) */
.dropdown:not(.mega-dropdown):not(.solutions-dropdown) {
    min-width: 200px;
    padding: 10px 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.dropdown:not(.mega-dropdown):not(.solutions-dropdown) li a {
    padding: 12px 20px;
    display: block;
    color: #374151;
    text-decoration: none;
    transition: all 0.2s ease;
}

.dropdown:not(.mega-dropdown):not(.solutions-dropdown) li a:hover {
    background: linear-gradient(90deg, rgba(0, 200, 245, 0.1), transparent);
    color: #00C8F5;
    padding-left: 25px;
}

.dropdown-container {
    overflow: auto;
    height: 480px;
}

.solutions-container {
    overflow: auto;
    height: 500px;
}

@media (max-width: 992px) {

    .dropdown-container,
    .solutions-container {
        grid-template-columns: 1fr !important;
        width: 100% !important;
    }

    .solutions-dropdown {
        left: 0 !important;
    }
}


.solutions-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    width: 880px;
    margin: 0 auto;
}

.solution-column {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.dropdown-heading {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f3f4f6;
    position: relative;
    text-align: center;
}

.dropdown-heading::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #00C8F5 0%, #DB4E35 100%);
    border-radius: 2px;
}



/* Solution Icon */
.solution-icon {
    font-size: 15px;
    color: #00C8F5;
    background: rgba(0, 200, 245, 0.1);
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.dropdown-link:hover .solution-icon {
    background: #00C8F5;
    color: white;
    transform: scale(1.1);
}

/* Different column colors */
.solution-column:nth-child(1) .solution-icon {
    color: #00C8F5;
    background: rgba(0, 200, 245, 0.1);
}

.solution-column:nth-child(2) .solution-icon {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

.solution-column:nth-child(3) .solution-icon {
    color: #8b5cf6;
    background: rgba(139, 92, 246, 0.1);
}

.solution-column:nth-child(1) .dropdown-link:hover .solution-icon {
    background: #00C8F5;
    color: white;
}

.solution-column:nth-child(2) .dropdown-link:hover .solution-icon {
    background: #10b981;
    color: white;
}

.solution-column:nth-child(3) .dropdown-link:hover .solution-icon {
    background: #8b5cf6;
    color: white;
}

/* Heading colors */
.solution-column:nth-child(1) .dropdown-heading {
    color: #00C8F5;
}

.solution-column:nth-child(2) .dropdown-heading {
    color: #10b981;
}

.solution-column:nth-child(3) .dropdown-heading {
    color: #8b5cf6;
}

.solution-column:nth-child(1) .dropdown-heading::after {
    background: linear-gradient(90deg, #00C8F5, #00a8d4);
}

.solution-column:nth-child(2) .dropdown-heading::after {
    background: linear-gradient(90deg, #10b981, #0d9c6b);
}

.solution-column:nth-child(3) .dropdown-heading::after {
    background: linear-gradient(90deg, #8b5cf6, #7c3aed);
}


.solution-column:nth-child(1) .dropdown-link:hover .dropdown-title {
    color: #00C8F5;
}

.solution-column:nth-child(2) .dropdown-link:hover .dropdown-title {
    color: #10b981;
}

.solution-column:nth-child(3) .dropdown-link:hover .dropdown-title {
    color: #8b5cf6;
}

@media (min-width: 1225px) {
    .solutions-container {
        width: 890px;
    }
}

@media (max-width: 992px) {

    .dropdown-container,
    .solutions-container {
        grid-template-columns: 1fr !important;
        width: 100% !important;
    }
}

/* Mobile-specific CTA and header adjustments */
@media (max-width: 992px) {

    /* hide the header CTA in the top bar on mobile */
    .header-btn {
        display: none;
    }

    /* show CTA inside nav */
    .mobile-cta {
        display: block;
        margin-top: 20px;
    }

    .mobile-cta a {
        font-family: 'Poppins';
        font-style: normal;
        font-weight: 700;
        font-size: 16px;
        line-height: 120%;
        color: #03344D;
        background: #fff;
        padding: 14px 25px;
        border-radius: 8px;
        border: none;
    }

    .mobile-cta a:hover {
        background-image: linear-gradient(90deg, #00C8F5 0%, #DB4E35 100%);
        color: #fff;
        position: relative;
        z-index: 2;
        overflow: hidden;
        background-repeat: no-repeat;
        background-size: cover;
        box-shadow: none;
        outline: none;
    }

    /* ensure toggle appears to the right in the flex layout */
    .header-wrapper>.nav-toggle {
        order: 4;
        margin-left: 8px;
    }

    .header-wrapper>.nav-menu {
        order: 2;
    }
}

/* Force-hide hamburger on larger screens in case of conflicts */
@media (min-width: 993px) {
    .nav-toggle {
        display: none !important;
    }
}

/* overlay shown when off-canvas menu is open */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity 200ms ease;
    z-index: 1050;
}

.nav-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* prevent body scroll when off-canvas is open */
.no-scroll {
    overflow: hidden;
}

/* Screen-reader only helper */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}

/* Hero text gradient for the word wrapped in <span> ("Future") */
.hero-text {
    color: #fff;
    font-weight: 700;
}

.hero-text span {
    display: inline-block;
    background: linear-gradient(90deg, #08C4EF 38%, #D1543E 63%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* Hero section css */


.hero-contain-area {
    text-align: center;
    padding: 140px 0px 100px 0px;
}

.hero-contain-area .hero-text {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 61px;
    line-height: 120%;
    color: var(--text-color);
    margin-bottom: 15px;
}

.hero-contain-area .hero-slogan {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 120%;
    color: var(--text-color);
    margin-bottom: 25px;
}

.hero-contain-area .hero-btn-area {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-contain-area .hero-btn-area .hero-btn {
    border: none;
    border: 1px solid #FFFFFF;
    color: var(--text-color);
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 120%;
    display: block;
    padding: 14px 25px;
    border-radius: 10px;
    margin: 25px;
}


.hero-contain-area .hero-btn-area .hero-btn:hover {
    border: 1px solid transparent;
    background-image: linear-gradient(90deg, #00C8F5 0%, #DB4E35 100%);
    position: relative;
    z-index: 2;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: none;
    outline: none;
    border: none;
}

.trusted-by {
    padding-top: 120px;
}

.trusted-by .trusted-text {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 120%;
    color: var(--text-color);
    margin-bottom: 40px;
}

.brands {
    display: flex;
    justify-content: center;
    align-items: center;
}

.brands .brand-logo {
    margin: 0 25px;
}

@media all and (max-width:480px) {
    .hero-contain-area .hero-text {
        font-size: 38px;
    }

    .hero-contain-area .hero-btn-area .hero-btn {
        padding: 14px 15px;
        margin: 10px;
    }
}

/* Video Play Area */
.second-bg-area {
    background: url('../images/effect-bg.png') no-repeat center center/cover;
    padding: 100px 0;
    padding-bottom: 0;
}



.video-player-wrapper {
    margin-top: -180px;
}

.video-thumbnail {
    position: relative;
}

.video-thumbnail-bg {
    width: 100%;
    border-radius: 10px;
}

.video-thumbnail .play-button {
    border: none;
    background: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

/* Video modal styles */
.video-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2200;
}

.video-modal.open {
    display: flex;
}

.video-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 960px;
    background: transparent;
    border-radius: 10px;
    padding: 18px;
    box-sizing: border-box;
    z-index: 2210;
}

.video-modal-close {
    position: absolute;
    right: -8px;
    top: -8px;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    border: 0;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    z-index: 2220;
}

.video-wrapper {
    position: relative;
    padding-top: 56.25%;
    /* 16:9 */
    overflow: hidden;
    border-radius: 10px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-modal-close:focus {
    outline: 2px solid var(--accent);
}

@media all and (max-width:991px) {
    .video-thumbnail-bg {
        width: 100%;
        border-radius: 10px;
    }

    .video-thumbnail .play-button {
        border: none;
        background: none;
        position: absolute;
        cursor: pointer;
    }

    .play-icon {
        width: 25px;
        height: 25px;
    }
}


/* Service CSS */
.service-area-start {
    padding-bottom: 120px;
}

.service-header-area {
    text-align: center;
    padding: 120px 0px 80px 0px;
}

.service-header-area .offer-text {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 120%;
    color: #1D3378;
}

.service-header-area .service-header-text {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 61px;
    line-height: 120%;
    color: #1D3378;
}

.service-header-area .service-slogan {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: #1D3378;
    width: 40%;
    margin: 0 auto;
    padding: 0 1rem;
}

.service-item-area {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.service-item {
    flex-basis: 32%;
    background-color: #fff;
    padding: 51px 31px;
    border-radius: 10px;
    margin: 15px 0px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.service-item .service-item-icon {
    height: 55px;
    width: 55px;
    margin-bottom: 40px;
}

.service-item .service-item-title {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 120%;
    color: #2744A0;
    margin-bottom: 20px;
}

.service-item .service-description {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: #1D3378;
    margin-bottom: 30px;
}



.service-item ul li {
    list-style: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 10px;
}

.service-item ul li img {
    margin-right: 5px;
}

.service-item ul li p {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: #1D3378;
}


@media all and (max-width:991px) {
    .service-header-area .service-slogan {
        width: 100%;
        margin: 0 auto;
    }

    .service-item {
        flex-basis: 100%;
    }
}

@media (max-width: 576px) {
    .service-header-area .service-header-text {
        font-size: 32px;
    }
}

.why-choose-us-area {
    background: url('../images/why_choose_bg.webp') no-repeat center center/cover;
    padding: 105px 0;
    position: relative;
    overflow: hidden;
}

.indWhychoosebg {
    background: url('../images/industries/indWhychooseBG.webp') no-repeat center center/cover;
    padding: 105px 0;
    position: relative;
}

.bussiness_man {
    position: absolute;
    bottom: 0;
    right: 0;
    top: 90px;
    /* width: 45%; */
}

.bussiness_man img {
    width: 100%;
    height: 100%;

}

.why-choose-us-area .area_title {
    font-family: Poppins;
    font-weight: 400;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: left;
    vertical-align: middle;
    color: var(--text-color);
}

.why-choose-us-area h1 {
    font-family: Poppins;
    font-weight: 700;
    font-size: 49px;
    line-height: 120%;
    text-align: left;
    vertical-align: middle;
    color: var(--text-color);
}

.why-choose-us-area h2 {
    font-family: Poppins;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    text-align: left;
    vertical-align: middle;
    color: var(--text-color);
}

.progress_title {
    font-family: Poppins;
    font-weight: 700;
    font-size: 39px;
    line-height: 120%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: var(--text-color);
}

.progress_subtitle {
    font-family: Poppins;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: var(--text-color);
}

.content_area {
    margin-right: 38%;
}

.schedule_demo {
    margin-top: 53px;
}

.demo_btn {
    font-family: Poppins;
    font-weight: 700;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0%;
    vertical-align: middle;
    background: var(--text-color);
    border-radius: 10px;
    color: #03344D;
    padding: 18px 25px;
}

.demo_btn:hover {
    background-image: linear-gradient(90deg, #00C8F5 0%, #DB4E35 100%);
    color: #fff;
    position: relative;
    z-index: 2;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: none;
    outline: none;
}

@media (max-width: 1200px) {
    .why-choose-us-area h1 {
        font-size: 42px;
    }

    .progress_are {
        column-gap: 20px !important;
    }

    .why-choose-us-area {
        padding: 90px 0;
    }

    .bussiness_man {
        top: 146px;
    }
}

@media (max-width: 992px) {
    .why-choose-us-area h1 {
        font-size: 33px;
    }

    .progress_title {
        font-size: 30px;
    }

    .progress_subtitle {
        font-size: 13px;
    }

    .why-choose-us-area h2 {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .content_area {
        margin-right: 0;
        padding-bottom: 54%;
    }

    .bussiness_man {
        top: 42%;
        right: 0;
        bottom: 0;
        /* width: 100%; */
    }

}

@media (max-width: 540px) {
    .bussiness_man {
        display: none;
    }

    .content_area {
        padding-bottom: 0;
    }
}

@media (max-width: 440px) {
    .progress_are {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .progress_title {
        text-align: center;
    }

    .progress_subtitle {
        text-align: center;
    }

    .schedule_demo {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .why-choose-us-area h1 {
        font-size: 28px;
    }

    .brands {
        column-gap: 10px;
    }

    .brands .brand-logo {
        margin: 0 !important;
    }

    .brands .brand-logo img {
        width: 100%;
    }

    .service-header-area .service-header-text {
        font-size: 35px;
    }
}

@media (max-width: 370px) {
    .hero-contain-area .hero-btn-area .hero-btn {
        padding: 14px 12px;
        margin: 10px;
    }
}

/* Specialized Solutions start */
.specialized-solutions-area {
    padding: 100px 0;
}

.offer-text {
    font-family: Poppins;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    color: #1D3378;
    margin-bottom: 15px;

}

.specialized-solutions-header-text {
    font-family: Poppins;
    font-weight: 700;
    font-style: Bold;
    font-size: 61px;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    color: #1D3378;
}

.specialized-solutions-slogan {
    font-family: Poppins;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    margin: 20px auto;
    max-width: 432px;
}

.specialized-solutions-item {
    background-color: #fff;
    border-radius: 10px;
    margin: 15px 0px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    overflow: hidden;
}

.specialized-solutions-item .card_img {
    position: relative;
    aspect-ratio: 1/0.75;
    overflow: hidden;
}

.specialized-solutions-item .card_content {
    padding: 16px 20px;
    padding-bottom: 0;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.specialized-solutions-item .card_content h3 {
    font-family: Poppins;
    font-weight: 700;
    font-style: Bold;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #18191B;
}

.specialized-solutions-item .card_content p {
    font-family: Poppins;
    font-weight: 400;
    font-size: 13px;
    line-height: 120%;
    letter-spacing: 0%;
    color: #404040;
}

.specialized-solutions-item .card_content a {
    font-family: Poppins;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0%;
    color: #2744A0;
    margin-top: 15px;
    display: inline-block;
}

.specialized-solutions-item .card_content a:hover {
    color: #03344D;
}

.specialized-solutions-item .card_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .specialized-solutions-header-text {
        font-size: 47px;
    }
}

@media (max-width: 540px) {
    .specialized-solutions-header-text {
        font-size: 36px;
    }
}

@media (max-width: 420px) {
    .specialized-solutions-header-text {
        font-size: 27px;
    }
}

/* testimonials start */
.testimonials-area {
    padding: 100px 0;
    border-radius: 20px;
    overflow: hidden;
    background: url(../images/testimonials.webp) no-repeat center center/cover;

}

.whyClientchoose {
    padding: 100px 0;
    border-radius: 20px;
    overflow: hidden;
    background: url(../images/about_us/bg_1.webp) no-repeat center center/cover;

}

.testimonials-header-area .offer-text {
    font-family: Poppins;
    font-weight: 400;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    color: var(--text-color);
}

.testimonials-header-text {
    font-family: Poppins;
    font-weight: 700;
    font-size: 61px;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    color: var(--text-color);
}

.testimonials-header-text span {
    display: inline-block;
    background: linear-gradient(90deg, #08C4EF 38%, #D1543E 63%);
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.swiper-wrapper {
    display: flex;
    align-items: stretch;
}


.swiper-slide {
    height: auto !important;
    padding-bottom: 40px;
}

.specialized-solutions-item {
    height: 100%;
}

.testimonials-item {
    border: 1px solid #E9ECF6;
    padding: 50px 30px;
    background: #0F1217;
    border-radius: 10px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}


.client-info {
    padding-top: 20px;
    margin-top: auto;
}

.testimonials-description {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: -0.02em;
    color: var(--text-color);
    border-bottom: 1px solid #B5B6B72E;
    padding-bottom: 20px;
    margin-bottom: 0;
}

.client-details .client-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: -0.03em;
    color: #ffffff;
    margin-bottom: 5px;
}

.client-details .client-position {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: -0.02em;
    color: var(--muted);
    margin-top: 0;
}

/* Swiper Container */
.testimonials-swiper {
    position: relative;
    padding-bottom: 70px;
    /* Space for buttons */
}

/* Navigation Container */
.testimonials-navigation {
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
    margin-top: 30px;
}

/* Navigation Buttons */
.testimonials-navigation .arrow_icon {
    color: #C3D4E9;
    font-size: 20px;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    border: 1px solid #E9ECF6;
    background: #000000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.testimonials-navigation .arrow_icon:hover {
    background: #ffffff;
    color: #1D3378;
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonials-item {
        padding: 30px 20px;
    }


    .testimonials-navigation {
        position: relative;
        left: auto;
        transform: none;
        justify-content: center;
        margin-top: 40px;
    }

    .testimonials-swiper {
        padding-bottom: 0;
    }

    .testimonials-navigation .arrow_icon {
        height: 45px;
        width: 45px;
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .testimonials-item {
        padding: 25px 15px;

    }


    .testimonials-navigation {
        gap: 10px;
        margin-top: 35px;
    }

    .testimonials-navigation .arrow_icon {
        height: 40px;
        width: 40px;
        font-size: 16px;
    }
}

/* For very small screens */
@media (max-width: 375px) {
    .testimonials-navigation {
        gap: 8px;
    }

    .testimonials-navigation .arrow_icon {
        height: 38px;
        width: 38px;
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .testimonials-header-text {
        font-size: 47px;
    }
}

@media (max-width: 576px) {
    .testimonials-header-text {
        font-size: 44px;
    }
}

@media (max-width: 540px) {
    .testimonials-header-text {
        font-size: 35px;
    }
}

@media (max-width: 440px) {
    .testimonials-header-text {
        font-size: 29px;
    }
}

@media (max-width: 370px) {
    .testimonials-header-text {
        font-size: 24px;
    }
}

/* footer start */
.footer_area {
    background: #0C0E12;
    padding: 100px 0;
    margin-top: 120px;
}

.footer_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
}

.quiclink ul li {
    font-family: Inter;
    font-weight: 400;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: var(--text-color);
}

.quiclink ul {
    list-style: none;
}

.quiclink ul li {
    margin-bottom: 15px;
}

.quiclink ul li:first-child {
    margin-bottom: 25px;
}

.quiclink ul li a {
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0%;
    color: var(--muted);
    transition: all 0.3s ease;
}

.quiclink ul li a:hover {
    color: var(--text-color);
}

.quiclink ul li span {
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0%;
    color: var(--muted);
    display: block;
}

.footer_link_main_area {
    display: flex;
    justify-content: start;
    align-items: center;
    column-gap: 20px;
}

.footer_link_main_area a:hover img {
    filter:
        drop-shadow(0 0 5px rgba(255, 255, 255, 0.7)) drop-shadow(0 0 15px rgba(255, 255, 255, 0.5)) drop-shadow(0 0 25px rgba(255, 255, 255, 0.3));
}

.footer_social_links h1 {
    font-family: Inter;
    font-weight: 400;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: var(--text-color);
    margin-bottom: 25px;
}

.footer_wrapper .footer_d_border {
    width: 1px;
    background: #B5B6B72E;
}

.footer_description {
    font-family: Inter;
    font-weight: 400;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #000000;
    text-align: center;
}

@media (max-width: 768px) {
    .footer_wrapper {
        flex-wrap: wrap;
        row-gap: 40px;
    }

    .footer_logo {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .footer_wrapper .footer_d_border {
        width: 100%;
        height: 1px;
    }
}

@media (max-width: 540px) {

    .footer_social_links {
        width: 100%;
    }

    .footer_social_links h1 {
        text-align: center;
    }

    .footer_social_links .footer_link_main_area {
        justify-content: center;
        column-gap: 30px;
    }
}


/* pre loading area */

/* Preloader Styles */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a237e 0%, #311b92 25%, #4a148c 50%, #6a1b9a 75%, #8e24aa 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

/* Prevent scrolling when preloader is active */
body.no-scroll {
    overflow: hidden;
    height: 100vh;
}

/* Logo container with rotation */
.logo-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin-bottom: 30px;
}

.logo-icon {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    /* background: linear-gradient(135deg, #ffffff 0%, #e3f2fd 100%); */
    background: #0F1217;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    animation: pulse 2s infinite alternate;
    padding: 10px;
}

.logo-icon:before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shine 3s infinite linear;
}

.logo-icon i {
    font-size: 50px;
    background: linear-gradient(135deg, #1a237e, #6a1b9a);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    z-index: 2;
    position: relative;
}

/* Rotating ring around logo */
.rotating-ring {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top: 3px solid rgba(255, 255, 255, 0.8);
    animation: rotate 1.5s linear infinite;
}

/* Company name text */
.company-name {
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff, #bbdefb);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 15px;
    text-align: center;
    letter-spacing: 1px;
}

.company-name .ai {
    font-size: 2.5rem;
    color: #4fc3f7;
    font-weight: 800;
}

/* Loading text */
.loading-text {
    color: #e3f2fd;
    font-size: 1.2rem;
    margin-bottom: 25px;
    text-align: center;
    letter-spacing: 0.5px;
}

/* Loading dots animation */
.loading-dots {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #bbdefb;
    margin: 0 5px;
    animation: bounce 1.4s infinite ease-in-out both;
}

.dot:nth-child(1) {
    animation-delay: -0.32s;
}

.dot:nth-child(2) {
    animation-delay: -0.16s;
}

/* Progress bar */
.progress-container {
    width: 300px;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 20px;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #4fc3f7, #bbdefb);
    border-radius: 10px;
    transition: width 0.3s ease;
}

/* Loading percentage */
.percentage {
    color: #bbdefb;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 10px;
    text-align: center;
}

/* Animations */
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    100% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    }
}

@keyframes bounce {

    0%,
    80%,
    100% {
        transform: scale(0);
    }

    40% {
        transform: scale(1);
    }
}

@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

/* Main content styles (for demo) */
.main-content {
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
    display: none;
}

.main-content h1 {
    color: #1a237e;
    margin-bottom: 20px;
}

.main-content p {
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
}

/* Responsive styles */
@media (max-width: 768px) {
    .logo-container {
        width: 100px;
        height: 100px;
    }

    .logo-icon i {
        font-size: 40px;
    }

    .company-name {
        font-size: 2.2rem;
    }

    .company-name .ai {
        font-size: 2rem;
    }

    .progress-container {
        width: 250px;
    }
}

@media (max-width: 480px) {
    .logo-container {
        width: 80px;
        height: 80px;
    }

    .logo-icon i {
        font-size: 32px;
    }

    .company-name {
        font-size: 1.8rem;
    }

    .company-name .ai {
        font-size: 1.6rem;
    }

    .loading-text {
        font-size: 1rem;
    }

    .progress-container {
        width: 200px;
    }
}


/* lezy loading area start */
/* Lazy Loading Gray Animation Effect */
img.img-fluid,
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img.img-fluid.loaded,
img[loading="lazy"].loaded {
    opacity: 1;
}

/* Gray placeholder for lazy loading images */
.lazy-placeholder {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 4px;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

/* Specific placeholder styles for different image types */
.logo-icon .lazy-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.service-item-icon .lazy-placeholder,
.specialized-solutions-item-icon .lazy-placeholder {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
}

.brand-logo .lazy-placeholder {
    width: 100px;
    height: 40px;
}

.video-thumbnail-bg .lazy-placeholder {
    width: 100%;
    height: 400px;
    border-radius: 12px;
}

.bussiness_man img .lazy-placeholder {
    width: 100%;
    height: 500px;
    border-radius: 0 12px 12px 0;
}

/* Animation keyframes */
@keyframes loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Shimmer effect for cards */
.testimonials-item.loading,
.service-item.loading,
.specialized-solutions-item.loading {
    position: relative;
    overflow: hidden;
}

.testimonials-item.loading::before,
.service-item.loading::before,
.specialized-solutions-item.loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.2) 50%,
            transparent 100%);
    animation: shimmer 1.5s infinite;
    z-index: 1;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* Preloader specific styles - ensure it's on top */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a237e 0%, #311b92 25%, #4a148c 50%, #6a1b9a 75%, #8e24aa 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

/* lezy loading area end */


/* ===========Industries area start=========== */
.getStart {
    background: linear-gradient(270deg, #DB4E35 0%, #00C8F5 100%);
    border-radius: 10px;
    padding: 18px 25px;
    font-family: Poppins;
    font-weight: 700;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #ffffff;
    transition: all 0.3s ease;
}

.getStart:hover {
    background: linear-gradient(270deg, #00C8F5 0%, #DB4E35 100%);
    color: #ffffff;
    position: relative;
    z-index: 2;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: none;
    outline: none;
}

.heroImgborder {
    border-radius: 15px;
    padding: 15px;
    background: linear-gradient(90deg, #00C8F5 0%, #DB4E35 100%);
}

.heroImgborder img {
    border-radius: 10px;
}

/* ===========Industries area end=========== */

/* ===========solutions area start=========== */
.solution_service_area {
    margin-top: -490px;
}

.solution_icon_box {
    font-size: 25px;
    color: #ffffff;
    width: 56px;
    height: 56px;
    background: #0994DC;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-bottom: 20px;

}

/* ===========solutions area end=========== */

/* ==========about us area start========= */
.expert-team-area .service-header-text {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 61px;
    line-height: 120%;
    color: #1D3378;
}

.expert-team-area .service-slogan {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: #1D3378;
    margin: 0 auto;
}

.expert-team-area ul li {
    list-style: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 15px;
}

.expert-team-area ul li img {
    margin-right: 5px;
}

.expert-team-area ul li p {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: #1D3378;
}

.about_cta_bg {
    background: url('../images/about_us/bg_2.webp') no-repeat center center/cover;
    padding: 80px 0;
}

.cta-header-area .specialized-solutions-header-text {
    font-family: Poppins;
    font-weight: 700;
    font-style: Bold;
    font-size: 39px;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;
    color: #FFFFFF;

}

.cta-header-area .specialized-solutions-slogan {
    font-family: Poppins;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;
    color: #FFFFFF;

}

@media (max-width:992px) {
    .expert-team-area .service-header-text {
        font-size: 42px;
    }

    .cta-header-area .specialized-solutions-header-text {
        font-size: 20px;
    }
}

@media (max-width:420px) {
    .expert-team-area .service-header-text {
        font-size: 31px;
    }
}

/* ==========about us area end========= */

/* ============contact us area start============ */
.contact_us_area {
    margin-top: -490px;
}

.contact_form_wrapper {
    background: #FFFFFF;
    box-shadow: 0px 2px 13px 0px #0000001A;

    border-radius: 10px;
    padding: 50px 40px;
}

.partnerlogo_wrapper {
    background: #FFFFFF;
    box-shadow: 0px 2px 13px 0px #0000001A;
    border-radius: 10px;
    padding: 50px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 20px;
}

.input_feild {
    height: 45px;
    padding-top: 4px;
    padding-bottom: 4px;
    padding-left: 16px;
    border-radius: 4px;
    font-family: Poppins;
    font-weight: 400;
    font-style: Regular;
    font-size: 13px;
    line-height: 130%;
    letter-spacing: 0%;
    color: #49454F;
    border: 1px solid #79747E;

}

.input_feild label {
    left: 10px;
    top: -10px;
    background: #FFFFFF;
    padding: 0 4px;

}

.input_feild input {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;

}

.input_feild textarea {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    padding: 4px 0;
    resize: none;

}

.contact_card {
    padding: 20px;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0px 2px 13px 0px #0000001A;
    height: 100%;

}

.contact_card_icon {
    width: 56px;
    height: 42px;
    border-radius: 5px;
    overflow: hidden;
}

.contact_card_icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact_card h3 {
    font-family: Poppins;
    font-weight: 700;
    font-style: Bold;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: 0%;
    color: #1D3378;
    margin-bottom: 5px;
    margin-top: 20px;

}

.contact_card ul {
    padding: 0;
    margin: 0;
    margin-top: 30px;
}

.contact_card ul li {
    list-style: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 15px;
    column-gap: 10px;
}

.contact_card ul li:first-child {
    align-items: flex-start;
}

.contact_card ul li img {
    height: 24px;
    width: 24px;
}

.contact_card p {
    font-family: Poppins;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #1D3378;

}

@media (max-width: 992px) {
    .service-header-area .service-header-text {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .contact_form_wrapper {
        padding: 20px 20px;
    }
}

/* ============contact us area end============ */

/* ============partner area start=========== */

.partnerlogo_area {
    margin-top: -320px;
    padding: 0 22%;
}

/* .partnerlogo_wrapper {
    width: fit-content;
} */

.partner_with_us_area {
    background: url(../images/partners/contact_bg.webp) no-repeat center center/cover;
    padding: 100px 0;

}

.partner_with_us_title {
    font-family: Poppins;
    font-weight: 700;
    font-size: 39px;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    color: #FFFFFF;
}

.partner_with_us_area .get-started-btn {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 120%;
    color: #03344D;
    background: #fff;
    padding: 14px 25px;
    border-radius: 8px;
}

.why_partner_with_us_area {
    padding: 100px 0;
}

.why_partner_with_us_title {
    font-family: Poppins;
    font-weight: 700;
    font-size: 61px;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    color: #1D3378;
}

.why_partner_choose_slogan {
    font-family: Poppins;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    color: #1D3378;
    margin-top: 20px;
    max-width: 432px;
    margin-left: auto;
    margin-right: auto;
}

.why_partner_card {
    background: #FFFFFF;
    box-shadow: 0px 2px 13px 0px #0000001A;
    border-radius: 14px;
    padding: 40px 30px;
    height: 100%;
}

.why_partner_card img {
    margin-bottom: 20px;
}

.why_partner_card h3 {
    font-family: Poppins;
    font-weight: 700;
    font-style: Bold;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: 0%;
    color: #1D3378;
    margin-bottom: 10px;
}

.why_partner_card p {
    font-family: Poppins;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0%;
    color: #1D3378;
}

@media (max-width:768px) {
    .partner_with_us_title {
        font-size: 30px;
    }

    .why_partner_with_us_title {
        font-size: 35px;
    }

    .partnerlogo_area {
        padding: 0 5px;
    }

    .partnerlogo_wrapper {
        padding: 50px 10px;
    }
}

/* ============partner area end=========== */

/* =========team area start========== */
.teammemberCardWrapper {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.teammemberCard {
    flex-basis: calc(25% - 30px);
}

.teammemberCard .membar_image_box {
    width: 100%;
    height: 312px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.teammemberCardWrapper .teammemberCard:nth-child(even) .membar_image_box {
    height: 378px;
}

.teammemberCard .membar_image_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.teammemberCard .memberName {
    font-family: Poppins;
    font-weight: 400;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #2744A0;
    margin-bottom: 0;
}

.teammemberCard .memberRole {
    font-family: Poppins;
    font-weight: 400;
    font-style: Regular;
    font-size: 13px;

    line-height: 130%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #0994DC;
}

.teammemberCard .memberDetails {
    font-family: Poppins;
    font-weight: 500;
    font-size: 13px;

    line-height: 130%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #1D3378;
}

.teammemberCard .memberDetails a {
    font-family: Poppins;
    font-weight: 700;
    font-style: Bold;
    font-size: 13px;

    line-height: 130%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #1D3378;
}

@media (max-width:992px) {
    .teammemberCard {
        flex-basis: calc(50% - 30px);
    }
}

@media (max-width:576px) {
    .teammemberCard {
        flex-basis: 100%;
    }
}

/* =========team area end========== */

/* ==========careers area start======== */
.whatwelookinglist {
    padding: 0;
    margin: 0;
}

.whatweBg {
    background: url('../images/whatweBg.webp') no-repeat center center/cover;
    overflow: hidden;
}

.whatwelookinglist li {
    list-style: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 15px;
    column-gap: 10px;
    font-family: Poppins;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: var(--text-color);
}

.whatwelookinglist li span {
    display: block;
}

.jointeambutton:hover {
    color: #03344D !important;
}

.open-position-title {
    font-family: Poppins;
    font-weight: 700;
    font-style: Bold;
    font-size: 61px;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    color: #1D3378;
}

.open-position-title span {
    color: #0994DC;
}

.open-position-description {
    font-family: Poppins;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    color: #1D3378;
    max-width: 432px;
    margin: 0 auto;
}

.positonCard {
    background: #FFFFFF;
    box-shadow: 0px 2px 13px 0px #0000001A;
    border-radius: 14px;
    padding: 30px 20px;
    height: 100%;
    transition: all 0.3s ease;
}

.positonCard .logo_box {
    width: 56px;
    height: 56px;
    overflow: hidden;
}

.card-title-content .position-card-title {
    font-family: Poppins;
    font-weight: 400;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: 0%;
    color: #191F33;
}

.card-title-content .position-card-title span {
    font-family: Inter;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0%;
    color: #03344D;
    background: #E6F4FC;
    padding: 4px 8px;
    border-radius: 4px;
    margin-left: 10px;
}

.position-card-location {
    font-family: Poppins;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0%;
    color: #767F8C;

}

.card-title-content img {
    width: 18px;
    height: 18px;

}

.position-card-button .applyNowBtn {
    font-family: Poppins;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0%;
    color: #0A65CC;
    padding: 12px 18px;
    background: #E6F4FC;
    border-radius: 6px;
    width: 100%;
    display: block;
    text-align: center;
}

@media (max-width:992px) {
    .open-position-title {
        font-size: 35px;
    }
}

@media (max-width:370px) {
    .positionCard_header {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}

/* ==========careers area end======== */


/* ==========many back grantee start========= */
.refund-process-area {
    background: #ffffff;
}

.refundProcess h1 {
    font-family: Poppins;
    font-weight: 700;
    font-style: Bold;
    font-size: 49px;
    line-height: 120%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #2744A0;
}

.refundProcess h1 span {
    color: #0994DC;
}

.refundProcess p {
    font-family: Poppins;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #0E1838;
    margin: 20px 0;
}

.condition_box {
    position: relative;
    padding-left: 40px;
    margin-left: 20px;
    border-left: 1px dashed #0994DC;
    padding-bottom: 30px;
}

.condition_SL {
    position: absolute;
    left: -20px;
    top: -5px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 40px;
    color: #ffffff;
    background: #0994DC;
    border-radius: 50%;
}

.condition_box:last-child {
    border-left: none;
    padding-bottom: 10px;
}

.condition_box h2 {
    font-family: Poppins;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #2744A0;
}

.condition_box p {
    font-family: Poppins;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0%;
    color: #0E1838;
}

.what_we_coverd {
    background: #E6F4FC;
    border-radius: 20px;
    padding: 20px;
    height: 100%;
}

.what_we_coverd h1 {
    font-family: Poppins;
    font-weight: 700;
    font-style: Bold;
    font-size: 31px;
    line-height: 120%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #2744A0;
    margin-bottom: 20px;
}

.what_we_coverd h1 span {
    color: #0994DC;
}

.what_we_coverd ul {
    padding: 0;
    border-bottom: 1px solid #B3DEF4;
    padding-bottom: 20px;
}

.what_we_coverd ul:last-child {
    border-bottom: none;
    padding-bottom: 0;
    padding-top: 20px;
}

.what_we_coverd ul li {
    list-style: none;
    display: flex;
    justify-content: start;
    align-items: center;
    column-gap: 10px;
    margin-bottom: 15px;
}

.what_we_coverd ul li img {
    height: 20px;
    width: 20px;
    margin-top: -9px;
}

.what_we_coverd ul li h2 {
    font-family: Poppins;
    font-weight: 400;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #2744A0;
}

.what_we_coverd ul li p {
    font-family: Poppins;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #000000;
}

.what_we_coverd ul li span {
    height: 5px;
    width: 5px;
    border-radius: 50%;
    flex-shrink: 0;
    display: block;
    background: #000000;
}

.what_we_coverd ul li {
    padding-left: 8px;
}

.what_we_coverd ul li:first-child {
    padding-left: 0;
}

@media (max-width:540px) {
    .refundProcess h1 {
        font-size: 29px;
    }
}

@media (max-width: 440px) {
    .service-header-area .service-header-text {
        font-size: 23px;
    }
}

/* ==========many back grantee end========= */

/* ==========Pricing Page Styles========= */
/* Pricing Toggle Styles */
.pricing-toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;

}

.toggle-switch {
    position: relative;
    width: 44px;
    height: 24px;
    background-color: #34C759;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.toggle-circle {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background-color: #ffffff;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.toggle-switch.active .toggle-circle {
    transform: translateX(21px);
}

.toggle-label {
    font-family: Inter;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    color: #E9ECF6;

}

/* Pricing Cards Styles */
.pricing-section {
    padding: 40px 0 40px;
}

.pricing-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 0 auto;
}

.pricing-card {
    background-color: #E6F4FC;
    border: 1px solid #0994DC;
    border-radius: 16px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0px 4px 15px rgba(9, 148, 220, 0.1);
    position: relative;
}

.current-plan-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #0994DC;
    color: #E9ECF6;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 11.5px;
    line-height: 100%;
    letter-spacing: 0%;
    padding: 12px 12px;
    border-radius: 25px;
    text-transform: uppercase;

}

.pricing-card:hover {
    background-color: #0994DC;
    box-shadow: 0px 10px 25px 0px #0857CA4F;
    transform: translateY(-5px);
}

.pricing-card:hover .pricing-title,
.pricing-card:hover .pricing-subtitle,
.pricing-card:hover .pricing-price,
.pricing-card:hover .pricing-period,
.pricing-card:hover .pricing-feature {
    color: #FFFFFF;
}

.pricing-card:hover .feature-checkmark {
    background-color: #FFFFFF;
}
.pricing-card:hover .current-plan-badge {
    background-color: #FFFFFF;
    color: #0994DC;
}

.pricing-card:hover .feature-checkmark i {
    color: #0994DC;
}

.pricing-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #333;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}
.pricing-amount {
    white-space: nowrap;
}

.pricing-price {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 45px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #191D23;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.pricing-period {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    color: #4B5768;
    margin-bottom: 25px;
    transition: color 0.3s ease;
}

.pricing-btn {
    width: 100%;
    padding: 15px 25px;
    border-radius: 8px;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary-pricing {
    background-color: #0994DC;
    color: #FFFFFF;
}

.btn-primary-pricing:hover {
    background-color: #0770a8;
    color: #FFFFFF;
}

.btn-outline-pricing {
    background-color: transparent;
    color: #0994DC;
    border: 2px solid #0994DC;
}

.btn-outline-pricing:hover {
    background-color: #0994DC;
    color: #FFFFFF;
}

.pricing-card:hover .btn-outline-pricing {
    background-color: #FFFFFF;
    color: #0994DC;
    border-color: #FFFFFF;
}

.pricing-card:hover .btn-primary-pricing {
    background-color: #FFFFFF;
    color: #0994DC;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.pricing-feature {
    display: flex;
    align-items: flex-start; /* important */
    gap: 12px;
    margin-bottom: 16px;
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;   /* FIXED */
    letter-spacing: 0%;
    color: #191D23;
    transition: color 0.3s ease;
}

.feature-checkmark {
    min-width: 32px;
    min-height: 32px;
    width: 32px;
    height: 32px;
    background-color: #B3DEF4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.feature-checkmark i {
    color: #0994DC;
    font-size: 14px;
    transition: color 0.3s ease;
}

.pricing-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    color: #666;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.pricing-header-area {
    text-align: center;
    margin-bottom: 20px;
}

.pricing-header-text {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 48px;
    color: #333;
    margin-bottom: 15px;
}

.pricing-slogan {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}
.h64{
    height: 64px;
}

@media (max-width: 768px) {
    .pricing-cards-wrapper {
        grid-template-columns: 1fr;
    }
    
    .pricing-header-text {
        font-size: 36px;
    }
    
    .pricing-price {
        font-size: 42px;
    }
}

/* ==========Pricing Page Styles End=========*/

/* ==========Register Page Styles Start=========*/

* {
    margin: 0;
    padding: 0;
    outline: none;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #FFFFFF;
    color: #333;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Manrope', sans-serif;
    margin: 0;
    padding: 0;
}

p {
    line-height: 1.6;
    margin: 0 0 1em 0;
}

.auth_wrapper {
    padding-bottom: 20px;
}

.auth_hero {
    width: 100%;
    padding: 118px 10px 321px 10px;
    background-image: url('/static/img/auth_bg.webp');
    background-size: cover;
    background-position: center;
}

.auth_hero h2 {
    font-family: Poppins;
    font-weight: 600;
    font-size: 60px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #ffffff;
    text-align: center;
    margin-bottom: 7px;
}

.auth_hero p {
    font-family: Poppins;
    font-weight: 300;
    font-size: 22px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #ffffff;
    text-align: center;
}

.auth_area {
    max-width: 1175px;
    width: 100%;
    margin: -290px auto 0 auto;
    padding: 20px 40px;
    background: #FFFFFF;
    box-shadow: 0px 4px 43px 0px #00000021;
    border-radius: 40px;
}

.login_banner {
    width: 100%;
}

.auth_form {
    width: 100%;
}

.auth_form h1 {
    font-family: Poppins;
    font-weight: 500;
    font-size: 39px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #000000;
    margin-bottom: 27px;
    text-transform: capitalize;
}

.form_group {
    margin-bottom: 10px;
}

.form_group label {
    font-family: Poppins;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #000000;
}

.form_group input {
    width: 100%;
    padding: 15px 20px;
    margin-top: 8px;
    margin-bottom: 20px;
    border: 1px solid #ADADAD;
    border-radius: 8px;
    font-family: Poppins;
    font-weight: 300;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #000000;

}

.form_group input:focus {
    border: 1px solid #4285F4;
}

.authbutton {
    font-family: Poppins;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    background: linear-gradient(270deg, #DB4E35 0%, #00C8F5 100%);
    color: #FFFFFF;
    padding: 15px 0;
    width: 100%;
    border: none;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.authbutton:hover {
    cursor: pointer;
    opacity: 0.9;
}

.auth_form p {
    font-family: Poppins;
    font-weight: 400;
    font-size: 16.25px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    color: #8D8D8D;
    margin-top: 19px;
}

.auth_form p a {
    font-weight: 700;
    color: #0994DC;
    text-decoration: none;
}

.premiumcard {
    background: #ffffff;
    box-shadow: 0px 10px 20px 0px #0000001F;
    border-radius: 12px;
    padding: 15px;
}

.premiumPlanlist h1 {
    font-family: Poppins;
    font-weight: 500;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #000000;
    margin-bottom: 40px;
    border-bottom: 1px solid #BCC5E2;
    padding-bottom: 20px;
}

.premiumPlanlist h1 span {
    color: #0994DC;
}

.premiumPlanlist ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.premiumPlanlist ul li {
    margin-bottom: 15px;
}

.premiumPlanlist ul li:last-child {
    margin-bottom: 0;
}

.premiumPlanlist ul li img {
    height: 32px;
    width: 32px;
    flex-shrink: 0;
    margin-right: 10px;
}

.premiumPlanlist ul li p {
    font-family: Manrope;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #03344D;
    margin: 0;
}

@media (max-width: 1080px) {
    .auth_area {
        padding: 40px 15px;
    }
}

@media (max-width: 992px) {
    .auth_area {
        padding: 40px 15px;
    }

    .auth_register .auth_form h1 {
        font-size: 32px;
    }

    .premiumPlanlist h1 {
        font-size: 27px;
    }

    .auth_hero h2 {
        font-size: 54px;
    }
}



@media (max-width: 576px) {
    .auth_area {
        padding: 40px 10px;
        border-radius: 10px;
    }

    .auth_hero h2 {
        font-size: 43px;
    }

    .premiumPlanlist h1 {
        font-size: 25px;
    }
}

@media (max-width: 440px) {
    .auth_hero h2 {
        font-size: 35px;
        margin-bottom: 5px;
    }

    .auth_register .auth_form h1 {
        font-size: 24px;
        margin-top: 10px;
    }

    .premiumPlanlist h1 {
        font-size: 22px;
    }

    .premiumPlanlist ul li img {
        height: 24px;
        width: 24px;
    }

    .premiumPlanlist ul li p {
        font-size: 13px;
    }
}

/* ==========Register Page Styles End=========*/