@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

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

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Lato' !important;
    background-color: #fff;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

.container-scroller {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

section {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

a {
    text-decoration: none !important;
    color: #29363F !important;
}

.navbar {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 20%, #f0f4ff 40%, #e8f0ff 60%, #e0efff 80%, #d8eaff 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: sticky !important;
    top: 0px;
    z-index: 12;
    box-shadow: none;
    border-bottom: none;
    padding: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
    max-height: 80px;
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 116, 179, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.navbar .navbarWrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 80px;
    max-height: 80px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

@media screen and (max-width: 575px) {
    .navbar .navbarWrapper {
        height: 62px;
    }
}

.logo {
    width: auto;
    height: 50px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.navbar .menuListWrapper {
    display: flex;
    padding: 0px;
    margin: 0;
    overflow: hidden;
    max-height: 80px;
}

.navbar .listItems {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0px;
    gap: 40px;
    margin: 0px;
}

.navbar ul li {
    list-style: none;
    cursor: pointer;
    position: relative;
}

.navbar ul li a {
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 0;
    position: relative;
}

.navbar ul li a .navChevron {
    font-size: 10px;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.navbar ul li a:hover {
    color: #0074b3;
}

.navbar ul li a:hover .navChevron {
    opacity: 1;
    transform: translateY(2px);
}

.navbar ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0074b3 0%, #3b82f6 100%);
    transition: width 0.3s ease;
}

.navbar ul li a:hover::after {
    width: 100%;
}

.navbar .dropdown-toggle {
    background-color: transparent !important;
    border: none;
    margin: 0;
    padding: 8px 0;
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar .dropdown-toggle::after {
    font-size: 10px;
    margin-left: 4px;
}

.navbar .dropdown-toggle:hover {
    color: #0074b3;
}

.navbar .dropdown-toggle:focus {
    background-color: transparent !important;
    border: none;
    box-shadow: none;
    color: #0074b3;
}

.navbar hr {
    margin: 0px !important;
    padding: 0;
}

.navbar .hamburg {
    display: none;
    font-size: 30px;
}

.navbar .hamburg i {
    font-size: 22px;
}

.navbar .loginBtnsWrapper {
    display: flex;
    gap: 15px;
    align-items: center;
    overflow: hidden;
    max-height: 80px;
}

.navbar .loginBtnsWrapper .commonBtn {
    margin-top: 0;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.navbar .loginBtnsWrapper .commonBtn.redirect-login {
    background: linear-gradient(135deg, #0074b3 0%, #0074b3 50%, #3b82f6 100%);
    color: white !important;
    box-shadow: 0 4px 15px rgba(0, 116, 179, 0.3);
}

.navbar .loginBtnsWrapper .commonBtn.redirect-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 116, 179, 0.4);
}

.navbar .loginBtnsWrapper .commonBtn#trialBtn,
.navbar .loginBtnsWrapper .commonBtn:not(.redirect-login) {
    background: white;
    color: #1a1a1a !important;
    border: 2px solid;
    border-image: linear-gradient(135deg, #0074b3 0%, #3b82f6 100%) 1;
    position: relative;
    overflow: hidden;
}

.navbar .loginBtnsWrapper .commonBtn#trialBtn::before,
.navbar .loginBtnsWrapper .commonBtn:not(.redirect-login)::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0074b3 0%, #3b82f6 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.navbar .loginBtnsWrapper .commonBtn#trialBtn:hover::before,
.navbar .loginBtnsWrapper .commonBtn:not(.redirect-login):hover::before {
    left: 0;
}

.navbar .loginBtnsWrapper .commonBtn#trialBtn:hover,
.navbar .loginBtnsWrapper .commonBtn:not(.redirect-login):hover {
    color: white !important;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 116, 179, 0.25);
}

.commonBtn {
    background-color: var(--primary-color);
    color: white !important;
    border: none;
    padding: 12px 30px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    margin-top: 12px;
    transition: background-color 0.3s;
}

.commonBtn-reset {
    background-color: #6c757d;
    color: white !important;
    border: none;
    padding: 12px 30px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    margin-top: 12px;
    transition: background-color 0.3s;
    margin-right: 1rem;
}
.button-potision {
    display: flex;
    justify-content: flex-end;
}

@media screen and (min-width: 1200px) and (max-width:1399px) {
    .navbar .listItems {
        gap: 30px;
    }

    .navbar .loginBtnsWrapper .commonBtn {
        padding: 10px 24px;
        font-size: 14px;
    }
}

.offcanvas {
    width: 70% !important;
}

@media screen and (max-width: 1199px) {

    .navbar .listItems,
    .navbar .loginBtnsWrapper {
        display: none;
    }

    .navbar .hamburg {
        display: block;
    }

    .navbar .offcanvas .listItems {
        display: block;
        margin-top: -16px;
    }

    .navbar .offcanvas .listItems li {
        margin: 20px 0px;
    }

    .navbar .dropdownListItem {
        margin: 0px !important;
    }

    .navbar .navLogo img {
        width: auto;
        height: 50px;
    }

    .mySwiper .swiperImage {
        height: 400px;
    }

}

/* navbar end here  */

.heroSection {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 20%, #f0f4ff 40%, #e8f0ff 60%, #e0efff 80%, #d8eaff 100%);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.heroWaveBg {
    position: relative;
    padding: 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 20%, #f0f4ff 40%, #e8f0ff 60%, #e0efff 80%, #d8eaff 100%);
}

.heroWaveBg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 116, 179, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 116, 179, 0.03) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.heroWaveBg::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 116, 179, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.heroContent {
    position: relative;
    z-index: 1;
    padding: 100px 0 80px 0;
}

.heroSubtitle {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: #1462a0;
    background: rgba(20, 98, 160, 0.1);
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.heroTitle {
    font-size: 56px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.heroDescription {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 90%;
    font-weight: 400;
}

.heroButtons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btnPrimary {
    background: linear-gradient(135deg, #0074b3 0%, #0074b3 50%, #3b82f6 100%);
    color: white;
    border: none;
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(0, 116, 179, 0.3);
    position: relative;
    overflow: hidden;
}

.btnPrimary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btnPrimary:hover::before {
    width: 400px;
    height: 400px;
}

.btnPrimary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 116, 179, 0.4);
}

.btnSecondary {
    background: white;
    color: #1a1a1a;
    border: 2px solid;
    border-image: linear-gradient(135deg, #0074b3 0%, #3b82f6 100%) 1;
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.btnSecondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
        width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0074b3 0%, #3b82f6 100%);
    transition: left 0.4s ease;
    z-index: -1;
}

.btnSecondary:hover::before {
    left: 0;
}

.btnSecondary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 116, 179, 0.25);
    color: white;
    text-decoration: none;
    border-color: transparent;
}

.heroImageWrapper {
    position: relative;
    z-index: 1;
}

.heroImage {
    position: relative;
    animation: floatImage 6s ease-in-out infinite;
}

@keyframes floatImage {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.heroImage img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.heroSpeechBubble {
    position: absolute;
    top: 15%;
    right: 8%;
    background: white;
    padding: 18px 22px;
    border-radius: 18px;
    border: 1px solid rgba(0, 116, 179, 0.2);
    box-shadow: 0 10px 40px rgba(0, 116, 179, 0.15);
    max-width: 260px;
    z-index: 10;
    animation: bubbleFloat 4s ease-in-out infinite;
    display: flex;
    align-items: center;
    gap: 10px;
}

.heroSpeechBubble::before {
    content: '';
    position: absolute;
    bottom: -12px;
    right: 25px;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid white;
}

.heroSpeechBubble::after {
    content: '';
    position: absolute;
    bottom: -13px;
    right: 25px;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid rgba(0, 116, 179, 0.2);
}

.bubbleIcon {
    font-size: 20px;
    line-height: 1;
}

.heroSpeechBubble span {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
    display: block;
    flex: 1;
}

@keyframes bubbleFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.02);
    }
}

.heroBadge {
    position: absolute;
    bottom: 12%;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.3);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
    }
    50% {
        transform: translateX(-50%) scale(1.05);
    }
}

