@import url('https://fonts.googleapis.com/css2?family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

:root {
    --primary-color: #162842;
    --secondary-color: #E13833;
    --heading-font: "PT Serif", serif;
    --body-font: "Rubik", sans-serif;
}

html,
body {
    scroll-behavior: smooth;
    font-family: var(--body-font);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
}

.container {
    max-width: 1400px;
    padding: 0 15px;
}

.pre-header {
    background: var(--primary-color);
    color: white;
}

.header-social {
    transition: all .3s;
}

.header-social a:hover {
    color: var(--secondary-color);
}

.add-bar {
    display: flex;
    justify-content: space-between;
    justify-content: end;
    gap: 20px;
}

.add-bar ul {
    display: flex;
    margin: 0;
    padding: 0;
    gap: 20px;
    align-items: center;
    justify-content: end;
    list-style: none;
}

header nav {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
    font-family: var(--heading-font);
}



nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
}

.toggle-head span {
    background: #162842;
    padding: 6px 0 0 12px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: inline-block;
    cursor: pointer;
}

.search-wrapper {
    position: relative;
}

.search-input-wrapper {
    position: relative;
    display: inline-block;
    width: 60%;
    transition: width 0.3s ease;
}

.search-input-wrapper input[type="text"] {
    width: 100%;
    padding: 12px 20px 12px 40px;
    /* extra left padding for icon */
    border-radius: 23px;
    border: none;
    background: #FDEFEF;
    box-shadow: none;
    outline: none;
    display: block;
}

.search-input-wrapper i {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: #aaa;
    font-size: 1rem;
    pointer-events: none;
}

.search-wrapper input[type="text"]:focus,
.search-wrapper input[type="text"]:active {
    border: none;
    box-shadow: none;
    outline: none;
}

.search-wrapper form:focus-within .search-input-wrapper {
    width: 100%;
}

.header-call {
    background: var(--secondary-color);
    padding: 13px 20px;
}

.add-bar i {
    color: var(--secondary-color);
}

.logo {
    text-align: center;
    border-bottom: 5px solid var(--secondary-color);
    background: white;
    z-index: 11;
    position: relative;
    margin-bottom: -13px;
}

/* Slide-in About Panel */
.about-panel {
    position: fixed;
    top: 0;
    left: -350px;
    width: 320px;
    height: 100%;
    background: #162842;
    color: #fff;
    padding: 30px 20px;
    z-index: 1051;
    transition: left 0.4s ease;
}

.about-panel.active {
    left: 0;
}

.about-panel .about-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.8rem;
    background: none;
    color: #fff;
    border: none;
    cursor: pointer;
}

/* Content Styling */
/* .about-content {
    margin-top: 60px;
} */

.about-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.about-content p {
    font-size: 1rem;
    line-height: 1.6;
}


.about-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.about-overlay.active {
    opacity: 1;
    visibility: visible;
}

.hero-slider {
    position: relative;
    overflow: hidden;
}

.fixed-bg {
    background: url('../img/main-banner-bg.png') center center / cover no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-slider .swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 3rem;
    z-index: 11;
    padding-bottom: 0;
}

.slide-content {
    color: #fff;
    z-index: 3;
    text-align: left;
    position: relative;
}

.slide-content h2 {
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 21px;
}

.slide-content p {
    border-left: 2px solid white;
    padding: 0 8px;
}

.slide-tag {
    color: white;
    padding: 5px 10px;
    display: inline-block;
    margin-bottom: 15px;
    border: 1px solid white;
}

.get-started {
    position: relative;
    display: inline-block;
    padding: 12px 30px;
    text-transform: uppercase;
    color: var(--secondary-color);
    background: white;
    border-radius: 30px;
    overflow: hidden;
    transition: color 0.3s ease;
    z-index: 1;
}

.get-started::before {
    content: "";
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transition: top 0.4s ease;
    z-index: -1;
}

.get-started:hover::before {
    top: 0;
}

.get-started:hover {
    color: white;
}


.img-container {
    position: relative;
    width: 100%;
    max-width: 800px;
}

.usa-shape {
    position: absolute;
    top: 40px;
    left: 60%;
    max-width: 1000px;
    transform: translateX(-60%);
    z-index: 1;
    opacity: 1;
}



