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

a {
    text-decoration: none !important;
}

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


h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Outfit", sans-serif !important;
}


.topbar {
    background: linear-gradient(124deg, #ffbe84 0 61.5%, #FDA04B 61.65% 100%);
    padding: 0;
    height: 50px;
    position: relative;
    overflow: hidden;
    z-index: 1031;
    box-shadow: 0 5px 18px rgba(36, 42, 76, 0.18);
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.topbar::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0));

}

.topbar::after {
    content: "";
    position: absolute;
    top: 0;
    left: 61.5%;
    margin-left: -16px;
    width: 34px;
    height: 100%;
    background: rgba(255, 255, 255, 0.12);
    transform: skewX(-34deg);
    transform-origin: top;

}

.topbar .container,
.topbar .row {
    height: 100%;
}

.topbar-info-text p {
    color: #fff;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0;
    white-space: nowrap;
}

.topbar-info-text i {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    font-size: 12px;
}

.topbar-info-text i.me-2 {
    margin-right: 0 !important;
}

.topbar-info-text a {
    color: #fff;
    text-decoration: none;
    transition: color 0.25s ease;
}

.topbar-info-text a:hover {
    color: rgba(255, 255, 255, 0.82);
}

.topbar-contact-wrap {
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.topbar-social-links ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
    gap: 10px;
    justify-content: end;
    align-items: center;
}

.topbar-social-links ul::before {
    content: "Follow Us:";
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin-right: 4px;
    white-space: nowrap;
}

.topbar-social-links li a {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.topbar-social-links li a:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-1px);
}

.topbar-social-links li a i {
    color: #fff;
    font-size: 13px;
}

@media (max-width: 991px) {
    .topbar {
        height: auto;
        min-height: 50px;
        padding: 8px 0;
        background: linear-gradient(135deg, #FDA04B 0 100%);
    }

    .topbar::after {
        display: none;
    }

    .topbar .row {
        height: auto;
        gap: 8px;
    }

    .topbar-contact-wrap,
    .topbar-social-links ul {
        justify-content: center;
    }

    .topbar-social-links ul {
        gap: 8px;
    }
}

@media (max-width: 575px) {
    .topbar-info-text p {
        font-size: 13px;
    }

    .topbar-social-links ul::before {
        display: none;
    }
}

.transparent-navbar {
    background: #fff !important;
    top: 50px;
    min-height: 76px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: top 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease;
    z-index: 1030;
}

.transparent-navbar.scrolled {
    top: 0;
    background: #fff !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.navbar.fixed-top.scrolled {
    top: 0;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    transition: all.3s;
}

.dropdown-menu {
    position: relative;
    max-height: 70vh;
    overflow-y: auto;
    background: #fff !important;
    border: 0 !important;
    border-radius: 0 !important;
    padding: 8px 0 !important;
    box-shadow: 6px 6px 0 #FDA04B;
}

.dropdown-menu>li {
    position: relative;
    z-index: 1;
}

.dropdown-item {
    color: #1f1f1f !important;
    padding: 10px 16px !important;
    font-size: 16px;
    line-height: 1.25;
    white-space: nowrap;
}

.dropdown-item:hover {
    background-color: #FDA04B !important;
    color: #fff !important;
}

.dropdown-divider {
    display: none;
}

.navbar {
    background-color: #fff !important;
    padding-top: 8px !important;
    padding-bottom: 8px !important;
}

.navbar.fixed-top {
    top: 50px;
}

.nav-menu {
    gap: 25px;
}

.nav-link {
    font-weight: 600 !important;
    color: #000 !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    font-weight: 600 !important;
    color: #FDA04B !important;

}

.navbar-collapse {
    flex-grow: 1;
    flex-basis: 100%;
    align-items: center;
    justify-content: space-around;
    gap: 1.5rem;
}

.navbar-toggler {
    border: 0 !important;
    box-shadow: none !important;
    padding: 0.35rem 0.5rem !important;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

footer {
    background-color: #000;
    position: relative;
    padding-top: 25px;
}

.footer-box h2 {
    font-weight: 400;
    font-size: 25px;
    margin-bottom: 17px;
    color: var(--s-white);
}

.footer-box p {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 15px;
    color: #fff;
}

.footer-box h3 {
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 1px;
    margin-bottom: 25px;
    color: #fff;
    text-transform: uppercase;
}

.footer-box ul li {
    margin-bottom: 0.5rem;
}

.footer-box li a {
    font-size: 15px;
    color: #fff;
    text-decoration: none;
    transition: all.3s;
}

.footer-box ul {
    list-style: none;
    padding: 0;
    transition: all.3s;

}

.footer-box a {
    text-decoration: none;
    color: #fff;
}

.footer-box ul li a:hover {
    color: #fff;
    letter-spacing: 1px;
    transition: all.3s;
}

.footer1stRow {
    padding: 2rem 0 1.5rem 0;
    position: relative;
    z-index: 1;
}

.socialmediaicon li a i {
    background-color: #fff;
    width: 30px;
    height: 30px;
    display: flex;
    list-style: none;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin-right: 8px;
    padding: 0;
    color: #ffbe84;
    transition: 0.3s;
    border-radius: 100px;
}

.socialmediaicon ul {
    list-style: none;
    padding: 0;
}

.socialmediaicon ul li a i:hover {
    transform: rotate(360deg);
    background-color: #fff;
    color: #ffbe84;
}

.SocialIcon h3 {
    font-size: 17px;
    margin-bottom: 15px;
    display: block;
    font-weight: 600;
}

.copyRight {
    border-top: 1px solid #ffffff5b;
    padding: 20px 0;
    position: relative;
    z-index: 1;
}

.copyRight a {
    color: #fff;
}

.copyRight p {
    color: #fff;
}

.button {
    height: 50px;
    width: 50px;
    position: fixed;
    right: 20px;
    bottom: 20px;
    background-color: #FDA04B;
    cursor: pointer;
    border: 2px solid var(--s-primary);
    overflow: hidden;
    border-radius: 30px;
    color: #fff;
    transition: all 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.btn-txt {
    z-index: 10;
}

.type1::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.5s ease-in-out;
    background-color: #000;
    border-radius: 30px;
    visibility: hidden;
    height: 10px;
    width: 10px;
    z-index: -1;
}

.button:hover {
    box-shadow: 1px 1px 200px var(--s-white);
    color: #fff;
    border: none;
}

.type1:hover::after {
    visibility: visible;
    transform: scale(100) translateX(2px);
}

.cb-cursor {
    position: fixed;
    top: 0;
    left: 0;
    --dot-x: 0px;
    --dot-y: 0px;
    width: 26px;
    height: 26px;
    margin: -13px 0 0 -13px;
    border: 1.5px solid #FDA04B;
    border-radius: 50%;
    background-color: transparent;
    transform: translate3d(0, 0, 0);
    pointer-events: none;
    z-index: 9999;
    transition: opacity 0.3s;
}

.cb-cursor::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border: 0;
    border-radius: 50%;
    background: #FDA04B;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.9;
    transition: width 0.28s ease, height 0.28s ease, opacity 0.28s ease, transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.cb-cursor.is-idle::before {
    width: 18px;
    height: 18px;
    opacity: 0.35;
    transform: translate(-50%, -50%);
}

.hero-section {
    position: relative;
    margin-top: 76px;
    overflow: hidden;
}

.banner {
    min-height: 520px;
    min-height: clamp(520px, calc(100svh - 76px), 820px);
    height: auto;
}

.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: top;
    transform: scale(1);
    transition: transform 6s ease;
    z-index: 0;
}

.slide-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 16% 54%, rgb(242 242 242 / 4%), transparent 24%), radial-gradient(circle at 78% 46%, rgb(239 240 242 / 10%), #00000000 26%), linear-gradient(180deg, rgb(0 0 0 / 19%) 0%, rgb(0 0 0 / 30%) 48%, rgb(0 0 0 / 27%) 100%);
}

