@import url('../css/style.css');
:root {
    --primary-color: #2D7CA4;
    --secondary-color: #fdc033;
}
:root {
      --clr-primary:    #1a3c5e;
      --clr-accent:     #e8a020;
      --clr-accent2:    #2e7d9e;
      --clr-bg:         #f7f6f3;
      --clr-offwhite:   #eef1f5;
      --clr-white:      #ffffff;
      --clr-text:       #2b2b2b;
      --clr-muted:      #5a6472;
      --clr-border:     #dce3ea;
      --radius:         12px;
      --shadow:         0 4px 24px rgba(26,60,94,0.09);
    }

[class^="box-"] {
    display: none
}

[class^="box-"].showfirst {
    display: block
}

html,
body {
    height: 100%;
    -webkit-font-smoothing: antialiased;
       overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    display: block;
    font-weight: 700;
    line-height: 1.12;
    color: #2D7CA4;
}

p {
    display: block;
}

*:hover,
*:focus,
* {
    outline: none !important;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}
img {
    max-width: 100%;
    height: auto;
}

a,
input[type="submit"] {
    -webkit-transition: all 0.4s ease-In-out;
    -moz-transition: all 0.4s ease-In-out;
    -o-transition: all 0.4s ease-In-out;
    transition: all 0.4s ease-In-out;
    display: inline-block;
    cursor: pointer;
}

p,
a {
    font-size: 15px;
    color: #111111;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

.slick-dots {
    display: block;
    position: absolute;
    bottom: -70px;
}

.slick-dots>li {
    display: inline-block;
    margin: 0 5px;
}

.slick-dots>li button {
    padding: 0;
    font-size: 0;
    width: 10px;
    height: 10px;
    background-color: #e24659;
    border-radius: 25px;
    cursor: pointer;
}

.slick-arrow {
    font-size: 0;
    cursor: pointer;
}

.slick-prev {
    left: 0;
}

.slick-next {
    right: 0;
}

textarea,
select,
input[type],
textarea,
select,
button {
    background: transparent;
    border: none;
    border-radius: 0px;
}

::-webkit-input-placeholder {
    color: #3b3b3b
}

::-moz-placeholder {
    color: #3b3b3b
}

:-ms-input-placeholder {
    color: #3b3b3b
}

:-moz-placeholder {
    color: #3b3b3b
}

/* Custom Radio Button */

.customradio {
    display: inline-block;
    position: relative;
    padding-left: 25px;
    margin-bottom: 0px;
    cursor: pointer;
    font-size: 15px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    vertical-align: middle;
    font-weight: 400;
    color: #FFFFFF;
}

.customradio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    position: absolute;
    top: 4px;
    left: 0;
    height: 11px;
    width: 11px;
    border-radius: 3px;
    background-color: #e0e0e0;
}

.customradio input:checked~.checkmark {
    background: #ff6101;
}

/* Hamburger Menu */

.hamburger {
    width: 30px;
    height: 20px;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 0px;
    bottom: 0px;
    margin: auto;
    z-index: 8;
    display: none;
}

.hamburger span {
    display: block;
    height: 4px;
    width: 100%;
    background: #f94452;
    position: absolute;
    transition: .6s all;
    border-radius: 100px;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 8px;
    transform-origin: left;
}

.hamburger span:nth-child(3) {
    top: 16px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 12px;
    transform-origin: right-center;
}

.hamburger.active span:nth-child(2) {
    width: 0;
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 12px;
    transform-origin: right-center;
}

/* Global Css */

.ovrer-hidden {
    overflow: hidden;
}

.overlay::after {
    content: '';
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgb(3 19 43 / 90%);
    z-index: 4;
}

.overlay {
    display: none;
}

/* Dropdown CSS*/

ul.dropdown {
    position: absolute;
    width: 200px;
    left: -47px;
    margin: auto;
    background: #FFFFFF;
    padding: 20px 15px 10px;
    text-align: left;
    border-radius: 5px;
    box-shadow: 0 0 10px 3px #00000014;
    opacity: 0;
    animation: btotreverse 0.5s forwards;
}

ul.dropdown li a:before {
    display: none;
}

@keyframes btotreverse {
    0% {
        top: 75px;
        opacity: 1;
    }
    100% {
        top: 115px;
        opacity: 0;
    }
}

.dropdown-nav:hover ul.dropdown {
    animation: btot 0.5s forwards;
    z-index: 9;
}

@keyframes btot {
    0% {
        top: 115px;
        opacity: 0;
    }
    100% {
        top: 24px;
        opacity: 1;
    }
}

ul.dropdown li {
    width: 100%;
    display: inline-block;
    vertical-align: middle;
}

ul.dropdown li a {
    padding: 0;
    font-size: 13px;
    text-transform: capitalize;
    color: #000 !important;
    display: block;
    width: 100%;
    margin: 0px 0 10px;
    text-align: center;
    font-weight: 500;
}

ul.dropdown li a:hover {
    color: rgba(0, 0, 0, 0.5) !important;
}

.dropdown-nav {
    position: relative;
    overflow: hidden;
    vertical-align: middle;
}

.dropdown-nav:hover {
    overflow: visible;
}

.mainSlider .slick-arrow {
    font-size: 2rem;
    border: 0;
    text-indent: 0;
    color: var(--white);
}

.mainSlider .slick-arrow:before {
    content: none;
}

.mainSlider .slick-prev {
    left: 3rem;
}

.mainSlider .slick-next {
    right: 3rem;
}

.slick-dotted.slick-slider {
    margin-bottom: 0;
}

header .navbar img {
    width: 110px;
}

.mainSlider .slick-dots {
    bottom: 20px;
}

/* General CSS  */

.element {
    position: absolute;
}

.element-1 {
    bottom: 0;
    left: 15%;
}

ul {
    padding-left: 0;
    margin-bottom: 0;
    font-size: 0;
}

ul li {
    list-style: none;
    font-size: 15px;
}

ul.inline-block>li {
    display: inline-block;
    margin-right: 10px;
}

ul.inline-block>li:last-child {
    margin-right: 10px;
}

.color-primary {
    color: #fdc033;
    font-size: 30px;
}

.color-secondary {
    color: var(--secondary-color);
}

.cust-bg-primary {
    /* background: linear-gradient(to bottom, #146569 100%,#147479 0%); */
    background: #2D7CA4;
}

.over-hidden {
    overflow: hidden;
}

.spacing-x {
    padding: 70px 0;
}

.pb-150 {
    padding-bottom: 150px;
}

.bg-color-1 {
    background-color: #fff5f5ad;
}

.bg-gradient-1 {
    background: #2D7CA4;
    /* background: linear-gradient(to bottom, #146569 100%,#147479 0%); */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#145857', endColorstr='#327870', GradientType=0);
    padding: 50px 25px;
    border-radius: 15px;
}

.btn-style-1,
.btn-style-icon {
    position: relative;
    overflow: hidden;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 500;
    color: #393939;
    background-color: #fdc033;
    border: 1px solid #fdc033;
    padding: 12px 25px;
    line-height: normal;
}

.btn-style-icon {
    color: #ffffff;
    background-color: transparent;
}

.btn-style-icon i {
    color: #fff;
    margin-right: 4px;
    font-size: 18px;
}

.btn-1 {
    position: relative;
    display: block;
    font-size: 15px;
    border: 1px solid var(--primary-color);
    padding: 10px 20px;
    border-radius: 50px;
}

.btn-2 {
    position: relative;
    display: block;
    font-size: 15px;
    color: #FFFFFF;
    border: 1px solid var(--primary-color);
    padding: 10px 20px;
    border-radius: 50px;
    line-height: normal;
    background: #145857;
    background: -moz-linear-gradient(top, #145857 0%, #327870 100%);
    background: -webkit-linear-gradient(top, #145857 0%, #327870 100%);
    background: linear-gradient(to bottom, #145857 0%, #327870 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#145857', endColorstr='#327870', GradientType=0);
}

.headingstyle-1 {
    text-align: center;
    position: relative;
}

.headingstyle-1 h6 {
    position: relative;
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: -.5px;
    color: #111111;
    display: inline-block;
}

.headingstyle-1 h6::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 20px;
    height: 1px;
    left: -30px;
    background-color: var(--secondary-color);
}

.headingstyle-1 h6::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 20px;
    height: 1px;
    right: -28px;
    background-color: var(--secondary-color);
}

.headingstyle-1 h3 {
    margin: 15px 0 10px 0;
    font-size: 50px;
    font-weight: 600;
}

.headingstyle-1 p {
    margin: 0;
    font-size: 18px;
}

.fs-40 {
    font-size: 40px !important;
}

.fw-700 {
    font-weight: 700 !important;
}

/* Site CSS */

header {
   position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999;
    padding: 20px 0;
}

header .toll-free {
    /*text-align: right;*/
    max-width: 200px;
}

header .toll-free a {
    font-size: 20px;
    color: #fff;
    font-weight: 500;
    border: 1px solid #fff;
    border-top: 0;
    padding: 5px 15px;
    border-radius: 0 0 6px 6px;
    position: relative;
}

header .toll-free a:before,
header .toll-free a:after {
    content: '';
    position: absolute;
    border-top: 1px solid #fff;
}

header .toll-free a:before {
    width: 12px;
    height: 10px;
    border-left: 1px solid #fff;
    border-top-left-radius: 6px;
    top: -5px;
    left: -1px;
}

header .toll-free a:after {
    width: 90px;
    height: 10px;
    top: -5px;
    right: -1px;
    border-right: 1px solid #fff;
    border-top-right-radius: 6px;
}

header .toll-free a small {
    display: block;
    font-size: 14px;
    font-weight: 200;
    margin-top: -18px;
}

header .toll-free a span {
    color: var(--white);
    font-weight: 400;
    font-size: 1.125rem;
}

header .navbar-nav .nav-link {
    color: var(--white);
    text-transform: capitalize;
    font-weight: 300;
}

header .navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: #2D7CA4;
        text-align: center;
        padding: 10px;
        margin-top: 10px;
    }
}

header .navbar {
    padding: 0;
}

.banner-style-1 {
    position: relative;
    min-height: 50rem;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex !important;
    align-items: center;
    /* padding-top: 6rem; */
}

/* .banner-style-1::before {
   content: '';
   background: url(../images/elements/element-2.png) no-repeat;
    position: absolute;
    width: 573px;
    height: 658px;
    right: 0;
    bottom: 0;
} */