.main-img {
    position: relative;
    width: 100%;
    max-width: 100%;
    z-index: 2;
}

.slider-tabs {
    text-align: center;
}

.slider-tabs ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
}

.slider-tabs li {
    cursor: pointer;
    padding: 20px 20px;
    background: #f0f0f0;
    border-radius: 0;
    transition: all 0.3s ease;
    font-weight: 600;
    flex: 1;
    border-right: 1px solid #e5d7d7;
    border-bottom: 1px solid #e5d7d7;
}

.slider-tabs li.active {
    background: var(--primary-color);
    color: #fff;
}

.hero-slider .swiper-pagination {
    position: absolute;
    top: 50% !important;
    left: 20px !important;
    transform: translateY(-50%) !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: max-content !important;
}

.hero-slider .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    margin: 10px 0 !important;
    opacity: 0.7;
    transition: all 0.3s ease;
    position: relative;
}

.hero-slider .swiper-pagination-bullet-active {
    opacity: 1;
    background: #fff;
}

.hero-slider .swiper-pagination-bullet-active::before {
    content: "";
    position: absolute;
    top: -6px;
    left: -6px;
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    border-radius: 50%;
    box-sizing: border-box;
    opacity: 1;
}

.title-wrapper {
    margin-bottom: 1rem;
    position: relative;
}

span.divide-span {
    right: -76px;
    width: 7px;
    height: 7px;
    background: var(--secondary-color);
    display: inline-block;
    position: relative;
    border-radius: 10px;
}

span.divide-span::before {
    content: "";
    position: absolute;
    left: -74px;
    top: 0;
    width: 70px;
    height: 7px;
    background: var(--secondary-color);
    border-radius: 10px;
}

span.divide-span::after {
    content: "";
    position: absolute;
    right: -12px;
    top: 0;
    width: 7px;
    height: 7px;
    border-radius: 10px;
    background: var(--secondary-color)
}



.title-wrapper>span:first-of-type::before {
    content: "\f1d8";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 8px;
    color: var(--secondary-color);
}


.title-wrapper>span:first-of-type {
    color: #0048B4;
}

.about-section .get-started {
    background: var(--primary-color);
    color: white;
}

.about-section .get-started::before {
    background: var(--secondary-color);
    transition: top 0.4s ease;
    z-index: -1;
}

.about-section .get-started:hover {
    color: white;
}

.about-section {
    padding: 2rem 0;
}

.about-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 10px;
    margin: 2rem 0;
    font-size: 18px;
    font-family: var(--heading-font);
}

ul.about-list li {
    display: flex;
    gap: 10px;
    align-items: center;
    flex: 1;
}

ul.about-list li span {
    background: #FFEEEF;
    padding: 9px;
    width: 50px;
    height: 50px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
}

.about-img-wrapper {
    position: relative;
    text-align: right;
}

.call-consultation {
    text-align: left;
}

.call-consultation h3 {
    padding: 0;
    margin: 0;
    font-size: 16px;
    font-weight: normal;
}

.call-consultation a {
    position: absolute;
    display: flex;
    align-items: center;
    background: var(--secondary-color);
    color: white;
    width: max-content;
    gap: 10px;
    padding: 16px 21px;
    border-radius: 10px;
    overflow: hidden;
    z-index: 1;
    transition: color 0.3s ease;
    top: 15%;
}

.call-consultation a::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    z-index: 0;
    transition: left 0.4s ease;
}

.call-consultation a:hover::before {
    left: 0;
}

.call-consultation a *,
.call-consultation a i {
    position: relative;
    z-index: 1;
}

.call-consultation a i {
    background: white;
    width: 40px;
    height: 40px;
    color: var(--secondary-color);
    text-align: center;
    padding-top: 12px;
    border-radius: 50%;
    transition: color 0.3s ease;
}

.call-consultation a:hover i {
    color: var(--primary-color);
}

.served-client-card {
    width: 270px;
    background: #fff;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    position: absolute;
    bottom: -30px;
}

.served-client-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.divider {
    border: none;
    border-top: 1px solid #979797;
    margin-bottom: 20px;
}

.half-circle-wrapper {
    position: relative;
    width: 200px;
    height: 100px;
    margin: 0 auto 25px;
}

.half-circle {
    width: 100%;
    height: 100px;
}