.banner {
    position: relative;
    z-index: 1;
    padding: clamp(90px, 14vw, 150px) 0 clamp(60px, 9vw, 90px);
}

.banner .container {
    position: relative;
    z-index: 2;
}

.banner-content {
    width: 100%;
    max-width: 680px;
    margin: 0;
    position: relative;
    z-index: 1;
    padding: clamp(38px, 5vw, 58px) clamp(30px, 5vw, 52px) clamp(42px, 5vw, 54px);
    background: #000;
    border: 4px solid #FDA04B !important;
    border-radius: 70px 18px 70px 18px;
    box-shadow: 0 8px 0 rgba(0, 0, 0, 0.24);
    text-align: left;
}

.hero-eyebrow {
    display: block;
    color: #fff;
    font-size: clamp(18px, 2.4vw, 30px);
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: 0;
    margin-bottom: 8px;
    text-transform: none;
    text-shadow: none;
}

.hero-eyebrow::before {
    display: none;
}

.textt-primary {
    display: flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
    margin-bottom: 12px;
    color: #FDA04B;
    font-size: clamp(13px, 1.3vw, 16px);
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
}

.textt-primary::before {
    content: "";
    flex: 0 0 34px;
    width: 34px;
    height: 3px;
    background: #FDA04B;
    border-radius: 999px;
    box-shadow: 0 5px 0 rgba(253, 160, 75, 0.35);
}

/* .hero-ghost-text {
    position: absolute;
    left: 50%;
    top: -25px;
    width: 100vw;
    transform: translateX(-50%);
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.16);
    text-stroke: 2px rgba(255, 255, 255, 0.16);
    font-size: clamp(58px, 12vw, 88px);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: 0;
    text-transform: uppercase;
    white-space: nowrap;
    pointer-events: none;
    z-index: -1;
} */

.banner-content h1 {
    color: #fff;
    font-size: clamp(42px, 5.2vw, 62px);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 20px;
    text-wrap: pretty;
    text-shadow: 3px 4px 0 #fda04bab, -2px 0 0 #ffbe8496;
}


.banner-content h1 span {
    display: block;
}

.banner-content p {
    color: #fff !important;
    font-size: clamp(16px, 1.7vw, 19px);
    font-weight: 500;
    line-height: 1.55;
    max-width: 540px;
    margin: 0 0 34px;
}

.banner-content .d-flex {
    flex-wrap: wrap;
}

.hero-actions {
    position: relative;
    z-index: 2;
    align-items: center;
}

.banner-content-new {
    display: flex;
    justify-content: flex-end;
}

.btn-primary {
    position: relative;
    display: inline-block;
    padding: 16px 35px;
    color: #fff;
    background: #FDA04B !important;
    border: none !important;
    font-weight: 700 !important;
    text-decoration: none;
    overflow: hidden;
    z-index: 1;
    transition: all.3s;
    border-radius: 0px !important;
}

.btn-primary::before {
    content: "";
    position: absolute;
    width: 0%;
    height: 200%;
    left: 50%;
    top: 50%;
    background-color: #ffbe84 !important;
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: -1;
    transition: all.3s;
}

.btn-primary::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 25px;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-primary:hover::before {
    width: 120%;
}

.btn-primary:hover {
    color: #fff;
}

.btn-secondary {
    position: relative;
    display: inline-block;
    padding: 16px 35px;
    color: #fff !important;
    background: #ffbe84 !important;
    border: none !important;
    font-weight: 700 !important;
    text-decoration: none;
    overflow: hidden;
    z-index: 1;
    transition: all.3s;
    border-radius: 0px !important;
}

.btn-secondary::before {
    content: "";
    position: absolute;
    width: 0%;
    height: 200%;
    left: 50%;
    top: 50%;
    background-color: #FDA04B !important;
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: -1;
    transition: all.3s;
}

.btn-secondary::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 25px;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover::before {
    width: 120%;
}

.btn-secondary:hover {
    color: #fff !important;
}

@media (max-width: 1199px) {
    .banner {
        min-height: 620px;
        padding: 130px 0 90px;
    }

    .banner-content {
        max-width: 650px;
    }

    .hero-ghost-text {
        top: -28px;
        font-size: clamp(62px, 12vw, 104px);
    }

    .banner-content h1 {
        font-size: clamp(42px, 6vw, 58px);
    }
}

@media (max-width: 991px) {
    .hero-section {
        margin-top: 76px;
    }

    .banner {
        min-height: 590px;
        padding: 120px 0 80px;
    }

    .banner-content {
        max-width: 620px;
    }

    .hero-ghost-text {
        top: -18px;
        font-size: clamp(54px, 13vw, 86px);
    }

    .hero-eyebrow {
        font-size: clamp(18px, 3vw, 26px);
    }

    .banner-content h1 {
        font-size: clamp(40px, 8vw, 58px);
        margin-bottom: 30px;
    }

    .hero-actions .btn {
        min-width: 160px;
        padding: 13px 28px !important;
    }
}

@media (max-width: 767px) {
    .banner {
        min-height: 540px;
        padding: 105px 0 68px;
    }

    .banner-content {
        max-width: 560px;
        margin: 0 auto;
        padding: 38px 32px 42px;
        border-radius: 54px 16px 54px 16px;
    }

    .hero-ghost-text {
        top: -16px;
        font-size: clamp(44px, 15vw, 72px);
        -webkit-text-stroke-width: 1.4px;
        text-stroke-width: 1.4px;
    }

    .hero-eyebrow {
        font-size: 19px;
        margin-bottom: 8px;
    }

    .banner-content h1 {
        font-size: clamp(34px, 11vw, 48px);
        margin-bottom: 20px;
        text-shadow: 4px 5px 0 rgba(65, 126, 163, 0.72), -2px -1px 0 rgba(251, 88, 106, 0.5);
    }

    .hero-actions .btn {
        min-width: 150px;
        padding: 12px 24px !important;
        font-size: 13px;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }
}

