/* --- Design Tokens --- */
:root {
    --PrimaryColor: #247DC6;
    --WhiterColor: #FFFFFF;
    --BlackerColor: #000000;
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* --- Global & Typography --- */
body {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 400;
    line-height: 1.5;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.25rem;
    font-weight: 700;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}


a {
    text-decoration: none;
    transition: 0.2s;
}

.bg-gray {
    background: #F1F1F1;
}

.section-bottom-btn {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.same-section {
    padding: clamp(5rem, 7vw, 5rem) 0;
}

.same-heading {
    margin-bottom: 3rem;
}

.same-heading.text-white :is(h2, p) {
    color: var(--WhiterColor);
}

.same-heading p {
    color: #5A5A5A;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.6;
}

p {
    color: #5A5A5A;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.6;
}

.max-wid-80 {
    width: 100%;
    max-width: 80%;
}

.same-heading.text-center .max-wid-80 {
    margin: 0 auto;
}

.same-heading h2 {
    color: var(--BlackerColor);
    font-weight: 500;
    font-size: 2.2rem;
    line-height: 1.6;
}

.same-heading h3 {
    color: var(--BlackerColor);
    font-weight: 500;
    font-size: 1.3rem;
    line-height: 1.6;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0 0.3rem 1.7rem;
    color: var(--BlackerColor);
    font-weight: 500;
    position: relative;
}

.check-list li .check-icon {
    color: var(--PrimaryColor);
    font-weight: 700;
    position: absolute;
    left: 0;
}


/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem 1.4rem;
    border-radius: 0;
    font-weight: 400;
    font-size: 0.9rem;
    cursor: pointer;
    border: 1px solid transparent;
    /* Animation Properties */
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1;
}

.btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.2);
}

/* Shine Effect */
.btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -130%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent 0%,
            rgba(255, 255, 255, 0.4) 50%,
            transparent 100%);
    transform: skewX(-20deg);
    transition: all 0.5s;
    z-index: 2;
    pointer-events: none;
}

.btn:hover::after {
    left: 130%;
    transition: all 0.5s;
}

.btn svg {
    width: 1.2rem;
    height: 1.2rem;
}

.btn-primary {
    background: var(--PrimaryColor);
    color: var(--WhiterColor);
    border: 1px solid var(--PrimaryColor);
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus {
    background: var(--WhiterColor) !important;
    color: var(--PrimaryColor) !important;
    border: 1px solid var(--PrimaryColor) !important;
}

.btn-outline-primary {
    background: transparent;
    color: var(--PrimaryColor);
    border: 1px solid var(--PrimaryColor);
}

.btn-outline-primary:hover,
.btn-outline-primary:active,
.btn-outline-primary:focus {
    background: var(--PrimaryColor) !important;
    color: var(--WhiterColor) !important;
    border: 1px solid var(--PrimaryColor) !important;
}

.site-header {
    padding: 1rem 0;
    border-bottom: .0625rem solid #ddd;
    position: relative;
    background: var(--WhiterColor);
    transition: all 0.3s ease;
    z-index: 9999;
}

.site-header .header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-header .mobile-logo-bx {
    display: none;
}

.site-header .nav-menu a:not(.btn) {
    color: #484848;
    font-size: 0.9rem;
    font-weight: 400;
    padding: 0.2rem 1rem;
    transition: all .2s ease;
}

.site-header .nav-menu a:not(.btn):hover {
    color: var(--PrimaryColor);
}

.site-header .nav-menu .btn {
    margin-left: 1rem;
}


.site-header :is(.menu-toggle, .close-menu) {
    display: none;
    border: solid 1px var(--PrimaryColor);
    background: var(--PrimaryColor);
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    color: #fff;
}

.site-header :is(.menu-toggle, .close-menu) svg {
    width: 1.2rem;
    height: 1.2rem;
}

.site-header.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    box-shadow: 0 0.2rem 0.6rem rgba(0, 0, 0, 0.2);
    animation: headerfixdown 0.7s;
    background: var(--WhiterColor);
}

@keyframes headerfixdown {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }

    100% {
        opacity: 0.9;
        transform: translateY(0);
    }
}


.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    /* Use the building image provided in your screenshot */
    background: url('../images/banner-img.jpg') no-repeat center right;
    background-size: cover;
    color: var(--WhiterColor);
    overflow: hidden;
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: clamp(2.2rem, 3vw, 3.2rem);
    color: var(--WhiterColor);
    font-weight: 200;
    line-height: 1.1;
    margin-bottom: 1.2rem;
}