.badgeIcon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.badgeIcon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.badgeText span {
    font-size: 13px;
    font-weight: 700;
    color: white;
    display: block;
}

@media screen and (max-width: 991px) {
    .heroContent {
        padding: 80px 0 60px 0;
    }
    
    .heroWaveBg::before,
    .heroWaveBg::after {
        opacity: 0.5;
    }
    
    .heroTitle {
        font-size: 42px;
    }
    
    .heroDescription {
        font-size: 16px;
        max-width: 100%;
    }
    
    .heroButtons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btnPrimary,
    .btnSecondary {
        width: 100%;
        text-align: center;
    }
}

.heroSection .heroImg {
    position: relative;
}


@media screen and (max-width: 1199px) {
    .heroSection {
        padding: 60px 0;
    }
    
    .heroImageWrapper {
        margin-top: 40px;
    }
}

@media screen and (max-width: 767px) {
    .heroContent {
        padding: 60px 0 50px 0;
    }
    
    .heroTitle {
        font-size: 32px;
        letter-spacing: -1px;
    }
    
    .heroSubtitle {
        font-size: 14px;
        padding: 6px 16px;
    }
    
    .heroDescription {
        font-size: 15px;
    }
    
    .heroSpeechBubble,
    .heroBadge {
        display: none;
    }
    
    .btnPrimary,
    .btnSecondary {
        padding: 16px 35px;
        font-size: 15px;
    }
}

.commonMT {
    margin-top: 0;
}

.flex_column_start {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 16px;
    text-align: start;
    padding-top: 120px;
}

.commonTag {
    
    color: var(--secondary-color1);
    padding: 8px;
    border-radius: 4px;
    width: max-content;
}

.commonTitle {
    font-weight: 700;
    color: var(--secondary-color);
}

@media screen and (max-width: 1199px) {
    .heroSection {
        padding: 30px;
    }

    .flex_column_start {
        padding-top: 0px;
    }


}

@media screen and (max-width: 767px) {
    .commonTitle {
        font-size: 30px;
    }

    .commonMT {
        margin-top: 0;
    }
}

.commonDesc {
    font-size: 45px;
    font-weight: 700;
    color: #000000;
}

.commonText {
    color: #898989;
    font-size: 18px;
    font-weight: 700;
}

@media screen and (max-width: 575px) {

    .heroSection {
        padding: 30px 0px;
    }

    .commonTag {
        font-size: 14px;
        padding: 6px;
    }

    .commonTitle {
        font-size: 24px;
    }

    .commonSpan {
        font-size: 14px;
    }

    .commonDesc {
        font-size: 22px;
    }

    .commonText {
        font-size: 16px;
    }
}

.heroSection .topRated {
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: absolute;
    left: 118px;
    bottom: 76px;
    padding: 12px;
    border: none;
    border-radius: 12px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.heroSection .textWrapper {
    box-shadow: 0px 0px 28px 0px #00000040;
    padding: 6px 18px;
    border-radius: 15px;
    position: absolute;
    top: 182px;
    left: auto;
    right: 0px;
    z-index: 1;
    background: white;
    width: 330px;
    animation: textBox alternate-reverse 3s infinite;
}

.heroSection .textWrapper span {
    color: #000;
    font-weight: 700;
}

.heroSection .textWrapper span span {
    color: var(--primary-color);
}

@keyframes textBox {
    0% {
        top: 175px;
    }

    50% {
        top: 190px;
    }

    100% {
        top: 182px;
    }

}

.heroSection .topRated img {
    width: 56px;
}

.heroSection .topRated div:first-child {
    border-radius: 50px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    height: 88px;
    width: 88px;
    text-align: center;
    display: flex;
}

.heroSection .topRated span {
    display: block;
    width: 120px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
}

@media screen and (min-width:992px) and (max-width: 1199px) {
    .heroSection .heroImg img {
        width: 55%;
    }

    .heroSection .topRated {
        left: 280px;
    }

    .heroSection .textWrapper {
        right: 138px;
    }
}

@media screen and (max-width: 767px) {

    .heroSection .heroImg img {
        margin-top: 50px;
    }

    .heroSection .topRated,
    .heroSection .textWrapper {
        display: none;
    }
}

/* heroSection ends here  */

.sectionTitle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 12px;
}