@media (max-width: 575px) {
    .banner {
        min-height: 510px;
        padding: 92px 0 58px;
    }

    .hero-ghost-text {
        top: -8px;
        font-size: clamp(40px, 16vw, 58px);
    }

    .hero-eyebrow {
        display: block;
        max-width: none;
        line-height: 1.35;
    }

    .textt-primary {
        gap: 9px;
        font-size: 12px;
        letter-spacing: 0.06em;
    }

    .textt-primary::before {
        flex-basis: 24px;
        width: 24px;
    }

    .banner-content h1 {
        font-size: clamp(32px, 12vw, 42px);
        line-height: 1.16;
        text-shadow: 3px 4px 0 rgba(65, 126, 163, 0.72), -1px -1px 0 rgba(251, 88, 106, 0.5);
    }

    .banner-content {
        padding: 32px 24px 36px;
        border-width: 3px;
        border-radius: 42px 14px 42px 14px;
    }

    .banner-content p {
        font-size: 15px;
        margin-bottom: 28px;
    }

    .hero-actions {
        gap: 12px !important;
    }

    .hero-actions .btn {
        width: min(100%, 230px);
        min-width: 0;
    }
}

@media (max-width: 380px) {
    .banner-content h1 {
        font-size: 31px;
    }

    .hero-ghost-text {
        font-size: 38px;
    }

    .hero-actions .btn {
        width: 100%;
    }
}

/* About section */
.about-section {
    position: relative;
    overflow: hidden;
    padding: clamp(80px, 9vw, 125px) 0;
    background:
        radial-gradient(circle at 8% 12%, rgba(253, 160, 75, 0.14), transparent 25%),
        linear-gradient(135deg, #fffaf4 0%, #ffffff 58%, #fff6ec 100%);
}

.about-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 7%;
    width: 150px;
    height: 7px;
    background: #FDA04B;
    border-radius: 0 0 20px 20px;
}

.about-visual {
    position: relative;
    max-width: 610px;
    padding: 24px 34px 42px 0;
}

.about-image-frame {
    position: relative;
    height: clamp(440px, 48vw, 610px);
    overflow: hidden;
    border: 8px solid #fff;
    border-radius: 90px 20px 90px 20px;
    box-shadow: 18px 18px 0 #FDA04B, 0 24px 55px rgba(31, 24, 18, 0.18);
    z-index: 2;
}

.about-image-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.24));
}

.about-image-frame img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: 50% center;
    transition: transform 0.7s ease;
}

.about-visual:hover .about-image-frame img {
    transform: scale(1.035);
}

.about-experience {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 285px;
    padding: 20px 23px;
    color: #fff;
    background: #000;
    border-left: 5px solid #FDA04B;
    border-radius: 18px 4px 18px 4px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.24);
}

.about-experience-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    display: flex !important;
    justify-content: center;
    place-items: center;
    color: #fff;
    background: #FDA04B;
    border-radius: 50%;
    font-size: 18px;
}

.about-experience strong,
.about-experience span {
    display: block;
}

.about-experience strong {
    font-size: 17px;
    line-height: 1.2;
}

.about-experience div>span {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
}

.about-shape {
    position: absolute;
    display: block;
    border-radius: 50%;
    pointer-events: none;
}

.about-shape-one {
    top: 0;
    right: 4px;
    width: 76px;
    height: 76px;
    border: 15px solid rgba(253, 160, 75, 0.2);
}

.about-shape-two {
    left: -36px;
    bottom: 30px;
    width: 95px;
    height: 95px;
    background-image: radial-gradient(#FDA04B 2px, transparent 2px);
    background-size: 13px 13px;
    opacity: 0.48;
}

.about-content {
    max-width: 650px;
    padding-left: clamp(0px, 2vw, 26px);
}

.about-content .textt-primary {
    margin-bottom: 18px;
}

.about-content>p {
    margin-bottom: 15px;
    color: #666 !important;
    font-size: 16px;
    line-height: 1.75;
}

.about-content .about-lead {
    color: #333 !important;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.65;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: 30px 0 34px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    min-height: 112px;
    padding: 18px;
    background: #fff;
    border: 1px solid rgba(253, 160, 75, 0.2);
    border-radius: 16px 4px 16px 4px;
    box-shadow: 0 9px 28px rgba(35, 25, 15, 0.07);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.about-feature:hover {
    transform: translateY(-4px);
    border-color: #FDA04B;
    box-shadow: 0 15px 34px rgba(35, 25, 15, 0.12);
}

.about-feature>span {
    flex: 0 0 43px;
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    color: #fff;
    background: #FDA04B;
    border-radius: 12px 3px 12px 3px;
    font-size: 17px;
}

.about-feature h3 {
    margin: 1px 0 5px;
    color: #171717 !important;
    font-size: 17px;
    font-weight: 750;
}

.about-feature p {
    margin: 0;
    color: #777 !important;
    font-size: 13px;
    line-height: 1.45;
}

.about-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 26px;
}

.about-actions .btn {
    padding: 15px 28px !important;
}

.about-call {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #171717;
}

.about-call>span {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    color: #FDA04B;
    border: 2px solid #FDA04B;
    border-radius: 50%;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.about-call:hover>span {
    color: #fff;
    background: #FDA04B;
}

.about-call small,
.about-call strong {
    display: block;
}

.about-call small {
    margin-bottom: 2px;
    color: #777;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.about-call strong {
    color: #171717;
    font-size: 17px;
}

@media (max-width: 991px) {
    .about-visual {
        margin: 0 auto 18px;
    }

    .about-content {
        max-width: 720px;
        margin: 0 auto;
        padding-left: 0;
    }
}

@media (max-width: 575px) {
    .about-section {
        padding: 70px 0;
    }

    .about-visual {
        padding: 12px 14px 54px 0;
    }

    .about-image-frame {
        height: 420px;
        border-width: 5px;
        border-radius: 55px 12px 55px 12px;
        box-shadow: 12px 12px 0 #FDA04B, 0 20px 40px rgba(31, 24, 18, 0.16);
    }

    .about-experience {
        right: 0;
        max-width: 255px;
        padding: 16px 18px;
    }

    .about-shape {
        display: none;
    }

    .about-content h2 {
        font-size: 34px;
    }

    .about-content .about-lead {
        font-size: 16px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .about-feature {
        min-height: 0;
    }

    .about-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 22px;
    }
}

.main-text {
    color: #000 !important;
    font-size: 55px;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 20px;
    text-wrap: pretty;
    text-shadow: 3px 4px 0 #fda04bab, -2px 0 0 #ffbe8496;
    font-family: "Kaushan Script", cursive !important;
}

/* Services section */
.services-section {
    position: relative;
    overflow: hidden;
    padding: clamp(80px, 9vw, 125px) 0;
    background:
        radial-gradient(circle at 0 0, rgba(253, 160, 75, 0.16), transparent 27%),
        radial-gradient(circle at 100% 100%, rgba(253, 160, 75, 0.1), transparent 25%),
        #fffaf3;
}

.services-section::before,
.services-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.services-section::before {
    top: 90px;
    left: -75px;
    width: 160px;
    height: 160px;
    border: 28px solid rgba(253, 160, 75, 0.11);
}

.services-section::after {
    right: -45px;
    bottom: 80px;
    width: 130px;
    height: 130px;
    background-image: radial-gradient(#FDA04B 2px, transparent 2px);
    background-size: 14px 14px;
    opacity: 0.28;
}

.services-heading {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto 52px;
    text-align: center;
}

.services-heading .textt-primary {
    margin: 0 auto 15px;
}

.services-heading h2 {
    margin-bottom: 18px;
    color: #171717 !important;
    font-size: clamp(36px, 4.5vw, 58px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.025em;
}

.services-heading p {
    max-width: 650px;
    margin: 0 auto;
    color: #6d6d6d !important;
    font-size: 17px;
    line-height: 1.7;
}

.services-row {
    position: relative;
    z-index: 1;
}

.service-card {
    position: relative;
    overflow: hidden;
    min-width: 0;
    background: #fff;
    border: 1px solid rgba(30, 30, 30, 0.07);
    border-radius: 30px 8px 30px 8px;
    box-shadow: 0 16px 42px rgba(58, 42, 26, 0.09);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card::after {
    content: "";
    position: absolute;
    right: -26px;
    bottom: -26px;
    width: 78px;
    height: 78px;
    border: 13px solid color-mix(in srgb, var(--service-accent) 20%, transparent);
    border-radius: 50%;
}

.service-card:hover {
    transform: translateY(-9px);
    box-shadow: 0 24px 52px rgba(58, 42, 26, 0.16);
}

.service-image {
    position: relative;
    height: 245px;
    margin: 12px 12px 0;
    overflow: hidden;
    border-radius: 22px 5px 22px 5px;
    background: #eee;
}

.service-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.35));
}

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.07);
}