.hero h1 strong {
    font-weight: 700;
}

.hero .primary-text {
    color: var(--PrimaryColor);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 0.2rem;
}

.hero p {
    color: var(--WhiterColor);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 1rem;
    width: 100%;
    max-width: 80%;
}

.hero .section-bottom-btn .btn-outline-primary {
    border-color: var(--WhiterColor);
    color: var(--WhiterColor);
}

.hero .section-bottom-btn .btn-primary {
    border-color: var(--WhiterColor);
    color: var(--PrimaryColor);
    background: var(--WhiterColor);
}

.location-section .dw-tag {
    font-size: 0.9rem;
    line-height: normal;
    color: var(--PrimaryColor);
    font-weight: 400;
}

.dot-list li {
    position: relative;
    padding-left: 1.3rem;
    margin-bottom: 0.6rem;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--BlackerColor);
}

.dot-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background-color: var(--PrimaryColor);
    border-radius: 1px;
}


/* --- Image Mask Logic --- */
.location-section .image-container {
    position: relative;
    display: flex;
    min-height: 500px;
}

.location-section .image-mask {
    width: 100%;
    aspect-ratio: 4/3;
    border-top-left-radius: 160px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}


.location-section .image-container .img-1 {
    background: url('../images/dw-img-1.png') center/cover;

}

.location-section .image-container .img-2 {
    background: url('../images/dw-img-2.png') center/cover;

}


.why-section .compare-card {
    padding: 2rem;
    text-align: left;
    position: relative;
    min-height: 440px;
    background: var(--WhiterColor);
}

.why-section .compare-card h3 {
    font-size: 1.5rem;
    line-height: normal;
    font-weight: 600;
    color: var(--PrimaryColor);
    margin-bottom: 1rem;
}

.why-section .compare-card .watermark {
    position: absolute;
    bottom: 5rem;
    right: 2rem;
    pointer-events: none;
}

.why-section .compare-card.card-blue {
    background: var(--PrimaryColor);
}

.why-section .compare-card.card-blue h3,
.why-section .compare-card.card-blue p,
.why-section .compare-card.card-blue li {
    color: var(--WhiterColor);
}

.why-section .compare-card.card-blue li::before {
    background-color: var(--WhiterColor);
}