.bg-arc {
    fill: none;
    stroke: #eee;
    stroke-width: 12;
}

.fg-arc {
    fill: none;
    stroke: #0046be;
    stroke-width: 12;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    transition: stroke-dashoffset 0.8s ease;
    stroke-linecap: round;
}

.progress-text {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.progress-text .label {
    font-size: 14px;
    color: #444;
}

.progress-text .number {
    font-size: 22px;
    color: #222;
}

.flags-row {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    flex-wrap: nowrap;
}

.flags-row img {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #ddd;
    margin-right: -10px;
}

.plus-circle {
    width: 26px;
    height: 26px;
    background: #f9f9f9;
    border-radius: 50%;
    font-weight: 600;
    font-size: 14px;
    color: #444;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ccc;
}

.country-count {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.subtitle {
    margin-top: 15px;
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.head-title {
    font-size: 50px;
    color: var(--primary-color);
}

.services-section {
    padding: 2rem 0;
    position: relative;
    background: url(../img/services-bg.png) center center /cover no-repeat;
}

.service-card>a>img.img-fluid {
    width: 100%;
    transition: transform 0.5s ease;
}

.service-card:hover>a>img.img-fluid {
    transform: scale(1.5) rotate(5deg);
}

.service-card {
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, black);
    z-index: 1;
    pointer-events: none;
}

.card-content img {
    width: 60px;
    margin: 1rem 0;
}


.card-content {
    position: absolute;
    bottom: 0;
    left: 23px;
    color: white;
    z-index: 11;
}

.arrow-icon {
    width: 50px;
    height: 50px;
    background: red;
    display: inline-block;
    text-align: center;
    padding-top: 13px;
    color: white;
    border-radius: 50%;
    position: absolute;
    right: 18px;
    top: 18px;
    transition: transform 0.3s ease;
    z-index: 9;
}

.service-card:hover .arrow-icon {
    transform: rotate(-45deg);
    transition: transform 0.3s ease;
}

.card-content div {
    border-left: 2px solid #D9D9D9;
    padding-left: 9px;
}


.services-section .swiper-pagination {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 18px;
    z-index: 2;
    justify-content: center;
}

.services-section .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: var(--secondary-color);
    border-radius: 50%;
    margin: 10px 0 !important;
    opacity: 0.7;
    transition: all 0.3s ease;
    position: relative;
}

.services-section .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary-color);
}

.services-section .swiper-pagination-bullet-active::before {
    content: "";
    position: absolute;
    top: -6px;
    left: -6px;
    width: 20px;
    height: 20px;
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    box-sizing: border-box;
    opacity: 1;
}

.accordion-sec {
    background: url(../img/bg-1.jpg) center center/cover;
}

.tab-container {
    display: flex;
    width: 100%;
    height: 100%;
    min-height: 90vh
}

.tab-wrapper {
    display: flex;
    flex-direction: column;
    flex: 0 0 80px;
    background: transparent;
    overflow: hidden;
    transition: all 0.4s ease;
    border-right: 1px solid #ddd;
    cursor: pointer;
}

.tab-wrapper.active {
    flex: 1;
    background: transparent;
    flex-direction: row;
}

.tab-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    height: 100%;
    padding: 10px;
    background: transparent;
    transition: background 0.3s ease;
}

.tab-wrapper.active .tab-header {
    background: #e53935;
    color: #fff;
}

.tab-header h3 {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 1rem;
    margin: 10px 0;
    text-align: center;
}

.tab-wrapper.active .tab-header h3 {
    writing-mode: initial;
    transform: rotate(270deg);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.tab-header img {
    width: 40px;
    height: auto;
    margin-top: 10px;
}

.tab-content {
    display: none;
    flex-direction: row;
    justify-content: space-between;
    padding: 20px;
    gap: 20px;
    height: 100%;
    overflow-y: auto;
}

.tab-wrapper.active .tab-content {
    display: flex;
    flex: 1;
    align-items: center;
    gap: 20px;
}

.tab-header img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.tab-content>div {
    flex: 1;
}


.tab-content>div {
    flex: 1;
}

.tab-content span {
    font-size: 0.9rem;
    color: #1e88e5;
    font-weight: 600;
    text-transform: uppercase;
}

.tab-content h3 {
    font-size: 2rem;
    color: #1a237e;
    margin: 10px 0 20px;
    line-height: 1.3;
}

.tab-content p {
    font-size: 1rem;
    color: #444;
    margin-bottom: 20px;
}

.tab-content ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(200px, 1fr));
    gap: 10px 20px;
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.tab-content ul li {
    position: relative;
    padding-left: 20px;
    color: #2e2e2e;
    font-size: 0.95rem;
}