.service-number {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    color: #fff;
    background: rgba(0, 0, 0, 0.72);
    border: 2px solid rgba(255, 255, 255, 0.75);
    border-radius: 50%;
    font-size: 13px;
    font-weight: 800;
}

.service-card-content {
    position: relative;
    padding: 34px 27px 28px;
}

.service-icon {
    position: absolute;
    top: -31px;
    left: 27px;
    z-index: 3;
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--service-accent);
    border: 6px solid #fff;
    border-radius: 18px 5px 18px 5px;
    box-shadow: 0 8px 18px color-mix(in srgb, var(--service-accent) 35%, transparent);
    font-size: 20px;
}

.service-card h3 {
    margin: 5px 0 12px;
    color: #171717 !important;
    font-size: 24px;
    font-weight: 800;
}

.service-card p {
    min-height: 78px;
    margin-bottom: 22px;
    color: #707070 !important;
    font-size: 15px;
    line-height: 1.7;
}

.service-link {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 5px;
    color: #222;
    border-bottom: 2px solid var(--service-accent);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: color 0.3s ease, gap 0.3s ease;
}

.service-link i {
    color: var(--service-accent);
}

.service-link:hover {
    gap: 15px;
    color: var(--service-accent);
}

@media (max-width: 767px) {
    .services-row {
        max-width: 560px;
        margin-right: auto;
        margin-left: auto;
    }

    .service-image {
        height: 275px;
    }

    .service-card p {
        min-height: 0;
    }
}

@media (max-width: 575px) {
    .services-section {
        padding: 70px 0;
    }

    .services-heading {
        margin-bottom: 38px;
    }

    .services-heading h2 {
        font-size: 34px;
    }

    .services-heading p {
        font-size: 15px;
    }

    .service-image {
        height: 225px;
    }

    .service-card-content {
        padding: 34px 22px 25px;
    }
}

/* why choose us */
.why-choose-us {
    background-image: url(https://aladdinscastlelearningcenter.com/wp-content/uploads/2026/07/choose-us.png);
    background-position: center;
    background-size: cover;
    padding: 120px 0;
    position: relative;
}

.why-choose-us::before {
    background: linear-gradient(90deg, rgb(253 160 75 / 80%), rgb(0 0 0 / 42%));
    content: "";
    inset: 0;
    position: absolute;
}

.why-choose-us .container {
    position: relative;
    z-index: 1;
}

.choose-us-content {
    background: #fff;
    border-left: 5px solid #FDA04B;
    max-width: 570px;
    padding: 46px;
}

.choose-us-content .textt-primary {
    /* color: #D6AF3F; */
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.choose-us-content h2 {
    color: #071F4D;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.15;
    margin: 12px 0 18px;
}

.choose-us-content p,
.choose-us-content li {
    color: #536176;
    font-size: 16px;
    line-height: 1.7;
}

.choose-us-content ul {
    list-style: none;
    margin: 22px 0 30px;
    padding: 0;
}

.choose-us-content li {
    margin-bottom: 9px;
}

.choose-us-content li i {
    color: #D6AF3F;
    margin-right: 8px;
}

.choose-us-btn {
    background: #071F4D !important;
    color: #fff !important;
    font-weight: 700 !important;
    padding: 16px 35px !important;
}

@media (max-width: 767px) {
    .why-choose-us {
        padding: 80px 0;
    }

    .choose-us-content {
        padding: 30px 24px;
    }

    .choose-us-content h2 {
        font-size: 32px;
    }
}

/* Card Layout Structure */
.servicee-card {
    background-color: #ffffff;
    border-radius: 6px;
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.06);
    padding: 30px 25px;
    display: flex;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    height: 100%;
}

/* Left Side: Icon Container Structure mimicking image_f6ecc9.jpg styling */
.card-left-side {
    position: relative;
    padding: 10px;
    flex-shrink: 0;
}

.icon-border-box {
    position: relative;
    padding: 5px;
    z-index: 1;
}

/* The distinct top-left colored ribbon angle */
.icon-border-box::before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    width: 45px;
    height: 45px;
    z-index: -1;
    clip-path: polygon(0 0, 100% 0, 100% 30%, 30% 100%, 0 100%);
}