.paths-section .path-card {
    border: 1px solid #E5E7EB;
    border-radius: 0.25rem;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.paths-section .path-card .path-badge {
    display: inline-block;
    padding: 0.4rem 1.3rem;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
    align-self: self-start;
    background-color: #D1E9FF;
    color: #2F6FB6;
}

.paths-section .path-card .path-badge.badge-gray {
    background-color: #E7E7E7;
    color: #838383;
}

.paths-section .path-card h3 {
    font-size: 1.8rem;
    color: var(--BlackerColor);
    font-weight: 700;
    /* margin-bottom: 1.5rem; */
}

.paths-section .path-card .label-caps {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ADADAD;
    font-weight: 400;
    margin: 0.8rem 0 0.5rem;
}


.paths-section .path-card .structure-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.paths-section .path-card .structure-item .year-block {
    min-width: 60px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.paths-section .path-card .structure-item .bg-light-gray {
    background-color: #F3F4F6;
    color: #1A1A1A;
}

.paths-section .path-card .structure-item .bg-accent-blue {
    background-color: #4F8EDC;
    color: #ffffff;
}


.paths-section .path-card .structure-item h6 {
    margin: 0;
    font-weight: 500;
    color: var(--BlackerColor);
    font-size: 1rem;
}

.paths-section .path-card .structure-item p {
    margin: 0;
    font-size: 0.85rem;
    color: #909090;
}

.paths-section .path-card .path-footer {
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid #ECECEC;
    font-style: italic;
    font-size: 0.9rem;
    color: #696969;
    margin-top: 2rem;
}


.stack-section {
    overflow: hidden;
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('../images/digital-world-stack.jpg')no-repeat center/cover;
    color: var(--WhiterColor);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;

}

.stack-section .stack-slider {
    overflow: visible !important;
    margin-right: -50vw;
    clip-path: inset(-100px -100vw -100px 0);
    z-index: 1;
}

.stack-section .stack-slider .swiper-slide {
    width: 280px;
    height: auto;
}

@media (max-width: 768px) {
    .stack-section .stack-slider .swiper-slide {
        width: 80%;
    }
}

.stack-section .stack-card {
    background: var(--WhiterColor);
    padding: 2rem;
    border-radius: 0;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.stack-section .icon-wrap {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 20px;
    background-color: #EBF6FF;
    color: var(--PrimaryColor);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.stack-section .icon-wrap svg {
    width: 2rem;
    height: 2rem;
}

.stack-section .stack-card h4 {
    color: var(--PrimaryColor);
    font-weight: 600;
    font-size: 1.3rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.stack-section .stack-card p {
    color: #6B7280;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Navigation Placement */
.stack-section .slider-nav {
    background: var(--PrimaryColor);
    width: 4rem;
    height: 4rem;
    padding: 0.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    z-index: 20;
    cursor: pointer;
    transition: all .2s ease;
    position: relative;
    top: 1rem;
}

.stack-section .nav-btn {
    color: var(--WhiterColor);
    position: relative;
    pointer-events: auto;
    opacity: 0.5;


}

.stack-section .nav-btn:hover svg {
    transition: all .2s ease;
    opacity: 1;
    width: 2rem;
}

.stack-section .nav-btn:hover {
    opacity: 1;
    width: 2rem;

}

.stack-section .stack-footer {
    text-align: center;
    margin-top: 4rem;
    color: #FFB800;
    font-weight: 500;
    font-style: italic;
    font-size: 0.9rem;
}

.tracks-section .track-card {
    background: var(--WhiterColor);
    border: 1px solid #CBCBCB;
    border-radius: 20px;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tracks-section .track-card .track-icon-box {
    width: 3.5rem;
    height: 3.5rem;
    background: #F0F7FF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2F6FB6;
    margin-bottom: 1rem;
}

.tracks-section .track-card .track-icon-box svg {
    width: 2rem;
    height: 2rem;
}

.tracks-section .track-card h3 {
    font-size: 1.2rem;
    line-height: 1.3;
    font-weight: 600;
    color: var(--BlackerColor);
    margin-bottom: 0.5rem;
}

.tracks-section .track-card .track-desc {
    font-weight: 500;
    color: var(--BlackerColor);
    width: 100%;
    max-width: 80%;
}

.tracks-section .track-card .topics-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ADADAD;
    font-weight: 400;
    margin: 0.8rem 0 0.5rem;
}

.tracks-section .track-card .track-highlight {
    color: #E7A22A;
    font-style: italic;
    font-size: 0.9rem;
    margin-bottom: 0;
}


.app-section .phone-mockup {
    width: 240px;
    height: 480px;
    background: #D9D9D9;
    border-radius: 40px;
    position: relative;

}


.campus-section {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.66)),
        url('../images/campus-office-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--WhiterColor);
    overflow: hidden;
}

.campus-section .campus-card {
    border: solid 1px #C4C4C4;
    padding: 1.5rem;
}

.campus-section .campus-card .icon-box {
    width: 3.5rem;
    height: 3.5rem;
    background: #F0F7FF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--PrimaryColor);
    margin-bottom: 1rem;
}

.campus-section .campus-card .icon-box svg {
    width: 2rem;
    height: 2rem;
}

.campus-section .campus-card h3 {
    color: var(--WhiterColor);
    font-weight: 600;
    font-size: 1.3rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}


.campus-section .campus-card .check-list li {
    color: var(--WhiterColor);

}




.gallery-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.gallery-section .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 0;
    overflow: hidden;
}

.gallery-section .gallery-grid .gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery-section .gallery-grid .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-section .gallery-grid .gallery-item:hover img {
    transform: scale(1.05);
}


.gallery-section .gallery-grid .gallery-item-1 {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}


.gallery-section .gallery-grid .item-2 {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}


.gallery-section .gallery-grid .item-3 {
    grid-column: 3 / 4;
    grid-row: 1 / 3;
}


.gallery-section .gallery-grid .item-4 {
    grid-column: 4 / 5;
    grid-row: 1 / 2;
}


.gallery-section .gallery-grid .item-5 {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

.gallery-section .gallery-grid .item-6 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

.gallery-section .gallery-grid .item-7 {
    grid-column: 4 / 5;
    grid-row: 2 / 3;
}



.support-section .logo-grid {
    margin: 1rem 0;
}

.support-section .logo-card {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    font-size: 0.9rem;
    color: var(--BlackerColor);
    height: 100%;
    border: 1px solid #EAEAEA;
    border-radius: 5px;
    transition: border-color 0.2s ease;

}

.support-section .logo-card img {
    height: 30px;
    width: auto;
    object-fit: contain;
}

.support-section .group-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ADADAD;
    font-weight: 400;
    margin: 0.8rem 0 0.5rem;
}

.founder-section .quote-box {
    margin-top: 2rem;
    padding: 1rem;
    background-color: #3B94DD1A;
    color: var(--PrimaryColor);
    font-weight: 500;
}

.founder-section .quote-box p {
    color: var(--PrimaryColor);
}


/* Ready Section */
.ready-section {
  background: var(--WhiterColor);
}

.ready-section .max-wid-50{width: 100%; max-width: 50%; margin: 0 auto;}


.footer {
  background: var(--PrimaryColor);
  color: #fff;

}
.footer .footer-top{  padding: 3.5rem 0 2.8rem;}
.footer .footer-logo{display: block; margin-bottom: 0.5rem;}

.footer h4 {
 font-size: 1rem;
  margin-bottom: 0.75rem;
}

.footer h5 {
 font-size: 1rem;
  margin-bottom: 0.8rem; font-weight: 600;
}

.footer p {
  font-size: 0.875rem;
  color: #e5e5e5;
  margin: 0.25rem 0;
}
/* .footer  .small-text {
  font-size: 0.75rem;
  opacity: 0.8;
} */
.footer  .tagline {
 margin-top: 0.5rem;
  font-size: 0.75rem;

}


.footer .footer-bottom {  border-top:solid 1px  rgba(255,255,255,0.2); padding: 0.8rem 0;}
.footer .footer-bottom a {
  color: #fff;
  text-decoration: none;
}

.footer .footer-links a {
  color: #fff;
  text-decoration: none;
  margin: 0 0.4rem;font-size: 0.875rem;
}

.footer .footer-links a:hover {
  text-decoration: underline;
}

.footer .footer-links .divider {
  opacity: 0.6;
}



.inner-banner {
    padding: clamp(5rem, 7vw, 5rem) 0; position: relative;
} 
.inner-banner h1{    color: var(--BlackerColor);
    font-weight: 500;
    font-size: 2.2rem;
    line-height: 1.6;}

:is(.layer-bg, .inner-banner)::before {content: ""; position: absolute; inset: 0;background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAGCAYAAADgzO9IAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAZSURBVHgBxcghAQAAAIMw+pf+C+CZHLilebfsBfsvTewEAAAAAElFTkSuQmCC');
    background-repeat: repeat; opacity: .04; pointer-events: none;}

.static-pages-outer .same-heading h2{    font-size: 2rem;}
.static-pages-outer .same-heading h3{    font-size: 1.4rem;}
.legal-highlight {
  background: #f5f9ff;
  padding: 1.2rem;
  border-left: 4px solid var(--PrimaryColor);
  margin: 1rem 0 1.5rem;
}
.legal-highlight p{margin-bottom: 0;}

.static-pages-outer .dot-listing{margin: 1rem 0 1rem 1rem;}
.static-pages-outer .dot-listing li {
    padding: 5px 0;
    list-style: disc;
    font-weight: 400;
    font-size: 1rem;
    color: #3B3B3B;
    line-height: 1.6;
}








/* Wrapper */
.dw-cookie-wrapper {

   position: fixed;
    box-sizing: border-box;
    z-index: 2147483647;
    background-color: #fff;
    opacity: 1;
    display: block;
    transform: translateY(0px);
    bottom: 0px;
    right: 0px;
    max-width: 320px;
    width: calc(100% - 20px);    
    box-shadow: 0 -0.3125rem 1.25rem rgba(0,0,0,0.1);
    transition: opacity 0.3s, transform, top, left, right, bottom, max-width, width;
    margin: 1rem;
    border-radius: 10px;
    padding: 2rem;



}

/* Inner layout */
.dw-cookie-card {
    max-width: 75rem; /* 1200px */
    margin: auto;
    display: flex; 
    align-items: center;
   flex-direction: column;
    gap: 1rem; 
}

/* Text */
.dw-cookie-text h4 {
  font-size: 1.2rem;
    color: var(--BlackColor);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.dw-cookie-text p {
      color: #555555;
    font-size: 0.9rem; line-height:1.6 ;
    margin-bottom: 0.5rem;
}

.dw-cookie-text a {
    color: var(--PrimaryColor);
    font-weight: 500;
    text-decoration: none;
}

.dw-cookie-wrapper .dw-cookie-actions .btn{    font-size: 0.9rem;}
/* Buttons */
.dw-cookie-actions {
display: flex;
    gap: 0.75rem;
    flex-direction: column;
    width: 100%;
}