.banner-style-1.halloweenStyle::before {
    content: none;
}

/*.banner-style-1.halloweenStyle h1,*/

/*.halloweenStyle .content-style ul li{*/

/*    color: var(--white);*/

/*}*/

/*.banner-style-1.halloweenStyle h1 span,*/

/*.halloweenStyle .content-style ul li i{*/

/*    color: var(--secondary-color)*/

/*}*/

/* Begin: Thanks Giving Banner CSS */

.thanksGivingStyle::before {
    content: none;
}

.thanksGivingStyle .leaf {
    position: absolute;
    top: -2.5rem;
    left: 3rem;
    animation: moves 5s ease infinite;
}

.newBannerStyle h3 {
    font-weight: 100;
    color: var(--white);
    font-size: 1.875rem;
}

.newBannerStyle .content-style p {
    background: transparent;
    border-radius: 0;
    padding: 0;
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 200;
}

.newBannerStyle .form-group i {
    display: none;
}

.newBannerStyle .form-group .custom-input-style,
.newBannerStyle .form-group .custom-select-style {
    border: 0 !important;
    border-radius: 1 !important;
    padding: 10px 15px;
    height: 46px;
}

.newBannerStyle .form-group .intl-tel-input.separate-dial-code .selected-flag {
    background: none;
    border-radius: 0;
}

.newBannerStyle.formMobWrap {
    background: #fdc033;
    padding: 1rem;
}

.desireGrades {
    padding: 5rem 0 0;
}

.desirethumb {
    padding: 3rem;
    /* background: #69a4c2; */
    background: #2D7CA4;
    margin-bottom: 2rem;
    min-height: 33rem;
    display: flex;
    border-radius: 6px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: space-between;
}

.desirethumb.yellow {
    background: #fff0ce;
}

.desirethumb h4 {
    margin: 0.8rem 0;
    color: #fdc033;
    font-size: 1.5rem;
}

.desirethumb p {
    color: white;
    font-size: 1rem;
    line-height: 1.6;
}

.desirethumb.big {
    justify-content: flex-start;
}

.desirethumb .btn-style-1 {
    background: #fdc033;
    border-color: #fdc033;
    color: #393939;
    font-size: 1.125rem;
    font-weight: 500;
}

.happyGirl {
    position: absolute;
    top: 0;
    left: 0;
    margin: -9rem 0 0 -7rem;
}

.tab-content .img-box .top,
.tab-content .img-box .botom {
    margin: 0;
    position: relative;
}

.tab-content .img-box .top .net,
.tab-content .img-box .botom .net {
    position: absolute;
    top: 0;
    left: -5rem;
    z-index: 0
}

.tab-content .img-box .botom {
    width: 21rem;
    margin: -6rem -1rem 0 auto;
}

.tab-content .img-box .top img,
.tab-content .img-box .botom {
    border-radius: 1rem;
    position: relative;
}

.tab-content .img-box .top:before,
.tab-content .img-box .botom:before {
    content: '';
    width: 95%;
    height: 100%;
    border: 3px solid var(--secondary-color);
    border-radius: 1rem;
    position: absolute;
    top: 2rem;
    left: -2rem;
}

.tab-content .img-box .botom:before {
    border-color: #fff;
    top: -1rem;
    left: -1rem;
    width: 100%;
}

.phd-professionals .tab-content .text-box ul.list {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin: 1.5rem 0;
}

.phd-professionals .tab-content .text-box ul.list li {
    flex: 0 0 48%;
}

.phd-professionals .tab-content .text-box h5 {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 500;
}

.uniLogoCasrousel {
    background: #fff;
    padding: 6px;
    border-radius: 6px;
}

@keyframes moves {
    0% {
        transform: rotate3d(0, 0, 1, 100deg);
    }
    50% {
        transform: rotate3d(0, 0, 1, 0deg);
    }
    100% {
        transform: rotate3d(0, 0, 1, 100deg);
    }
}

.thanksGivingStyle .hen {
    position: absolute;
    bottom: -4.5rem;
    right: -50%;
}

.thanksGivingStyle .content-style h1 {
    color: var(--white);
}

.thanksGivingStyle .content-style h1 .color-primary,
.thanksGivingStyle .content-style ul li i,
.thanksGivingStyle .content-style h4 {
    color: var(--secondary-color);
}

.thanksGivingStyle .content-style h4 {
    text-transform: uppercase;
    font-size: 1.5rem;
    margin: 0;
}

.thanksGivingStyle .content-style p {
    background: #e0ece5;
    color: #145857;
    font-weight: 600;
}

.thanksGivingStyle .content-style ul li {
    color: var(--white);
}

.thanksGivingStyle .banner-form {
    background: #e0ece5;
}

.thanksGivingStyle .banner-form h4 {
    color: #145857;
    font-size: 2.25rem;
    font-weight: 800;
}

.thanksGivingStyle .banner-form h5 {
    font-size: 1rem;
    font-weight: 700;
    color: #145857;
}

.thanksGivingStyle .banner-form .banner-middle p {
    text-transform: uppercase;
    font-weight: 600;
}

/* END: Thanks Giving Banner CSS */

.content-style {
    margin-top: -50px;
}

.content-style p {
    background: #309290;
}

.content-style h1 {
    margin: 0;
    font-size: 40px;
    font-weight: 600;
    color: #fff;
}

.content-style p {
    margin: 15px 0 20px 0;
    background-color: var(--secondary-color);
    color: var(--black);
    font-size: 17px;
    font-weight: 600;
    display: inline-block;
    padding: 5px 20px;
    border-radius: 50px;
}

.content-style ul li {
    font-size: 16px;
    color: #fff;
}

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

.content-style ul li strong {
    font-weight: 600;
}

.content-style ul li i {
    color: var(--secondary-color);
    font-size: 16px;
    margin-right: 5px;
}

.tab-style-1 {
    text-align: center;
    margin-bottom: 70px;
    margin-top: -160px;
}

.tab-style-1 ul li {
    width: 18%;
    display: inline-block;
    margin-right: 15px;
}

.tab-style-1 ul li:last-child {
    margin-right: 0;
}

.tab-style-1 ul li a {
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px 3px rgb(20 88 87 / 12%);
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
}

.tab-style-1 ul li a span {
    margin-top: 15px;
    display: block;
    font-size: 19px;
    font-weight: 500;
    line-height: 1.1;
}

.tab-style-1 ul li a i {
    /* background: url(../images/sprite.webp) no-repeat; */
    background-position: 0 0;
    width: 64px;
    height: 64px;
    display: inline-block;
}

.tab-style-1 ul li a i.ic2 {
    background-position: -74px 0;
    width: 69px;
    height: 63px;
}

.tab-style-1 ul li a i.ic3 {
    background-position: -156px 0;
    width: 64px;
    height: 64px;
}

.tab-style-1 ul li a i.ic4 {
    background-position: -234px -2px;
    width: 62px;
    height: 62px;
}

.tab-style-1 ul li a i.ic5 {
    background-position: -314px -2px;
    width: 80px;
    height: 63px;
}

.tab-style-1 ul li.active a {
    background-color: var(--secondary-color);
}

.tab-style-1 ul li.active a span {
    color: var(--primary-color);
}

.tab-content .img-box {
    margin-bottom: 20px;
}

.tab-content .img-box img {
    border-radius: 10px;
}

.tab-content .text-box h4 {
    color: #FFFFFF;
    font-weight: 600;
    font-size: 34px;
}

.tab-content .text-box p {
    margin: 25px 0;
    color: #FFFFFF;
    font-size: 18px;
}

.tab-content .text-box ul.list {
    margin-bottom: 30px;
}

.tab-content .text-box ul.list li {
    font-size: 16px;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.tab-content .text-box ul.list i {
    color: var(--secondary-color);
    font-size: 15px;
    margin-right: 5px;
}

.un-list ul {
    display: flex;
    margin-bottom: 15px;
}

.un-list ul li {
    width: 31.3333%;
    display: inline-flex;
    justify-content: space-around;
    margin-right: 15px;
}

.un-list ul li a {
    background-color: #FFFFFF;
    padding: 30px 25px;
    display: flex;
    align-items: center;
    border-radius: 10px;
    box-shadow: 0 0 15px 3px rgb(20 88 87 / 12%);
}

.un-list ul li a:hover {
    box-shadow: 0 0 25px 15px rgb(20 88 87 / 12%);
}

.cta-1 {
    padding: 40px 0;
    position: relative;
}

.cta-1 h5 {
    color: #FFFFFF;
    font-size: 30px;
    font-weight: 600;
    margin: 0;
}

.cta-1 p {
    color: #FFFFFF;
    font-size: 18px;
    margin: 5px 0 20px 0;
}

.stats-box {
    position: relative;
    text-align: center;
    margin-bottom: 15px;
    padding: 20px 20px;
}

.stats-box .circle {
    position: relative;
    width: 151px;
    height: 151px;
    border-radius: 100px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #393939;
    font-size: 44px;
    font-weight: 700;
    border: 1px solid #FFFFFF;
    z-index: 1;
}

.stats-box .circle::before {
    content: '';
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 95%;
    height: 95%;
    background-color: var(--secondary-color);
    border-radius: inherit;
    z-index: -1;
}

.stats-box h6 {
    color: #FFFFFF;
    font-weight: 400;
    margin: 20px 0 0 0;
    font-size: 24px;
}

.w-line::before {
    content: '';
    position: absolute;
    right: 0;
    top: 40px;
    width: 0.1px;
    height: 146px;
    box-shadow: 1px 0 5px 1px rgb(44 9 16 / 89%);
}

.payment-modules .headingstyle-1 {
    margin-bottom: 40px;
}

.payment-method ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-method ul li {
    text-align: center;
    width: 16%;
    margin-right: 30px;
}

.payment-method ul li:last-child {
    margin-right: 0;
}

.payment-method ul li .img-box {
    background-color: #FFFFFF;
    height: 112px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    box-shadow: 0 0 15px 3px rgb(20 88 87 / 12%);
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}

.payment-method ul li span {
    font-weight: 400;
    font-size: 15px;
    margin: 10px 0 0 0;
    display: inline-block;
}

.payment-method ul li .img-box:hover {
    box-shadow: 0 0 15px 10px rgb(20 88 87 / 12%);
}

footer {
    background: #2D7CA4;
    padding-top: 4rem;
}

.footer-p {
    color: #fff;
    margin-top: 20px;
}

footer h4 {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--white);
    position: relative;
}