/* The distinct bottom-right colored ribbon angle */
.icon-border-box::after {
    content: "";
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 45px;
    height: 45px;
    z-index: -1;
    clip-path: polygon(100% 100%, 0 100%, 0 70%, 70% 0, 100% 0);
}

/* Inside container box matching picture grid setup */
.icon-inside {
    width: 140px;
    height: 140px;
    background-color: #ffffff;
    border: 1px solid #e5eaf4;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-inside i {
    font-size: 3rem;
}

/* Right Side Text Layout */
.card-right-side {
    padding-left: 25px;
    flex-grow: 1;
}

.service-title {
    color: #1a2b49;
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0;
}

.step-badge {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    background-color: #121212;
    color: #FDA04B;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.service-tag {
    color: #FDA04B;
    font-size: 0.88rem;
    font-weight: 800;
    display: block;
    margin-bottom: 12px;
}

.service-desc {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Color Rules Configuration */
/* Green Variant */
.theme-green .icon-border-box::before,
.theme-green .icon-border-box::after {
    background-color: #82cd27;
}

.theme-green .icon-inside i {
    color: #82cd27;
}

/* Purple Variant */
.theme-purple .icon-border-box::before,
.theme-purple .icon-border-box::after {
    background-color: #802784;
}

.theme-purple .icon-inside i {
    color: #802784;
}

/* Orange Variant */
.theme-orange .icon-border-box::before,
.theme-orange .icon-border-box::after {
    background-color: #f35312;
}

.theme-orange .icon-inside i {
    color: #f35312;
}

/* Blue Variant */
.theme-blue .icon-border-box::before,
.theme-blue .icon-border-box::after {
    background-color: #00adef;
}

.theme-blue .icon-inside i {
    color: #00adef;
}

/* Responsive Handling */
@media (max-width: 576px) {
    .service-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .card-right-side {
        padding-left: 0;
        margin-top: 20px;
        width: 100%;
    }

    .card-right-side .d-flex {
        flex-direction: column;
        gap: 8px;
    }
}

.care-process-section {
    background: radial-gradient(circle at 0 0, rgba(253, 160, 75, 0.16), transparent 27%), radial-gradient(circle at 100% 100%, rgba(253, 160, 75, 0.1), transparent 25%), #fffaf3;
}

/* testimonial */
.testimonials {
    padding: 100px 0;
    background-image: url(https://aladdinscastlelearningcenter.com/wp-content/uploads/2026/07/teacher-bg.jpg);
    width: 100%;
}

.testimonials-content {
    margin: 0 auto 44px;
    max-width: 820px;
    position: relative;
    z-index: 1;
}

.testimonials-content .textt-primary {
    justify-content: center;
}

.testimonials-content h2 {
    color: #000;
    font-size: clamp(34px, 4.6vw, 48px);
    font-weight: 900;
    line-height: 1.12;
    margin: 0 auto;
    max-width: 760px;
}

#testimonialSwiper {
    padding-bottom: 42px;
}

#testimonialSwiper .swiper-slide {
    height: auto;
}

.testimonial-card {
    min-height: 238px;
    height: 100%;
    padding: 34px 28px;
    /* width: 450px; */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.28);
    text-align: center;
    background-color: #ffbe84 !important;
}

.testimonial-card>p {
    max-width: 330px;
    margin: 0 auto 24px;
    color: rgba(255, 255, 255, 0.82) !important;
    font-size: 20px;
    font-style: italic;
    font-weight: 700;
    line-height: 1.45;
}

.testimonial-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}

.testimonial-meta img {
    width: 42px;
    height: 42px;
    object-fit: cover;
}

.testimonial-meta h3 {
    margin: 0 0 2px;
    font-size: 13px;
    font-weight: 800;
    color: #000;
}

.testimonial-meta span {
    display: block;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

#testimonialSwiper .swiper-pagination {
    bottom: 0;
}

#testimonialSwiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    opacity: 1;
}

#testimonialSwiper .swiper-pagination-bullet-active {
    background: #FDA04B !important;
}

@media (max-width: 767px) {
    .testimonials {
        padding: 70px 0;
    }

    .testimonials-content {
        margin-bottom: 30px;
    }

    .testimonials-content .hero-ghost-text {
        top: 0;
        font-size: 48px;
    }

    .testimonial-card>p {
        font-size: 18px;
    }
}