.tab-content ul li::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 15px;
    width: 14px;
    height: 14px;
    background-color: var(--primary-color);
    border-radius: 50%;
    border: 4px solid #ddedee;
}


.tab-content button {
    background-color: var(--primary-color);
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.3s;
}

.tab-content button:hover {
    background-color: #333;
}

.tab-content img {
    width: 250px;
    max-width: 100%;
    border-radius: 50%;
    border: 8px solid #eee;
}



.immigration-support-sec {
    padding: 2rem 0;
    position: relative;
    padding-bottom: 0;
}


.card-immigration {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    text-align: left;
    position: relative;
    /* margin-bottom: 30px; */
    color: black;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-immigration img {
    width: 90px;
    height: auto;
    margin: 1rem 0;
}

.card-immigration .icon img {
    width: 40px;
    margin-bottom: 10px;
}

.card-immigration .count {
    font-weight: normal;
    color: #dc3545;
    margin: 20px 0;
    font-size: 18px;
}

.card-immigration h3 {
    font-size: 25px;
    font-weight: 300;
    margin: 13px 0;
}

.card-immigration p {
    margin-bottom: 30px;
}

.card-immigration a {
    color: white;
    font-weight: 500;
    text-decoration: none;
    background: #dc3545;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-radius: 32px;
    padding-left: 21px;
    transition: .3s;
}

.card-immigration a:hover {
    background: var(--primary-color);
    color: white;
}

.card-immigration a i {
    background: white;
    color: #dc3545;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    padding-top: 8px;
    transition: .3s;
}

.card-immigration a:hover i {
    transform: rotate(45deg);
}


.card-immigration.bg-transparent a {
    color: #fff;
}

.bg-blue-sec {
    background: url('../img/bg-blue.png') center center / cover no-repeat;
    position: relative;
    color: white;
    padding-bottom: 2rem;
}

.bg-blue-sec::after {
    content: "";
    background: #092d61fa;
    position: absolute;
    inset: 0;
    z-index: 1;
}

.bg-blue-sec .container {
    position: relative;
    z-index: 2;
}

.stat-number {
    font-size: 32px;
    font-weight: bold;
    color: #ff4c4c;
}

.bg-blue-sec .bg-white .col-lg-4 {
    padding: 0;
    margin: 0;
}

.bg-blue-sec .immigration-img-card img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.counter-sec {
    margin: 1rem 0;
}

.counter-sec p {
    text-transform: capitalize;
    margin-bottom: 3rem;
}


.counter-number {
    font-size: 65px;
    font-weight: 500;
    color: var(--secondary-color);
    margin: 20px 0;
}


.why-choose-us {
    background: url(../img/Map.png) center center/cover;
    position: relative;
    padding-top: 2rem;
    overflow: hidden;
}

.why-choose-img img {
    position: relative;
    z-index: 11;
}



.why-choose-img::before {
    content: "";
    width: 490px;
    height: 100%;
    background-image: url(../img/usa-2.jpg);
    background-size: cover;
    background-position: center;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
}

.why-choose-card {
    display: flex;
    gap: 15px;
    background: white;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 19px;
    width: 100%;
    margin: 1rem 0;
    min-height: 180px;
    align-items: center;
    border-radius: 15px;
    z-index: 11;
    position: relative;
}


.why-choose-card .img-card {
    background: var(--secondary-color);
    width: 80px;
    height: 80px;
    padding: 14px;
    text-align: center;
    padding-top: 15px;
    border-radius: 50%;
    border: 5px solid #F6C4C2;
    margin-left: -50px;
}

.work-process-section {
    padding: 2rem 0;
    border-bottom: 1px solid #D9D9D9;
}



.custom-swiper-container {
    padding: 40px 0;
    background: #fff;
    position: relative;
}

.myCustomSwiper {
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

.services-section .swiper-slide {
    text-align: center;
    padding: 20px;
}

.services-section .swiper-slide p {
    text-align: left;
}

.service-box {
    margin: auto;
    position: relative;

}

.service-box img {
    max-width: 240px;
    height: auto;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
}



.service-box h3 {
    font-size: 20px;
    margin: 1rem 0;
    color: #1c2e4a;
}

.service-box p {
    font-size: 16px;
    color: #5a5a5a;
}

.custom-next,
.custom-prev {
    color: #e94a4a;
}

.dashed-bord {
    border-top: 1px dashed var(--primary-color);
    max-width: 1000px;
    position: absolute;
    top: 33%;
    width: 100%;
    left: 147px;
}

.img-card {
    position: relative;
}

.service-box {
    text-align: center;
}

.round-img {
    width: 50px;
    height: 50px;
    position: absolute;
    bottom: -17px;
    left: 50%;
    transform: translate(-44%, 0px);
}



/* start */

.video-section-start {
    padding: 2rem 0;
}

/* Container adjustments */
.video-section-start .swiper-testimonial-2 {
    width: 100%;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    background-color: #fff;
}

/* Student image */
.video-section-start .student-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    position: relative;
    z-index: 1;
}

/* Play button overlay */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    background-color: #0c1e3a;
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    font-size: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-box-2 {
    background-color: #dc3e36;
    color: #fff;
    padding: 30px;
    border-radius: 6px;
    font-size: 15px;
    line-height: 1.7;
    max-width: 450px;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 11;

}



.testimonial-box-2 strong {
    display: block;
    margin-top: 15px;
    font-size: 16px;
}

/* === Swiper Arrows === */
.custom-swiper-arrow {
    color: #dc3e36;
    background-color: white;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    font-size: 14px;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    cursor: pointer;
    position: absolute;
}

.custom-swiper-arrow:hover {
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.swiper-button-prev.custom-swiper-arrow {
    left: 10px;
}

.swiper-button-next.custom-swiper-arrow {
    right: 10px;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 16px;
    font-weight: bold;
    color: #dc3e36;
}

/* === Pagination Bullets (Above Image Style) === */
.swiper-pagination-2 {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 11;
    top: -30px;
    /* Pull it above the image */
}

.swiper-pagination-2 .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background-color: #dc3e36;
    border-radius: 50%;
    opacity: 0.8;
    margin: 0 8px;
    transition: all 0.3s ease;
}

.swiper-pagination-2 .swiper-pagination-bullet-active {
    width: 12px;
    height: 12px;
    background-color: #dc3e36;
    box-shadow: 0 0 0 6px white, 0 0 0 1px #dc3e36;
    transform: scale(1.1);
    opacity: 1;
}



/* end */


.faq-section {
    background-color: #f8fafd;
    position: relative;
    padding: 2rem 0;
}

.faq-section::before {
    content: "";
    width: 200px;
    height: 100%;
    background-image: url(../img/Frame.png);
    background-size: cover;
    background-position: center;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
}

.faq-img img {
    max-width: 100%;
    width: 100%;
}

.faq-content {
    flex: 1;
    min-width: 300px;
}

.accordion {
    border-radius: 6px;
    overflow: hidden;
    max-width: 740px;
}

.accordion-item {
    border-bottom: 1px solid #ddd;
}

.accordion-header {
    background: #fff;
    padding: 20px 20px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
    position: relative;
}

.accordion-header::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    font-weight: bold;
    transition: transform 0.3s ease, content 0.3s;
}