footer h4:after {
    content: '';
    width: 3.1875rem;
    height: 4px;
    background: var(--secondary-color);
    display: block;
    border-radius: 10px;
    margin: 15px 0;
}

footer .links a {
    padding: 5px 0;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    position: relative;
}

footer .links a:hover,
footer .links a:focus {
    color: var(--secondary-color);
}

footer .links a:before {
    content: "\f105";
    font-family: "Font Awesome 5";
    font-weight: 900;
    font-size: 14px;
    margin-right: 6px;
}

.copyright {
    background-color: #000000;
    padding: 15px 0;
    margin-top: 5rem;
}

.copyright p {
    margin: 0;
    color: #FFFFFF;
}

.copyright p a {
    color: var(--secondary-color);
}

.copyright .img-box {
    text-align: right;
}

.disclaimer {
    padding: 15px 0;
}

.disclaimer p {
    margin: 0;
    font-size: 13px;
    line-height: 1.2;
}

.disclaimer p span {
    display: block;
}

.cta-2 .content-style p {
    background-color: #fff4f5;
    color: #222222;
}

.cta-2 .content-style h3 {
    margin: 0;
    font-size: 50px;
    font-weight: 600;
    color: #ffffff;
}

.cta-2 .content-style h6 {
    font-weight: 400;
    color: #FFFFFF;
    margin: 10px 0 15px 0;
    line-height: normal;
}

.cta-2 .content-style ul li {
    color: #FFFFFF;
}

.cta-2 .content-style ul li i {
    color: var(--secondary-color);
}

.cta-2 .content-style ul.list {
    padding-bottom: 0;
    border-bottom: 0;
}

.bb-0 {
    border-bottom: 0 !important;
}

.cta-2 .banner-form {
    background-color: #2D7CA4;
    margin-top: 3rem;
}

.cta-2 .banner-top h5 {
    color: #fff;
    padding-top: 10px;
}

/* .cta-2 .banner-top h4  {
    color: #fff;
} */

.cta-2 .banner-middle,
.cta-2 .custom-submit-style {
    background-color: #fdc033 !important;
    color: #393939;
}

.cta-2 .banner-middle p,
.cta-2 .banner-middle p span {
    color: #393939 !important;
    font-weight: 500;
}

.cta-2 .banner-form .sprite-icon {
    filter: brightness(0) invert(1);
}

.sub-list {
    position: relative;
}

.sub-list ul li {
    display: block;
    margin-bottom: 9px;
    font-size: 16px;
    color: #FFFFFF;
}

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

.sub-list ul li i {
    margin-right: 5px;
    color: var(--secondary-color);
    font-size: 14px;
}

.what-we-provide {
    position: absolute;
    width: 295px;
    text-align: center;
    padding: 40px 30px;
    border-radius: 20px;
    top: -70px;
    left: -40px;
    box-shadow: 0 0 15px 1px rgb(0 0 0 / 20%);
}

.what-we-provide ul {
    margin-top: 25px;
}

.what-we-provide ul li {
    margin-bottom: 10px;
}

.what-we-provide ul li:last-child {
    margin-bottom: 0;
}