/* contact */
.contact-behind {
    /* background-color: #153746; */
    background-image: radial-gradient(circle at 18% 24%, rgb(0 0 0 / 20%), transparent 32%), linear-gradient(110deg, rgb(0 0 0 / 50%) -0.9%, rgb(40 88 116 / 92%) 48%, rgb(10 34 45 / 44%) 101.13%), url(https://aladdinscastlelearningcenter.com/wp-content/uploads/2026/07/contact-image.png);
    background-position: center;
    /* background-image: url(https://aladdinscastlelearningcenter.com/wp-content/uploads/2026/07/contact-image.png); */
    background-repeat: no-repeat;
    background-size: cover;
    border: 10px solid #FDA04B !important;
    backdrop-filter: blur(570px);
    margin: 100px 40px;
    padding: 50px 0;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
}

.content4 img {
    background-color: #FDA04B !important;
    width: 70px;
    padding: 20px;
    border-radius: 100px;
}

.contactUSPage {
    background-color: #ffffff6e;
    position: relative;
    overflow: hidden;
    z-index: 1;
    width: 100%;
    max-width: 660px;
    margin: 0;
    padding: 36px 32px 26px;
    border-radius: 18px;
    box-shadow: -1px 0px 4px 0px #fda04b !important;
}

.contactUSPage::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url(https://aladdinscastlelearningcenter.com/wp-content/uploads/2026/07/feature-four-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.08;
    pointer-events: none;
}

.contactUSPage>* {
    position: relative;
    z-index: 1;
}

.contact-form-title {
    margin-bottom: 16px;
}

/* .contact-form-title span {
    color: #111;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 800;
} */

.contact-form-title span::before {
    content: "";
    width: 38px;
    height: 3px;
    background: #FDA04B !important;
}

.contactUSPage .form-label {
    color: #fff;
    font-weight: 700;
    margin-bottom: 8px;
}

.contactUSPage form.row {
    margin-left: 0;
    margin-right: 0;
}

.contactUSPage .form-control,
.contactUSPage .form-select {
    min-height: 52px;
    border: 1px solid rgba(251, 88, 106, 0.24) !important;
    border-radius: 8px !important;
    box-shadow: none !important;
    font-weight: 600;
}

.contactUSPage textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.contactUSPage .form-control:focus,
.contactUSPage .form-select:focus {
    border-color: #000 !important;
    box-shadow: 0 0 0 4px rgba(65, 126, 163, 0.16) !important;
}

.contactUSPage .btn {
    min-width: 178px;
}

.content5 {
    padding: 10px;
}

.content5 h4 {
    font-size: 16px;
    color: #FDA04B !important;
    font-weight: 400;
}

.content5 h3 {
    font-size: 17px;
    font-weight: 600;
    overflow-wrap: anywhere;
    color: #fff;
}

.contact-section {
    position: relative;
}

/* .contact-section::before {
    content: "";
    position: absolute;
    left: -34px;
    top: -38px;
    width: 120px;
    height: 120px;
    background-image: url(https://aladdinscastlelearningcenter.com/wp-content/uploads/2026/07/blurr.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.75;
    pointer-events: none;
} */

.contact-set {
    padding: 100px;
}

.contact-section h4 {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    color: #FDA04B !important;
    margin-bottom: 5px;
}

.form-control {
    display: block;
    color: #000 !important;
    background-color: #edededa6 !important;
}

.form-control::placeholder {
    color: #000 !important;
}

.form-select {
    color: #000 !important;
    background-color: #edededa6 !important;
}

option {
    background-color: #fff;
    color: #000 !important;
}

.contact-section p {
    color: rgba(255, 255, 255, 0.86) !important;
    line-height: 1.7;
}

#contact,
.contact-behind,
.container {
    overflow: visible !important;
}

@media (max-width: 991px) {
    .contact-behind {
        margin: 80px 24px;
        padding: 42px 0;
        border-radius: 34px;
    }

    .contact-section {
        margin-bottom: 28px;
    }

    .contact-section h2 {
        font-size: 34px;
    }
}

@media (max-width: 575px) {
    .contact-behind {
        border-width: 5px;
        border-radius: 22px;
        margin: 56px 12px;
        padding: 30px 0;
    }

    .contactUSPage {
        padding: 26px 18px 18px;
        border-radius: 14px;
    }

    .contact-form-title span {
        font-size: 21px;
    }

    .contact-section h2 {
        font-size: 28px;
    }

    .contact-content {
        align-items: center;
    }

    .content4 img {
        width: 58px;
        padding: 16px;
    }

    .contactUSPage .btn {
        width: 100%;
    }
}

.contact-image-wrap {
    position: relative;
    isolation: isolate;
    max-width: 500px;
    width: 100%;
    padding: 18px;
}

.contact-image-wrap::before {
    content: "";
    position: absolute;
    inset: 9% 2% 4% 14%;
    background: rgb(255 0 0 / 65%);
    border-radius: 28px;
    transform: rotate(-4deg);
    z-index: -2;
}

.contact-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgb(255 0 0 / 65%);
    border-radius: 30px;
    transform: rotate(3deg);
    z-index: -1;
}

.contact-image-wrap img {
    display: block;
    width: 100%;
    border: 8px solid rgba(255, 255, 255, 0.95);
    border-radius: 26px;
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.28);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.contact-image-wrap:hover img {
    transform: translateY(-6px);
    box-shadow: 0 34px 70px rgba(0, 0, 0, 0.34);
}

@media (max-width: 767px) {

    .contact-image-wrap {
        max-width: 420px;
        margin-top: 10px;
        padding: 12px;
    }

    .contact-image-wrap img {
        border-width: 6px;
        border-radius: 20px;
    }
}

.counter-section {
    background: radial-gradient(circle at 0 0, rgb(253 160 75 / 2%), #00000000 27%), radial-gradient(circle at 100% 100%, rgb(253 160 75 / 17%), transparent 25%), #fffaf3;
}

.counter-circle {
    width: 260px;
    height: 260px;
    margin: auto;
    background: #fff;
    border-radius: 50%;
    border: 2px dashed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
    transition: .4s;
}

.counter-circle:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .15);
}

.counter-icon {
    font-size: 55px;
    margin-bottom: 18px;
}

.counter-circle h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
}

.counter-circle p {
    margin: 0;
    color: #555;
    font-size: 15px;
    font-weight: 500;
}

/* Colors */

.green {
    border-color: #8BC34A;
}

.green .counter-icon,
.green h2 {
    color: #8BC34A;
}

.purple {
    border-color: #9C27B0;
}

.purple .counter-icon,
.purple h2 {
    color: #9C27B0;
}

.orange {
    border-color: #FF6A28;
}

.orange .counter-icon,
.orange h2 {
    color: #FF6A28;
}

.blue {
    border-color: #16B9FF;
}

.blue .counter-icon,
.blue h2 {
    color: #16B9FF;
}

@media(max-width:991px) {

    .counter-circle {
        width: 220px;
        height: 220px;
    }

    .counter-circle h2 {
        font-size: 42px;
    }

}