.accordion-item.active .accordion-header::after {
    content: '−';
}

.accordion-header:hover {
    background-color: #f0f4ff;
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: #f9fafb;
    padding: 0 20px;
}

/* Body Paragraph */
.accordion-body p {
    padding: 15px 0;
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
}

.accordion-item.active .accordion-body {
    max-height: 200px;
}

.view-more {
    display: inline-block;
    margin-top: 20px;
    color: var(--secondary-color);
    text-transform: uppercase;
    text-decoration: none;
}

.consultation-section .get-started {
    background: var(--secondary-color);
    color: white;
}

.card-price {
    font-size: 18px;
    color: #162842;
    font-weight: 600;
    padding-left: 9px;
}

.consultation-section .card ul {
    box-sizing: border-box;
    margin: 0;
    padding: 6px 15px;
}

.consultation-section .card {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    background: #a8a8a80a;
    border-radius: 14px;
    height: 100%;
}

.double-arrow {
    font-size: 18px;
    margin-left: 5px;
}

.brand-section {
    background: url(../img/brand-bg.png) center center/cover;
    background-repeat: no-repeat;
    padding: 3rem 0;
    position: relative;
}

.brand-section::after {
    content: "";
    background: #162842e0;
    inset: 0;
    position: absolute;
}

.brand-wrapper {
    position: relative;
    z-index: 11;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-flow: wrap;
}