.trusted-partners {
    background: #ffffff;
    background: -moz-linear-gradient(top, #ffffff 1%, #ddeae3 100%);
    background: -webkit-linear-gradient(top, #ffffff 1%, #ddeae3 100%);
    background: linear-gradient(to bottom, #ffffff 1%, #ddeae3 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ddeae3', GradientType=0);
    box-shadow: 0 0 15px 4px rgb(20 88 87 / 28%);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 50px;
}

.trusted-partners ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

.trusted-partners ul li {
    width: 16.6666%;
    text-align: center;
    padding: 25px 0;
    position: relative;
}

.trusted-partners ul li.w-22 {
    width: 22%;
    background: #145857;
    background: -moz-linear-gradient(top, #145857 0%, #327870 100%);
    background: -webkit-linear-gradient(top, #145857 0%, #327870 100%);
    background: linear-gradient(to bottom, #145857 0%, #327870 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#145857', endColorstr='#327870', GradientType=0);
}

.trusted-partners ul li a {
    font-size: 40px;
    font-weight: 600;
    line-height: 1;
    color: #FFFFFF;
    text-align: left;
    padding: 0 35px;
}

.trusted-partners ul li img {
    mix-blend-mode: multiply;
}

.trusted-partners ul li::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #CCCCCC;
    box-shadow: 2px 0 5px 1px #cccccc;
    width: 0.1px;
    height: 60px;
}

.testimonial-box {
    position: relative;
}

.testimonial-box .review-by h5 {
    margin: 0;
    color: var(--primary-color);
    font-size: 50px;
}

.testimonial-box .review-by h6 {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 400;
    margin: 20px 0 5px 0;
    position: relative;
    padding-left: 40px;
}

.testimonial-box .review-by h6::before {
    content: '';
    background-color: var(--secondary-color);
    width: 30px;
    height: 2px;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.testimonial-box .review {
    position: relative
}

.testimonial-box .review::before {
    content: '';
    width: 275px;
    height: 268px;
    background: url(../images/elements/element-3.png) no-repeat;
    position: absolute;
    right: 0;
    top: -70px;
    z-index: -1;
    opacity: 0.4;
}

.testimonial-box .review p {
    margin: 0 0 10px 0;
    font-size: 16px;
    color: #111111;
}

.testimonial-box .review span {
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 500;
}

.form-top .banner-form {
    position: absolute;
    top: -690px;
    right: 90px;
}

.banner-form {
    box-shadow: #000;
    border-radius: 20px;
    width: 457px;
    background: #2D7CA4;
    /* background: linear-gradient(to bottom, #2eb6bd 0%,#046166 100%);  */
    z-index: 1;
    margin-left: auto;
}

.banner-form .form-group {
    position: relative;
}

.banner-top {
    text-align: center;
    padding: 40px 0 25px 0;
}

.banner-top1 {
    text-align: center;
    padding: 0px 0px;
}

.banner-top h4 {
    font-size: 44px;
    color: #fdc033;
    margin: 0;
    text-transform: uppercase;
}

.banner-top1 h4 {
    font-size: 44px;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
}

.banner-top h5 {
    margin: 0;
    font-size: 24px;
    color: #ffffff;
    font-weight: 500;
}

.banner-top1 h5 {
    margin: 0;
    font-size: 24px;
    color: #ffffff;
    font-weight: 500;
}

.banner-middle {
    background-color: var(--secondary-color);
    text-align: center;
    padding: 8px 0 7px 0;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    display: inline-block;
    width: 95%;
}

.banner-middle p {
    color: #111111;
    margin: 0;
    line-height: normal;
    font-weight: 600;
}

.banner-middle p span {
    color: var(--primary-color) !important;
    font-weight: 600;
}

.banner-last {
    padding: 35px 25px 45px 25px;
}

.banner-last .fas {
    position: absolute;
    left: 25px;
    top: 20px;
    font-size: 15px;
}

.banner-form .sprite-icon {
    /* background: url(../images/sprite.webp) no-repeat; */
    background-position: 0 -81px;
    width: 37px;
    height: 17px;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 30px;
}

.custom-input-style {
    width: 100%;
    font-size: 15px;
    color: #666666;
    background-color: #FFFFFF !important;
    border: 3px solid rgb(204 204 204 / 70%) !important;
    border-radius: 50px !important;
    padding: 14px 25px 14px 45px;
    line-height: normal;
}

.custom-submit-style {
    width: 100%;
    background: var(--secondary-color) !important;
    color: #212529;
    font-size: 24px;
    font-weight: 600;
    border: 2px solid #FFFFFF !important;
    border-radius: 100px !important;
    padding: 10px 60px 10px 10px;
    line-height: normal;
}

.custom-select-style {
    width: 100%;
    background-color: #FFFFFF;
    border-radius: 30px;
    height: 53px;
    color: #666666;
}

.tab-style-1 .slick-dots {
    display: none !important;
}

.amazon {
    position: relative;
    bottom: -8px;
}

.accordionStyle {
    margin-bottom: 5rem;
}

.accordionStyle .card {
    border-color: #fff;
}

.accordionStyle .card .card-header {
    padding: 0;
}

.accordionStyle .card .card-header .btn.collapsed {
    background: #69a4c2;
    color: #2a2a2a;
}

.accordionStyle .card .card-header .btn {
    background: #2D7CA4;
    padding: 1rem 1.25rem;
}

.accordionStyle .card .card-header .que {
    display: inline-block;
    background: #514dbc;
    color: var(--white);
    padding: 4px 10px;
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    margin-right: 0.5rem;
}

.accordionStyle .card .card-header .btn {
    font-size: 1.1rem;
    color: var(--white);
}

.accordionStyle .card .card-header .circle {
    float: right;
    font-size: 10px;
    width: 15px;
    height: 15px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #222254;
    border-radius: 100px;
    margin-top: 9px;
}

.accordionStyle .card .card-header .btn[aria-expanded="true"] .circle i:before {
    content: "\f067";
}

.accordionStyle .card .card-body {
    background: #f9f9fd;
}

/* ChangesFound */

.incredibleCard {
    /* background: #a30d25 url(https://placehold.co/600x400) center/cover no-repeat; */
    background: #2D7CA4;
    padding: 2.5rem 1.5rem;
    border-radius: 0.8rem;
}

.incredibleCard h4 {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--white);
}

.incredibleCard h2 {
    font-size: 3.125rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.incredibleCard hr {
    border-top: 3px solid var(--secondary-color);
    margin-bottom: 1.5rem;
}

.incredibleCard .list li a {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--white);
    font-size: 1.125rem;
    line-height: 1.8;
}

.incredibleCard .list li a:before {
    content: "\f058";
    font-family: "Font Awesome 5";
    font-weight: 900;
    color: var(--secondary-color);
}

/* 
.professionalHelp {
     background: #60aab3; 
} */

.professionalHelp h3 {
    color: #2D7CA4;
    font-size: 1.5rem;
}

.testimonialThumb {
    background: #fff;
    box-shadow: 0 0 27px rgb(0 0 0 / 6%);
    margin: 3rem 0;
    border-radius: 10px;
    padding: 2rem;
}

.testimonialThumb>img {
    border-radius: 100px;
    border: 1px solid #fff;
    box-shadow: 0 0 30px rgb(0 0 0 / 20%);
    margin-top: -4rem;
    margin-bottom: 2rem;
}

.testimonialThumb h3 {
    font-size: 1.25rem;
}

.testimonialThumb p,
.testimonialThumb ul span {
    font-size: 14px;
    color: #666666;
}

.testimonialThumb ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 2rem 0 1rem;
}

.testimonialThumb ul i {
    color: #f5a521;
    font-size: 12px;
}

.testimonialThumb .caption {
    padding: 1rem;
    margin: 0 -2rem -3rem;
    background: #fef7e6;
    text-align: center;
    border-radius: 0 0 10px 10px;
}

.testimonialThumb .caption p {
    margin: 0;
    color: var(--black);
    font-weight: 400;
}

.testimonialThumb .caption p img {
    display: inline;
}

.contactSec {
    padding: 6rem 0;
}

.contactSec h3 {
    font-size: 2rem;
    color: #2D7CA4;
    text-transform: capitalize;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.contactSec p {
    font-size: 14px;
    font-weight: 500;
}

.contactSec .info {
    margin-top: 2rem;
}

.contactSec .info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.contactSec .info li i {
    margin-top: 6px;
    color: #2D7CA4;
    border: 1px solid #2D7CA4;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contactSec .info li a {
    color: var(--text-color);
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.4;
}

.contactSec .info li span {
    display: block;
    font-weight: 400;
}

.formStyle label {
    font-size: 1rem;
    font-weight: 400;
    color: #464646;
    margin-bottom: 4px;
}

.formStyle .form-control {
    height: 3rem;
    border: 1px solid #d5d5d5;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.formStyle textarea.form-control {
    height: 5rem;
}

.formStyle .custom-submit-style {
    width: 100%;
    border-radius: 6px !important;
    font-weight: 600;
    color: var(--black);
    text-transform: uppercase;
}

.listStyle {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    line-height: 1.2;
}

.listStyle li {
    font-size: 1rem;
    color: var(--white);
    font-weight: 300;
    display: flex;
    align-items: flex-start;
    line-height: 1.4;
    gap: 0.8rem;
}

.listStyle li:before {
    content: '';
    width: 1rem;
    height: 1rem;
    background: url(../images/mix/check.webp) top left/100% 100% no-repeat;
    position: relative;
    top: 4px;
}

.content-style ul li span {
    display: block;
    width: calc(100% - 1.5rem);
}

@media (max-width: 1600px) {
    .banner-style-1::before {
        display: none;
    }
    .banner-top {
        padding: 30px 0 20px 0;
    }
    /* .content-style h1 {
        font-size: 42px;
    } */
    .banner-top h4 {
        font-size: 40px;
    }
    .banner-top h5 {
        font-size: 20px;
    }
    .banner-last {
        padding: 30px 25px 40px 25px;
    }
    .headingstyle-1 h3,
    .cta-2 .content-style h3 {
        font-size: 42px
    }
    .headingstyle-1 p,
    .content-style ul li {
        font-size: 16px;
    }
    .tab-style-1 ul li a span {
        font-size: 17px;
    }
    .tab-content .text-box h4 {
        font-size: 30px;
    }
    .tab-content .text-box p {
        font-size: 16px;
    }
    .element-1 {
        left: 0;
    }
    .custom-submit-style {
        font-size: 20px;
        padding: 10px 10px 10px 10px;
    }
    .banner-form .sprite-icon {
        display: none;
    }
}

@media (max-width: 1199px) {
    .element {
        display: none;
    }
    .tab-style-1 {
        margin-top: 0
    }
    .w-line::before {
        display: none;
    }
    .banner-form {
        width: auto;
    }
    .content-style h1,
    .banner-top h4,
    .headingstyle-1 h3,
    .cta-2 .content-style h3 {
        font-size: 36px;
    }
    .content-style p,
    .headingstyle-1 p,
    .content-style ul li,
    .tab-style-1 ul li a span {
        font-size: 15px;
    }
    .btn-style-1,
    .btn-style-icon {
        font-size: 16px;
    }
    .what-we-provide {
        position: unset;
        margin-bottom: 3rem;
        width: 100%;
    }
    .what-we-provide ul {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 2rem;
    }
    .what-we-provide {
        position: unset;
        margin-bottom: 3rem;
        width: 100%;
    }
    .what-we-provide ul {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 2rem;
    }
    .stats-box {
        margin-bottom: 0;
        padding: 0 20px;
    }
    .stats-box h6 {
        font-size: 20px;
    }
    .stats-box h6 br {
        display: none;
    }
    .incredibleCard h2 {
        font-size: 2.5rem;
    }
    .trusted-partners ul li {
        margin: 0 10px;
    }
    .trusted-partners ul li::before {
        right: -10px;
    }
    .desirethumb {
        padding: 2rem;
    }
    .desirethumb p {
        font-size: 15px;
    }
    .happyGirl {
        position: unset;
        margin: -8rem auto 2rem;
        display: table;
    }
}

@media (max-width: 991px) {
    .spacing-x {
        padding: 40px 0;
    }
    header .toll-free {
        display: none;
    }
    header {
        padding: 10px 0
    }
    .headingstyle-1 h3 br {
        display: none;
    }
    .headingstyle-1 h3,
    .cta-2 .content-style h3,
    .fs-40 {
        font-size: 26px !important;
    }
    .headingstyle-1 p {
        font-size: 14px
    }

    .banner-style-1 {
        padding: 4rem 0 1rem;
    }
    .content-style h1 {
        font-size: 32px;
        margin-top: 100px;
    }
    .content-style p {
        font-size: 15px;
        padding: 0;
        background-color: transparent;
        color: #fdc033
    }
    .newBannerStyle .content-style .ban_top {
        display: none;
    }
    .form-top .banner-form {
        position: relative;
        top: auto;
        right: auto;
    }
    .banner-form {
        width: 100%;
    }
    .banner-top h4 {
        font-size: 34px;
    }
    .banner-top h5 {
        font-size: 20px;
    }
    .custom-input-style {
        padding: 11px 25px 11px 45px;
    }
    .banner-last .fas {
        top: 18px
    }
    .tab-content .text-box h4 {
        font-size: 22px;
    }
    .tab-content .text-box p,
    .tab-content .text-box ul.list li {
        font-size: 14px;
    }
    .btn-style-1,
    .btn-style-2 {
        font-size: 16px;
    }
    .what-we-provide {
        position: relative;
        width: 100%;
        top: auto;
        left: auto;
        margin-bottom: 20px;
    }
    .sub-list {
        margin-bottom: 9px;
    }
    .sub-list ul li {
        font-size: 15px
    }
    .bg-gradient-1 {
        padding: 30px 25px 20px;
    }
    .cta-1 h5 {
        font-size: 28px;
    }
    .cta-1 p {
        font-size: 16px;
    }
    .stats-box h6 {
        font-size: 20px;
    }
    .stats-box .circle {
        width: 131px;
        height: 131px;
        font-size: 36px;
    }
    .payment-method ul {
        display: block;
        text-align: center;
    }
    .payment-method ul li {
        width: 45%;
        display: inline-flex;
        flex-flow: column;
        margin-right: 0;
        margin: 5px;
    }
    .trusted-partners ul {
        display: block;
    }
    .trusted-partners ul li {
        width: 100% !important
    }
    .trusted-partners ul li a {
        text-align: center;
    }
    .banner-style-1 .banner-form {
        margin-bottom: 3rem;
        margin-top: 3rem;
    }
    .slick-dots {
        display: none;
    }
    .un-list ul li a {
        width: 100%;
        justify-content: center;
    }
    .trusted-partners {
        margin-top: 2rem;
    }
    .trusted-partners ul li {
        margin: 0;
    }
    .trusted-partners ul {
        display: flex;
        flex-flow: row wrap;
    }
    .trusted-partners ul li {
        width: auto !important;
        flex: 0 0 20%;
        padding: 15px 0;
    }
    .trusted-partners ul li:first-child {
        width: auto !important;
        flex: 0 0 100%;
    }
    .trusted-partners ul li::before {
        content: none;
    }
    .img-box {
        text-align: center;
    }
    .testimonial-box .img-box img {
        width: 200px;
    }
    .stats-box .circle {
        width: 100px;
        height: 100px;
        font-size: 24px;
    }
    .stats-box h6 {
        font-size: 18px;
    }
    .accordionStyle .card .card-header .btn {
        font-size: 1rem;
    }
    .desirethumb {
        min-height: 30rem;
    }
    .desirethumb.big {
        min-height: auto;
    }
    .happyGirl {
        margin: -4rem auto 2rem;
    }
    .tab-content .img-box .top:before {
        width: 50%;
        top: 2rem;
        left: 5%;
    }
    .uniLogoCasrousel .slick-slide img {
        margin: 0 auto;
    }
    .phoneIcon {
        color: var(--yellow);
        font-size: 1.25rem;
        margin-right: 1rem;
    }
    .phoneIcon:hover,
    .phoneIcon:focus {
        color: var(--yellow);
    }
    .dropdown .nav-link {
        display: inline-block !important;
    }
}

@media (max-width: 767px) {
    .what-we-provide ul {
        gap: 1rem;
    }
    .what-we-provide {
        padding: 20px;
    }
    .what-we-provide ul .btn-1 {
        font-size: 14px;
        padding: 10px;
    }
    .desirethumb {
        min-height: auto;
    }
    .happyGirl img {
        width: 15rem;
    }
    .sub-list {
        text-align: center;
    }
    .testimonialThumb {
        padding: 1rem;
    }
    .testimonialThumb ul {
        margin: 1rem 0 0;
    }
    .banner-style-1 {
        min-height: auto;
        height: auto;
        padding: 7rem 0 2rem;
    }
    .newBannerStyle.formMobWrap h5 {
        position: relative;
        font-size: 1.8rem;
        font-weight: 700;
        margin: 0;
        color: #232323;
        text-align: center;
        text-transform: uppercase;
        margin-bottom: 20px;
    }
    .newBannerStyle.formMobWrap .custom-submit-style {
        background: #641320 !important;
        color: var(--white);
    }
    .blink {
        position: relative;
        animation: blink ease-in-out 1s infinite;
    }
    @keyframes blink {
        0% {
            color: #ff0000;
        }
        50% {
            color: #000;
        }
        100% {
            color: #ff0000;
        }
    }
}

@media (max-width: 576px) {
    .tab-content .text-box .inline-block {
        display: flex;
        justify-content: space-between;
    }
    .btn-style-1,
    .btn-style-icon {
        padding: 12px 20px;
    }
    .what-we-provide ul {
        flex-direction: column;
    }
    .what-we-provide ul li {
        width: 100%;
        margin: 0;
    }
    .un-list ul li a {
        padding: 20px 10px;
    }
    .stats-box {
        margin-bottom: 20px;
    }
    .testimonial-box .review-by h5 {
        font-size: 35px;
    }
    .review-by img {
        width: 40px;
    }
    .cta-2 .content-style p {
        padding: 0.5rem 3rem;
        width: 100%;
        text-align: center;
        font-size: 1.25rem;
    }
    .cta-2 .banner-form {
        margin-top: 1.5rem;
    }
    .newBannerStyle h3 {
        font-size: 1.25rem;
    }
    .content-style h1,
    .desireGrades h2 {
        font-size: 26px;
    }
    .newBannerStyle .content-style .ban_top {
        display: none;
    }
    .content-style {
        margin-top: -100px !important;
    }
    .phd-professionals .tab-content .text-box ul.list li {
        flex: 0 0 100%;
    }
    .incredibleCard h2 {
        font-size: 2rem;
    }
    .cta-2 .content-style p {
        font-size: 1.125rem;
    }
    .newBannerStyle .content-style p {
        font-size: 15px;
        font-weight: 300;
        margin: 8px 0 1rem;
    }
    .newBannerStyle .content-style h1 {
        font-size: 1.75rem;
    }
    .tab-content .img-box .botom {
        display: none;
    }
    .desireGrades {
        padding: 1.5rem 0 0;
    }
    .desireGrades h3 {
        font-size: 1.25rem;
    }
    .content-style ul li {
        font-size: 14px;
        line-height: 30px;
    }
}

p strong {
    font-weight: 500;
}

.newBannerStyle .content-style .ban_top {
    color: var(--secondary-color);
}

/* add new styling */

/* .main-banner-form{
    background-color: rgb(197, 197, 197);
    border-radius: 10px;
    padding: 50px;  
}  */

.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    left: 10px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

.my-float {
    font-size: 40px !important;
    margin-top: 10px;
}

/*floating strips css start */

.floating_wrap {
    position: fixed;
    right: 0px;
    top: 100px;
    z-index: 99;
}

.floating_wrap .btns_wrap {
    position: fixed;
    right: 0px;
}

.floating_wrap .btns_wrap a:hover {
    text-decoration: none !important;
    right: 0px;
}

.floating_wrap .btns_wrap .chat_wrap {
    display: block;
    position: absolute;
    right: -225px;
    width: 275px;
    background: #fff;
    top: 30px;
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0px 0px 40px #00000026 !important;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-radius: 50px 0px 0px 50px;
}

.floating_wrap .btns_wrap .chat_wrap span.icoo{
    color: #2D7CA4;
    background: #fff;
    font-size: 20px;
    line-height: 1;
    padding: 14px 20px;
    border-right: 1px solid #ded9d9;
    vertical-align: middle;
    display: inline-block;
    border-radius: 50px 0px 0px 50px;
}

.floating_wrap .btns_wrap .chat_wrap span {
    color: #2D7CA4;
    font-size: 20px;
    vertical-align: middle;
    background: #fff;
    padding: 15px 30px 15px 15px;
}

/*floating strips css end */

/* social media links  */

.footer-links {
    display: block;
}

/* social media links  */

.footer-links a {
    padding: 8px;
    font-size: 15px;
    width: 30px;
    text-align: center;
    text-decoration: none;
    margin: 3px 2px;
    border-radius: 50%;
}

.footer-links a:hover {
    opacity: 0.7;
}

.fa-facebook {
    background: #fff;
    color: #3B5998;
}

.fa-instagram {
    background: #fff;
    color: #3B5998;
}

.fa-linkedin {
    background: #fff;
    color: #007bb5;
}

/* social media links  */

.blink_txt {
    animation: 1s linear infinite blinker;
}

@keyframes blinker {
    100%,
    100%,
    49% {
        color: #fdc033;
    }
    60%,
    99% {
        color: transparent;
    }
    50% {
        opacity: 0;
    }
}

.foot-mail {
    color: white;
}

.foot-mail i {
    color: white !important;
    padding-right: 7px;
}

.foot-mail a:hover {
    color: var(--secondary-color);
}

.headingstyle-1 h3 {
    font-size: 28px;
    line-height: 38px;
}

.headingstyle-1 p {
    color: #000;
}

.tab-content .text-box h3 {
    font-size: 27px;
    line-height: 38px;
    color: #fff;
}

.copy-right-sec {
    color: #fff !important;
}

.error {
    font-size: 12px !important;
    color: red !important;
}

/* i.fa.fa-phone {
    transform: rotate(90deg);
    line-height: 0;
} */


.contener{
    display: flex;
    justify-content: center;
    gap: 40px;
    align-items: center;
    max-width: 1450px;
    margin: 0 auto;
    padding-left: 100px;
}
.leftC img{
     max-width: 600px;
}
.rightC{
    padding: 25px 50px;
    flex: 1;
    text-align: center;
    align-items: center;
}
.leftC{
    flex: 1;
}
.rightC ul{
    margin-right: 20px;
    margin-top: 30px;
}
.rightC ul li{
    padding-top: 15px;
    font-size: 19px;
    font-weight: 600;
}
.rightC ul li i{
    color: #e6b800;
    padding-right: 5px;
}
.devider{
    max-width: 1450px;
    align-items: center;
    text-align: center;
    padding: 60px 5%;
    margin: 0 auto;
}.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    padding: 8px 0;
    border-radius: 25px;
    
  }
  .cardC {
    background: var(--color-background-primary);
    border: 0.5px solid #e0e0e0;
    border-radius: 12px;
    padding: 22px 20px;
    background-color: white;
    transition: border-color 0.2s;
    cursor: default;
    transition: .35s all ease;
    max-width: 300px;
    margin: 0 auto;
  }
  .cardC:hover {
    border-color: #bdbdbd;
    scale: 1.05;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  }
  .icon-wrap {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
  }
  .cardC h3 {
    font-size: 18px;
    font-weight: 600;
    color: #007bb5;
    margin: 0 0 8px;
  }
  .cardC p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
  }
  .accent-line {
    width: 28px;
    height: 2.5px;
    border-radius: 2px;
    background: #e6b800;
    margin-bottom: 10px;
  }
  .academic{
    padding: 60px 5%;
    align-items: center;
    text-align: center;
    background-color: #eeeeee;
    max-width: 1450px;
    margin: 0 auto;
    border-radius: 25px;
  }
  .academic h6{
    font-size: 22px;
  }
  .academic p{
    padding-top: 20px;
  }
  @media (max-width: 600px) {
    .cards-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 380px) {
    .cards-grid { grid-template-columns: 1fr; }
  }
@media (max-width: 980px) {
    .leftC img{
        max-width: 450px;
    }
    .rightC h1{
        font-size: 1.8rem;
    }
    .rightC ul li{
        font-size: 17px;
    }
    .contener{
        padding-left: 0;
    }
}
@media (max-width: 820px) {
    .contener {
        flex-direction: column;
    }
    .leftC {
        align-items: center;
        text-align: center;
    }
}
@media(max-width: 480px){
    .leftC img{
        max-width: 250px;
    }
    header .navbar img {
    width: 100px;
}
}
    @media(max-width: 350px){
     .leftC h1{
        font-size: 1.5rem;
     }
     .rightC ul li{
        font-size: 14px;
     }
    }

    .ps-section {
  padding: 5rem 1.5rem;
  max-width: 920px;
  margin: 0 auto;
}

.ps-header {
  margin-bottom: 2.75rem;
}

.ps-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 0.85rem;
}

.ps-title-wrap {
  display: inline-block;
  margin-bottom: 1.4rem;
}

.ps-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 400;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.ps-title em {
  font-style: italic;
  color: #007bb5;
  font-weight: 700;
}

.ps-title-underline {
  display: block;
  width: 72px;
  height: 3px;
  background-color: #e6b800;
  border-radius: 2px;
  margin-top: 10px;
}

.ps-intro {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  max-width: 560px;
}

.ps-grid2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 2.5rem 0;
}

@media (max-width: 600px) {
  .ps-grid2 {
    grid-template-columns: 1fr;
  }
}

.ps-card2 {
  background: #ffffff;
  border: 0.5px solid #e4e4e4;
  border-radius: 14px;
  padding: 1.35rem 1.5rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  cursor: default;
}

.ps-card2:hover {
  border-color: #d0d0d0;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.ps-icon2 {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.ps-icon2 svg {
  width: 18px;
  height: 18px;
  stroke: #666;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ps-card2-label {
  font-size: 18px;
  font-weight: 600;
  color: #007bb5;
  margin-bottom: 5px;
}

.ps-card2-desc {
  font-size: 15px;
  color: #777;
  line-height: 1.65;
}

.ps-rule {
  border: none;
  border-top: 0.5px solid #e4e4e4;
  margin: 2.5rem 0;
}

.ps-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.ps-tagline {
  font-size: 21px;
  font-weight: 400;
  font-style: italic;
  color: #1a1a1a;
}

.ps-badge2 {
  font-size: 13px;
  font-weight: 500;
  padding: 8px 22px;
  border-radius: 999px;
  border: 0.5px solid #ddd;
  color: #333;
  background: #f5f5f5;
  white-space: nowrap;
}

.teas-section {
  padding: 60px 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.teas-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 640px) {
  .teas-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.teas-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1565c0;
  margin: 0 0 0.85rem;
}

.teas-title-wrap {
  margin-bottom: 1.25rem;
}

.teas-title {
  font-size: clamp(26px, 4.5vw, 38px);
  font-weight: 400;
  line-height: 1.25;
  color: #0d1b2a;
  margin: 0 0 10px;
}

.teas-title em {
  font-style: italic;
  color: #1565c0;
}

.teas-underline {
  display: block;
  width: 64px;
  height: 3px;
  background-color: #f97316;
  border-radius: 2px;
}

.teas-body {
  font-size: 15px;
  line-height: 1.8;
  color: #4a5568;
  margin: 0 0 1.75rem;
}

.teas-stat-row {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.teas-stat {
  display: flex;
  flex-direction: column;
}

.teas-stat-num {
  font-size: 28px;
  color: #f97316;
  line-height: 1;
}

.teas-stat-label {
  font-size: 12px;
  color: #718096;
  margin-top: 3px;
}

.teas-list-title {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #718096;
  margin: 0 0 1.25rem;
}

.teas-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
}

.teas-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 0.5px solid #e8edf2;
  transition: padding-left 0.2s ease;
  cursor: default;
}