.sectionTitle::before {
    content: '';
    position: absolute;
    bottom: -15px;
    width: 10px;
    height: 10px;
    border-radius: 50px;
    background-color: var(--primary-color);
    z-index: 1;
}

.sectionTitle::after {
    content: '';
    position: absolute;
    bottom: -12px;
    width: 50%;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 6px;
}

.sectionTitle span {
    color: #000000;
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    width: 60%;
}


@media screen and (max-width: 991px) {
    .sectionTitle span {
        width: 100%;
    }
}

.sectionTitle img {
    width: 30%;
    margin-top: 8px;
}

.featuresGradientBg {
    background: linear-gradient(135deg, #f0f4ff 0%, #e8f0ff 30%, #e0efff 60%, #d8eaff 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.featuresGradientBg::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 116, 179, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.featuresGradientBg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.featuresGradientBg .container {
    position: relative;
    z-index: 1;
}

.featuresHorizontalBar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    margin-top: 60px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    gap: 0;
    background: #f8f9fa;
}

.featurePanel {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    min-height: 180px;
}

.featurePanel:nth-child(3n) {
    border-right: none;
}

.featurePanel:nth-child(n+7) {
    border-bottom: none;
}

.featurePanel-1 {
    background: linear-gradient(135deg, #1462a0 0%, #33a5dd 100%);
}

.featurePanel-2 {
    background: linear-gradient(135deg, #1462a0 0%, #33a5dd 100%);
}

.featurePanel-3 {
    background: linear-gradient(135deg, #1462a0 0%, #33a5dd 100%);
}

.featurePanel-4 {
    background: linear-gradient(135deg, #1462a0 0%, #33a5dd 100%);
}

.featurePanel:hover {
    background: #1a1a1a !important;
    transform: translateY(-5px) scale(1.02);
    z-index: 10;
    box-shadow: 0 15px 40px rgba(26, 26, 26, 0.5);
}

.featurePanel:hover .featureIcon {
    transform: scale(1.15) rotate(5deg);
}

.featurePanel:hover .featureTitle {
    transform: translateX(5px);
}

.featureIcon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.featureIcon img {
    width: 60px;
    height: 60px;
    filter: brightness(0) invert(1);
    opacity: 1;
    transition: all 0.3s ease;
}

.featureTitle {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.featureTitle span {
    color: #ffffff;
    display: block;
}

.featureDescription {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
    flex: 1;
    display: none;
}

.featuresButtonWrapper {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.featuresAllInOneBtn {
    background: white;
    color: #0074b3;
    border: 2px solid #0074b3;
    padding: 14px 40px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.featuresAllInOneBtn:hover {
    background: #0074b3;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 116, 179, 0.3);
}

.features .cardWrapper {
    margin-top: 50px;
    gap: 20px 0px;
}

.features .card {
    border: 1px solid lightgray;
    padding: 12px 24px;
    border-radius: 10px;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.features .card::before {
    content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    height: 100%;
    width: 8px;
    background-color: var(--primary-color);
}

.features .card img {
    width: 40px;
}

.features .card span {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
}

.features .cardWrapper .commonBtn {
    display: block;
    margin: auto;
    margin-top: 20px;
    font-size: 18px;
    font-weight: 700;
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
    .sectionTitle img {
        width: 60%;
    }
}

@media screen and (max-width: 991px) {
    .sectionTitle img {
        width: 60%;
    }
}

@media screen and (max-width: 991px) {
    .featuresHorizontalBar {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        margin-top: 40px;
    }
    
    .featurePanel {
        padding: 40px 30px;
    }
    
    .featurePanel:nth-child(3n) {
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .featurePanel:nth-child(2n) {
        border-right: none;
    }
    
    .featuresGradientBg {
        padding: 40px 0;
    }
}

@media screen and (max-width: 767px) {
    .featuresHorizontalBar {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .featurePanel {
        padding: 35px 25px;
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .featurePanel:last-child {
        border-bottom: none;
    }
}

@media screen and (min-width: 576px) and (max-width: 767px) {
    .features .cardWrapper {
        margin-top: 40px;
    }
    
    .featurePanel {
        padding: 35px 25px;
    }
    
    .featureTitle {
        font-size: 20px;
    }
    
    .featureDescription {
        font-size: 13px;
    }
}

@media screen and (max-width: 575px) {
    .sectionTitle span {
        font-size: 18px !important;
    }

    .sectionTitle img {
        width: 100%;
    }

    .features .cardWrapper {
        margin-top: 30px;
    }
    
    .featuresGradientBg {
        padding: 40px 0;
    }
    
    .featuresHorizontalBar {
        margin-top: 30px;
    }
    
    .featurePanel {
        padding: 30px 20px;
    }
    
    .featureTitle {
        font-size: 18px;
    }
    
    .featureDescription {
        font-size: 12px;
    }
    
    .featuresAllInOneBtn {
        padding: 12px 30px;
        font-size: 12px;
    }
}

/* features ends here  */

.swiperSect .card {
    border: none;
}

.swiperSect .card .normalImg {
    filter: grayscale(100);
}

.swiperSect .card:hover .normalImg {
    filter: grayscale(0);
}

.swiperSect .card img{
    width: 100%;
    height: 100px;
    object-fit: contain;
}

/* swiperSect ends here  */

.schoolLogosSection {
    background: linear-gradient(135deg, #f0f4ff 0%, #e8f0ff 30%, #e0efff 60%, #d8eaff 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.schoolLogosSection::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 116, 179, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.schoolLogosSection .container {
    position: relative;
    z-index: 1;
}

.schoolLogoCard {
    border-radius: 20px;
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    height: 100%;
    min-height: 220px;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.schoolLogoCard-1 {
    background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
}

.schoolLogoCard-2 {
    background: linear-gradient(135deg, #1462a0 0%, #33a5dd 50%, #d0a449 100%);
}

.schoolLogoCard-3 {
    background: linear-gradient(135deg, #3b82f6 0%, #0074b3 50%, #0074b3 100%);
}

.schoolLogoCard::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    transition: all 0.6s ease;
    opacity: 0;
}

.schoolLogoCard:hover::before {
    opacity: 1;
    transform: scale(1.2);
}

.schoolLogoCard:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.3);
}

.schoolLogoWrapper {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
}

.schoolLogoCard:hover .schoolLogoWrapper {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.15) rotate(5deg);
    border-color: rgba(255, 255, 255, 0.5);
}

.schoolLogoWrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.schoolLogoCard:hover .schoolLogoWrapper img {
    transform: scale(1.1);
}

.schoolName {
    font-size: 16px;
    font-weight: 700;
    color: white;
    text-align: center;
    line-height: 1.4;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.schoolLogoCard:hover .schoolName {
    transform: translateY(-2px);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.school-logo-owl-carousel .owl-item {
    padding: 10px;
}

.school-logo-owl-carousel .owl-stage {
    display: flex;
    align-items: stretch;
}

.school-logo-owl-carousel .item {
    height: 100%;
    display: flex;
}

@media screen and (max-width: 767px) {
    .schoolLogosSection {
        padding: 60px 0;
    }
    
    .schoolLogoCard {
        padding: 25px 20px;
        min-height: 180px;
    }
    
    .schoolLogoWrapper {
        width: 100px;
        height: 100px;
    }
    
    .schoolName {
        font-size: 14px;
    }
}

.counterSect .counterBG {
    background-image: url('../../landing_page_images/counterBG.png');
    background-repeat: no-repeat;
    background-size: cover;
    padding: 26px;
    gap: 20px 0px;
}

.counterSect .card {
    border: none;
    align-items: center;
    background: transparent;
    justify-content: center;
}

.counterSect .card div:first-child {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.counterSect .card div:first-child span {
    color: #000000;
    font-size: 50px;
    font-weight: 700;
    animation-duration: 1s;
    animation-delay: 0s;
}


.counterSect .card .text {
    color: #00000080;
    font-size: 26px;
    font-weight: 700;
}

@media screen and (max-width: 575px) {
    .counterSect .card div:first-child span {
        font-size: 30px;
    }

    .counterSect .card .text {
        font-size: 18px;
    }
}

/* couterSect ends here  */

.sectionTitle .greenText {
    color: #05BB6C;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
}

.tabsContainer {
    margin-top: 50px !important;
    position: relative;
}

.tabsWrapper {
    position: relative;
    max-height: 65vh;
    overflow-y: scroll;
    overflow-x: hidden;
}

/* width */

.tabsWrapper::-webkit-scrollbar {
    width: 6px;
}

/* Track */
.tabsWrapper::-webkit-scrollbar-track {
    border-radius: 10px;
}

/* Handle */
.tabsWrapper::-webkit-scrollbar-thumb {
    background: var(--secondary-color1);
    border-radius: 10px;
}

.tabsWrapper::after {
    content: '';
    position: absolute;
    top: 0px;
    left: auto;
    right: -14px;
    width: 4px;
    height: 100%;
    background-color: #dee2e6;
    border-radius: 6px;
}


.tabs {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-right: 30px;
    word-wrap: break-word;
}

.tab {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.tab span {
    pointer-events: none;
}

.tab span:first-child {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
}

.tab span:last-child {
    font-size: 16px;
    color: gray;
}

@media screen and (max-width: 575px) {
    .tab span:first-child {
        font-size: 16px;
    }

    .tab span:last-child {
        font-size: 14px;
    }
}

.active span {
    color: var(--secondary-color) !important;
}

.tab:hover {
    background-color: #E5F8F0;
}

.tabs .active {
    background-color: #E5F8F0;
    position: relative;
}

.tabs .active::after {
    content: '';
    position: absolute;
    top: 0px;
    left: auto;
    right: -14px;
    width: 4px;
    height: 100%;
    background-color: var(--primary-color);
    z-index: 1;
    border-radius: 12px;
}

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

.content-container {
    flex: 1;
    padding: 20px;
}

.content {
    display: none;
}

.content.active {
    display: block;
}


.content img {
    width: 100%;
}


.studyManagement .content img {
    height: 80vh;
    object-fit: contain;
}


@media screen and (max-width: 991px) {
    .content img {
        margin-top: 20px;
    }

    .reverseWrapper {
        flex-direction: column-reverse;
    }

    .studyManagement .content img {
        height: auto;
    }
}

.right-feature-section,
.studyManagement {
    padding: 50px 0px;
    background-color: #F6FFFB;
}

/* adminFeatures ends here  */

.whyBestBg {
    background: #ffffff;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.whyBestBg::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.whyBestBg .container {
    position: relative;
    z-index: 1;
}

.whyBestContent {
    position: relative;
    z-index: 1;
}

.whyBestLabel {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    background: #e0f2fe;
    padding: 8px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.whyBestHeading {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -1px;
}


.whyBestDescription {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: 400;
}

.whyBestFeatureList {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 30px;
}

.featureListColumn {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.featureListItem {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
    transition: all 0.3s ease;
}

.featureListItem:hover {
    transform: translateX(5px);
    color: #0074b3;
}

.featureCheckIcon {
    color: #0074b3;
    font-size: 18px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 116, 179, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.whyBestImageWrapper {
    position: relative;
    z-index: 1;
}

.whyBestImage {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.whyBestImageWrapper:hover .whyBestImage {
    transform: scale(1.02);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.whyBest .whyBestTextWrapper {
    position: relative;
    overflow: hidden;
}

.whyBest .whyBestTextWrapper::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 4px;
    height: 100%;
    background-color: var(--secondary-color);
}

.whyBest .whyBestTextWrapper p {
    margin: 4px 0px;
    color: #000000;
    margin-left: 18px;
}

.whyBest .whyBestTextWrapper p:first-child {
font-size: 18px;
    font-weight: 700;
}

.whyBest .whyBestTextWrapper p:last-child {
    font-size: 35px;
    font-weight: 700;
}

.whyBest .whyBestPara {
    color: #000000;
    font-size: 22px;
    font-weight: 400;
    margin: 30px 0px;
    padding-right: 30px;
}

.listWrapper {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.listWrapper span {
    font-size: 24px;
    font-weight: 400;
    color: #000000;
}

.listWrapper span i {
    color: var(--primary-color);
    margin-right: 12px;
}

.whyBest img {
    width: 100%;
}

@media screen and (max-width: 991px) {
    .whyBestBg {
        padding: 40px 0;
    }
    
    .whyBestImageWrapper {
        margin-top: 40px;
    }
    
    .whyBestHeading {
        font-size: 36px;
    }
    
    .whyBestFeatureList {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media screen and (max-width: 575px) {
    .whyBestBg {
        padding: 40px 0;
    }
    
    .whyBestHeading {
        font-size: 28px;
    }
    
    .whyBestDescription {
        font-size: 15px;
    }
    
    .featureListItem {
        font-size: 14px;
    }
    
    .whyBest .whyBestTextWrapper p:last-child {
        font-size: 26px;
    }

    .whyBest .whyBestPara {
        font-size: 18px;
    }

    .whyBest .listWrapper span {
        font-size: 18px;
    }
}

/* whyBest ends here  */

.pricing {
    background: linear-gradient(135deg, #f0f4ff 0%, #e8f0ff 30%, #e0efff 60%, #d8eaff 100%);
    padding: 60px 0px;
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 116, 179, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.pricing .container {
    position: relative;
    z-index: 1;
}

.pricing .sectionTitle {
    margin-bottom: 50px;
}

.pricing .commonMT {
    margin-top: 0;
}

.pricing .row {
    margin-top: 50px;
    color: var(--secondary-color);
}

.pricing .pricingBox {
    margin-top: 0;
    margin-bottom: 0;
    border: 2px solid rgba(20, 98, 160, 0.3);
    border-left: 4px solid #1462a0;
    border-right: 4px solid #1462a0;
    border-radius: 20px;
    padding: 40px 35px;
    position: relative;
    padding-bottom: 80px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 100%;
    background: linear-gradient(135deg, #e8f0ff 0%, #e0efff 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing .owl-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.pricing .owl-carousel button.owl-dot {
    background: 0 0;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit;
    width: 20px;
    height: 20px;
    background: #2C5F8080;
    border-radius: 16px;
}

.pricing .owl-carousel button.owl-dot.active {
    background: var(--secondary-color);
    width: 50px;
}

/* .pricing .swiperWrapper {
    padding-right: 0px;
    padding-left: 0px;
} */

@media screen and (min-width: 1400px) {
    .pricing .row {
        gap: 18px;
    }
}

@media screen and (min-width: 992px) and (max-width: 1399px) {
    .pricing .row {
        gap: 18px;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .pricing .row {
        gap: 60px 24px;
    }
}

@media screen and (max-width: 767px) {
    .pricing .row {
        gap: 50px;
    }
}

.pricing .pricingBox:hover {
    border-left: 4px solid #1462a0;
    border-right: 4px solid #1462a0;
    border-top: 2px solid rgba(20, 98, 160, 0.3);
    border-bottom: 2px solid rgba(20, 98, 160, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-8px);
    background: linear-gradient(135deg, #f0f4ff 0%, #e8f0ff 100%);
}

.pricing .textDiv {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 25px;
    margin-bottom: 10px;
}

.pricing .textDiv .title {
    font-size: 32px;
    font-weight: 800;
    color: #1462a0;
    line-height: 1.2;
}

.pricing .textDiv span:not(.title):not(.days) {
    font-size: 16px;
    font-weight: 500;
    color: #4b5563;
    line-height: 1.6;
}

.pricing .textDiv .days {
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 700;
    margin-top: 8px;
    padding: 8px 16px;
    background: rgba(20, 98, 160, 0.1);
    border-radius: 8px;
    display: inline-block;
}

.pricing .listWrapper {
    margin-top: 30px;
    max-height: 500px;
    overflow-y: auto;
    padding-right: 20px;
    flex: 1;
}

/* width */
.pricing .listWrapper::-webkit-scrollbar {
    width: 6px;
}

/* Track */
.pricing .listWrapper::-webkit-scrollbar-track {
    border-radius: 10px;
}

/* Handle */
.pricing .listWrapper::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.rightTickImg {
    width: 30px !important;
    display: inline-block !important;
}

.wrongTickImg {
    width: 22px !important;
    display: inline-block !important;
}

.rightTickImg ,.wrongTickImg{
    margin-right: 12px;
}

.pricing .listWrapper span {
    font-size: 15px;
    color: #1a1a1a;
    font-weight: 500;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 14px 0px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.pricing .listWrapper span:hover {
    color: #1462a0;
    padding-left: 8px;
}

.pricing .premium .listWrapper span {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: #1a1a1a;
}


.pricing .lineThrough {
    text-decoration: line-through;
    opacity: 0.6;
}

.pricing .lineThrough i {
    color: lightcoral;
}

.pricing .pricingBtn {
    background: linear-gradient(135deg, #1462a0 0%, #33a5dd 100%);
    color: white;
    height: 52px;
    border-radius: 50px;
    border: none;
    position: absolute;
    bottom: 30px;
    left: 35px;
    right: 35px;
    margin: 0;
    display: block;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(20, 98, 160, 0.3);
    cursor: pointer;
}

.pricing .pricingBtn:hover {
    background: linear-gradient(135deg, #33a5dd 0%, #1462a0 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(20, 98, 160, 0.4);
    color: white;
}

.pricing .premium {
    background: linear-gradient(135deg, #C9DDEB 0%, #b8d4e8 100%);
    border-left: 4px solid #1462a0;
    border-right: 4px solid #1462a0;
    border-top: 2px solid rgba(20, 98, 160, 0.3);
    border-bottom: 2px solid rgba(20, 98, 160, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.pricing .premium:hover {
    border-left: 4px solid #1462a0;
    border-right: 4px solid #1462a0;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    transform: translateY(-10px) scale(1.02);
    background: linear-gradient(135deg, #d8e8f5 0%, #C9DDEB 100%);
}

.pricing .premium .title,
.pricing .premium span {
    color: #1a1a1a;
}

.pricing .premium .pricingBtn {
    bottom: 30px;
}

@media screen and (max-width: 575px) {
    /* .pricing .swiperWrapper {
        padding-right: 0px;
        padding-left: 14px;
    } */

    .pricing .pricingBox {
        padding: 12px;
        width: 94%;
    }

    .pricing .textDiv .title {
        font-size: 30px;
        padding-top: 20px;
    }

    .pricing .textDiv .days {
        font-size: 22px;
    }

    .pricing .pricingBtn {
        bottom: -48px;
    }

    .pricing .premium .pricingBtn {
        bottom: -36px;
    }

    .pricing .listWrapper span {
        font-size: 16px;
    }

    .rightTickImg {
        width: 24px !important;
    }
    
    .wrongTickImg {
        width: 18px !important;
    }
    
    .rightTickImg ,.wrongTickImg{
        margin-right: 8px;
    }
}

/* pricing ends here  */

.customPackBanner {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 25%, #0074b3 50%, #0074b3 75%, #0074b3 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

.customPackBanner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 60px 60px, 80px 80px;
    background-position: 0 0, 30px 30px;
    opacity: 0.3;
    pointer-events: none;
}

.customPackBanner::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.customPackBanner .container {
    position: relative;
    z-index: 1;
}

.customPackContent {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.customPackHeadline {
    font-size: 56px;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 25px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    letter-spacing: -1px;
}

.customPackDescription {
    font-size: 18px;
    font-weight: 400;
    color: white;
    line-height: 1.8;
    margin-bottom: 40px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.customPackCTA {
    display: flex;
    justify-content: center;
}

.customPackButton {
    background: white;
    color: #1a1a1a;
    padding: 18px 50px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

.customPackButton:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    color: #1a1a1a;
    text-decoration: none;
}

.customPack .wrapper {
    background: url('../../landing_page_images/custompackBg.png');
    background-repeat: no-repeat;
    border-radius: 30px;
}

.customPack .row {
    opacity: .9;
    background-color: var(--secondary-color);
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    border-radius: 30px;
}

.customPack .row .col-lg-6 {
    display: flex;
    justify-content: flex-end;
}

@media screen and (max-width: 767px) {
    .customPack .row .col-lg-6 {
        justify-content: flex-start;
    }
}

.customPack .title {
    color: white;
    font-size: 50px;
    font-weight: 700;
}

.customPack .desc {
    color: white;
    font-weight: 400;
}

.customPack .commonBtn {
    background-color: var(--secondary-color);
    border: 2px solid white;
    width: 220px;
    height: 60px;
    font-size: 20px;
}

.customPack .commonBtn:hover {
    background-color: #fff;
    color: var(--secondary-color) !important;
}

@media screen and (max-width: 991px) {
    .customPackBanner {
        padding: 50px 0;
    }
    
    .customPackHeadline {
        font-size: 42px;
    }
    
    .customPackDescription {
        font-size: 16px;
        margin-bottom: 35px;
    }
}

@media screen and (max-width: 575px) {
    .customPackBanner {
        padding: 40px 20px;
    }
    
    .customPackHeadline {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .customPackDescription {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 30px;
    }
    
    .customPackButton {
        padding: 16px 40px;
        font-size: 16px;
    }

    .customPack {
        width: 90% !important;
    }

    .customPack .row {
        padding: 12px;
    }

    .customPack .title {
        font-size: 30px;
    }

    .customPack .commonBtn {
        width: auto;
        height: auto;
        font-size: 20px;
        margin: auto;
        margin-top: 12px;
    }
}

/* customPack ends here  */

.faqs .accordion {
    margin-top: 40px;
}

@media screen and (max-width: 575px) {
    .faqs {
        padding: 20px 0px;
    }

    .faqs .accordion {
        margin-top: 30px;
    }
}

.faqs .accordion-item {
    border: 1px solid lightgray !important;
    border-radius: 8px !important;
    margin: 12px 0px;
    overflow: hidden;
}

.faqs .accordion-button span {
    font-size: 16px;
    font-weight: 700;
    color: #29363F !important;
}

.faqs .accordion-button:focus {
    box-shadow: none !important;
    border: none !important;
    border-color: transparent !important;
}

.faqs .accordion-collapse span {
    margin-top: -12px;
    display: block;
    color: var(--text--secondary-color) !important;
    font-weight: 500;
}

.faqs .accordion-button:not(.collapsed) {
    background-color: var(--primary-color) !important;
}

.faqs .accordion-button:not(.collapsed) span {
    color: #fff !important;
}

.faqs .accordion-collapse {
    background-color: var(--primary-background-color);
    color: var(--text--secondary-color);
}

.faqs .accordion-button::after {
    background-image: url("../../landing_page_images/bx-plus-circle.svg") !important;
}

.faqs .accordion-button:not(.collapsed)::after {
    background-image: url("../../landing_page_images/bx-minus-circle.png") !important;
    filter: brightness(10.5);
}

.faqs .accordion-button:not(.collapsed) {
    box-shadow: none !important;
}

.faqs .accordion-body {
    background: #fff;
    padding-top: 24px;
}

/* faqs ends here  */

.getInTouch {
    background: linear-gradient(135deg, #e8f4ff 0%, #d8ecff 50%, #e0f0ff 100%);
    padding: 60px 20px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.getInTouch::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 2px 2px, rgba(59, 130, 246, 0.15) 1px, transparent 0),
        repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(59, 130, 246, 0.05) 20px, rgba(59, 130, 246, 0.05) 21px);
    background-size: 40px 40px, 40px 40px;
    opacity: 0.6;
    pointer-events: none;
}

.getInTouch .container {
    position: relative;
    z-index: 1;
}

.getInTouchHeader {
    text-align: center;
    margin-bottom: 60px;
}

.getInTouchTitle {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.getInTouchSubtitle {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 20px;
    font-weight: 400;
}

.getInTouchUnderline {
    position: relative;
    display: inline-block;
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, #1462a0 0%, #33a5dd 100%);
    margin: 0 auto;
}

.getInTouchUnderline::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: #33a5dd;
    border-radius: 50%;
    border: 2px solid #fff;
}

.getInTouch .row {
    gap: 50px 0px;
}

.getInTouch .wrapper {
    margin-top: 50px;
}

.contactFormCard {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.formGroup {
    width: 100%;
}

.formInput,
.formTextarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #fff;
    color: #1a1a1a;
}

.formInput:focus,
.formTextarea:focus {
    outline: none;
    border-color: #1462a0;
    box-shadow: 0 0 0 3px rgba(20, 98, 160, 0.1);
}

.formTextarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.contactSendBtn {
    width: 100%;
    padding: 16px 30px;
    background: linear-gradient(135deg, #1462a0 0%, #33a5dd 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(20, 98, 160, 0.3);
}

.contactSendBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(20, 98, 160, 0.4);
    background: linear-gradient(135deg, #33a5dd 0%, #1462a0 100%);
}

.getInTouch .infoBox {
    display: flex;
    gap: 20px;
    flex-direction: column;
    padding-left: 40px;
}

.contactInfoCard {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 25px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.contactInfoCard:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.contactInfoIcon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1462a0 0%, #33a5dd 100%);
    color: white;
    border-radius: 50%;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(20, 98, 160, 0.3);
}

.contactInfoContent {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contactInfoTitle {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 0.3px;
}

.contactInfoDetail {
    font-size: 16px;
    color: #4a5568;
    font-weight: 400;
}

.getInTouch .col-lg-6 {
    position: relative;
    z-index: 1;
}

@media screen and (max-width: 1199px) {
    .getInTouch .infoBox {
        padding-left: 20px;
    }
}

@media screen and (max-width: 991px) {
    .getInTouch {
        padding: 60px 20px;
        padding-bottom: 60px;
    }
    
    .getInTouchTitle {
        font-size: 36px;
    }
    
    .getInTouchSubtitle {
        font-size: 16px;
    }

    .getInTouch .infoBox {
        padding-left: 0px;
        margin-top: 30px;
    }
    
    .contactFormCard {
        padding: 30px;
    }
}

@media screen and (max-width: 575px) {
    .getInTouch {
        padding: 40px 15px;
        padding-bottom: 50px;
    }
    
    .getInTouchTitle {
        font-size: 28px;
    }
    
    .getInTouchSubtitle {
        font-size: 15px;
    }
    
    .getInTouchUnderline {
        width: 150px;
    }

    .contactFormCard {
        padding: 25px 20px;
        gap: 16px;
    }
    
    .formInput,
    .formTextarea {
        padding: 12px 16px;
        font-size: 15px;
    }
    
    .contactSendBtn {
        padding: 14px 25px;
        font-size: 16px;
    }

    .contactInfoCard {
        padding: 20px;
        gap: 16px;
    }
    
    .contactInfoIcon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .contactInfoTitle {
        font-size: 16px;
    }
    
    .contactInfoDetail {
        font-size: 14px;
    }
}

/* getInTouch ends here  */

.ourAppBg {
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f4ff 50%, #e0f0ff 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.ourAppBg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 3px 3px, rgba(59, 130, 246, 0.12) 1.5px, transparent 0);
    background-size: 50px 50px;
    opacity: 0.6;
    pointer-events: none;
}

.ourAppBg .container {
    position: relative;
    z-index: 1;
}

.ourAppImageWrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.ourAppImg {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s ease;
}

.ourAppImg:hover {
    transform: translateY(-10px) scale(1.02);
}

.ourApp .content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
    padding: 40px 0;
}

.ourAppContent {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}

.ourAppTitle {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -1px;
}

.ourAppDescription {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.8;
    margin: 0;
    font-weight: 400;
}

.ourAppButtons {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.appDownloadBtn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #1a1a1a;
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    min-width: 180px;
    justify-content: center;
}

.appDownloadBtn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: white;
    text-decoration: none;
    background: #2d2d2d;
}

.appDownloadIcon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.appDownloadIcon svg {
    width: 100%;
    height: 100%;
}

.appDownloadText {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.appDownloadLabel {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #fff;
}

.appDownloadBtnGoogle .appDownloadIcon {
    color: #34a853;
}

.appDownloadBtnApple .appDownloadIcon {
    color: #ffffff;
}

@media screen and (max-width: 991px) {
    .ourAppBg {
        padding: 60px 0;
    }
    
    .ourApp .row {
        flex-direction: column-reverse;
        gap: 40px 0px;
    }

    .ourAppTitle {
        font-size: 36px;
    }
    
    .ourAppDescription {
        font-size: 16px;
    }
    
    .ourAppContent {
        gap: 25px;
    }
    
    .ourAppButtons {
        gap: 15px;
    }
    
    .appDownloadBtn {
        min-width: 160px;
        padding: 14px 28px;
    }
}

@media screen and (max-width: 575px) {
    .ourAppBg {
        padding: 40px 0;
    }
    
    .ourAppImageWrapper {
        padding: 10px;
    }
    
    .ourApp .content {
        padding: 20px 0;
    }
    
    .ourAppContent {
        gap: 20px;
    }

    .ourAppTitle {
        font-size: 28px;
    }
    
    .ourAppDescription {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .ourAppButtons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .appDownloadBtn {
        width: 100%;
        min-width: auto;
        padding: 14px 24px;
        justify-content: flex-start;
    }
    
    .appDownloadLabel {
        font-size: 16px;
    }
}

footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    padding: 60px 0px;
    padding-bottom: 30px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.05) 1px, transparent 0);
    background-size: 40px 40px;
    opacity: 0.3;
    pointer-events: none;
}

footer .container {
    position: relative;
    z-index: 1;
}

@media screen and (max-width: 575px) {
    footer {
        padding: 40px 20px;
        padding-bottom: 25px;
    }
}

footer .companyInfoWrapper {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: self-start;
    gap: 20px;
}

footer .companyInfoWrapper .logo {
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

footer .companyInfoWrapper .logo:hover {
    transform: scale(1.05);
}

footer .row {
    gap: 30px 0px;
}

footer .commonDesc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.6;
    font-weight: 400;
}

footer .socialIcons span {
    
    color: var(--secondary-color1) !important;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 28px;
    margin: 0px 6px;
    cursor: pointer;
}

footer .socialIcons span i {
    color: var(--secondary-color1) !important;
}

footer .linksWrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 14px;
}

footer .linksWrapper span {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    font-size: 15px;
    transition: color 0.3s ease;
}

footer .linksWrapper span a {
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none !important;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

footer .linksWrapper span a:hover {
    color: #fff !important;
    padding-left: 5px;
}

footer .linksWrapper .title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

footer .usefulLinksDiv {
    margin-left: 0px;
}

@media screen and (max-width: 991px) {
    footer {
        padding: 50px 20px;
        padding-bottom: 25px;
    }
    
    footer .usefulLinksDiv {
        margin-left: 0px;
    }

    footer .linksWrapper .title {
        margin-bottom: 8px;
        font-size: 16px;
    }
    
    footer .linksWrapper span {
        font-size: 14px;
    }
    
    footer .commonDesc {
        font-size: 14px;
    }
}

footer .iconsWrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
}

footer .iconsWrapper:hover {
    transform: translateX(5px);
}

footer .iconsWrapper a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
}

footer .iconsWrapper a:hover {
    color: #fff !important;
}

footer .iconsWrapper img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(0.7);
    transition: filter 0.3s ease;
}

footer .iconsWrapper a:hover img {
    filter: brightness(0) invert(1);
}

footer hr {
    margin: 40px 0 30px 0;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.5;
}

footer .copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 400;
}

footer .copyright .footer-text {
    color: rgba(255, 255, 255, 0.6);
}

.owl-stage-outer {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}


/* login form css */

.formModal .modal-content {
    background: url('./Images/form-bg.svg');
    background-size: cover;
    background-repeat: no-repeat;
    flex-direction: row;
    padding: 12px;
    padding-right: 26px;
    align-items: center;
    justify-content: end;
}

.formModal .modal-content {
    background: transparent;
    border: none;
}

.formModal .modal-title {
    color: #000000;
    font-size: 30px !important;
    font-weight: 700;
}

.formModal .rightSide {
    background-color: #fff;
    border-radius: 20px;
}

.formModal .rightSide .headingWrapper span {
    color: #000000;
    font-size: 22px;
    font-weight: 700;
    position: relative;
}

.formModal .rightSide .headingWrapper span::before {
    content: '';
    position: absolute;
    bottom: -9px;
    background-color: var(--secondary-color);
    width: 6px;
    height: 6px;
    border-radius: 50px;
    left: 70px;
    right: auto;
    z-index: 1;
}

.formModal .rightSide .headingWrapper span::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0px;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
}

.formModal .rightSide .formWrapper {
    margin-top: 20px;
}

.formModal .rightSide .formWrapper .row {
    gap: 12px 0px;
}

.formModal .rightSide .formWrapper .inputWrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 6px;
}

.formModal .rightSide .formWrapper .inputWrapper label {
    color: #000000;
    font-size: 16px;
    font-weight: 400;
}

.formModal .rightSide .formWrapper .inputWrapper input {
    border: 1px solid lightgray;
    border-radius: 6px;
    padding: 8px;
    width: 100%;
}

.formModal .rightSide .formWrapper .inputWrapper input::-webkit-outer-spin-button,
.formModal .rightSide .formWrapper .inputWrapper input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.formModal .rightSide .formWrapper .inputWrapper input::placeholder {
    color: rgba(128, 128, 128, 0.838);
}

.formModal .rightSide .formWrapper .inputWrapper input:focus {
    outline: none;
}

.formModal .adminFormWrapper {
    margin-top: 20px;
}

.formModal .modalfooter {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    flex-wrap: wrap;
}

.formModal .adminFormWrapper .headingWrapper span::before {
    left: 50px;
}

.formModal .modalfooter .inputWrapper div {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 12px;
}

.formModal .modalfooter .commonBtn {
    padding: 8px 40px;
    border-radius: 8px;
}

@media screen and (max-width: 991px) {
    .formModal .modal-content {
        padding: 0px;
        background: transparent;
        border: none;
    }
}

@media screen and (max-width: 575px) {
    .formModal .modal-content {
        padding: 0px;
        padding-left: 22px;
    }

    .formModal .rightSide {
        padding: 0px;
    }

    .formModal .modal-title {
        font-size: 22px !important;
    }

    .formModal .rightSide .headingWrapper span {
        font-size: 18px;
    }

    .formModal .rightSide .headingWrapper span::before {
        left: 58px;
    }

    .formModal .adminFormWrapper .headingWrapper span::before {
        left: 40px;
    }
}

.pricing .pricingBox .badge {
    position: absolute;
    left: auto;
    right: -10px;
    clip-path: polygon(50% 0%,100% 0%,100% 100%,0% 100%,14% 52%,0% 0%);
    width: 130px;
    height: 38px;
    top: 8px;
    color: white !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.pricing .premium .badge{
    right: -4px;
}

.postpaid {
    background: var(--primary-color);
}
.prepaid {
    background: var(--secondary-color);
}
.footer-text {
    display: flex;
    justify-content: center;
}

.modal-header .btn-close {
    margin: 0px !important;
}

.file-upload-default {
    visibility: hidden;
    position: absolute;
}

/* Fix for file input focus issue in forms */
.school-registration .file-upload-default {
    opacity: 1 !important;
    position: relative !important;
    z-index: 1 !important;
    pointer-events: auto !important;
    visibility: visible !important;
}

.school-registration .file-upload-default:focus {
    outline: 2px solid var(--primary-color) !important;
    outline-offset: 2px !important;
}

.file-upload-info {
    background: white;
    border-top-left-radius: 6px !important;
    border-bottom-left-radius: 6px !important;
}

.btn-themes{
    background-color: var(--primary-color) !important;
    color: #fff !important;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}
.select-fields option {
    white-space: pre-wrap !important; /* Enables word wrapping */
    overflow-wrap: break-word !important;
    word-wrap: break-word !important;
    max-width: 200px !important; /* Adjust as needed */
}
.sectionTitle span{
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -1px;
}