/* Google Fonts */
@import url('css/google-fonts.css');

body {
    font-family: "Anek Devanagari", sans-serif;
    margin: 0;
    padding: 0;
}

/* ---------------------------------------------------
   COMMON Styles (from common.css)
--------------------------------------------------- */
.common-title {
    font-size: 44px;
    color: #1c6891;
    margin-bottom: 30px;
}

.common-text {
    color: #0a2139;
    font-weight: 400;
    font-size: 20px;
    line-height: 120%;
}

.curriculum-card .common-text {
    color: #ffffff;
    font-weight: 400;
    font-size: 20px;
    line-height: 120%;
    margin: 0;
    margin-top: 35px;
}

.g-4,
.gy-4 {
    --bs-gutter-y: 0.9rem;
}

.g-4,
.gx-4 {
    --bs-gutter-x: 0.9rem;
}

@media (max-width: 1024px) {
    .common-title {
        font-size: 36px;
    }

    .common-text {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .common-title {
        font-size: 32px;
    }

    .common-text {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .common-title {
        font-size: 19px;
        margin-bottom: 14px;
    }

    .common-text {
        font-size: 12px;
    }

    .student-care .common-title {
        margin-bottom: 0;
    }
}

@media (max-width: 400px) {
    .common-title {
        font-size: 19px;
        margin-bottom: 20px;
    }

    .curriculum-card .common-text {
        font-size: 12px;
        margin-top: 15px;
    }

    .student-care .common-title {
        margin-bottom: 0;
    }
}

/* ---------------------------------------------------
   HERO Styles (from Hero.css)
--------------------------------------------------- */
.hero-section {
    height: 100vh;
    background-image: url("images/space-dot-kids/hero-banner.jpg");
    background-size: cover;
    background-position: center;
    padding: 0 40px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.hero-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 45%;
    background: linear-gradient(180deg,
            rgba(10, 33, 57, 0) 0%,
            rgba(10, 33, 57, 1) 100%);
    pointer-events: none;
}

.hero-top {
    padding-top: 30px;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-center {
    margin-bottom: 60px;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.hero-center h1 {
    font-size: 49px;
    line-height: 50px;
    letter-spacing: 0;
    text-align: center;
    margin: 0;
    color: white;
}

.hero-center p {
    font-weight: 400;
    font-size: 28px;
    line-height: 120%;
    letter-spacing: 0;
    text-align: center;
    color: white;
}

.hero-logo {
    height: 65px;
}

.hero-button {
    background-color: #114166;
    color: white;
    border: none;
    padding: 13px 22px 7px 22px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .hero-logo {
        height: 40px;
    }

    .hero-section {
        padding: 0 20px;
        height: 55vh;
        background-image: url("images/space-dot-kids/mobile-hero.png");
    }

    .hero-center {
        margin-bottom: 30px;
    }

    .hero-section::after {
        height: 55%;
    }

    .hero-center h1 {
        font-size: 19px;
    }

    .hero-center p {
        font-size: 15px;
        font-family: "Anek Devanagari";
        font-weight: 400;
        line-height: 120%;
        text-align: center;
    }

    .hero-center h1,
    .hero-center p {
        text-align: center !important;
    }
}

.hero-center h1,
.hero-center p {
    text-align: left;
}


/* ---------------------------------------------------
   WELCOME Styles (from welcome.css)
--------------------------------------------------- */
.welcome-section {
    padding-left: 60px;
    padding-right: 60px;
}

.welcome-gallery {
    position: relative;
    margin-top: 40px;
    width: 100%;
}

.slider-wrapper {
    max-width: 1150px;
    margin: 0 auto;
    position: relative;
    width: 100%;
    padding: 0 70px;
}

.gallery-swiper {
    overflow: hidden;
    width: 100%;
    padding: 10px 0;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
}

.gallery-img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 20px;
    background-color: #ddd;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.arrow-btn {
    background: #114166;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 15px 18px;
    font-size: 24px;
    cursor: pointer;
    position: absolute;
    bottom: -16px;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    width: 55px;
    height: 55px;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding-bottom: 4px;
}

.arrow-btn:hover {
    background: #1c6891;
    transform: translateY(-50%) scale(1.05);
}

.left-arrow {
    left: 0;
}

.right-arrow {
    right: 0;
}

@media (max-width: 768px) {
    .slider-wrapper {
        padding: 0 60px;
    }

    .arrow-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
        top: 50%;
    }

    .left-arrow {
        left: 10px;
    }

    .right-arrow {
        right: 10px;
    }
}

@media (max-width: 576px) {
    .slider-wrapper {
        padding: 0 50px;
    }

    .arrow-btn {
        width: 35px;
        height: 35px;
        font-size: 16px;
        padding: 8px 10px;
        padding-bottom: 1px;
        top: 50%;
    }

    .left-arrow {
        left: 5px;
    }

    .right-arrow {
        right: 5px;
    }
}

@media (max-width: 1024px) {
    .welcome-section {
        padding-left: 30px;
        padding-right: 30px;
    }

    .gallery-img {
        height: 320px;
    }
}

@media (max-width: 768px) {
    .welcome-section {
        padding-left: 20px;
        padding-right: 20px;
    }

    .gallery-img {
        height: 280px;
    }
}

@media (max-width: 576px) {
    .welcome-section {
        padding-left: 0;
        padding-right: 0;
    }

    .gallery-img {
        height: 240px;
    }
}

@media (max-width: 400px) {
    .gallery-img {
        height: 200px;
    }

    .welcome-gallery {
        margin-top: 0px;
    }
}

.swiper-pagination {
    position: relative;
    margin-top: 20px;
    bottom: 0;
}

.swiper-pagination-bullet {
    background: #114166;
    opacity: 0.5;
    width: 10px;
    height: 10px;
}

.swiper-pagination-bullet-active {
    background: #114166;
    opacity: 1;
    transform: scale(1.2);
}

/* ---------------------------------------------------
   DIFFERENT SECTION Styles (from DifferentSection.css)
--------------------------------------------------- */
.different-section {
    background: #dad4a5;
    padding: 80px 60px;
}

.different-left {
    position: relative;
}

.different-img {
    width: 100%;
    display: block;
    border-radius: 20px;
    margin-bottom: 20px;
}

.different-title {
    position: absolute;
    top: 30px;
    left: 30px;
    color: white;
    font-size: 40px;
    line-height: 1.2;
}

.different-desc {
    position: absolute;
    bottom: 0;
    font-size: 20px;
    left: 25px;
    color: white;
    line-height: 120%;
    width: 80%;
}

.accordion-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.accordion-item {
    background: white !important;
    color: #1c6891 !important;
    border-radius: 14px;
    padding: 25px 28px 18px 28px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accordion-item.active {
    background: #90b5d7 !important;
    color: white;
}

.accordion-item.active span {
    color: white;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header h4 {
    margin: 0;
    font-size: 22px;
    color: #114166;
    font-weight: 500;
}

.accordion-header span {
    font-size: 28px;
    font-weight: 600;
    color: #114166;
    margin-bottom: 10px;
}

.accordion-content {
    margin-top: 50px;
    display: none;
    /* Default hidden */
}

.accordion-item.active .accordion-content {
    display: block;
    /* Show when active */
}

.accordion-content p {
    margin: 0;
    font-size: 20px;
    color: white;
}

@media (max-width: 767px) {
    .different-title {
        font-size: 19px;
        top: 30px;
        left: 20px;
    }

    .different-desc {
        font-size: 12px;
    }

    .accordion-header h4 {
        font-size: 18px;
    }
}

.accordion-item:last-of-type,
.accordion-item:first-of-type {
    border-radius: 14px !important;
}

@media (max-width: 576px) {
    .different-section {
        padding-left: 0;
        padding-right: 0;
    }

    .different-img {
        display: block;
        width: 100%;
        border-radius: 7px;
        margin-bottom: 20px;
    }

    .different-desc {
        font-size: 12px;
        left: 20px;
    }

    .accordion-right {
        margin: 0 !important;
    }

    .accordion-header h4 {
        font-size: 15px;
    }

    .accordion-header span {
        font-size: 20px;
    }

    .accordion-content p {
        font-size: 12px;
    }

    .accordion-list {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .accordion-item {
        background: white !important;
        color: #1c6891 !important;
        border-radius: 14px;
        padding: 17px 28px 9px 28px;
        cursor: pointer;
        transition: all 0.3s ease;
    }
}

/* ---------------------------------------------------
   CURRICULUM Styles (from CurriculumSection.css)
--------------------------------------------------- */
.curriculum-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

.curriculum-title {
    font-size: 44px;
    color: #1c6891;
    line-height: 1.2;
}

.curriculum-card {
    padding: 25px 35px 13px 28px;
    border-radius: 16px;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.curriculum-card h4 {
    font-size: 25px;
    color: #114166;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .curriculum-title {
        font-size: 19px;
    }

    .curriculum-card {
        padding: 17px;
        min-height: 130px;
        border-radius: 7px;
    }
}

.technology-section .curriculum-title {
    margin-bottom: 20px;
}

.tech-image {
    width: 100%;
    border-radius: 20px;
    height: 100%;
    object-fit: cover;
}

.technology-section .row.g-4 {
    display: flex;
    align-items: stretch;
}

.tech-card {
    border-radius: 20px;
    padding: 30px;
    position: relative;
    min-height: 170px;
    display: flex;
    flex-direction: column;
    height: calc(100% - 15px);
}

.tech-card-small {
    border-radius: 20px;
    padding: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.large-card p {
    width: 50%;
    flex-grow: 1;
}

.tech-card h4 {
    font-size: 25px;
    font-weight: 400;
    color: #114166;
    margin-bottom: 60px;
}

.tech-card-small h4 {
    font-size: 25px;
    font-weight: 400;
    color: #114166;
    margin-bottom: 20px;
}

.tech-card p {
    color: white;
    font-size: 16px;
    line-height: 120%;
    margin: 0;
    flex-grow: 1;
}

.tech-card-small p {
    color: white;
    font-size: 16px;
    line-height: 120%;
    margin: 0;
    width: 85%;
    flex-grow: 1;
}

.tech-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    opacity: 0.8;
}

.tech-icon-small {
    margin-bottom: 15px;
    width: 52px;
}

@media (max-width: 768px) {

    .tech-card h4,
    .tech-card-small h4,
    .curriculum-card h4 {
        font-size: 15px;
    }

    .large-card {
        min-height: 165px;
    }

    .technology-section .curriculum-title {
        margin-bottom: 5px;
    }

    .tech-image {
        height: auto;
    }

    .large-card p {
        width: 100%;
        flex-grow: unset;
    }

    .tech-card {
        justify-content: space-between;
        border-radius: 11px;
        padding: 16px;
    }

    .tech-card-small {
        border-radius: 11px;
        padding: 13px;
    }

    .tech-card-small p {
        width: 100%;
        font-size: 12px;
    }

    .tech-card p {
        font-size: 12px;
    }
}

.custom-gutter-left {
    --bs-gutter-x: 1rem !important;
    display: flex;
    align-items: stretch;
}

.custom-gutter-left img {
    height: 100%;
    object-fit: cover;
}

.custom-gutter {
    --bs-gutter-x: 0.5rem !important;
    --bs-gutter-y: 0rem !important;
    height: 100%;
}

.row.align-items-stretch {
    align-items: stretch !important;
}

.row.align-items-stretch>[class*="col-"] {
    display: flex;
    flex-direction: column;
}

.row.mt-3.custom-gutter.flex-fill {
    flex: 1;
    margin-top: 0.5rem !important;
}

/* ---------------------------------------------------
   PARENT SCHOOL Styles (from ParentSchoolSection.css)
--------------------------------------------------- */
.parent-section {
    background: #F5E0D1;
    padding: 80px 0;
}

.parent-title {
    font-size: 44px;
    color: #1c6891;
    line-height: 1.2;
}

.parent-card {
    background: #A0C0E599;
    border-radius: 20px;
    padding: 25px;
    max-height: 214px;
    min-height: 214px;
}

.parent-num {
    font-size: 18px;
    color: #114166;
}

.parent-card-title {
    font-size: 22px;
    color: #114166;
}

.parent-line {
    width: 90px;
    height: 2px;
    background: white;
    margin: 15px 0;
    opacity: 0.7;
}

.parent-card-desc {
    font-size: 20px;
    color: #1C6891;
    margin: 0;
    line-height: 120%
}

@media (max-width: 992px) {
    .parent-section .row.g-4 {
        --bs-gutter-x: 5px !important;
        --bs-gutter-y: 5px !important;
    }

    .parent-title {
        font-size: 19px;
    }

    .parent-card {
        min-height: 170px;
        padding: 15px;
        border-radius: 9.26px;
    }

    .parent-card-title {
        font-size: 15px;
    }

    .parent-card-desc {
        font-size: 12px;
    }

    .parent-num {
        font-size: 15px;
    }

    .parent-card-top {
        min-height: 65px;
    }
}

/* ---------------------------------------------------
   STUDENT CARE Styles (from StudentCare.css)
--------------------------------------------------- */
.student-care {
    background: #ffffff;
}

.sc-columns {
    display: flex;
    align-items: stretch;
    gap: 40px;
}

.sc-image-container {
    flex: 1;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    aspect-ratio: 4 / 3;
    height: auto;
}

.sc-list-container {
    flex: 0.9;
    display: flex;
    flex-direction: column;
}

.sc-image {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
}

.fade-in {
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.sc-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sc-item {
    border: 2px solid #114166;
    border-radius: 14px;
    padding: 24px 30px;
    background: #ffffff;
    cursor: pointer;
    transition: 0.2s ease;
}

.sc-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(16, 61, 99, 0.12);
}

.sc-item.active {
    background: #114166;
    color: white;
}

.sc-item-text {
    font-size: 22px;
    color: #114166;
}

.sc-item.active .sc-item-text {
    color: white;
}

@media (max-width: 991px) {
    .sc-columns {
        flex-direction: column;
        gap: 28px;
        align-items: stretch;
    }

    .sc-image {
        height: auto;
    }

    .sc-item {
        padding: 18px 22px;
    }

    .sc-item-text {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .sc-item {
        padding: 16px 18px;
    }

    .sc-item-text {
        font-size: 16px;
    }

    .sc-image-container {
        aspect-ratio: 2 / 1;
    }

    .sc-list {
        gap: 8px;
    }

    .sc-columns {
        gap: 12px;
    }
}

/* ---------------------------------------------------
   ADMISSION PROCESS Styles (from AdmissionProcess.css)
--------------------------------------------------- */
.admission-section {
    background: #faf7f5;
}

.ad-title {
    font-size: 40px;
    color: #1c6891;
    margin-bottom: 10px;
}

.ad-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.ad-card {
    border-radius: 18px;
    padding: 28px;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 12px;
}

.ad-icon-wrap {
    margin: 16px 0;
}

.ad-card-content {
    height: auto;
}

.ad-card-main {
    min-height: 200px;
}

.ad-step {
    font-size: 25px;
    color: #124066;
    margin-bottom: 0;
}

.ad-card-title {
    font-size: 25px;
    margin-bottom: 10px;
    color: #124066;
}

.ad-icon {
    height: 102px;
    opacity: 0.9;
}

.ad-desc {
    font-size: 20px;
    font-weight: 400;
    color: white;
    line-height: 120%;
}

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

@media (max-width: 768px) {
    .ad-card {
        min-height: auto;
        padding: 12px 19px;
        gap: 0px;
    }

    .ad-title {
        font-size: 19px;
    }

    .ad-step,
    .ad-card-title {
        font-size: 15px;
    }

    .ad-icon-wrap img {
        width: 53px;
        height: 53px;
    }

    .ad-desc {
        font-size: 12px;
    }

    .ad-grid {
        gap: 10px;
    }

    .ad-card-content {
        height: 45px;
    }
}

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

/* ---------------------------------------------------
   INQUIRY FORM Styles (from InquiryForm.css)
--------------------------------------------------- */
.inquiry-wrapper {
    background: #c1afd5;
    padding: 70px;
}

.inquiry-wrapper h1 {
    font-size: 39px;
    margin-bottom: 40px;
    color: #0a1b33;
    font-weight: 500;
    line-height: 120%;
}

.inquiry-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 50px;
    max-width: 1100px;
}

.full {
    grid-column: 1 / 3;
}

.form-group {
    width: 100%;
    box-sizing: border-box;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 20px;
    font-weight: 400;
    color: #0a1b33;
}

.form-group input,
.form-group .custom-select {
    width: 100%;
    min-width: 250px;
    max-width: 500px;
    box-sizing: border-box;
}

.form-control {
    width: 100%;
    min-width: 250px;
    height: 48px;
    border-radius: 12px;
    border: 1px solid white;
    background: transparent;
    padding: 0 18px;
    font-size: 16px;
    outline: none;
    box-sizing: border-box;
}

.form-control:focus {
    border: 1px solid #0a2139;
    background-color: transparent;
    box-shadow: none;
}

.inquiry-wrapper input,
.inquiry-wrapper select {
    width: 100%;
    height: 48px;
    border-radius: 12px;
    border: 1px solid white;
    background: transparent;
    padding: 0 18px;
    font-size: 16px;
    outline: none;
    box-sizing: border-box;
}

.inquiry-wrapper input:focus,
.inquiry-wrapper select:focus {
    border: 1px solid #0a2139;
}

.inquiry-wrapper input::placeholder {
    color: #0a2139;
    margin-bottom: 10px;
}

.form-group.dropdown-container {
    position: relative;
    overflow: visible;
}

.inquiry-wrapper .dropdown-item:hover,
.inquiry-wrapper .dropdown-item.active {
    background: #0a1b33;
    color: white;
}

.dropdown-item.selected {
    color: #0a2139;
    font-weight: bold;
}

.custom-select {
    min-width: 250px;
    width: 100%;
    height: 48px;
    border: 1px solid #ffffff;
    border-radius: 12px;
    padding: 0 18px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    box-sizing: border-box;
}

.custom-select span {
    color: #0a2139;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    max-width: calc(100% - 20px);
}

.arrow {
    font-size: 30px;
    opacity: 0.7;
    color: white;
}

.dropdown-menu-custom {
    width: 100%;
    background: white;
    border-radius: 15px;
    margin-top: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    position: absolute;
    z-index: 10;
    padding: 10px;
    box-sizing: border-box;
    display: none;
    /* JS will toggle this */
}

.form-group.dropdown-container.open .dropdown-menu-custom {
    display: block;
}

.dropdown-item-custom {
    padding: 16px 18px;
    font-size: 20px;
    cursor: pointer;
    color: #919191;
    font-weight: 400;
    margin: 5px 0;
}

.dropdown-item-custom:hover,
.dropdown-item-custom.active {
    background: #0a1b33;
    color: white;
    border-radius: 16px;
}

.dropdown-item-custom.selected {
    color: white;
    background: #0a1b33;
    border-radius: 16px;
}

.submit-btn {
    grid-column: 1 / 3;
    width: 140px;
    height: 52px;
    background: #0a2139;
    color: white;
    font-size: 18px;
    border-radius: 8px;
    cursor: pointer;
    border: none;
}

@media (max-width: 1100px) {
    .form-group {
        min-width: 335px;
        max-width: 335px;
    }

    .form-group input,
    .form-group .custom-select {
        min-width: 335px;
        max-width: 335px;
    }
}

@media (max-width: 768px) {
    .inquiry-grid {
        gap: 10px;
    }

    .full,
    .submit-btn {
        grid-column: 1 / 2;
    }

    .inquiry-wrapper {
        padding: 40px 20px;
    }

    .form-group label {
        font-size: 11px;
        font-weight: 400;
    }

    .form-control,
    .inquiry-wrapper input,
    .custom-select {
        opacity: 1;
        border-radius: 5.02px;
        border-width: 0.31px;
        min-width: 150px;
    }

    .inquiry-wrapper input::placeholder {
        font-size: 11px;
    }

    .custom-select span {
        color: #0a2139;
        width: max-content;
        font-size: 11px;
    }

    .inquiry-wrapper h1 {
        font-size: 19px;
        margin-bottom: 20px;
    }

    .arrow {
        font-size: 19px;
    }

    .dropdown-item-custom {
        padding: 10px;
        font-size: 11px;
    }

    .submit-btn {
        grid-column: 1 / 3;
        width: 140px;
        height: 45px;
        background: #0a2139;
        color: white;
        font-size: 18px;
        border-radius: 8px;
        cursor: pointer;
        border: none;
        padding: 12px;
    }

    .form-group {
        min-width: 180px;
        max-width: 180px;
    }

    .form-group input,
    .form-group .custom-select {
        width: 100%;
        min-width: 180px;
        max-width: 180px;
        box-sizing: border-box;
    }
}

@media (max-width: 440px) {
    .form-group label {
        font-size: 9px;
        font-weight: 400;
    }

    .form-group input,
    .form-group .custom-select {
        width: 100%;
        min-width: 100px;
        max-width: 187px;
        box-sizing: border-box;
    }

    .dropdown-menu-custom {
        width: 107%;
    }

    .dropdown-item-custom {
        padding: 10px;
        font-size: 9px;
    }

    .form-group {
        min-width: 100px;
    }
}

/* ---------------------------------------------------
   FOOTER Styles (from footer.css + FooterSDK.css)
--------------------------------------------------- */
.footer-area {
    background: #124066;
    position: relative;
    overflow: hidden;
    z-index: 10;
}

/* (Selected relevant styles from footer.css that might be inherited) */

/* FooterSDK.css specific */
.sdk-footer {
    position: relative;
    background: #0a1b33;
    padding: 60px 0 0;
    overflow: hidden;
    color: #ffffff;
    font-family: "Anek Devanagari", sans-serif;
}

.sdk-footer .rays {
    width: 4103px;
    height: 4122px;
    position: absolute;
    left: 50%;
    margin-left: -2051.5px;
    margin-top: -2078px;
    z-index: 1;
    animation-name: rotate;
    animation-duration: 350s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    opacity: 0.5;
    display: block;
}

.sdk-footer .rays img {
    width: 100%;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.footer-content {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
}

.footer-left .footer-logo {
    width: 160px;
}

.footer-right {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 40px 60px;
}

.social-icons i {
    font-size: 18px;
    margin-right: 12px;
    cursor: pointer;
    opacity: 0.8;
}

.social-icons i:hover {
    opacity: 1;
}

.footer-newsletter {
    grid-column: span 3;
}

.footer-newsletter h4 {
    font-size: 28px;
}

.newsletter-row {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.newsletter-row input {
    width: 272px;
    height: 38px;
    border-radius: 25px;
    padding: 19px 10px 12px 25px;
    border: none;
    outline: none;
    color: #000;
}

.newsletter-row button {
    width: 120px;
    opacity: 0.7;
    height: 40px;
    background: #1c6891;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 11px 12px 22px 15px;
    cursor: pointer;
}

.footer-watermark {
    margin-top: 80px;
    display: flex;
    align-items: baseline;
    gap: 30px;
}

.footer-bottom {
    text-align: end;
    font-size: 13px;
    opacity: 0.7;
}

.newsletter-row input {
    font-size: 13px;
}

@media (max-width: 992px) {
    .footer-top {
        flex-direction: column;
    }

    .footer-right {
        grid-template-columns: 1fr 1fr;
    }

    .footer-newsletter {
        grid-column: span 2;
    }
}

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

    .footer-newsletter {
        grid-column: span 1;
    }

    .footer-watermark {
        margin-top: 40px;
        display: flex;
        align-items: baseline;
        gap: 0;
        width: 90%;
    }

    .footer-watermark img {
        width: 90%;
    }
}

/* Right Section Grid: 2 columns, clean alignment */
.footer-right {
    display: grid;
    grid-template-columns: repeat(2, minmax(200px, auto));
    column-gap: 60px;
    row-gap: 30px;
}

.footer-newsletter {
    grid-column: 1 / 3;
}

.footer-col h4 {
    margin-bottom: 10px;
    font-size: 18px;
}

.footer-col p {
    margin-bottom: 10px;
    font-size: 17px;
}

.social-icons {
    display: flex;
    gap: 35px;
    align-items: center;
}

.social-icons img {
    width: 20px;
    height: 20px;
    opacity: 0.85;
    transition: 0.2s ease-in-out;
    cursor: pointer;
}

.social-icons img:hover {
    opacity: 1;
    transform: scale(1.15);
}

@media (max-width: 767px) {
    .footer-right {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .footer-col h4 {
        color: rgba(39, 163, 196, 1);
    }

    .newsletter-row input {
        padding: 5px 6px 1px 20px;
        font-size: 13px;
        width: 230px;
    }

    .newsletter-row button {
        width: auto;
        padding: 10px 18px 4px 22px;
    }

    .footer-col:nth-child(1) {
        order: 1;
    }

    .footer-col:nth-child(3) {
        order: 2;
    }

    .footer-col:nth-child(2) {
        order: 3;
    }

    .footer-col:nth-child(4) {
        order: 4;
    }

    .footer-newsletter {
        order: 5;
    }
}

.contact-link {
    color: #ffffff;
    text-decoration: none;
}