.teas-item:first-child {
  border-top: 0.5px solid #e8edf2;
}

.teas-item:hover {
  padding-left: 6px;
}

.teas-item:hover .teas-arrow {
  background-color: #f97316;
  border-color: #f97316;
}

.teas-item:hover .teas-arrow svg {
  stroke: #fff;
}

.teas-arrow {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  border: 1.5px solid #1565c0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.teas-arrow svg {
  width: 13px;
  height: 13px;
  stroke: #1565c0;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.2s ease;
}

.teas-item-text {
  font-size: 14.5px;
  color: #1a2433;
  font-weight: 400;
}

.teas-cta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.teas-btn-primary {
  font-size: 13px;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: 999px;
  border: none;
  background: #1565c0;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease;
}

.teas-btn-primary:hover {
  background: #0d47a1;
}

.teas-btn-ghost {
  font-size: 13px;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1.5px solid #e2e8f0;
  background: transparent;
  color: #4a5568;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.teas-btn-ghost:hover {
  border-color: #f97316;
  color: #f97316;
}

.teas-sub-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.teas-sub-list ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 0.5px solid #e8edf2;
  font-size: 14.5px;
  font-weight: 500;
  color: white;
  transition: padding-left 0.2s ease;
  cursor: default;

}

.teas-sub-list ul li:first-child {
  border-top: 0.5px solid #e8edf2;
}