/* about us page */
.other-banner {
    background-image: linear-gradient(rgb(0 0 0 / 58%), rgb(0 0 0 / 32%)), url(https://aladdinscastlelearningcenter.com/wp-content/uploads/2026/07/other-banner.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.new-content {}

.new-content h3 {
    font-size: 55px;
    color: #fff;
    font-weight: 800;
}

.breadcrumb-item {
    font-weight: 700;
    color: #fff !important;
}

.breadcrumb-item a {
    color: #fff !important;
    font-weight: 700;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #fff !important;
}

/* About page: special attention section */
.aclc-attention-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: radial-gradient(circle at 0 0, rgba(253, 160, 75, 0.16), transparent 27%),
        radial-gradient(circle at 100% 100%, rgba(253, 160, 75, 0.1), transparent 25%),
        #fffaf3;
}

.aclc-attention-gallery {
    position: relative;
    width: min(100%, 570px);
    min-height: 470px;
    margin: 0 auto;
}

.aclc-attention-photo {
    position: absolute;
    overflow: hidden;
    border: 9px solid #fff;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 15px 30px rgba(30, 43, 67, 0.16);
}

.aclc-attention-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.aclc-attention-photo-small {
    top: 8px;
    left: 3%;
    width: 220px;
    height: 220px;
}

.aclc-attention-photo-large {
    top: 0;
    right: 2%;
    width: 275px;
    height: 275px;
}

.aclc-attention-photo-bottom {
    left: 23%;
    bottom: 0;
    width: 225px;
    height: 225px;
}

.aclc-attention-dot {
    position: absolute;
    z-index: 2;
    display: block;
    border-radius: 50%;
}

.aclc-attention-dot-green {
    top: 0;
    left: 42%;
    width: 52px;
    height: 52px;
    background: #8cc936;
}

.aclc-attention-dot-purple {
    top: 225px;
    left: 14%;
    width: 44px;
    height: 44px;
    background: #a3249d;
}

.aclc-attention-dot-orange {
    right: 18%;
    bottom: 100px;
    width: 54px;
    height: 54px;
    background: #ff651e;
}

.aclc-attention-content {
    max-width: 620px;
}

.aclc-attention-eyebrow {
    display: inline-block;
    margin-bottom: 4px;
    color: #a3249d;
    font-size: 21px;
    font-weight: 500;
}

.aclc-attention-content h2 {
    margin-bottom: 14px;
    color: #082d5c;
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.12;
}

.aclc-attention-intro {
    max-width: 590px;
    margin-bottom: 24px;
    color: #6c625b;
    font-size: 16px;
    line-height: 1.75;
}

.aclc-attention-list {
    display: grid;
    gap: 12px;
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}

.aclc-attention-list li {
    display: flex;
    align-items: center;
    gap: 11px;
    color: #082d5c;
    font-size: 16px;
}

.aclc-attention-list i {
    width: 18px;
    text-align: center;
}

.aclc-attention-item-green i,
.aclc-attention-item-green strong {
    color: #76bd22;
}

.aclc-attention-item-purple i,
.aclc-attention-item-purple strong {
    color: #a3249d;
}

.aclc-attention-item-orange i,
.aclc-attention-item-orange strong {
    color: #ff651e;
}

.aclc-attention-item-blue i,
.aclc-attention-item-blue strong {
    color: #00aef0;
}

.aclc-attention-quote {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-top: 1px solid rgba(253, 160, 75, 0.55);
    border-bottom: 1px solid rgba(253, 160, 75, 0.55);
}

.aclc-attention-quote-photo {
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
    overflow: hidden;
    border: 5px solid #fff;
    border-radius: 50%;
    box-shadow: 0 5px 14px rgba(30, 43, 67, 0.18);
}

.aclc-attention-quote-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aclc-attention-quote p {
    margin: 0;
    color: #082d5c;
    line-height: 1.35;
}

.aclc-attention-quote q {
    display: inline;
    color: #ff651e;
    font-size: 20px;
    font-weight: 500;
}

.aclc-attention-quote span {
    font-size: 15px;
    white-space: nowrap;
}

@media (max-width: 991px) {
    .aclc-attention-section {
        padding: 80px 0;
    }

    .aclc-attention-content {
        max-width: 720px;
        margin: 0 auto;
    }
}

@media (max-width: 575px) {
    .aclc-attention-section {
        padding: 65px 0;
    }

    .aclc-attention-gallery {
        min-height: 355px;
    }

    .aclc-attention-photo {
        border-width: 6px;
    }

    .aclc-attention-photo-small {
        width: 155px;
        height: 155px;
    }

    .aclc-attention-photo-large {
        width: 195px;
        height: 195px;
    }

    .aclc-attention-photo-bottom {
        left: 21%;
        width: 165px;
        height: 165px;
    }

    .aclc-attention-dot-green {
        left: 39%;
        width: 38px;
        height: 38px;
    }

    .aclc-attention-dot-purple {
        top: 165px;
        left: 10%;
        width: 32px;
        height: 32px;
    }

    .aclc-attention-dot-orange {
        right: 12%;
        bottom: 75px;
        width: 40px;
        height: 40px;
    }

    .aclc-attention-eyebrow {
        font-size: 18px;
    }

    .aclc-attention-content h2 {
        font-size: 32px;
    }

    .aclc-attention-quote {
        align-items: flex-start;
    }

    .aclc-attention-quote q {
        font-size: 17px;
    }

    .aclc-attention-quote span {
        display: block;
        margin-top: 4px;
        white-space: normal;
    }
}

/* our mission */
.mission {
    width: 100%;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 90px 0;
    background-image: linear-gradient(135deg, #FDA04B 0%, rgb(79 58 10 / 72%) 100%), url(https://aladdinscastlelearningcenter.com/wp-content/uploads/2026/07/mission-new.png);
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
}

.mission-content h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: #FDA04B;
    margin-bottom: 15px;
    margin-top: 0;
    letter-spacing: 0.18em;
}

.mission-content h3 {
    font-size: 40px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.12;
}

.mission-content p {
    margin-top: 0;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 400;
    margin-bottom: 0;
    line-height: 1.85;
}

.mission-box {
    background-color: #ffffff78 !important;
    margin-top: 0;
    min-height: 100%;
    margin-bottom: 0;
    padding: 34px 28px;
    gap: 10px;
    border-radius: 26px;
    border: 1px solid #ffffff61;
    box-shadow: 0px 1px 12px 7px rgb(0 0 0 / 18%);
}

.mission-box-content h3 {
    color: #000;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 25px;
    margin-top: 25px;
    letter-spacing: 1px;

}

.mission-box-content h5 {
    margin-top: 0;
    font-size: 14px;
    margin-bottom: 0rem;
    font-weight: 500;
    line-height: 1.7;

}

.mission-content .main-text {
    color: #000 !important;
    font-size: 55px;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 20px;
    text-wrap: pretty;
    text-shadow: 3px 4px 0 #fff, -2px 0 0 #fff;
}

.mission-content .textt-primary {
    color: #000;
}

.mission-content .textt-primary::before {
    content: "";
    flex: 0 0 34px;
    width: 34px;
    height: 3px;
    background: #000;
    border-radius: 999px;
    box-shadow: 0 5px 0 rgb(0 0 0 / 46%);
}

.work-para {
    text-align: center;
}

/* About page: our approach */
.process-gap {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background:
        radial-gradient(circle at 0 0, rgba(253, 160, 75, 0.18), transparent 28%),
        radial-gradient(circle at 100% 100%, rgba(139, 200, 61, 0.13), transparent 26%),
        #fffaf3;
}

.process-box {
    position: relative;
    overflow: hidden;
    min-height: 100%;
    background: linear-gradient(145deg, #fda04b, #ff8a3d);
    color: #fff;
    padding: 50px 42px;
    border-radius: 34px 10px 34px 10px;
    box-shadow: 15px 15px 0 rgba(253, 160, 75, 0.2);
}

.process-kicker {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #fff;
    margin-bottom: 16px;
}

.process-kicker::before {
    content: "";
    width: 30px;
    height: 3px;
    border-radius: 20px;
    background: #fff;
}

.process-box h2 {
    position: relative;
    z-index: 1;
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.07;
    margin-bottom: 18px;
    color: #fff;
}

.process-box p {
    position: relative;
    z-index: 1;
    margin: 0 0 28px;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.75;
}

.process-btn {
    position: relative;
    z-index: 1;
    padding: 13px 20px !important;
    border: 0 !important;
    border-radius: 0 !important;
    color: #202020 !important;
    font-weight: 700 !important;
}

.process-shape {
    position: absolute;
    display: block;
    border-radius: 50%;
    pointer-events: none;
}

.process-shape-one {
    right: -45px;
    bottom: -45px;
    width: 170px;
    height: 170px;
    border: 28px solid rgba(255, 255, 255, 0.12);
}

.process-shape-two {
    top: 28px;
    right: 28px;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.18);
}

.process-content {
    height: 100%;
    padding: 8px 0 0 18px;
}

.process-title-wrap {
    max-width: 720px;
    padding: 0 0 34px;
}

.process-title-wrap .textt-primary {
    margin-bottom: 10px;
}

.process-title-wrap h3 {
    margin: 0 0 14px;
    color: #082d5c;
    font-size: clamp(34px, 4vw, 46px);
    font-weight: 800;
    line-height: 1.1;
}

.process-title-wrap p {
    max-width: 650px;
    margin: 0;
    color: #6c625b;
    line-height: 1.7;
}

.step-box {
    height: 100%;
    padding: 34px 22px;
    border-radius: 26px 8px 26px 8px;
    background: #fff;
    box-shadow: 0 16px 38px rgba(30, 43, 67, 0.1);
    border: 1px solid rgba(8, 45, 92, 0.07);
    border-bottom: 5px solid var(--step-accent);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.step-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(30, 43, 67, 0.15);
}

.step-box-green {
    --step-accent: #8bc83d;
}

.step-box-purple {
    --step-accent: #a953c6;
}

.step-box-orange {
    --step-accent: #fda04b;
}

.step-icon {
    width: 74px;
    height: 74px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--step-accent);
    border: 7px solid color-mix(in srgb, var(--step-accent) 18%, white);
    border-radius: 50%;
    font-size: 28px;
    box-shadow: 0 12px 25px color-mix(in srgb, var(--step-accent) 25%, transparent);
}