.news-blog-sec {
    padding: 2rem 0;
}

.blog-card .card {
    flex-direction: row;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    border: navajowhite;
    overflow: hidden;
}

.card-img {
    flex-basis: 33%;
}

.blog-card .view-more {
    margin-top: 4px;
    color: var(--primary-color);
    font-weight: 500;
    transition: all .3s;

}

.blog-card .view-more:hover {
    text-decoration: underline;

}

.blog-card p {
    color: #5D666F;
}

.comments {
    background: url(../img/msg-icon.png);
    width: 38px;
    background-size: 35px;
    display: inline-block;
    background-repeat: no-repeat;
    height: 40px;
    text-align: center;
    color: white;
    padding: 2px;
}

h5.card-title {
    font-size: 22px;
    margin: 1rem 0px;
    font-weight: normal;
    color: var(--primary-color);
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.date {
    color: #5D666F;
    font-size: 14px;
    position: relative;
    margin-left: 33px;
}


.date::before {
    content: "";
    height: 2px;
    width: 24px;
    position: absolute;
    top: 44%;
    background: #5D666F;
    left: -28px;
}

.blog-card {
    margin-bottom: 1rem;
}


.award-section {
    padding: 2rem 0;
}

.award-count {
    background: url(../img/Map.png) center center / cover;
    background-repeat: no-repeat;
    text-align: center;
}

.award-count h5 {
    font-weight: 600;
    color: var(--primary-color);
}

.award-count h4 {
    color: #0048B4;
    font-size: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.award-count h4 span {
    color: var(--secondary-color);
    font-size: 50px;
}

.award-list {
    display: grid;
    list-style: none;
    grid-template-columns: 33% 33% 33%;
    gap: 11px;
    box-sizing: border-box;
}

.award-card-wrapper .award-list li {
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    border-radius: 10px;
    padding: 10px;
}

.custom-footer-fixed {
    background-color: #03122b;
    padding: 30px 0;
    color: #fff;
    padding-bottom: 0;
}

.footer-top-bar {
    background-color: #dc3e36;
    border-radius: 10px;
    padding: 14px;

}

.footer-logo {
    background: white;
    text-align: center;
    padding: 16px;
    margin-bottom: -25px;
    border-bottom: 6px solid #dc3e36;
}


.footer-logo img {
    max-height: 80px;
}

.icon-text {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: white;
    justify-content: center;
    border-right: 1px solid #dab2b2;
}

.icon-text i {
    font-size: 18px;
    margin-top: 3px;
}

.icon-text p {
    margin: 0;
    font-size: 16px;
    color: white;
    line-height: 1.5;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icons a {
    width: 38px;
    height: 38px;
    border: 1px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    transition: 0.3s ease;
}

.social-icons a:hover {
    background-color: white;
    color: #dc3e36;
}

.footer-bottom-section {
    margin-top: 2rem;
    border-bottom: 1px solid #3b3c3b;
}

.footer-bottom-section h5,
.footer-bottom-section h6 {
    color: white;
    margin-bottom: 15px;
}

.footer-bottom-section h6 {
    font-size: 16px;
    position: relative;
    padding-bottom: 5px;
    border-bottom: 1px dashed var(--secondary-color);
    width: max-content;
}



.footer-consult p {
    font-size: 14px;
    color: #cccccc;
    margin-bottom: 15px;
}

.consult-btn {
    display: inline-block;
    background-color: #dc3e36;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
}

.consult-btn:hover {
    background-color: #b53029;
}

.footer-links ul {
    list-style: disc;
    padding: 0;
    margin: 0;
    padding-left: 18px;
}

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul li a {
    text-decoration: none;
    color: #ccc;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: white;
}

.footer-copy-right {
    background: #001B42;
    color: white;
    padding: 1rem 0;
}

.footer-copy-right ul {
    display: flex;
    gap: 46px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-copy-right p {
    margin: 0;
    padding: 0;
}

.copy-right {
    display: flex;
    font-weight: normal;
    justify-content: space-between;
    align-items: center;
}

@media (max-width:1400px) {
    .swiper-pagination {
        display: none;
    }
}


/*================= New css for Inner pages =============== */
.breadcumbs {
    position: relative;
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.breadcumbs::after {
    content: "";
    background: #e13833cc;
    inset: 0;
    position: absolute;
}

.breadcumbs .container {
    position: relative;
    z-index: 1;
    max-width: 1000px;
}

.breadcumbs h1 {
    font-size: 60px;
}

.breadcumbs p {
    font-size: 18px;
}

.breadcumbs span {
    background: var(--primary-color);
    color: white;
    width: max-content;
    margin: 0 auto;
    margin-bottom: 1rem;
    padding: 7px 20px;
    display: inline-block;
    text-transform: uppercase;
    border-radius: 25px;
}

.about-page-sec {
    padding: 2rem 0;
}

.about-page-sec .get-started {
    background: var(--secondary-color);
    color: white;
}

.about-page-sec .get-started i {
    background: white;
    color: var(--secondary-color);
    width: 30px;
    height: 30px;
    text-align: center;
    padding-top: 7px;
    border-radius: 50%;
    margin-right: 10px;
}

@keyframes phone-vibrate {
    0% {
        transform: rotate(0deg);
    }

    15% {
        transform: rotate(15deg);
    }

    30% {
        transform: rotate(-15deg);
    }

    45% {
        transform: rotate(10deg);
    }

    60% {
        transform: rotate(-10deg);
    }

    75% {
        transform: rotate(5deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.about-page-sec .get-started:hover i {
    animation: phone-vibrate 0.6s ease infinite;
}

.image-box {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.image-box img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.8s ease, filter 0.8s ease;
    will-change: transform;
}

.image-box .overlay-img {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(0, 153, 255, 0.2), rgba(255, 255, 255, 0.05));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 2;
}

.image-box:hover img {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: scale(1.1) rotate(1deg);
    filter: brightness(1.1) contrast(1.05) saturate(1.2);
}

.image-box:hover .overlay-img {
    opacity: 1;
}

.image-box::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: 0 0 30px rgba(0, 153, 255, 0.4);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.image-box:hover::after {
    opacity: 1;
}

.our-story-section {
    background: #FFEEEF;
    padding: 2rem 0;
}

.our-story-section .title-wrapper p {
    max-width: 900px;
    margin: 2rem auto;
}

.commitment-sec {
    padding: 3rem 0;
}

.commitment-card {
    background: #0A3B82;
    color: white;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 1rem;
    margin: 1rem 0;
    height: 161px;
    border-radius: 20px;
}

.commitment-card .img-card {
    background: var(--secondary-color);
    width: 86px;
    height: 86px;
    padding: 20px;
    text-align: center;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex: none;
}

.commitment-card .img-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}


/* ======== About  Page css End============== */

/* ======== Service Page css Start============== */

.service-sec {
    padding: 3rem 0;
}

.service-tab-sec {
    background: #FFEEEF;
    padding: 3rem 0;
}

.tab-menu {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.tab-menu .tab {
    padding: 10px 20px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    flex: 1;
    text-align: center;
    border-radius: 0;
}

.tab-menu .tab.active {
    color: white;
    background: var(--secondary-color);
}

.card-grid {
    display: grid;
    grid-template-columns: 33% 33% 33%;
    gap: 20px;
    margin-top: 30px;
}

.service-card-inner {
    position: relative;
    overflow: hidden;
}

.service-card-inner img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;

}

.service-card-inner:hover img {
    transform: scale(1.2) rotate(2deg);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    color: #fff;
    padding: 20px;
    background: linear-gradient(to bottom, transparent, black);
    z-index: 11;
}

.service-tab-content {
    display: none;
}

.service-tab-content.active {
    display: block;
}

.service-tab-content .get-started {
    background: var(--secondary-color);
    color: white;
    border: none;
}

.toggle-head {
    display: none;
}

.about-contents ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.about-contents ul li {
    margin: 1rem 0;
    text-transform: uppercase;
}

/* Scope your styles to only the contact form section */
.contact-us-sec label {
    display: inline-block;
    width: 100%;
}

.contact-us-sec input {
    width: 100%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #ccc;
    min-height: 40px;
    border-radius: 4px;
    outline: none;
    padding: 0 12px;
}

.contact-us-sec textarea {
    width: 100%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #ccc;
    min-height: 40px;
    border-radius: 4px;
    outline: none;
}

.contact-us-sec .wpcf7-form input[type="submit"] {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 6px;
    width: max-content;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.contact-form {
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    padding: 27px;
    border-radius: 30px;
}


.contact-us-sec .wpcf7-form input[type="submit"]:hover {
    background-color: #c62f2b;
    /* Darker shade of secondary color */
}


/* ======== Service Page css End============== */

/* Reponsive CSS Start */

@media (max-width:1200px) {
    .toggle-head {
        display: block;
    }

    header nav ul {
        display: none;
    }

    .search-input-wrapper {
        width: 100%;
        margin: 1rem 0;
    }

    .pre-header {
        display: none;
    }

    .main-img {
        width: 500px;
        max-width: 500px;
    }

    .served-client-card {
        bottom: -100px;
    }

    .head-title {
        font-size: 36px;

    }

    .immigration-img-card img {
        height: 100%;
        object-fit: cover;
        width: 100%;

    }

    .dashed-bord {
        display: none;
    }

    .blog-card .card {
        flex-direction: column;
    }

    .why-choose-us .row {
        align-items: end;
    }

    .tab-wrapper.active .tab-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-evenly;
        width: 100%;
        padding: 2rem 3rem;
    }

    .tab-wrapper.active {
        flex-direction: column;
    }

    .tab-container {
        flex-direction: column;
    }

    .tab-header {
        flex-direction: row;
        justify-content: space-between;
        padding: 14px 2rem;
    }

    .tab-wrapper.active .tab-header h3 {
        writing-mode: unset;
        transform: none;
    }

    .tab-wrapper {
        box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
        margin-bottom: 0.5rem;
    }

    .card-img img {
        height: 100%;
        object-fit: cover;
        width: 100%;
    }


    .faq-content {
        padding: 2rem;
    }

    .tab-header h3 {
        writing-mode: horizontal-tb;
        transform: none;
    }

    .card-body {
        width: 100%;
    }

    .why-choose-card .img-card {
        margin-left: 0;
    }

}

@media (max-width:1024px) {}

@media (max-width:991px) {
    header .search-wrapper {
        display: none;
    }

    .search-input-wrapper {
        width: 100%;
        margin: 1rem 0;
    }

    .slider-tabs ul {
        display: none;
    }

    .why-choose-img::before {
        width: 50%;
        height: 50%;
        top: auto;
    }

    .faq-section::before {
        display: none;
    }

    .accordion {
        max-width: 100%;
    }

    .about-content {
        padding-top: 121px;
    }

    .about-img-wrapper img {
        width: 100%;
    }

    .container {
        padding: 0 30px;
    }

    .hero-slider .swiper-pagination {
        transform: none;
    }

    .flags-row img {
        width: 26px;
    }

    .swiper.serviceSwiper.py-5.swiper-initialized.swiper-horizontal.swiper-backface-hidden {
        padding-top: 0 !important;
    }

    .footer-logo {
        margin-bottom: 22px;
    }

    .bg-blue-sec .immigration-img-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .card-immigration {
        box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
        margin: 1rem 0;
    }

    .breadcumbs h1 {
        font-size: 40px;
    }

    section.about-page-sec .title-wrapper {
        margin: 1rem 0;
    }

    .icon-text {
        border: none;
    }

}

@media (max-width:767px) {
    .head-title {
        font-size: 25px;
    }

    .tab-wrapper.active .tab-content {
        flex-direction: column;
    }

    .icon-text {
        align-items: center;
        gap: 8px;
        justify-content: flex-start;
        margin: 0.5rem 0;
    }

    .social-icons {
        justify-content: left;
    }

    .footer-links {
        margin: 1rem 0;
    }

    .copy-right {
        flex-direction: column-reverse;
        gap: 14px;
    }

    .breadcumbs h1 {
        font-size: 25px;
    }




}

@media (max-width:600px) {
    .counter-sec p {
        margin-bottom: 0rem;
    }


}

@media (max-width:480px) {}