.teas-sub-list ul li:hover {
  padding-left: 6px;
}

.teas-sub-list ul li i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  min-width: 26px;
  border-radius: 50%;
  border: 1.5px solid white;
  font-size: 12px;
  color: white;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.teas-sub-list ul li:hover i {
  background-color: #f97316;
  border-color: #f97316;
  color: #fff;
}

.cm-section {
  padding: 60px 5%;
  margin: 0 auto;
}

.cm-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

@media (max-width: 900px) {
  .cm-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 480px) {
  .cm-section {
    padding: 3.5rem 1.25rem;
  }
}

/* ── Left ── */

.cm-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1565c0;
  margin-bottom: 0.85rem;
}

.cm-title-wrap {
  margin-bottom: 1.5rem;
}

.cm-title {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 600;
  line-height: 1.25;
  color: #0d1b2a;
  margin-bottom: 10px;
}

.cm-title-amp {
  color: #f97316;
}

.cm-underline {
  display: block;
  width: 64px;
  height: 3px;
  background-color: #f97316;
  border-radius: 2px;
  margin-top: 10px;
}

.cm-body {
  font-size: 15px;
  line-height: 1.85;
  color: #4a5568;
  margin-bottom: 1rem;
  max-width: 520px;
}

.cm-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.cm-stat {
  display: flex;
  flex-direction: column;
}

.cm-stat-num {
  font-size: 30px;
  font-weight: 700;
  color: #f97316;
  line-height: 1;
}

.cm-stat-label {
  font-size: 12px;
  color: #718096;
  margin-top: 4px;
}

/* ── Right ── */

.cm-list-label {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #718096;
  margin-bottom: 1.25rem;
}

.cm-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.cm-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 0.5px solid #e8edf2;
  transition: padding-left 0.2s ease;
  cursor: default;
}

.cm-item:first-child {
  border-top: 0.5px solid #e8edf2;
}

.cm-item:hover {
  padding-left: 6px;
}

.cm-item:hover .cm-arrow {
  background-color: #f97316;
  border-color: #f97316;
}

.cm-item:hover .cm-arrow svg {
  stroke: #fff;
}

.cm-arrow {
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 50%;
  border: 1.5px solid #1565c0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.cm-arrow svg {
  width: 14px;
  height: 14px;
  stroke: #1565c0;
  transition: stroke 0.2s ease;
}

.cm-item-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cm-item-title {
  font-size: 15px;
  font-weight: 500;
  color: #0d1b2a;
}

.cm-item-sub {
  font-size: 13px;
  color: #718096;
}

/* ── Badges ── */

.cm-badge-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cm-badge {
  font-size: 15px;
  font-weight: 500;
  padding: 7px 18px;
  border-radius: 999px;
}

.cm-badge-blue {
  background-color: #e3f0fc;
  color: #1565c0;
  border: 1px solid #b5d4f4;
}

.cm-badge-orange {
  background-color: #fff3e8;
  color: #c2530a;
  border: 1px solid #fcd4b0;
}

.cm-badge-outline {
  background-color: transparent;
  color: #4a5568;
  border: 1px solid #cbd5e0;
}

.wws-section {
  padding: 60px 5%;
  background-color: #fafafa;
}

.wws-container {
  max-width: 1400px;
  margin: 0 auto;
}

.wws-top {
  margin-bottom: 3rem;
  text-align: center;
}

.wws-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #2D7CA4;
  margin-bottom: 0.9rem;
}

.wws-title-wrap {
  margin-bottom: 1.25rem;
}

.wws-title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 600;
  line-height: 1.2;
  color: #0d1b2a;
  margin-bottom: 10px;
}

.wws-underline {
  display: block;
  width: 64px;
  height: 3px;
  background-color: #fdc033;
  border-radius: 2px;
  margin: 10px auto 0;
}

.wws-intro {
  font-size: 16px;
  line-height: 1.8;
  color: #4a5568;
  max-width: 680px;
  margin: 1rem auto 0;
}

/* Grid */
.wws-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 2.5rem;
}

@media (max-width: 960px) {
  .wws-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .wws-grid {
    grid-template-columns: 1fr;
  }
}

/* Support Card */
.supportCard {
  background: #f5f5f0;
  border: 0.5px solid #e2e8f0;
  border-radius: 14px;
  padding: 1.6rem 1.75rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  cursor: default;
}

.supportCard:hover {
  border-color: #b5d4e8;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.07);
  transform: translateY(-3px);
}

.supportCard-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #fff;
  border: 0.5px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.supportCard-icon svg {
  width: 20px;
  height: 20px;
  stroke: #2D7CA4;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.supportCard-text {
  font-size: 16px;
  font-weight: 500;
  color: #0d1b2a;
  line-height: 1.5;
}

.supportCard-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fdc033;
  margin-right: 8px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

/* Quote block */
.wws-quote-block {
  border-left: 4px solid #fdc033;
  padding: 1.5rem 2rem;
  background: #fffbf0;
  border-radius: 0 12px 12px 0;
  margin-bottom: 2.5rem;
}

.wws-quote-text {
  font-size: 18px;
  font-style: italic;
  line-height: 1.75;
  color: #2d3748;
  margin-bottom: 0.75rem;
}

.wws-quote-author {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fdc033;
}

/* Bottom */
.wws-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding-top: 2.5rem;
  border-top: 0.5px solid #e2e8f0;
}