.step-box h4 {
    margin: 22px 0 12px;
    color: #082d5c;
    font-size: 21px;
    font-weight: 800;
}

.step-box p {
    margin: 0;
    color: #6c625b !important;
    font-size: 15px;
    line-height: 1.7;
}

@media(max-width:992px) {
    .process-box {
        padding: 36px 28px;
    }

    .process-gap {
        padding: 70px 0;
    }

    .process-content {
        padding-left: 0;
    }

    .process-title-wrap {
        padding-top: 28px;
    }
}

@media(max-width:767px) {
    .process-box {
        padding: 28px 22px;
        border-radius: 22px;
    }

    .process-gap {
        padding: 60px 0;
    }

    .step-box {
        padding: 28px 20px;
        border-radius: 18px;
    }

    .step-box h4 {
        font-size: 20px;
    }

    .step-icon {
        width: 66px;
        height: 66px;
        font-size: 24px;
    }
}


/* responsive */
@media(max-width:767px) {
    .new-content h3 {
        font-size: 30px;
        color: rgb(255, 255, 255);
        font-weight: 800;
    }
}

@media(max-width:500px) {
    .new-content h3 {
        font-size: 25px;
        color: rgb(255, 255, 255);
        font-weight: 800;
    }
}

/* service detail page */
.services1 {
    position: relative;
    padding: 100px 0 82px;
    overflow: hidden;
}

.services1::before {
    content: "";
    position: absolute;
    right: -130px;
    top: 64px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgb(221 136 2 / 21%);
}

.services-content1 {
    position: relative;
    z-index: 1;
}

.services-content1 h3 {
    color: #FDA04B !important;
    font-size: 36px;
    font-weight: 800;
    line-height: 1.18;
    margin-bottom: 18px;
}

.service-kicker {
    color: #FDA04B;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 18px;
}

.services-content1 p,
.innerServicesPage p,
.accordion-body {
    color: #6d7280;
    font-size: 16px;
    line-height: 1.8;
}

.services-image {
    position: relative;
    padding: 22px;
}

.services-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 390px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 1px 2px 10px 9px rgb(0 0 0 / 25%);
}

.aboutSection {
    position: relative;
    padding: 90px 0;
}

.allServicesList {
    position: static !important;
    top: auto !important;
}

.aboutSection .row {
    align-items: flex-start !important;
}

/* Mobile fix */
@media (max-width: 992px) {
    .sticky-services {
        position: static;
    }
}

/* .allServicesList.service-list-scroll {
    position: static !important;
    top: auto !important;
    transform: none !important;
} */

.allServicesListBody {
    padding: 34px 24px;
    box-shadow: 1px 1px 20px 8px rgb(11 11 11 / 25%);
}

.allServicesListBody h2,
.innerServicesPage h1,
.titleBar h3 {
    color: #FDA04B !important;
}

.allServicesListBody h2 {
    font-size: 28px;
}

.revSite-btn {
    color: #000;
    font-weight: 700;
    background: #f4f7fb;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
}

.revSite-btn:hover,
.revSite-btn.active {
    color: #fff;
    background: #FDA04B;
    border-left-color: #000;
}

.innerServicesPage {
    padding: 42px;
    box-shadow: -2px 1px 20px 5px rgb(0 0 0 / 19%);
}

.innerServicesPage h1 {
    font-size: 34px;
    line-height: 1.18;
    margin-bottom: 18px;
}

.what-we-do-body ul {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
}

.what-we-do-body li {
    color: #6d7280;
}

.what-we-do-body i {
    color: #FDA04B;
}

.fq-section {
    padding: 96px 0;
}

.FAQs-box {
    min-height: 550px;
    background-image: url(https://aladdinscastlelearningcenter.com/wp-content/uploads/2026/07/faq-image.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.titleBar h6 {
    color: #FDA04B;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.titleBar h3 {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 28px;
}

.accordion-button {
    color: #000 !important;
    font-weight: 700;
    background: #f4f7fb !important;
    box-shadow: none !important;
}

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

.accordion-body {
    background: #fff;
    border: 1px solid rgba(36, 42, 76, 0.08);
    border-top: 0;
}

.services1,
.services-image,
.allServicesList,
.innerServicesPage,
.FAQs-box,
.accordion-item {
    will-change: transform;
}

@media (max-width: 991px) {

    .services1,
    .aboutSection,
    .fq-section {
        padding: 70px 0;
    }

    .services-content1 h3,
    .innerServicesPage h1,
    .titleBar h3 {
        font-size: 30px;
    }

    .wifi-proof-grid,
    .wifi-detail-grid {
        grid-template-columns: 1fr;
    }

    .allServicesList {
        position: static;
    }
}

@media (max-width: 575px) {

    .services1,
    .aboutSection,
    .fq-section {
        padding: 56px 0;
    }

    .services-image {
        padding: 12px;
    }

    .services-image::before {
        transform: translate(8px, 8px);
    }

    .services-image img,
    .FAQs-box {
        min-height: 300px;
    }

    .innerServicesPage {
        padding: 28px 20px;
    }

    .wifi-story-block h2,
    .wifi-cta-panel h2 {
        font-size: 24px;
    }

    .wifi-cta-panel {
        padding: 24px 18px;
    }
}

#main-logo {
    width: 100% !important;
    height: 100px !important;
}