@media (max-width: 720px) {
  .wws-bottom {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.wws-bottom-text {
  font-size: 16px;
  line-height: 1.85;
  color: #4a5568;
}

.wws-bottom-highlight {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  color: #0d1b2a;
}

.wws-bottom-highlight span {
  color: #fdc033;
}

.understanding{
    background-color: #eeeeee;
    padding: 60px 5%;
    margin: 0 auto;
}
    /* ── HERO BANNER ── */
    .css-hero-banner {
      background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-accent2) 100%);
      color: var(--clr-white);
      text-align: center;
      padding: 80px 5%;
    }
    .css-hero-banner h1 {
      font-size: clamp(1.9rem, 4vw, 3rem);
      font-weight: 800;
      letter-spacing: -0.5px;
      margin-bottom: 16px;
      color: var(--clr-white);
    }
    .css-hero-banner p {
      font-size: clamp(1rem, 2vw, 1.2rem);
      max-width: 680px;
      margin: 0 auto;
      opacity: 0.88;
      color: var(--clr-white);
    }
    .css-hero-accent-line {
      width: 60px;
      height: 4px;
      background: var(--clr-accent);
      border-radius: 2px;
      margin: 22px auto 0;
    }

    /* ── SHARED SECTION STYLES ── */
    .css-subject-section {
      padding: 60px 5%;
      margin: 0 auto;
      max-width: 1100px;
    }
    .css-subject-section-alt {
      background: var(--clr-offwhite);
    }
    .css-subject-section-alt .css-inner-wrap {
      max-width: 1100px;
      margin: 0 auto;
      padding: 60px 5%;
    }

    .css-section-tag {
      display: inline-block;
      background: var(--clr-accent);
      color: var(--clr-white);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 4px 12px;
      border-radius: 20px;
      margin-bottom: 14px;
    }
    .css-section-heading {
      font-size: clamp(1.4rem, 3vw, 2rem);
      font-weight: 800;
      color: var(--clr-primary);
      margin-bottom: 10px;
      line-height: 1.25;
    }
    .css-accent-bar {
      width: 48px;
      height: 3px;
      background: var(--clr-accent);
      border-radius: 2px;
      margin-bottom: 20px;
    }
    .css-section-body {
      font-size: 1rem;
      color: var(--clr-muted);
      max-width: 820px;
    }
    .css-section-body p + p {
      margin-top: 14px;
    }

    /* ── CARD GRID ── */
    .css-card-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 28px;
      padding: 60px 5%;
      max-width: 1100px;
      margin: 0 auto;
    }
    .css-subject-card {
      background: var(--clr-white);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 32px 28px;
      border-top: 4px solid var(--clr-accent2);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .css-subject-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 32px rgba(26,60,94,0.14);
    }
    .css-card-icon {
      width: 48px;
      height: 48px;
      background: var(--clr-offwhite);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      margin-bottom: 18px;
    }
    .css-card-title {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--clr-primary);
      margin-bottom: 10px;
    }
    .css-card-desc {
      font-size: 0.93rem;
      color: var(--clr-muted);
      line-height: 1.7;
    }

    /* ── SECTION DIVIDER ── */
    .css-divider {
      border: none;
      border-top: 2px solid var(--clr-border);
      max-width: 1100px;
      margin: 0 auto;
    }

    /* ── WHY TRUST ── */
    .css-trust-section {
      background: var(--clr-primary);
      color: var(--clr-white);
      padding: 60px 5%;
      margin: 0 auto;
    }
    .css-trust-inner {
      max-width: 1100px;
      margin: 0 auto;
    }
    .css-trust-section .css-section-heading {
      color: var(--clr-white);
    }
    .css-trust-section .css-section-body {
      color: rgba(255,255,255,0.78);
    }
    .css-trust-section .css-accent-bar {
      background: var(--clr-accent);
    }
    .css-trust-list {
      list-style: none;
      margin-top: 28px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 16px;
    }
    .css-trust-list li {
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.13);
      border-radius: var(--radius);
      padding: 18px 20px;
      font-size: 0.95rem;
      color: rgba(255,255,255,0.9);
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }
    .css-trust-list li::before {
      content: "✦";
      color: var(--clr-accent);
      font-size: 0.85rem;
      margin-top: 2px;
      flex-shrink: 0;
    }

    /* ── ENGLISH SPLIT LAYOUT ── */
    #css-english-section {
      background: var(--clr-white);
      border-bottom: 1px solid var(--clr-border);
    }
    #css-english-section .css-inner-wrap {
      max-width: 1100px;
      margin: 0 auto;
      padding: 60px 5%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: center;
    }
    .css-english-visual {
      background: linear-gradient(135deg, var(--clr-primary), var(--clr-accent2));
      border-radius: var(--radius);
      padding: 40px 32px;
      color: var(--clr-white);
      font-size: 0.95rem;
      line-height: 1.8;
    }
    .css-english-visual strong {
      display: block;
      font-size: 1.2rem;
      margin-bottom: 12px;
      color: var(--clr-accent);
    }

    @media (max-width: 768px) {
      #css-english-section .css-inner-wrap {
        grid-template-columns: 1fr;
      }
      .css-english-visual { display: none; }
    }

     .css-section-block {
      padding: 70px 5%;
      border-bottom: 1px solid var(--clr-border);
    }
    .css-section-block:last-child { border-bottom: none; }
    .css-section-block:nth-child(odd)  { background: var(--clr-bg); }
    .css-section-block:nth-child(even) { background: var(--clr-white); }

    .css-section-inner {
      max-width: 960px;
      margin: 0 auto;
    }

    .css-eyebrow {
      display: inline-block;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--clr-accent);
      background: rgba(232,160,32,0.10);
      border: 1px solid rgba(232,160,32,0.25);
      border-radius: 40px;
      padding: 4px 14px;
      margin-bottom: 16px;
    }

    .css-section-headline {
      font-size: 22px;
      font-weight: 700;
      color: var(--clr-primary);
      margin-bottom: 6px;
      line-height: 1.3;
    }

    .css-section-subheadline {
      font-size: 16px;
      font-weight: 600;
      color: var(--clr-accent2);
      margin-bottom: 18px;
      line-height: 1.4;
    }

    .css-section-body {
      font-size: 15px;
      color: var(--clr-muted);
      max-width: 720px;
      line-height: 1.8;
    }

    .css-divider-accent {
      width: 44px;
      height: 3px;
      background: var(--clr-accent);
      border-radius: 3px;
      margin-bottom: 20px;
    }

    .css-two-col {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-top: 36px;
    }

    .css-feature-card {
      background: var(--clr-white);
      border: 1px solid var(--clr-border);
      border-radius: var(--radius);
      padding: 28px 26px;
      box-shadow: var(--shadow);
    }

    .css-feature-card-alt {
      background: var(--clr-offwhite);
      border: 1px solid var(--clr-border);
      border-radius: var(--radius);
      padding: 28px 26px;
    }

    .css-feature-card-headline {
      font-size: 15px;
      font-weight: 700;
      color: var(--clr-primary);
      margin-bottom: 8px;
    }

    .css-feature-card-body {
      font-size: 14px;
      color: var(--clr-muted);
      line-height: 1.75;
    }

    .css-highlight-bar {
      border-left: 4px solid var(--clr-accent);
      padding-left: 20px;
      margin-top: 28px;
    }
    .css-highlight-bar p {
      font-size: 15px;
      color: var(--clr-muted);
      font-style: italic;
      line-height: 1.75;
    }

    .css-bullet-list {
      margin-top: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .css-bullet-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 14px;
      color: var(--clr-muted);
      line-height: 1.65;
    }

    .css-bullet-dot {
      flex-shrink: 0;
      margin-top: 7px;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--clr-accent2);
    }

    .css-cta-band {
      background: var(--clr-primary);
      border-radius: var(--radius);
      padding: 48px 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
    }
    .css-cta-band-text .css-section-headline { color: var(--clr-white); }
    .css-cta-band-text .css-section-body {
      color: rgba(255,255,255,0.70);
      margin-top: 8px;
      max-width: 560px;
    }

    .css-cta-btn {
      flex-shrink: 0;
      display: inline-block;
      background: var(--clr-accent);
      color: var(--clr-primary);
      font-size: 14px;
      font-weight: 700;
      padding: 14px 30px;
      border-radius: 8px;
      border: none;
      cursor: pointer;
      white-space: nowrap;
      letter-spacing: 0.02em;
      text-decoration: none;
      transition: opacity 0.2s;
    }
    .css-cta-btn:hover { opacity: 0.88; }

    @media (max-width: 768px) {
      .css-section-block { padding: 50px 5%; }
      .css-two-col {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 24px;
      }
      .css-section-headline    { font-size: 20px; }
      .css-section-subheadline { font-size: 15px; }
      .css-cta-band {
        flex-direction: column;
        align-items: flex-start;
        padding: 36px 28px;
        gap: 24px;
      }
      .css-cta-btn { width: 100%; text-align: center; }
    }

    @media (max-width: 480px) {
      .css-section-block { padding: 40px 5%; }
      .css-section-headline { font-size: 18px; }
      .css-feature-card,
      .css-feature-card-alt { padding: 20px 18px; }
      .css-cta-band { padding: 28px 20px; }
    }

    /* Blue background sections */
.css-section-blue {
  background: var(--clr-primary) !important;
}

.css-eyebrow-light {
  color: var(--clr-accent);
  background: rgba(232,160,32,0.15);
  border-color: rgba(232,160,32,0.35);
}

.css-headline-light  { color: var(--clr-white); }
.css-subheadline-light { color: rgba(255,255,255,0.80); }
.css-body-light      { color: rgba(255,255,255,0.68); }

.css-feature-card-blue {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 28px 26px;
}

.css-card-headline-light { color: var(--clr-white); }
.css-card-body-light     { color: rgba(255,255,255,0.68); }

.css-bullet-dot-light { background: var(--clr-accent); }


   /* ── Section Blocks ── */
    .css-section-block {
      padding: 70px 5%;
      border-bottom: 1px solid var(--clr-border);
    }
    .css-section-block:last-child { border-bottom: none; }
    .css-section-block:not(.css-section-blue):nth-child(odd)  { background: var(--clr-bg); }
    .css-section-block:not(.css-section-blue):nth-child(even) { background: var(--clr-white); }
    .css-section-blue { background: var(--clr-primary) !important; }

    .css-section-inner        { max-width: 960px; margin: 0 auto; }
    .css-section-inner-center { max-width: 960px; margin: 0 auto; text-align: center; }

    /* ── Eyebrow ── */
    .css-eyebrow {
      display: inline-block;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--clr-accent);
      background: rgba(232,160,32,0.10);
      border: 1px solid rgba(232,160,32,0.25);
      border-radius: 40px;
      padding: 4px 14px;
      margin-bottom: 16px;
    }
    .css-eyebrow-light {
      color: var(--clr-accent);
      background: rgba(232,160,32,0.15);
      border-color: rgba(232,160,32,0.35);
    }

    /* ── Headlines ── */
    .css-section-headline {
      font-size: 20px;
      font-weight: 700;
      color: var(--clr-primary);
      margin-bottom: 6px;
      line-height: 1.3;
    }
    .css-headline-light      { color: var(--clr-white); }
    .css-section-subheadline { font-size: 16px; font-weight: 600; color: var(--clr-accent2); margin-bottom: 18px; line-height: 1.4; }
    .css-subheadline-light   { color: rgba(255,255,255,0.80); }

    /* ── Body ── */
    .css-section-body {
      font-size: 15px;
      color: var(--clr-muted);
      max-width: 720px;
      line-height: 1.8;
    }
    .css-section-body-center {
      font-size: 15px;
      color: var(--clr-muted);
      line-height: 1.8;
      margin: 0 auto;
    }
    .css-body-light { color: rgba(255,255,255,0.68); }

    /* ── Dividers ── */
    .css-divider-accent  { width: 44px; height: 3px; background: var(--clr-accent); border-radius: 3px; margin-bottom: 20px; }
    .css-divider-center  { width: 44px; height: 3px; background: var(--clr-accent); border-radius: 3px; margin: 0 auto 20px; }

    /* ── Grids ── */
    .css-two-col   { display: grid; grid-template-columns: 1fr 1fr;       gap: 24px; margin-top: 36px; }
    .css-three-col { display: grid; grid-template-columns: 1fr 1fr 1fr;   gap: 20px; margin-top: 36px; }

    /* ── Standard Cards ── */
    .css-feature-card {
      background: var(--clr-white);
      border: 1px solid var(--clr-border);
      border-radius: var(--radius);
      padding: 28px 26px;
      box-shadow: var(--shadow);
    }
    .css-feature-card-alt {
      background: var(--clr-offwhite);
      border: 1px solid var(--clr-border);
      border-radius: var(--radius);
      padding: 28px 26px;
    }
    .css-feature-card-blue {
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: var(--radius);
      padding: 28px 26px;
    }
    .css-feature-card-headline { font-size: 15px; font-weight: 700; color: var(--clr-primary); margin-bottom: 8px; }
    .css-card-headline-light   { color: var(--clr-white); }
    .css-feature-card-body     { font-size: 14px; color: var(--clr-muted); line-height: 1.75; }
    .css-card-body-light       { color: rgba(255,255,255,0.68); }

    /* ── Assignment Card (top accent border) ── */
    .css-assign-card {
      background: var(--clr-white);
      border: 1px solid var(--clr-border);
      border-top: 3px solid var(--clr-accent2);
      border-radius: var(--radius);
      padding: 24px 22px;
      box-shadow: var(--shadow);
    }
    .css-assign-card-headline { font-size: 14px; font-weight: 700; color: var(--clr-primary); margin-bottom: 8px; }
    .css-assign-card-body     { font-size: 14px; color: var(--clr-muted); line-height: 1.70; }

    /* ── Why Card (centered icon badge) ── */
    .css-why-card {
      background: var(--clr-offwhite);
      border: 1px solid var(--clr-border);
      border-radius: var(--radius);
      padding: 26px 22px;
      text-align: center;
    }
    .css-why-card-icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background: var(--clr-primary);
      margin: 0 auto 14px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .css-why-card-icon svg    { width: 20px; height: 20px; fill: var(--clr-accent); }
    .css-why-card-headline    { font-size: 14px; font-weight: 700; color: var(--clr-primary); margin-bottom: 7px; }
    .css-why-card-body        { font-size: 14px; color: var(--clr-muted); line-height: 1.68; }

    /* ── Strategy Card (blue glass, left accent border) ── */
    .css-strat-card {
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.15);
      border-left: 3px solid var(--clr-accent);
      border-radius: var(--radius);
      padding: 24px 22px;
    }
    .css-strat-card-headline { font-size: 14px; font-weight: 700; color: var(--clr-white); margin-bottom: 7px; }
    .css-strat-card-body     { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.70; }

    /* ── Highlight Bar ── */
    .css-highlight-bar { border-left: 4px solid var(--clr-accent); padding-left: 20px; margin-top: 28px; }
    .css-highlight-bar p { font-size: 15px; color: var(--clr-muted); font-style: italic; line-height: 1.75; }

    /* ── Bullet List ── */
    .css-bullet-list  { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
    .css-bullet-item  { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--clr-muted); line-height: 1.65; }
    .css-bullet-dot   { flex-shrink: 0; margin-top: 7px; width: 8px; height: 8px; border-radius: 50%; background: var(--clr-accent2); }
    .css-bullet-dot-light { background: var(--clr-accent); }

    /* ── CTA Band ── */
    .css-cta-band {
      background: var(--clr-primary);
      border-radius: var(--radius);
      padding: 48px 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
    }
    .css-cta-band-text .css-section-headline { color: var(--clr-white); }
    .css-cta-band-text .css-section-body     { color: rgba(255,255,255,0.70); margin-top: 8px; max-width: 560px; }
    .css-cta-btn {
      flex-shrink: 0;
      display: inline-block;
      background: var(--clr-accent);
      color: var(--clr-primary);
      font-size: 14px;
      font-weight: 700;
      padding: 14px 30px;
      border-radius: 8px;
      border: none;
      cursor: pointer;
      white-space: nowrap;
      letter-spacing: 0.02em;
      text-decoration: none;
      transition: opacity 0.2s;
    }
    .css-cta-btn:hover { opacity: 0.88; }

    /* ── Responsive ── */
    @media (max-width: 768px) {
      .css-section-block   { padding: 50px 5%; }
      .css-two-col,
      .css-three-col       { grid-template-columns: 1fr; gap: 16px; margin-top: 24px; }
      .css-section-headline    { font-size: 18px; }
      .css-section-subheadline { font-size: 15px; }
      .css-cta-band        { flex-direction: column; align-items: flex-start; padding: 36px 28px; gap: 24px; }
      .css-cta-btn         { width: 100%; text-align: center; }
    }

    @media (max-width: 480px) {
      .css-section-block   { padding: 40px 5%; }
      .css-section-headline { font-size: 16px; }
      .css-feature-card,
      .css-feature-card-alt,
      .css-feature-card-blue,
      .css-assign-card,
      .css-why-card,
      .css-strat-card      { padding: 18px 16px; }
      .css-cta-band        { padding: 28px 20px; }
    }

    .teas--page-wrap { background: #f7f6f3; color: #2b2b2b; line-height: 1.75; }

  /* ── Sections ── */
  .teas--section-block { padding: 70px 5%; border-bottom: 1px solid #dce3ea; }
  .teas--section-block:last-child { border-bottom: none; }
  .teas--section-block:not(.teas--section-dark):nth-child(odd)  { background: #f7f6f3; }
  .teas--section-block:not(.teas--section-dark):nth-child(even) { background: #ffffff; }
  .teas--section-dark { background: #1a3c5e !important; }

  .teas--inner        { max-width: 960px; margin: 0 auto; }
  .teas--inner-center { max-width: 960px; margin: 0 auto; text-align: center; }

  /* ── Eyebrow ── */
  .teas--eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: #e8a020;
    background: rgba(232,160,32,0.11);
    border: 1px solid rgba(232,160,32,0.28);
    border-radius: 40px;
    padding: 5px 16px;
    margin-bottom: 18px;
  }
  .teas--eyebrow-light {
    color: #e8a020;
    background: rgba(232,160,32,0.16);
    border-color: rgba(232,160,32,0.38);
  }

  /* ── Headlines ── */
  .teas--headline       { font-size: 22px; font-weight: 700; color: #1a3c5e; margin-bottom: 8px; line-height: 1.3; }
  .teas--headline-light { color: #ffffff; }
  .teas--subhead        { font-size: 17px; font-weight: 600; color: #2e7d9e; margin-bottom: 20px; line-height: 1.4; }
  .teas--subhead-light  { color: rgba(255,255,255,0.82); }

  /* ── Body ── */
  .teas--body        { font-size: 16px; color: #5a6472; max-width: 720px; line-height: 1.85; }
  .teas--body-center { font-size: 16px; color: #5a6472; line-height: 1.85; margin: 0 auto; }
  .teas--body-light  { color: rgba(255,255,255,0.70); }

  /* ── Dividers ── */
  .teas--divider        { width: 46px; height: 3px; background: #e8a020; border-radius: 3px; margin-bottom: 22px; }
  .teas--divider-center { width: 46px; height: 3px; background: #e8a020; border-radius: 3px; margin: 0 auto 22px; }

  /* ── Grids ── */
  .teas--two-col   { display: grid; grid-template-columns: 1fr 1fr;       gap: 24px; margin-top: 36px; }
  .teas--three-col { display: grid; grid-template-columns: 1fr 1fr 1fr;   gap: 22px; margin-top: 36px; }

  /* ── Card 1: teas--subject-card ── */
  .teas--subject-card {
    background: #ffffff;
    border: 1px solid #dce3ea;
    border-radius: 12px;
    padding: 28px 26px;
    box-shadow: 0 4px 24px rgba(26,60,94,0.09);
    position: relative;
    overflow: hidden;
  }
  .teas--subject-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: #2e7d9e;
  }
  .teas--subject-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px; height: 34px;
    border-radius: 8px;
    background: #1a3c5e;
    color: #e8a020;
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 14px;
  }
  .teas--subject-card-headline { font-size: 16px; font-weight: 700; color: #1a3c5e; margin-bottom: 9px; }
  .teas--subject-card-body     { font-size: 15px; color: #5a6472; line-height: 1.75; }

  /* ── Card 2: teas--plan-card ── */
  .teas--plan-card {
    background: #eef1f5;
    border: 1px solid #dce3ea;
    border-left: 4px solid #e8a020;
    border-radius: 12px;
    padding: 26px 24px;
  }
  .teas--plan-card-headline { font-size: 16px; font-weight: 700; color: #1a3c5e; margin-bottom: 8px; }
  .teas--plan-card-body     { font-size: 15px; color: #5a6472; line-height: 1.75; }

  /* ── Card 3: teas--glass-card ── */
  .teas--glass-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 12px;
    padding: 26px 24px;
  }
  .teas--glass-card-headline { font-size: 16px; font-weight: 700; color: #ffffff; margin-bottom: 9px; }
  .teas--glass-card-body     { font-size: 15px; color: rgba(255,255,255,0.68); line-height: 1.75; }

  /* ── Card 4: teas--icon-card ── */
  .teas--icon-card {
    background: #ffffff;
    border: 1px solid #dce3ea;
    border-radius: 12px;
    padding: 28px 22px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(26,60,94,0.09);
  }
  .teas--icon-wrap {
    width: 46px; height: 46px;
    border-radius: 12px;
    background: #eef1f5;
    border: 1px solid #dce3ea;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .teas--icon-wrap svg      { width: 22px; height: 22px; fill: #2e7d9e; }
  .teas--icon-card-headline { font-size: 16px; font-weight: 700; color: #1a3c5e; margin-bottom: 8px; }
  .teas--icon-card-body     { font-size: 15px; color: #5a6472; line-height: 1.72; }

  /* ── Highlight Bar ── */
  .teas--highlight   { border-left: 4px solid #e8a020; padding-left: 22px; margin-top: 30px; }
  .teas--highlight p { font-size: 16px; color: #5a6472; font-style: italic; line-height: 1.8; }

  /* ── Bullet List ── */
  .teas--bullets         { margin-top: 22px; display: flex; flex-direction: column; gap: 12px; }
  .teas--bullet-row      { display: flex; align-items: flex-start; gap: 14px; font-size: 16px; color: #5a6472; line-height: 1.7; }
  .teas--bullet-dot      { flex-shrink: 0; margin-top: 8px; width: 8px; height: 8px; border-radius: 50%; background: #2e7d9e; }
  .teas--bullet-dot-lite { background: #e8a020; }

  /* ── CTA Band ── */
  .teas--cta-band {
    background: #1a3c5e;
    border-radius: 12px;
    padding: 50px 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
  }
  .teas--cta-band .teas--headline { color: #ffffff; }
  .teas--cta-band .teas--body     { color: rgba(255,255,255,0.70); margin-top: 10px; max-width: 560px; }
  .teas--cta-btn {
    flex-shrink: 0;
    display: inline-block;
    background: #e8a020;
    color: #1a3c5e;
    font-size: 15px;
    font-weight: 700;
    padding: 15px 32px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: opacity 0.2s;
  }
  .teas--cta-btn:hover { opacity: 0.88; }

  /* ── Responsive ── */
  @media (max-width: 768px) {
    .teas--section-block { padding: 50px 5%; }
    .teas--two-col,
    .teas--three-col     { grid-template-columns: 1fr; gap: 16px; margin-top: 24px; }
    .teas--headline      { font-size: 20px; }
    .teas--subhead       { font-size: 16px; }
    .teas--cta-band      { flex-direction: column; align-items: flex-start; padding: 38px 28px; gap: 24px; }
    .teas--cta-btn       { width: 100%; text-align: center; }
  }

  @media (max-width: 480px) {
    .teas--section-block   { padding: 40px 5%; }
    .teas--headline        { font-size: 18px; }
    .teas--subject-card,
    .teas--plan-card,
    .teas--glass-card,
    .teas--icon-card       { padding: 20px 18px; }
    .teas--cta-band        { padding: 28px 20px; }
  }