/**
 * Main Stylesheet for Fortressaust Theme
 */

/* Lenis Recommended CSS */
html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('../Sf_Pro_Display/SF-Pro-Display-Ultralight.otf') format('opentype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('../Sf_Pro_Display/SF-Pro-Display-UltralightItalic.otf') format('opentype');
    font-weight: 100;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('../Sf_Pro_Display/SF-Pro-Display-Thin.otf') format('opentype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('../Sf_Pro_Display/SF-Pro-Display-ThinItalic.otf') format('opentype');
    font-weight: 200;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('../Sf_Pro_Display/SF-Pro-Display-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('../Sf_Pro_Display/SF-Pro-Display-LightItalic.otf') format('opentype');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('../Sf_Pro_Display/SF-Pro-Display-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('../Sf_Pro_Display/SF-Pro-Display-RegularItalic.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('../Sf_Pro_Display/SF-Pro-Display-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('../Sf_Pro_Display/SF-Pro-Display-MediumItalic.otf') format('opentype');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('../Sf_Pro_Display/SF-Pro-Display-Semibold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('../Sf_Pro_Display/SF-Pro-Display-SemiboldItalic.otf') format('opentype');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('../Sf_Pro_Display/SF-Pro-Display-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('../Sf_Pro_Display/SF-Pro-Display-BoldItalic.otf') format('opentype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('../Sf_Pro_Display/SF-Pro-Display-Heavy.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('../Sf_Pro_Display/SF-Pro-Display-HeavyItalic.otf') format('opentype');
    font-weight: 800;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('../Sf_Pro_Display/SF-Pro-Display-Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('../Sf_Pro_Display/SF-Pro-Display-BlackItalic.otf') format('opentype');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

:root {
    --primary-color: #70d1ff;
    --secondary-color: #00d2ff;
    --accent-color: #70d1ff;
    --dark-color: #1a1a1a;
    --light-color: #f0f8ff;
    --text-color: #333;
    --text-muted: #4A4A4A;
    --white: #ffffff;
    --container-width: 1200px;
    --border-radius: 12px;
    --transition: all 0.3s ease;
    --letter-spacing: 0.5px;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    letter-spacing: 0.6px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    letter-spacing: var(--letter-spacing);
}

p,
.blog-excerpt,
.flip-card-back {
    letter-spacing: var(--letter-spacing);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 0.9rem;
}

.btn-dark {
    background: #222;
    color: var(--white);
    padding: 10px 24px;
}

.btn-dark:hover {
    background: #000;
}

/* ============================================
   HEADER
   ============================================ */

.site-header {
    padding: 24px 0;
    position: sticky;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: transparent;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    padding: 16px 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.site-branding {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.site-branding a {
    display: flex;
    align-items: center;
}

.site-logo {
    height: 40px;
    display: block;
    vertical-align: middle;
}

.main-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
}

.main-navigation ul {
    display: flex;
    gap: 32px;
}

.main-navigation li a {
    font-weight: 500;
    color: #333;
    font-size: 18px;
    transition: var(--transition);
}

.main-navigation li a:hover {
    color: #000;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
}

.search-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #333;
    display: flex;
    align-items: center;
    padding: 4px;
}

.search-btn:hover {
    color: #000;
}

.menu-toggle {
    display: none;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    padding-top: 100px;
    padding-bottom: 60px;
    /* background: linear-gradient(180deg, #edf5ff 0%, #f7faff 50%, #ffffff 100%); */
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background pattern at bottom */
.hero-section::after {
    content: '';
    position: absolute;
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    width: 750px;
    height: 550px;
    background: url('../images/Group_1171277523.webp') no-repeat center center;
    background-size: contain;
    z-index: 1;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 5;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

/* Floating Tags */
.floating-tags {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 10;
}

.tag {
    position: absolute;
    padding: 0;
    border-radius: 50px;
    background: transparent;
    pointer-events: auto;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.tag img {
    height: 80px;
    width: auto;
    display: block;
}

/* "Consultants" tag — to the left of "Behind" on the second title line */
.tag-left {
    left: -80px;
    top: 80px;
}

/* Small arrow pointing down-right from Consultants */
.tag-left::after {
    display: none;
}

/* "Fortress" tag — to the right of "Tech", slightly above */
.tag-right {
    right: -50px;
    top: -15px;
}

/* Small arrow pointing up-left from Fortress */
.tag-right::after {
    display: none;
}

/* Hide the span arrows (we use ::after on .tag instead) */
.arrow-down-right,
.arrow-up-left {
    display: none;
}

/* Title */
.hero-title {
    font-size: clamp(2.2rem, 6vw, 4.5rem);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 18px;
    color: #111;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 5;
    text-align: center;
}

.hero-title strong {
    font-weight: 600;
}

/* Subtitle */
.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    color: #666;
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    text-align: center;
}

/* Email Form */
.hero-form {
    max-width: 420px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.hero-form form {
    gap: 10px;
    display: flex;
    /* background: #fff; */
    /* border-radius: 50px; */
    /* box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06); */
    /* border: 1px solid #eee; */
    /* padding: 5px; */
    /* overflow: hidden; */
}

.hero-form input {
    background: #fff;
    border-radius: 50px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid #eee;
    padding: 5px;
    overflow: hidden;
    flex: 1;
    border: none;
    padding: 18px 22px;
    font-size: 0.88rem;
    outline: none;
    color: #333;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
}

.hero-form input::placeholder {
    color: #aaa;
}

.btn-send {
    background: #111;
    color: #fff;
    padding: 10px 24px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    white-space: nowrap;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
}

.send-icon {
    width: 14px;
    height: auto;
    object-fit: contain;
}

.btn-send:hover {
    background: #333;
}

.arrow-right {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
}

/* ============================================
   SERVICES SECTION
   - Light background section with centered header
   - "Our Services" pill tag + bold title
   - 4-column flip-card grid
   ============================================ */

.services-section,
.specialties-section {
    padding: 80px 0;

}

/* Section Tag Pill */
.section-tag {
    border: 1px solid;
    display: inline-block;
    width: fit-content;
    padding: 6px 20px;
    border-radius: 50px;
    /* background: #d6f2ff; */
    color: #48C5FF;
    font-weight: 500;
    font-size: 20px;
    letter-spacing: 0.03em;
    margin-bottom: 16px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 500;
    margin-bottom: 15px;
    color: #000000;
}

.section-description {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   FLIP CARD GRID
   - 4-column responsive grid
   - Each card has front & back faces
   - On hover: card rotates 180° on Y-axis
   ============================================ */

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Flip Card Container */
.flip-card {
    perspective: 1000px;
    height: 380px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

/* Trigger flip on hover */
.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

/* ============================================
   FLIP CARD – FRONT FACE
   - White card with subtle border
   - Centered icon, title, short description
   ============================================ */

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 16px;
    overflow: hidden;
}

.flip-card-front {
    background: var(--white);
    border: 1px solid #9FE0FE;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px 28px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.flip-card-front .service-icon {
    margin-bottom: 20px;
}

.flip-card-front .service-icon img {
    height: auto;
    width: auto;
}

.flip-card-front .service-title {
    font-size: 1.15rem;
    font-weight: 500;
    color: #111;
    margin-bottom: 8px;
    line-height: 1.3;
}

.flip-card-front .service-text {
    font-weight: 300;
    font-size: 15px;
    color: #888;
    line-height: 1.5;
    margin: 0;
}

/* ============================================
   FLIP CARD – BACK FACE
   - Cyan/blue gradient background
   - White text with title, description, bullet list
   - "Learn more" link at the bottom
   ============================================ */

.flip-card-back {
    background: linear-gradient(135deg, #26BAFF 0%, #73D3FF 100%);
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    padding: 28px 26px;
    color: #fff;
}

.flip-card-back h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: #fff;
}

.flip-card-back p {
    font-size: 0.82rem;
    line-height: 1.5;
    margin-bottom: 14px;
    opacity: 0.9;
    color: #fff;
}

.flip-card-back ul {
    list-style: none;
    padding: 0;
    margin: 0 0 auto 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.flip-card-back ul li {
    font-size: 0.8rem;
    padding-left: 14px;
    position: relative;
    line-height: 1.5;
    opacity: 0.95;
}

.flip-card-back ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    font-weight: 700;
}

.flip-card-back .learn-more {
    display: inline-block;
    margin-top: 16px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: opacity 0.3s ease;
}

.flip-card-back .learn-more:hover {
    opacity: 0.7;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
    padding: 80px 0;
    background: #ffffff;
}

.faq-container {
    max-width: 800px;
    margin: 50px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #fff;
    border: 1px solid #C9F0FA;
    border-radius: 8px;
    padding: 24px 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    cursor: pointer;
}

.faq-question {
    font-size: 1.5rem;
    font-weight: 500;
    color: #111;
    margin: 0;
}

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f4fbff;
    color: #70d1ff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, margin-top 0.4s ease;
}

.faq-item.active .faq-body {
    max-height: 500px;
    margin-top: 16px;
}

.faq-answer {
    font-weight: 300;
    color: #4A4A4A;
    font-size: 1.3rem;
    line-height: 1.5;
    margin: 0;
}

.stat-card-content p,
.s-card-content p,
.card-text,
.scroll-text p,
.content-rich-text p,
.post-main-entry p {
    font-weight: 300;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
    padding: 100px 0 0 0;
    background: linear-gradient(180deg, #ffffff 0%, #F8FDFF 15%, #B1E6FF 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 10;
    margin-bottom: 80px;
}

.footer-logo {
    margin-bottom: 40px;
}

.footer-logo .site-logo {
    height: 60px;
}

.footer-title {
    font-size: 1.8rem;
    font-weight: 500;
    color: #111;
    margin-bottom: 30px;
}

.footer-title strong {
    font-weight: 700;
}

/* Footer Form */
.footer-form {
    width: 100%;
    max-width: 450px;
    margin-bottom: 50px;
}

.footer-form form {
    display: flex;
    gap: 10px;
    /* background: #fff; */
    padding: 6px;
    border-radius: 50px;
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04); */
}

.footer-form input {
    flex: 1;
    padding: 18px 24px;
    border: none;
    border-radius: 50px;
    background: #ffffff;
    font-size: 0.95rem;
    outline: none;
    color: #333;
}

.btn-send-footer {
    padding: 12px 28px;
   background: linear-gradient(90deg, #111111, #333333) !important;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-send-footer:hover {
    background: linear-gradient(90deg, #48C5FF, #26BAFF) !important;
    box-shadow: 0 15px 30px rgba(72, 197, 255, 0.25) !important;
    transform: translateY(-3px) !important;
    color: #ffffff !important;
}

/* Footer Nav Pill */
.footer-nav-pill {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 14px 40px;
    border-radius: 50px;
}

.footer-nav-pill ul {
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.footer-nav-pill ul li a {
    color: #444;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-nav-pill ul li a:hover {
    color: #000;
}

/* Giant Background Text */
.footer-giant-text {
    font-size: 7.7vw;
    font-weight: 900;
    background: linear-gradient(120deg,
            #ffffff 0%,
            #ffffff 40%,
            #26BAFF 50%,
            #73D3FF 52%,
            #ffffff 60%,
            #ffffff 100%);
    background-size: 200% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    line-height: 0.85;
    white-space: nowrap;
    text-transform: capitalize;
    letter-spacing: -0.03em;
    animation: shineText 7s infinite linear reverse;
}

@keyframes shineText {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* ============================================
   BLOGS SECTION
   ============================================ */

.blogs-section {
    padding: 80px 0;
    background: #ffffff;
}

.blogs-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    text-align: left;
    margin-bottom: 50px;
}

.blogs-header .section-header {
    margin-bottom: 0;
    text-align: left;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    background: #111;
    color: #fff;
    border-radius: 50px;
    font-weight: 300;
    font-size: 12px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

.btn-view-all:hover {
    background: #333;
    transform: translateY(-2px);
}

.btn-view-all .btn-icon {
    width: 14px;
    height: auto;
    filter: brightness(0) invert(1);
}

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

.blog-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #BFF0FE;
    padding: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 180, 240, 0.08);
}

.blog-image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    height: 200px;
}

.blog-image {
    width: 100%;
    height: 100%;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #ffffff;
    color: #111;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.blog-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 0 4px;
}

.blog-date {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 12px;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.blog-title a {
    color: #111;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: #4A4A4A;
}

.blog-excerpt {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
    flex: 1;
}

.blog-read-more {
    align-self: flex-start;
    font-size: 0.8rem;
    font-weight: 500;
    color: #444;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    border-bottom: 1px solid #444;
    padding-bottom: 2px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.blog-read-more:hover {
    color: #000;
    border-color: #000;
}

/* ============================================
   SPECIALTIES SECTION
   ============================================ */
.specialties-giant-text {
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15vw;
    font-weight: 900;
    background: linear-gradient(180deg, #CAF3FF 0%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    white-space: nowrap;
    z-index: 0;
    pointer-events: none;
    line-height: 1;
}

.specialties-badges {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.specialty-badge {
    width: 100%;
    background: #E6FAFF;
    background-clip: padding-box;

    border-radius: 10px;

    color: #027090;
    font-weight: 500;
    font-size: 1.9rem;
    padding: 14px 30px;

    border: 4px solid #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);

    /* Direct scroll binding */
    opacity: calc(0.3 + (0.7 * var(--scroll-progress, 1)));
    transition: transform 0.1s ease-out, opacity 0.1s ease-out;
}

.specialty-badge-1 {
    transform: translate(calc(-100px * (1 - var(--scroll-progress, 1))), calc(80px * (1 - var(--scroll-progress, 1)))) rotate(calc(-15deg + (11deg * var(--scroll-progress, 1))));
    z-index: 3;
}

.specialty-badge-2 {
    transform: translate(calc(100px * (1 - var(--scroll-progress, 1))), calc(80px * (1 - var(--scroll-progress, 1)))) rotate(calc(15deg - (11deg * var(--scroll-progress, 1))));
    z-index: 2;
}

.specialty-badge-3 {
    transform: translate(calc(-50px * (1 - var(--scroll-progress, 1))), calc(80px * (1 - var(--scroll-progress, 1)))) rotate(calc(-10deg + (6deg * var(--scroll-progress, 1))));
    z-index: 1;
}

.specialty-badge-4 {
    transform: translate(calc(50px * (1 - var(--scroll-progress, 1))), calc(80px * (1 - var(--scroll-progress, 1)))) rotate(calc(10deg - (6deg * var(--scroll-progress, 1))));
    z-index: 0;
}

.specialty-badge-5 {
    transform: translate(calc(-80px * (1 - var(--scroll-progress, 1))), calc(80px * (1 - var(--scroll-progress, 1)))) rotate(calc(-12deg + (8deg * var(--scroll-progress, 1))));
    z-index: 4;
}

.specialty-badge-6 {
    transform: translate(calc(80px * (1 - var(--scroll-progress, 1))), calc(80px * (1 - var(--scroll-progress, 1)))) rotate(calc(12deg - (8deg * var(--scroll-progress, 1))));
}

.specialties-section {
    position: relative;
    overflow: hidden;
    background: rgb(255, 255, 255);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/**************************************  Large Desktop: 1600px - 1920px */
@media screen and (min-width: 1600px) and (max-width: 1920px) {
    .container {
        max-width: 1400px;
    }

    .hero-section {
        padding-top: 0px;
    }

    .hero-title {
        /* font-size: 3.8rem; */
    }

    .hero-subtitle {
        /* font-size: 1.1rem; */
        max-width: 750px;
    }

    .hero-section::after {
        width: 850px;
        height: 600px;
        bottom: -10%;
    }

    .hero-form {
        max-width: 450px;
    }

    .tag-left {
        left: -200px;
    }

    .tag-right {
        right: -70px;
    }

    .section-title {
        font-size: 3rem;
    }

    .home-about-section {
        padding: 70px 0;
        background: #ffffff;
    }
}

/**************************************  Medium Desktop: 1440px - 1599px ******************************************************/
@media screen and (min-width: 1440px) and (max-width: 1599px) {
    .container {
        max-width: 1300px;
    }

    .hero-section {
        padding-top: 0px;
    }

    .hero-title {
        /* font-size: 3.5rem; */
    }

    .hero-subtitle {
        /* font-size: 1.05rem; */
        max-width: 720px;
    }

    .hero-section::after {
        width: 800px;
        height: 570px;
        bottom: -14%;
    }

    .tag-left {
        left: -210px;
    }

    .tag-right {
        right: -60px;
    }

    .about-story-section {
        /* padding: 210px 0 !important; */
    }

    .story-left-sticky {
        position: sticky;
        top: 130px;
        max-height: calc(170vh - 249px) !important;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .home-about-section {
        padding: 70px 0;
        background: #ffffff;
    }
}

/************************************** Small Desktop / Laptop: 1280px - 1439px ******************************************************/
@media screen and (min-width: 1280px) and (max-width: 1439px) {
    .home-about-section {
        padding: 70px 0;
        background: #ffffff;
    }

    .container {
        max-width: 1140px;
    }

    .hero-section {
        padding-top: 0px;
    }

    .hero-title {
        font-size: 60px;
    }

    .hero-subtitle {
        /* font-size: 0.95rem; */
        max-width: 700px;
    }

    .hero-section::after {
        width: 700px;
        height: 500px;
        bottom: -10%;
    }

    .tag-left {
        left: -200px;
    }

    .tag-right {
        right: -45px;
    }

    .story-left-sticky {
        position: sticky;
        top: 130px;
        max-height: calc(170vh - 249px) !important;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }


}

/**************************************  Tablet: 768px - 1024px ******************************************************/
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .container {
        max-width: 720px;
    }

    .hero-section {
        padding-top: 110px;
        min-height: 60vh;
    }

    .hero-title {
        /* font-size: 2.5rem; */
    }

    .hero-subtitle {
        /* font-size: 0.9rem; */
        max-width: 650px;
    }

    .hero-content {
        max-width: 750px;
    }

    .hero-section::after {
        width: 90%;
        height: 400px;
        bottom: -5%;
    }

    .hero-form {
        max-width: 380px;
    }

    .tag-left {
        left: -170px;
        /* left: -30px; */
        top: 50px;
    }

    .tag-right {
        right: -20px;
        top: -10px;
    }

    /* Hide standard nav links on tablet */
    .main-navigation ul {
        display: none !important;
    }

    .btn-dark {
        padding: 8px 18px;
        font-size: 0.85rem;
    }

    .footer-nav-pill {
        padding: 12px 30px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blogs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .flip-card {
        height: 300px;
    }

    .section-title {
        font-size: 2rem;
    }

    .specialty-badge {
        font-size: 1.3rem !important;
    }
}

/**************************************  Mobile: 300px - 767px ******************************************************/
@media screen and (min-width: 290px) and (max-width: 767px) {
    .home-about-section {
        padding: 10px 0 !important;
    }

    .specialties-section,
    .faq-section,
    .blogs-section,
	.contact-section{
        padding: 40px 0px !important;
    }

    .site-logo {
        height: 38px !important;
    }

    .container {
        padding: 0 16px;
    }

    .hero-section {
        padding-top: 0px;
        padding-bottom: 30px;
        min-height: 60vh;
    }

    .hero-title {
        /* font-size: 2rem; */
    }

    .hero-subtitle {
        /* font-size: 0.85rem; */
        max-width: 100%;
        margin-bottom: 25px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-section::after {
        width: 100%;
        height: 300px;
        bottom: 0%;
    }

    .hero-form {
        max-width: 100%;
    }

    .hero-form input {
        padding: 20px 16px;
        font-size: 0.82rem;
    }

    .btn-send {
        padding: 10px 18px;
        font-size: 0.8rem;
    }

    .floating-tags {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr !important;
    }

    .services-section {
        padding: 10px 0;
    }

    .stat-card-content p,
    .about-text,
    .scroll-text p,
    .content-rich-text p {
        text-align: start !important;
    }

    .shine-effect {
        color: #111 !important;
    }

    .footer-nav-pill ul {
        display: grid !important;
    }

}

/* Header - Mobile & Tablet Navigation Overlay */
@media screen and (max-width: 1024px) {
    .header-actions {
        display: none;
    }

    .main-navigation {
        display: block !important;
        flex: none;
    }

    .main-navigation ul {
        display: none !important;
    }

    .menu-toggle {
        display: block !important;
        background: #111111;
        border: none;
        padding: 8px 20px;
        border-radius: 50px;
        cursor: pointer;
        font-family: 'SF Pro Display', -apple-system, sans-serif;
        font-size: 0.85rem;
        font-weight: 700;
        color: #ffffff;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    }

    .menu-toggle:hover,
    .menu-toggle:focus {
        background: #333333;
        transform: translateY(-1px);
    }

    .main-navigation.toggled {
        position: relative;
    }

    .main-navigation.toggled ul {
        display: flex !important;
        flex-direction: column;
        gap: 15px;
        position: absolute;
        top: calc(100% + 15px);
        right: 0;
        width: 260px;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(0, 0, 0, 0.06);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        padding: 24px;
        border-radius: 20px;
        z-index: 9999;
        margin: 0;
        list-style: none;
    }

    .main-navigation.toggled li {
        width: 100%;
        text-align: left;
    }

    .main-navigation.toggled li a {
        display: block;
        font-size: 1rem;
        font-weight: 600;
        color: #111111;
        padding: 8px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.03);
        transition: all 0.3s ease;
    }

    .main-navigation.toggled li:last-child a {
        border-bottom: none;
    }

    .main-navigation.toggled li a:hover {
        color: #48C5FF;
        padding-left: 5px;
    }

    /* Services - Mobile */


    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .blogs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blogs-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .flip-card {
        height: 350px;
    }

    .flip-card-front .service-text {
        font-size: 16px;
    }

    .flip-card-back ul li {
        font-size: 16px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-description {
        font-size: 0.9rem;
    }

    /* Footer - Mobile */
    .site-footer {
        padding: 60px 0 0;
    }

    .footer-nav-pill {
        padding: 12px 20px;
        width: 100%;
        overflow-x: auto;
    }

    .footer-nav-pill ul {
        gap: 15px;
    }

    .footer-giant-text {
        margin-bottom: -1%;
    }

    .specialty-badge {
        font-size: 1.3rem !important;
    }

    .about-values-section,
    .about-story-section,
    .about-why-sectio,
    .process-section,
    .service-detail-section {
        padding: 20px 0 !important;
    }

    .services-grid-section {
        padding: 60px 0 !important;
    }

    .section-tag {
        font-size: 20px !important;
    }

    .stat-card-content p,
    .about-text,
    .faq-answer,
    .faq-question,
    .scroll-text p,
    .content-rich-text p {
        /*         text-align: justify !important; */
        font-size: 1.1rem !important;
    }

    .section-tag {
        margin-top: 50px;
    }

    .services-cta {
        padding: 40px 0;
    }

}

/* ============================================
   FLOATING ACTION BUTTONS
   ============================================ */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.floating-btn:hover {
    transform: scale(1.1) translateY(-3px);
}

.whatsapp-btn {
    width: 55px;
    height: 55px;
    background: #25D366;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.back-to-top-btn {
    width: 50px;
    height: 50px;
    background: #48C5FF;
    box-shadow: 0 4px 15px rgba(2, 112, 144, 0.4);
    opacity: 0;
    pointer-events: none;
}

/* ============================================
   HOME PAGE - ABOUT US SECTION
   ============================================ */


.home-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.home-about-left .section-tag {
    margin-bottom: 20px;
}

.home-about-heading {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 600;
    color: #111;
    line-height: 1.25;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.home-about-heading strong {
    background: linear-gradient(135deg, #427cbd 0%, #73D3FF 100%);
    /*     background: linear-gradient(135deg, #48C5FF 0%, #73D3FF 100%); */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.home-about-desc {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 18px;
    font-weight: 300;
}

.home-about-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-highlight-card {
    background: #f8fbff;
    border: 1px solid rgba(72, 197, 255, 0.1);
    border-radius: 16px;
    padding: 28px 24px;
    transition: all 0.3s ease;
}

.about-highlight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(72, 197, 255, 0.12);
    border-color: rgba(72, 197, 255, 0.25);
}

.about-highlight-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(72, 197, 255, 0.15), rgba(115, 211, 255, 0.08));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: #48C5FF;
}

.about-highlight-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 8px;
}

.about-highlight-info p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-weight: 300;
}

@media screen and (max-width: 1024px) {
    .home-about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

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


}

.about-sticky-section {
    padding: 80px 0 0px;
    background: #ffffff;
    position: relative;
}

/* .about-sticky-container {
    max-width: 1400px;
} */

.about-sticky-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 80px;
    position: relative;
}

.about-sticky-left {
    flex: 1;
    position: sticky;
    top: 150px;
    height: calc(100vh - 280px);
    display: flex;
    flex-direction: column;
}

.about-sticky-tag {
    /* background: #E6FAFF; */
    color: #48C5FF;
    /* color: #027090; */
    font-weight: 500;
    letter-spacing: 1px;
}

.massive-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #1a1a1a;
    margin-top: 30px;
    margin-bottom: 40px;
    letter-spacing: -2px;
}

.gradient-text {
    background: linear-gradient(90deg, #027090 0%, #027090 40%, #70d1ff 50%, #027090 60%, #027090 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shineText 4s linear infinite reverse;
    display: inline-block;
}

.sticky-btn {
    background: #48C5FF;
    color: #fff;
    padding: 16px 40px;
    font-size: 1.1rem;
    align-self: flex-start;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(2, 112, 144, 0.3);
}

.about-scroll-right {
    flex: 1;
}

.about-scroll-block {
    margin-bottom: 80px;
}

.about-scroll-offset {
    margin-top: 100px;
}

.scroll-image-wrap {
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 30px;
    /* box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1); */
}

.scroll-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

.scroll-image-wrap:hover img {
    transform: scale(1.05);
}

.offset-image {
    width: 80%;
    margin-left: auto;
}

.scroll-text {
    color: #4A4A4A;
    padding-left: 10px;
    border-left: 4px solid #E6FAFF;
}

.dark-info-box {
    background: #027090;
    padding: 50px;
    border-radius: 30px;
    color: #fff;
    box-shadow: 0 20px 40px rgba(2, 112, 144, 0.2);
    margin-top: -50px;
    position: relative;
    z-index: 2;
    width: 90%;
}

.dark-info-box p {
    text-align: justify;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   RESPONSIVE MEDIA QUERIES (Sticky About)
   ============================================ */

/* Large Desktop (1600-1920) */
@media screen and (min-width: 1600px) and (max-width: 1920px) {
    .massive-title {
        font-size: 5rem;
    }
}

/* Medium Desktop (1440-1599) */
@media screen and (min-width: 1440px) and (max-width: 1599px) {
    .massive-title {
        font-size: 4rem;
    }

    .about-sticky-wrapper {
        gap: 60px;
    }
}

/* Small Desktop (1280-1439) */
@media screen and (min-width: 1280px) and (max-width: 1439px) {
    .massive-title {
        font-size: 3.5rem;
    }

    .about-sticky-wrapper {
        gap: 40px;
    }

    .offset-image {
        width: 90%;
    }
}

/* Tablet (768-1024) */
@media screen and (max-width: 1024px) {
    .about-sticky-wrapper {
        flex-direction: column;
        gap: 50px;
    }

    .about-sticky-left {
        position: relative;
        top: 0;
        height: auto;
    }

    .about-scroll-offset {
        margin-top: 50px;
    }

    .offset-image {
        width: 100%;
    }

    .dark-info-box {
        width: 100%;
        padding: 40px;
    }

    .massive-title {
        font-size: 3.5rem;
    }
}

/* Mobile (375-767) */
@media screen and (max-width: 767px) {
    .about-sticky-section {
        padding: 10px 0;
    }

    .massive-title {
        font-size: 2.5rem;
        margin-bottom: 30px;
    }

    .scroll-text {
        font-size: 1.1rem;
        padding-left: 20px;
    }

    .dark-info-box p {
        font-size: 1rem;
    }

    .floating-actions {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-btn {
        width: 45px;
        height: 45px;
    }

    .whatsapp-btn svg {
        width: 24px;
        height: 24px;
    }

    .back-to-top-btn {
        width: 45px;
        height: 45px;
    }
}

/* ============================================
   HERO ANIMATIONS & EFFECTS
   ============================================ */

/* 1. Fade Up Entrance Animation */
.fade-up-load {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUpLoad 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeUpLoad {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 2. Shiny "Modern Growth" Effect */
.shine-effect {
    background: linear-gradient(90deg, #111 0%, #111 40%, #027090 50%, #111 60%, #111 100%);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shineText 4s linear infinite reverse;
    display: inline-block;
}

@keyframes shineText {
    to {
        background-position: 200% center;
    }
}

/* 3. Floating Up & Down Tags */
@keyframes floatUpDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.tag-left {
    animation: floatUpDown 4s ease-in-out infinite;
}

.tag-right {
    animation: floatUpDown 5s ease-in-out infinite;
    animation-delay: 1s;
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up.is-visible {
    opacity: 1;
    transform: translate(0, 0);
}

.delay-100 {
    transition-delay: 100ms;
}

.delay-200 {
    transition-delay: 200ms;
}

.delay-300 {
    transition-delay: 300ms;
}

.delay-400 {
    transition-delay: 400ms;
}

/* ============================================
   ANTIGRAVITY TESTING SECTION
   ============================================ */
.ag-hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: #ffffff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

#agCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: auto;
    /* Needs to receive mouse events */
}

.ag-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    padding: 0 20px;
    pointer-events: none;
    /* Let mouse through to canvas where there's no button */
}

.ag-logo-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.ag-logo-text {
    font-size: 1.25rem;
    font-weight: 500;
    color: #111;
    letter-spacing: -0.5px;
}

.ag-hero-title {
    font-size: 5.5rem;
    font-weight: 500;
    line-height: 1.05;
    color: #111;
    letter-spacing: -3px;
    margin-bottom: 40px;
}

.ag-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    pointer-events: auto;
    /* Re-enable clicks for buttons */
}

.ag-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.ag-btn:hover {
    transform: scale(1.02);
}

.ag-btn-dark {
    background-color: #111;
    color: #fff;
}

.ag-btn-light {
    background-color: #f2f2f2;
    color: #111;
}

@media screen and (max-width: 1024px) {
    .ag-hero-title {
        font-size: 4rem;
        letter-spacing: -1.5px;
    }
}

@media screen and (max-width: 768px) {
    .ag-hero-title {
        font-size: 2.8rem;
        letter-spacing: -1px;
    }

    .ag-actions {
        flex-direction: column;
    }
}

/* ============================================
   HERO SCROLL INDICATOR
   ============================================ */
.scroll-down-indicator {
    position: absolute;
    left: 40px;
    bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 5;
    color: #48C5FF;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.hero-scroll-text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.scroll-icon {
    animation: bounceDownHero 2s infinite ease-in-out;
}

@keyframes bounceDownHero {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}

@media screen and (max-width: 1024px) {
    .scroll-down-indicator {
        display: none;
    }
}

/* ============================================
   ABOUT US PAGE - PREMIUM DESIGN
   ============================================ */

/* 1. Unique & Abstract Hero */
.about-hero-unique {
    position: relative;
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #ffffff;
}



.hero-mesh-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-mesh-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.mesh-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(5, 10, 16, 0.4) 0%, rgba(5, 10, 16, 0.9) 100%);
}

.about-hero-content-unique {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-brand-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 8px 24px;
    border-radius: 50px;
    border: 1px solid rgba(72, 197, 255, 0.3);
    color: #4581c1;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(72, 197, 255, 0.1);
}

.hero-brand-tag .dot {
    width: 8px;
    height: 8px;
    background: #48C5FF;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(72, 197, 255, 0.5);
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.unique-title {
    font-size: clamp(2.5rem, 6vw, 4.1rem);
    line-height: 1.15;
    color: #111;
    font-weight: 600;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

.unique-title strong {
    font-weight: 700;
    background: linear-gradient(135deg, #427cbd 0%, #73D3FF 100%);
    /*     background: linear-gradient(135deg, #48C5FF 0%, #73D3FF 100%); */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle-glass {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
    padding: 30px 40px;
    border-radius: 20px;
    max-width: 750px;
    margin: 30px auto;
}

.subtitle-glass p {
    color: #666;
    font-size: 1.15rem;
    line-height: 1.8;
    margin: 0;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(72, 197, 255, 0.2);
    padding: 12px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #111;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    animation: floatAnim 6s infinite ease-in-out;
    z-index: 2;
}

.float-card .icon {
    font-weight: 800;
    color: #26BAFF;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.float-card .text {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.card-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.card-2 {
    top: 35%;
    right: 10%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 25%;
    left: 10%;
    animation-delay: 4s;
}

@keyframes floatAnim {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

@media screen and (max-width: 768px) {
    .floating-elements {
        display: none;
    }

    .unique-title {
        font-size: 2.8rem;
        letter-spacing: -1px;
    }

    .subtitle-glass {
        padding: 20px;
    }
}

/* 2. Story Section */
.about-story-section {
    padding: 120px 0;
    background: #fff;
    overflow: visible;
}

.story-sticky-wrapper {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 100px;
    align-items: flex-start;
    position: relative;
}

.story-left-sticky {
    position: sticky;
    top: 130px;
    max-height: calc(100vh - 200px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text {
    text-align: justify;
    font-size: 1.15rem;
    color: #4A4A4A;
    line-height: 1.5;
    margin-bottom: 25px;
    font-weight: 300;
}

/* Scroll indicator */
.scroll-helper-indicator {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
    opacity: 0.8;
}

.scroll-helper-line {
    width: 40px;
    height: 2px;
    background: rgba(72, 197, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.scroll-helper-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #48C5FF;
    animation: scrollSlideLine 2.5s infinite ease-in-out;
}

@keyframes scrollSlideLine {
    0% {
        left: -100%;
    }

    50% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

.scroll-helper-text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    font-weight: 700;
}

/* Right scroll area */
.story-right-scroll {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.story-stat-card {
    background: #ffffff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.story-stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 70px rgba(72, 197, 255, 0.12);
    border-color: rgba(72, 197, 255, 0.25);
}

.stat-card-image {
    position: relative;
    width: 100%;
    height: 340px;
    overflow: hidden;
}

.stat-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.story-stat-card:hover .stat-card-image img {
    transform: scale(1.08);
}

.stat-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(5, 10, 16, 0.75) 0%, rgba(5, 10, 16, 0) 60%);
}

/* Glassmorphic Stat Badge Overlay */
.stat-badge {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: #fff;
}

.stat-badge-num {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
}

.stat-badge-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    line-height: 1.2;
}

/* Glow modifiers */
.gold-glow .stat-badge-num {
    color: #FFD700;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.45);
}

.blue-glow .stat-badge-num {
    color: #38bdf8;
    text-shadow: 0 0 15px rgba(56, 189, 248, 0.45);
}

.teal-glow .stat-badge-num {
    color: #2dd4bf;
    text-shadow: 0 0 15px rgba(45, 212, 191, 0.45);
}

.stat-card-content {
    padding: 40px;
}

.stat-card-content h3 {
    font-size: 1.75rem;
    font-weight: 500;
    color: #111;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.stat-card-content p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* 3. Why Us Section */
.about-why-section {
    padding: 100px 0;
    background: #f8fbff;
}

.why-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.why-card {
    background: #fff;
    padding: 50px 40px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #edf5ff;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(112, 209, 255, 0.15);
    border-color: #70d1ff;
}

.card-icon {
    width: 70px;
    height: 70px;
    background: #f0faff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #70d1ff;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.why-card:hover .card-icon {
    background: #70d1ff;
    color: #fff;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 15px;
}

.card-text {
    color: #4A4A4A;
    line-height: 1.6;
}

/* 4. Vision Section */
.about-vision-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f4faff 100%);
}

.vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.vision-box {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 20px;
    border: 1px solid rgba(72, 197, 255, 0.15);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.vision-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #48C5FF, #73D3FF);
    border-radius: 20px 20px 0 0;
}

.vision-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(72, 197, 255, 0.12);
}

.box-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(72, 197, 255, 0.15), rgba(115, 211, 255, 0.08));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: #48C5FF;
}

.box-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #111;
}

.box-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    font-weight: 300;
}

/* 5. Values Section */
.about-values-section {
    padding: 120px 0;
    background: #fff;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.value-item {
    display: flex;
    gap: 25px;
    padding: 35px;
    background: #f8fbff;
    border-radius: 24px;
    transition: all 0.3s ease;
}

.value-item:hover {
    background: #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    transform: translateX(10px);
}

.value-icon-box {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(112, 209, 255, 0.2);
}

.value-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
}

.value-desc {
    color: #666;
    line-height: 1.5;
}

@media screen and (max-width: 1024px) {

    .story-sticky-wrapper,
    .vision-grid {
        grid-template-columns: 1fr;
    }

    .story-sticky-wrapper {
        gap: 60px;
    }

    .story-left-sticky {
        position: relative;
        top: 0;
        max-height: none;
    }

    .story-right-scroll {
        gap: 50px;
    }

    .stat-card-image {
        height: 280px;
    }

    .stat-card-content {
        padding: 30px;
    }

    .why-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-hero {
        height: 60vh;
    }
}

@media screen and (max-width: 768px) {

    .why-cards-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .stat-item {
        margin-bottom: 20px;
    }

    .story-stats {
        flex-wrap: wrap;
    }

    .vision-box {
        padding: 40px;
    }
}

/* ============================================
   CONTACT US PAGE
   ============================================ */
.contact-section {
    padding: 100px 0;
    background: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.info-header {
    margin-bottom: 40px;
}

.info-desc {
    font-size: 1.1rem;
    color: #666;
    margin-top: 15px;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: center;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: #f0faff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #70d1ff;
    flex-shrink: 0;
}

.info-text h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 5px;
}

.info-text p {
    color: #666;
    font-size: 1rem;
}

.call-action-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-top: 8px;
}

.call-us-button-unique {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(90deg, #70d1ff, #26baff);
    color: #fff;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.8px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none;
    box-shadow: 0 6px 15px rgba(112, 209, 255, 0.25);
    border: none;
    cursor: pointer;
}

.call-us-button-unique:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(112, 209, 255, 0.4);
    background: linear-gradient(90deg, #26baff, #70d1ff);
    color: #fff;
    text-decoration: none;
}

.phone-number-display {
    color: #666;
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0 !important;
    padding: 0;
    opacity: 0;
    max-height: 0;
    transform: translateY(-10px);
    overflow: hidden;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.call-action-wrapper.revealed .phone-number-display {
    opacity: 1;
    max-height: 40px;
    transform: translateY(0);
    pointer-events: auto;
    margin-top: 4px !important;
}

.call-action-wrapper.revealed:hover .phone-number-display {
    color: #26baff;
}

.phone-number-display a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-number-display a:hover {
    color: #26baff;
    text-decoration: underline;
}

.form-wrapper {
    background: #fff;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
    border: 1px solid #edf5ff;
}

.form-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 30px;
}

/* Common Form Styles */
.fortress-form .form-group {
    margin-bottom: 20px;
}

.fortress-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #444;
    margin-bottom: 8px;
}

.fortress-form input,
.fortress-form textarea,
.fortress-form select {
    width: 100%;
    padding: 15px 25px;
    border-radius: 12px;
    border: 1px solid #eee;
    background: #fcfcfc;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    outline: none;
}

.fortress-form input:focus,
.fortress-form textarea:focus {
    border-color: #70d1ff;
    background: #fff;
    box-shadow: 0 0 15px rgba(112, 209, 255, 0.1);
}

/* ============================================
   CAREERS PAGE
   ============================================ */
.careers-hero {
    height: 80vh;
}

.hero-price-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.old-price {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
}

.new-price {
    font-size: 3rem;
    font-weight: 600;
    color: #70d1ff;
}

.offer-badge {
    background: #ff4d4d;
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    /* animation: pulseGlow 2s infinite; */
}

.careers-highlights {
    padding: 60px 0;
    background: #fff;
    border-bottom: 1px solid #eee;
}

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

.highlight-item {
    text-align: center;
    padding: 30px;
}

.h-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.highlight-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.registration-section {
    padding: 100px 0;
    background: #f8fbff;
}

.registration-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.what-you-get {
    margin-top: 40px;
}

.what-you-get h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.what-you-get ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.what-you-get ul li {
    position: relative;
    padding-left: 30px;
    color: #4A4A4A;
}

.what-you-get ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #70d1ff;
    font-weight: 800;
}

/* Slot Selection Styling */
.slot-selection-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 10px;
}

.slot-pill {
    position: relative;
    cursor: pointer;
}

.slot-pill input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.slot-label {
    display: block;
    padding: 12px 15px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: #4A4A4A;
    transition: all 0.3s ease;
}

.slot-pill:hover .slot-label {
    border-color: #70d1ff;
    color: #70d1ff;
}

.slot-pill input:checked+.slot-label {
    background: #70d1ff;
    border-color: #70d1ff;
    color: #fff;
    box-shadow: 0 5px 15px rgba(112, 209, 255, 0.3);
}

.slot-pill.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.slot-pill.disabled .slot-label {
    background: #f5f5f5;
    text-decoration: line-through;
}

.slot-note {
    font-size: 0.8rem;
    color: #888;
    margin-top: 10px;
    font-style: italic;
}

/* Curriculum Styling */
.curriculum-section {
    padding: 100px 0;
}

.curriculum-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.curriculum-card {
    padding: 40px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.curriculum-card:hover {
    border-color: #70d1ff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

/* .c-num {
    font-size: 3rem;
    font-weight: 800;
    color: #f0faff;
    line-height: 1;
    margin-bottom: 10px;
} */

.curriculum-card h3 {
    margin-bottom: 20px;
}

.curriculum-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.curriculum-card ul li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

.curriculum-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #26BAFF;
    box-shadow: 0 0 8px rgba(38, 186, 255, 0.6);
}

@media screen and (max-width: 1024px) {

    .contact-grid,
    .registration-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media screen and (max-width: 768px) {

    .highlights-grid,
    .curriculum-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   LEGAL PAGES (Privacy & Terms)
   ============================================ */
.legal-hero {
    height: 60vh;
    min-height: 400px;
}

.legal-section {
    padding: 100px 0;
    background: #fcfcfc;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 80px;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid #eee;
}

.legal-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;
    margin-top: 50px;
}

.legal-content h3:first-child {
    margin-top: 0;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 40px;
    font-weight: 500;
}

.legal-block {
    margin-bottom: 40px;
}

.legal-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.legal-block ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.legal-block ul li {
    position: relative;
    padding-left: 25px;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #666;
}

.legal-block ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: #70d1ff;
    border-radius: 50%;
}

.legal-footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.legal-footer p {
    font-size: 1.1rem;
    color: #444;
}

@media screen and (max-width: 768px) {
    .legal-container {
        padding: 40px 20px;
    }

    .legal-content h3 {
        font-size: 1.5rem;
    }
}

/* ============================================
   SERVICES PAGE
   ============================================ */
/* .services-hero {
    height: 80vh;
} */

/* ============================================
   SERVICES PAGE
   ============================================ */
.services-hero {
    height: 60vh;
    min-height: 500px;
}

.services-grid-section {
    padding: 120px 0;
    background: #fff;
}

.services-main-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-card-premium {
    background: #fff;
    padding: 50px 40px;
    border-radius: 30px;
    border: 1px solid #edf5ff;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(112, 209, 255, 0.12);
    border-color: #70d1ff;
}

.s-card-icon {
    width: 60px;
    height: 60px;
    background: #f0faff;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #70d1ff;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.service-card-premium:hover .s-card-icon {
    background: #70d1ff;
    color: #fff;
    transform: rotateY(180deg);
}

.s-card-content h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #111;
}

.s-card-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.s-card-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
}

.s-card-list li {
    position: relative;
    padding-left: 25px;
    font-size: 0.95rem;
    color: #444;
    font-weight: 600;
}

.s-card-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #70d1ff;
}

/* Process Section */
.process-section {
    padding: 120px 0;
    /* background: #f8fbff; */
    background: linear-gradient(1deg, #ffffff 0%, #F8FDFF 15%, #f8fbff 100%);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-top: 80px;
    position: relative;
}

.step-item {
    text-align: center;
    position: relative;
}

.step-number {
    font-size: 6rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(180deg, #f0faff 0%, rgb(177 230 255) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    /* margin-bottom: -30px; */
    display: block;
}

.step-content {
    position: relative;
    z-index: 5;
}

.step-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111;
}

.step-content p {
    color: #666;
    line-height: 1.7;
}

/* CTA Section */
.services-cta {
    /* padding: 100px 0; */
    background: #fff;
}

.cta-box {
    background: #050a10;
    border-radius: 40px;
    padding: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(112, 209, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    max-width: 600px;
}

.cta-content h2 {
    font-size: 3rem;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
}

.cta-content h2 strong {
    font-weight: 400;
    color: #70d1ff;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
}

.cta-action {
    flex-shrink: 0;
}

@media screen and (max-width: 1024px) {
    .services-main-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 80px;
    }

    .cta-box {
        flex-direction: column;
        text-align: center;
        padding: 60px 40px;
    }
}

@media screen and (max-width: 768px) {
    .services-main-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 2.2rem;
    }
}

.s-card-footer {
    margin-top: 30px;
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #111;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none;
    position: relative;
}

.btn-read-more .arrow-right {
    display: flex;
    align-items: center;
    color: #70d1ff;
    transition: all 0.3s ease;
}

.btn-read-more:hover {
    color: #70d1ff;
    gap: 18px;
}

.btn-read-more:hover .arrow-right {
    transform: translateX(5px);
}

.btn-read-more:hover .arrow-right {
    width: 30px;
}

/* ============================================
   APP DEV HERO V2 (UI STACK)
   ============================================ */
.app-dev-hero-unique {
    height: 100vh;
    min-height: 800px;
    background: #050a10;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg-animated {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.blob {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(112, 209, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
}

.blob-1 {
    top: -20%;
    right: -10%;
    animation: blobFloat 20s infinite alternate;
}

.blob-2 {
    bottom: -20%;
    left: -10%;
    animation: blobFloat 25s infinite alternate-reverse;
}

@keyframes blobFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(100px, 50px) scale(1.2);
    }
}

.app-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 5;
    width: 100%;
}

.hero-label {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #70d1ff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.label-line {
    width: 40px;
    height: 1px;
    background: #70d1ff;
}

.unique-main-title {
    font-size: 4.5rem;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 600;
}

.unique-main-title span {
    background: linear-gradient(90deg, #70d1ff, #26baff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 500px;
}

/* UI Stack Visuals */
.app-hero-visual {
    position: relative;
    height: 650px;
    perspective: 1000px;
}

.ui-stack {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.ui-card {
    position: absolute;
    width: 320px;
    z-index: 10;
}

.card-glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.card-top {
    top: 0;
    left: 10%;
}

.card-mid {
    top: 25%;
    right: 5%;
    width: 360px;
    z-index: 12;
}

.card-bot {
    bottom: 5%;
    left: 15%;
    z-index: 11;
}

/* UI Card Contents */
.user-info {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.u-avatar {
    width: 45px;
    height: 45px;
    background: rgba(112, 209, 255, 0.2);
    border-radius: 50%;
}

.u-line {
    height: 6px;
    width: 140px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    margin-bottom: 10px;
}

.u-line.short {
    width: 90px;
}

.card-stats {
    display: flex;
    gap: 10px;
}

.s-dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.s-dot.active {
    background: #70d1ff;
    box-shadow: 0 0 15px #70d1ff;
}

.chart-box {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 80px;
    margin-bottom: 20px;
}

.c-line {
    width: 100%;
    background: #70d1ff;
    border-radius: 4px 4px 0 0;
}

.c-line.l1 {
    height: 40%;
    opacity: 0.4;
}

.c-line.l2 {
    height: 90%;
    opacity: 0.7;
}

.c-line.l3 {
    height: 65%;
    opacity: 1;
}

.chart-val {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
}

.task-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.t-check {
    width: 20px;
    height: 20px;
    border: 1px solid rgba(112, 209, 255, 0.4);
    border-radius: 6px;
}

.t-line {
    height: 8px;
    flex-grow: 1;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

/* Animations */
.float-anim {
    animation: floatY 6s infinite ease-in-out;
}

.float-anim-reverse {
    animation: floatY 7s infinite ease-in-out reverse;
}

@keyframes floatY {

    0%,
    100% {
        transform: translateY(0) rotateX(8deg) rotateY(-8deg);
    }

    50% {
        transform: translateY(-30px) rotateX(12deg) rotateY(-4deg);
    }
}

/* Content Layout Integration */
.service-detail-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
    z-index: 10;
}

.service-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 100px;
}

.s-main-content .section-title {
    text-align: left;
    margin-bottom: 10px;
    font-size: 3.5rem;
}

.scroll-text p,
.content-rich-text p {
    text-align: justify;
    font-size: 1.2rem;
    line-height: 1.5;
    color: #4A4A4A;
    margin-bottom: 35px;
}

.highlight-box {
    background: #f8fbff;
    padding: 50px 50px 15px 50px;
    border-radius: 35px;
    margin: 50px 0;
    border-left: 8px solid #70d1ff;
    box-shadow: 0 20px 60px rgba(112, 209, 255, 0.05);
}

.highlight-box h4 {
    font-size: 1.6rem;
    color: #111;
    margin-bottom: 20px;
    font-weight: 700;
}

/* Sidebar Styles */
.tech-stack-card {
    background: #050a10;
    padding: 50px;
    border-radius: 40px;
    color: #fff;
    margin-bottom: 50px;
}

.tech-icons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.tech-item {
    text-align: center;
}

.t-icon {
    width: 60px;
    height: 60px;
    background: rgba(112, 209, 255, 0.1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-weight: 800;
    color: #70d1ff;
    font-size: 1.2rem;
}

.t-name {
    font-size: 0.9rem;
    opacity: 0.7;
    font-weight: 600;
}

.capabilities-list {
    padding: 50px;
    background: #fff;
    border: 1px solid #f0faff;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.02);
}

.capabilities-list h3 {
    margin-bottom: 30px;
    font-size: 1.6rem;
}

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

.capabilities-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
    color: #222;
    font-size: 1.05rem;
}

.check {
    width: 24px;
    height: 24px;
    background: #e6f7ff;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.check::after {
    content: '✓';
    font-size: 14px;
    color: #70d1ff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media screen and (max-width: 1200px) {
    .service-content-wrapper {
        grid-template-columns: 1fr;
        gap: 80px;
    }
}

@media screen and (max-width: 1024px) {
    .app-dev-hero-unique {
        height: auto;
        padding: 150px 0 100px;
    }

    .app-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 80px;
    }

    .unique-main-title {
        font-size: 3.5rem;
    }

    .hero-label {
        justify-content: center;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .app-hero-visual {
        height: auto;
        padding: 40px 0;
        transform: none;
        perspective: none;
    }

    .ui-stack {
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: center;
        height: auto;
        transform-style: flat;
        transform: none !important;
    }

    .ui-card {
        position: relative;
        margin: 0 auto !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        width: 100% !important;
        max-width: 320px;
        transform: none !important;
        animation: none !important;
    }

    .card-mid {
        width: 100% !important;
        max-width: 320px;
    }

    .card-glass {
        padding: 24px;
    }
}

@media screen and (max-width: 768px) {
    .unique-main-title {
        font-size: 2.8rem;
    }

    .s-main-content .section-title {
        font-size: 2.5rem;
    }

    .highlight-box {
        padding: 30px;
    }
}

.btn-hero-unique {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(90deg, #70d1ff, #26baff);
    color: #fff;
    padding: 16px 32px;
    border-radius: 100px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(112, 209, 255, 0.3);
}

.btn-hero-unique .arrow-right {
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-hero-unique:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(112, 209, 255, 0.5);
    background: #fff;
    color: #111;
}

.btn-hero-unique:hover .arrow-right {
    transform: translateX(8px);
}

/* Scroll Down Button */
.scroll-down-wrapper {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: all 0.3s ease;
}

.scroll-down-wrapper:hover {
    color: #70d1ff;
}

.mouse-icon {
    width: 26px;
    height: 42px;
    border: 2px solid currentColor;
    border-radius: 20px;
    position: relative;
}

.mouse-wheel {
    width: 2px;
    height: 6px;
    background: currentColor;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: mouseWheel 2s infinite ease-in-out;
}

@keyframes mouseWheel {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 15px);
        opacity: 0;
    }
}



/* ============================================
   SERVICE-SPECIFIC THEMES
   ============================================ */
/* AI Theme */
.ai-blob {
    background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, transparent 70%);
}

.ai-hero-unique span {
    background: linear-gradient(90deg, #a855f7, #7c3aed);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ai-pulse {
    background: #a855f7 !important;
    box-shadow: 0 0 15px #a855f7 !important;
}

.ai-color {
    background: #a855f7 !important;
}

.ai-border {
    border-color: rgba(168, 85, 247, 0.4) !important;
}

.ai-box {
    border-left-color: #a855f7 !important;
    background: #faf5ff !important;
}

.ai-sidebar {
    background: #2e1065 !important;
}

.ai-cta span {
    color: #a855f7;
}

/* Cyber Theme */
.cyber-blob {
    background: radial-gradient(circle, rgba(239, 68, 68, 0.15) 0%, transparent 70%);
}

.cyber-hero-unique span {
    background: linear-gradient(90deg, #ef4444, #dc2626);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cyber-pulse {
    background: #ef4444 !important;
    box-shadow: 0 0 15px #ef4444 !important;
}

.cyber-color {
    background: #ef4444 !important;
}

.cyber-border {
    border-color: rgba(239, 68, 68, 0.4) !important;
}

.cyber-box {
    border-left-color: #ef4444 !important;
    background: #fef2f2 !important;
}

.cyber-sidebar {
    background: #450a0a !important;
}

.cyber-cta span {
    color: #ef4444;
}

/* Project Theme */
.project-blob {
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
}

.project-hero-unique span {
    background: linear-gradient(90deg, #10b981, #059669);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.project-pulse {
    background: #10b981 !important;
    box-shadow: 0 0 15px #10b981 !important;
}

.project-color {
    background: #10b981 !important;
}

.project-border {
    border-color: rgba(16, 185, 129, 0.4) !important;
}

.project-box {
    border-left-color: #10b981 !important;
    background: #ecfdf5 !important;
}

.project-sidebar {
    background: #064e3b !important;
}

.project-cta span {
    color: #10b981;
}

/* BA Theme */
.ba-blob {
    background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
}

.ba-hero-unique span {
    background: linear-gradient(90deg, #f59e0b, #d97706);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ba-pulse {
    background: #f59e0b !important;
    box-shadow: 0 0 15px #f59e0b !important;
}

.ba-color {
    background: #f59e0b !important;
}

.ba-border {
    border-color: rgba(245, 158, 11, 0.4) !important;
}

.ba-box {
    border-left-color: #f59e0b !important;
    background: #fffbeb !important;
}

.ba-sidebar {
    background: #78350f !important;
}

.ba-cta span {
    color: #f59e0b;
}

/* Strategy Theme */
.strategy-blob {
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
}

.strategy-hero-unique span {
    background: linear-gradient(90deg, #2563eb, #1d4ed8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.strategy-pulse {
    background: #2563eb !important;
    box-shadow: 0 0 15px #2563eb !important;
}

.strategy-color {
    background: #2563eb !important;
}

.strategy-border {
    border-color: rgba(37, 99, 235, 0.4) !important;
}

.strategy-box {
    border-left-color: #2563eb !important;
    background: #eff6ff !important;
}

.strategy-sidebar {
    background: #1e3a8a !important;
}

.strategy-cta span {
    color: #2563eb;
}

/* AI Visual Components */
.ai-node-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.node-main {
    width: 30px;
    height: 30px;
    background: #a855f7;
    border-radius: 50%;
    box-shadow: 0 0 20px #a855f7;
}

.node-branches {
    display: flex;
    gap: 8px;
}

.node-branches span {
    width: 8px;
    height: 8px;
    background: rgba(168, 85, 247, 0.4);
    border-radius: 50%;
}

.ai-chart-box {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 60px;
    margin-bottom: 15px;
}

.ai-bar {
    width: 100%;
    background: #a855f7;
    border-radius: 4px 4px 0 0;
}

.ai-bar.b1 {
    height: 40%;
    opacity: 0.4;
}

.ai-bar.b2 {
    height: 90%;
    opacity: 1;
}

.ai-bar.b3 {
    height: 60%;
    opacity: 0.7;
}

.ai-accuracy {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
}

.ai-accuracy span {
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.6;
    display: block;
}

.logic-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.l-dot {
    width: 10px;
    height: 10px;
    border: 1px solid #a855f7;
    border-radius: 3px;
}

.l-line {
    height: 6px;
    width: 100px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

/* Ultra-Premium AI Visuals */
.premium-glass {
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    background: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(20px) !important;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4), inset 0 0 20px rgba(255, 255, 255, 0.05) !important;
}

.ai-core-container {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-core-center {
    width: 30px;
    height: 30px;
    background: #a855f7;
    border-radius: 50%;
    box-shadow: 0 0 30px #a855f7;
    position: relative;
    z-index: 5;
}

.ai-ring {
    position: absolute;
    border: 1px dashed rgba(168, 85, 247, 0.4);
    border-radius: 50%;
}

.ai-ring.r1 {
    width: 50px;
    height: 50px;
    animation: rotate 4s linear infinite;
}

.ai-ring.r2 {
    width: 75px;
    height: 75px;
    animation: rotate 8s linear infinite reverse;
    border-style: double;
}

.ai-ring.r3 {
    width: 100px;
    height: 100px;
    animation: rotate 12s linear infinite;
    border-style: solid;
    border-width: 1px;
    opacity: 0.2;
}

.ai-core-label {
    text-align: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.ai-core-label span {
    display: block;
    font-size: 0.7rem;
    color: #a855f7;
    margin-top: 5px;
    animation: pulse 2s infinite;
}

.scanning-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #a855f7, transparent);
    animation: scan 3s ease-in-out infinite;
    z-index: 10;
    opacity: 0.5;
}

.ai-data-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
    opacity: 0.3;
}

.d-cell {
    height: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.d-cell.active {
    background: rgba(168, 85, 247, 0.2);
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.ai-accuracy-premium {
    text-align: center;
}

.ai-accuracy-premium .val {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.ai-accuracy-premium .val span {
    font-size: 1.5rem;
    color: #a855f7;
}

.ai-accuracy-premium .lab {
    font-size: 0.8rem;
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

.flow-particles {
    height: 60px;
    position: relative;
    margin-bottom: 20px;
}

.flow-particles span {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #a855f7;
    border-radius: 50%;
    box-shadow: 0 0 10px #a855f7;
}

.flow-particles span:nth-child(1) {
    left: 10%;
    top: 20%;
    animation: particleFlow 3s infinite;
}

.flow-particles span:nth-child(2) {
    left: 50%;
    top: 50%;
    animation: particleFlow 3s infinite 1s;
}

.flow-particles span:nth-child(3) {
    left: 80%;
    top: 30%;
    animation: particleFlow 3s infinite 2s;
}

.logic-gate {
    height: 40px;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.g-path {
    height: 2px;
    width: 100%;
    background: rgba(168, 85, 247, 0.2);
    position: absolute;
    top: 50%;
}

.g-node {
    width: 12px;
    height: 12px;
    background: #a855f7;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    animation: nodeMove 4s infinite linear;
}

@keyframes scan {
    0% {
        top: 0%;
    }

    50% {
        top: 100%;
    }

    100% {
        top: 0%;
    }
}

@keyframes particleFlow {
    0% {
        transform: scale(0) translateX(0);
        opacity: 0;
    }

    50% {
        transform: scale(1) translateX(50px);
        opacity: 1;
    }

    100% {
        transform: scale(0) translateX(100px);
        opacity: 0;
    }
}

@keyframes nodeMove {
    0% {
        left: -10%;
    }

    100% {
        left: 110%;
    }
}

/* Cyber Visual Components */
.cyber-shield-box {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    height: 60px;
}

.shield-main {
    width: 40px;
    height: 50px;
    background: #ef4444;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    box-shadow: 0 0 20px #ef4444;
}

.shield-pulse {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid rgba(239, 68, 68, 0.3);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.cyber-radar {
    width: 80px;
    height: 80px;
    border: 2px solid rgba(239, 68, 68, 0.2);
    border-radius: 50%;
    position: relative;
    margin: 0 auto 15px;
    overflow: hidden;
}

.radar-line {
    width: 50%;
    height: 2px;
    background: #ef4444;
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: left;
    animation: rotate 3s linear infinite;
}

.cyber-status {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    text-align: center;
}

.cyber-status span {
    font-size: 0.8rem;
    opacity: 0.6;
    display: block;
}

.key-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.k-icon {
    width: 12px;
    height: 12px;
    background: #ef4444;
    border-radius: 2px;
}

.l-line {
    height: 6px;
    width: 100px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

/* Cyber Ultra-Premium Visuals */
.premium-glass-cyber {
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    background: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(20px) !important;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4) !important;
}

.vault-container {
    width: 60px;
    height: 60px;
    perspective: 1000px;
    margin: 0 auto 20px;
}

.vault-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    animation: rotate3D 8s infinite linear;
}

.v-face {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 1px solid #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.v-front {
    transform: translateZ(30px);
}

.v-back {
    transform: translateZ(-30px) rotateY(180deg);
}

.v-right {
    transform: rotateY(90deg) translateZ(30px);
}

.v-left {
    transform: rotateY(-90deg) translateZ(30px);
}

@keyframes rotate3D {
    from {
        transform: rotateX(0deg) rotateY(0deg);
    }

    to {
        transform: rotateX(360deg) rotateY(360deg);
    }
}

.vault-label {
    text-align: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vault-label span {
    display: block;
    font-size: 0.7rem;
    color: #ef4444;
    margin-top: 5px;
    animation: pulse 2s infinite;
}

.biometric-scan {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    position: relative;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.fingerprint {
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="40" height="40" viewBox="0 0 24 24" fill="none" stroke="%23ef4444" stroke-width="1" xmlns="http://www.w3.org/2000/svg"><path d="M12 11c0 3.517-2.103 6.543-5.122 7.823M12 11c0-3.517 2.103-6.543 5.122-7.823M12 11v8M12 11V3M12 11a4 4 0 0 0 4 4M12 11a4 4 0 0 1-4-4"/></svg>') no-repeat center;
    opacity: 0.5;
}

.scan-bar {
    position: absolute;
    width: 100%;
    height: 2px;
    background: #ef4444;
    box-shadow: 0 0 15px #ef4444;
    animation: scanY 3s infinite alternate;
}

.cyber-auth {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
}

.cyber-auth span {
    font-size: 0.8rem;
    color: #ef4444;
    display: block;
}

.threat-stream {
    height: 80px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
}

.stream-code {
    font-family: monospace;
    font-size: 0.7rem;
    color: #ef4444;
    opacity: 0.6;
    white-space: nowrap;
    animation: streamUp 5s infinite linear;
}

@keyframes scanY {
    from {
        top: 0;
    }

    to {
        top: 100%;
    }
}

@keyframes streamUp {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-40px);
    }
}

/* Project Visual Components */
.pm-timeline {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.t-segment {
    height: 8px;
    flex-grow: 1;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 4px;
}

.t-segment.active {
    background: #10b981;
    box-shadow: 0 0 15px #10b981;
}

.pm-meter {
    width: 100%;
    height: 12px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 100px;
    position: relative;
    margin-bottom: 15px;
}

.meter-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 85%;
    background: #10b981;
    border-radius: 100px;
}

.meter-val {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-top: 10px;
}

.pm-status {
    font-size: 0.9rem;
    opacity: 0.6;
}

.board-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.b-box {
    width: 14px;
    height: 14px;
    background: rgba(16, 185, 129, 0.2);
    border-radius: 4px;
}

.b-line {
    height: 6px;
    width: 100px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

/* BA Visual Components */
.ba-course-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.c-book {
    width: 35px;
    height: 45px;
    background: #f59e0b;
    border-radius: 4px;
    position: relative;
    box-shadow: 0 0 15px #f59e0b;
}

.c-book::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 5px;
    width: 2px;
    height: 35px;
    background: rgba(255, 255, 255, 0.3);
}

.ba-skill-radar {
    width: 100px;
    height: 100px;
    border: 2px solid rgba(245, 158, 11, 0.2);
    border-radius: 50%;
    margin: 0 auto 15px;
    position: relative;
}

.radar-circle {
    width: 60px;
    height: 60px;
    border: 1px solid rgba(245, 158, 11, 0.4);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ba-status {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
}

.ba-status span {
    font-size: 0.8rem;
    opacity: 0.6;
    display: block;
}

.cert-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.cert-icon {
    width: 15px;
    height: 15px;
    border: 2px solid #f59e0b;
    border-radius: 50%;
}

/* Strategy Visual Components */
.strategy-roadmap {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.r-step {
    height: 6px;
    width: 60px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 3px;
}

.r-step.active {
    width: 120px;
    background: #2563eb;
    box-shadow: 0 0 15px #2563eb;
}

.strategy-graph {
    height: 80px;
    width: 100%;
    border-bottom: 2px solid rgba(37, 99, 235, 0.2);
    position: relative;
    margin-bottom: 15px;
}

.g-line {
    width: 100%;
    height: 2px;
    background: #2563eb;
    position: absolute;
    bottom: 40%;
    transform: rotate(-15deg);
}

.strategy-val {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
}

.strategy-val span {
    font-size: 0.9rem;
    opacity: 0.6;
    display: block;
}

.pillar-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.p-dot {
    width: 12px;
    height: 12px;
    background: #2563eb;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Global Icon Placeholders */
.ai-icon {
    background-image: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23a855f7" stroke-width="2" xmlns="http://www.w3.org/2000/svg"><path d="M12 2L2 7l10 5 10-5-10-5zM2 17l10 5 10-5M2 12l10 5 10-5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
}

.cyber-icon {
    background-image: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23ef4444" stroke-width="2" xmlns="http://www.w3.org/2000/svg"><rect x="3" y="11" width="18" height="11" rx="2" ry="2"/><path d="M7 11V7a5 5 0 0 1 10 0v4"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
}

.project-icon {
    background-image: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%2310b981" stroke-width="2" xmlns="http://www.w3.org/2000/svg"><rect x="3" y="4" width="18" height="18" rx="2" ry="2"/><line x1="16" y1="2" x2="16" y2="6"/><line x1="8" y1="2" x2="8" y2="6"/><line x1="3" y1="10" x2="21" y2="10"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
}

.ba-icon {
    background-image: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23f59e0b" stroke-width="2" xmlns="http://www.w3.org/2000/svg"><path d="M2 3h6a4 4 0 0 1 4 4v14a3 3 0 0 0-3-3H2z"/><path d="M22 3h-6a4 4 0 0 0-4 4v14a3 3 0 0 1 3-3h7z"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
}

.strategy-icon {
    background-image: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%232563eb" stroke-width="2" xmlns="http://www.w3.org/2000/svg"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
}

/* ============================================
   CTA SECTION ENHANCEMENTS
   ============================================ */
.cta-box {
    background: #050a10;
    padding: 80px;
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(112, 209, 255, 0.1) 0%, transparent 70%);
    filter: blur(60px);
}

.cta-content h2 {
    font-size: 3.5rem;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 400;
}

.cta-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
}

/* Service-specific CTA adjustments */
.ai-cta::before {
    background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, transparent 70%);
}

.cyber-cta::before {
    background: radial-gradient(circle, rgba(239, 68, 68, 0.15) 0%, transparent 70%);
}

.project-cta::before {
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
}

.ba-cta::before {
    background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
}

.strategy-cta::before {
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
}

@media screen and (max-width: 991px) {
    .cta-box {
        padding: 60px 40px;
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .cta-content h2 {
        font-size: 2.5rem;
    }
}

/* ============================================
   SINGLE BLOG POST PAGE
   ============================================ */

.single-post-hero {
    padding-top: 125px;
    padding-bottom: 60px;
    background: linear-gradient(180deg, #f8fcff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.post-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.post-hero-category {
    display: inline-block;
    background: rgba(112, 209, 255, 0.12);
    color: #027090;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.post-hero-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 600;
    line-height: 1.2;
    color: #111;
    margin-bottom: 25px;
    letter-spacing: -1.5px;
    text-align: center;
}

.post-hero-meta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 0, 0, 0.04);
    padding: 10px 25px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    font-size: 0.88rem;
    color: #666;
}

.post-hero-meta .meta-author {
    font-weight: 700;
    color: #111;
}

.post-hero-meta .meta-separator {
    color: #ddd;
}

/* Featured Image */
.single-post-featured {
    padding: 0 0 50px;
    background: #ffffff;
}

.single-post-featured .featured-image-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.08);
    height: 520px;
    background: #f8fbff;
}

.single-post-featured .featured-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.single-post-featured:hover .featured-image-wrapper img {
    transform: scale(1.03);
}

/* Post content typography styling */
.single-post-body-section {
    padding: 50px 0 100px;
    background: #ffffff;
}

.post-body-layout {
    /* max-width: 800px; */
    margin: 0 auto;
    position: relative;
}

.post-main-entry {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #4A4A4A;
    font-family: 'SF Pro Display', -apple-system, sans-serif;
}

.post-main-entry p {
    margin-bottom: 25px;
    text-align: justify;
}

.post-main-entry h2,
.post-main-entry h3,
.post-main-entry h4 {
    color: #111;
    font-weight: 800;
    margin-top: 45px;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.post-main-entry h2 {
    font-size: 2rem;
}

.post-main-entry h3 {
    font-size: 1.6rem;
}

.post-main-entry h4 {
    font-size: 1.3rem;
}

.post-main-entry blockquote {
    background: #f8fbff;
    border-left: 4px solid #48C5FF;
    border-radius: 0 20px 20px 0;
    padding: 30px 40px;
    margin: 40px 0;
    font-style: italic;
    font-size: 1.25rem;
    color: #027090;
    line-height: 1.8;
}

.post-main-entry ul,
.post-main-entry ol {
    margin: 30px 0;
    padding-left: 25px;
}

.post-main-entry ul li,
.post-main-entry ol li {
    margin-bottom: 12px;
    position: relative;
}

.post-main-entry ul li::marker {
    color: #48C5FF;
}

/* Post Tags */
.post-tags-container {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #edf2f7;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.post-tags-container .tags-label {
    font-weight: 700;
    color: #111;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.post-tag-item {
    font-size: 0.85rem;
    color: #4A4A4A;
    background: #f1f5f9;
    padding: 6px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.post-tag-item:hover {
    background: #48C5FF;
    color: #ffffff;
    transform: translateY(-1px);
}

/* Share Bar */
.post-share-bar {
    margin-top: 40px;
    padding: 25px 35px;
    background: #f8fafc;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.02);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.post-share-bar .share-title {
    font-weight: 700;
    color: #111;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.post-share-bar .share-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.share-btn.linkedin {
    background: #0077b5;
}

.share-btn.twitter {
    background: #111111;
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.copy {
    background: #64748b;
}

/* Post Navigation and Related */
.single-post-navigation-section {
    padding: 100px 0;
    background: #f8fbff;
    border-top: 1px solid #edf2f7;
}

.post-navigation-wrapper {
    /* max-width: 1000px; */
    margin: 0 auto;
}

.post-navigation-wrapper .navigation-header {
    text-align: center;
    margin-bottom: 50px;
}

.post-navigation-wrapper .navigation-footer {
    text-align: center;
    margin-top: 60px;
}

.no-related {
    text-align: center;
    width: 100%;
    color: #888;
    font-size: 1.1rem;
    padding: 40px 0;
}

/* Tablet & Mobile Responsiveness for Single Post */
@media screen and (max-width: 1024px) {
    .single-post-featured .featured-image-wrapper {
        height: 380px;
        border-radius: 20px;
    }
}

@media screen and (max-width: 768px) {
    .single-post-hero {
        padding-top: 140px;
        padding-bottom: 40px;
    }

    .post-hero-title {
        margin-bottom: 15px;
    }

    .single-post-featured .featured-image-wrapper {
        height: 250px;
        border-radius: 16px;
    }

    .post-main-entry {
        font-size: 1.05rem;
    }

    .post-main-entry blockquote {
        padding: 20px 25px;
        font-size: 1.1rem;
        margin: 30px 0;
    }

    .post-share-bar {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }

    .single-post-navigation-section {
        padding: 60px 0;
    }

    .post-navigation-buttons {
        margin-top: 35px;
        padding-top: 25px;
    }

    .nav-post-link {
        padding: 16px;
        gap: 12px;
    }

    .nav-title {
        font-size: 0.95rem;
        white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }
}

/* Next/Previous Post Navigation */
.post-navigation-buttons {
    margin-top: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    border-top: 1px solid #edf2f7;
    padding-top: 40px;
}

.nav-post-link {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    padding: 24px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.nav-post-link.next-link {
    justify-content: flex-end;
}

.nav-post-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(72, 197, 255, 0.15);
    border-color: rgba(72, 197, 255, 0.3);
}

.nav-details {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-width: 0;
    flex: 1;
}

.nav-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #888;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.nav-title {
    display: block;
    font-size: 1.05rem;
    color: #111;
    font-weight: 700;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-arrow {
    font-size: 1.6rem;
    color: #48C5FF;
    font-weight: 800;
    transition: transform 0.3s ease;
}

.prev-link:hover .nav-arrow {
    transform: translateX(-5px);
}

.next-link:hover .nav-arrow {
    transform: translateX(5px);
}

@media screen and (max-width: 640px) {
    .post-navigation-buttons {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .nav-title {
        white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }
}

/* ============================================
   PAGINATION STYLING
   ============================================ */
.pagination {
    margin-top: 60px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 16px;
    border-radius: 50px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #444;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.pagination .page-numbers:hover {
    background: #fafcff;
    border-color: #48C5FF;
    color: #48C5FF;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(72, 197, 255, 0.1);
}

.pagination .page-numbers.current {
    background: #48C5FF;
    border-color: #48C5FF;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(72, 197, 255, 0.25);
}

.pagination .page-numbers.prev,
.pagination .page-numbers.next {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    padding: 0 20px;
}

.pagination .page-numbers.dots {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    color: #888;
    cursor: default;
    pointer-events: none;
}

/* More Services Button Styling */
.btn-more-services {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(90deg, #111111, #333333) !important;
    color: #ffffff;
    padding: 16px 20px;
    border-radius: 100px;
    font-weight: 300;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1.5px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.btn-more-services:hover {
    background: linear-gradient(90deg, #48C5FF, #26BAFF);
    box-shadow: 0 15px 30px rgba(72, 197, 255, 0.25);
    transform: translateY(-3px);
    color: #ffffff;
}

.btn-more-services .btn-arrow {
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.btn-more-services:hover .btn-arrow {
    transform: translateX(5px);
}

/* ============================================
   TUITION JAN 2026 PAGE
   ============================================ */
.tuition-hero-split {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, #f5fafd 0%, #ffffff 100%);
    overflow: hidden;
    position: relative;
}

.tuition-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.tuition-hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.tuition-hero-left .hero-brand-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(72, 197, 255, 0.1);
    color: #26BAFF;
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-bottom: 25px;
    border: 1px solid rgba(72, 197, 255, 0.2);
}

.tuition-hero-left .hero-brand-tag .dot {
    width: 8px;
    height: 8px;
    background: #26BAFF;
    border-radius: 50%;
}

.tuition-hero-left .unique-title {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #111;
    font-weight: 800;
}

.tuition-hero-left .hero-desc-text {
    margin-bottom: 35px;
    max-width: 580px;
}

.tuition-hero-left .hero-desc-text p {
    color: #4A4A4A;
    font-size: 1.15rem;
    line-height: 1.7;
    text-align: justify;
    margin: 0;
}

.tuition-hero-left .hero-cta-group {
    display: flex;
    gap: 20px;
}

.tuition-hero-right {
    position: relative;
}

.tuition-banner-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(72, 197, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.tuition-banner-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.tuition-banner-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 35px 80px rgba(72, 197, 255, 0.15);
    border-color: rgba(72, 197, 255, 0.3);
}

.tuition-banner-wrapper:hover img {
    transform: scale(1.03);
}

.banner-glow-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(72, 197, 255, 0.15) 0%, transparent 80%);
    pointer-events: none;
    mix-blend-mode: screen;
}

/* Content Section Layout */
.tuition-content-section {
    padding: 80px 0;
    background: #fdfdfd;
}

.tuition-content-section .registration-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.tuition-content-section .section-tag {
    margin-top: 0;
}

.tuition-content-section .registration-info p {
    color: #4A4A4A;
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: justify;
    margin-top: 15px;
}

.tuition-content-section .what-you-get {
    background: #ffffff;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid #edf2f7;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
}

.tuition-content-section .what-you-get h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 25px;
}

.tuition-content-section .what-you-get ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.tuition-content-section .what-you-get ul li {
    position: relative;
    padding-left: 30px;
    color: #444;
    font-size: 1.05rem;
}

.tuition-content-section .what-you-get ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #70d1ff;
    font-weight: 800;
}

.tuition-content-section .what-you-get ul li strong {
    color: #111;
}

.tuition-contact {
    display: flex;
    gap: 20px;
    align-items: center;
    background: rgba(72, 197, 255, 0.05);
    padding: 25px;
    border-radius: 20px;
    border: 1px dashed rgba(72, 197, 255, 0.2);
}

.tuition-contact .contact-icon {
    font-size: 2rem;
}

.tuition-contact h4 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #111;
}

.tuition-contact p {
    margin: 0;
    color: #4A4A4A;
    font-size: 0.95rem;
}

/* Form Custom Spacing on Tuition Page */
.tuition-content-section .form-header {
    margin-bottom: 30px;
}

.tuition-content-section .form-header h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #111;
    margin: 0 0 8px 0;
}

.tuition-content-section .form-header p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
}

/* Tablet & Mobile Responsiveness for Split Hero */
@media screen and (max-width: 1024px) {
    .tuition-hero-split {
        padding: 120px 0 60px;
    }

    .tuition-hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .tuition-hero-left {
        align-items: center;
        text-align: center;
    }

    .tuition-hero-left .unique-title {
        font-size: 3rem;
    }

    .tuition-hero-left .hero-desc-text p {
        text-align: justify;
    }

    .tuition-banner-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 767px) {
    .tuition-hero-left .unique-title {
        font-size: 2.4rem;
    }
}

/* ============================================
   HEADER MENU PERFECT CENTER ALIGNMENT
   ============================================ */
@media screen and (min-width: 1025px) {
    .site-branding {
        flex: 1;
        display: flex;
        justify-content: flex-start;
    }

    .main-navigation {
        flex: 0 0 auto;
        display: flex;
        justify-content: center;
    }

    .header-actions {
        flex: 1;
        display: flex;
        justify-content: flex-end;
    }
}

/* Header Action Button Hover Arrow Effect */
.site-header .btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.site-header .btn-dark:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.site-header .btn-dark:hover .btn-arrow svg {
    transform: translateX(3px);
}

/* ============================================
   NAVIGATION SUB-MENU DROPDOWN (CAREERS -> TUITION)
   ============================================ */
.main-navigation ul li {
    position: relative;
}

/* Hide sub-menu by default with scale and slide transition */
.main-navigation ul .sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px) scale(0.95);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(72, 197, 255, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 15px 0;
    min-width: 240px;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 999;
}

/* Show sub-menu on hover */
.main-navigation ul li:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(8px) scale(1);
}

/* Style submenu lists and links */
.main-navigation ul .sub-menu li {
    width: 100%;
    padding: 0;
    margin: 0;
}

.main-navigation ul .sub-menu li a {
    display: block;
    padding: 10px 24px;
    color: #333333 !important;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: left;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.main-navigation ul .sub-menu li a:hover {
    color: #26BAFF !important;
    background: rgba(72, 197, 255, 0.05);
    padding-left: 28px;
}

/* Submenu dropdown indicator */
.menu-item-has-children>a {
    display: inline-flex !important;
    align-items: center !important;
}

.menu-item-has-children>a::after {
    content: '▼';
    font-size: 0.5rem;
    margin-left: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, color 0.3s ease;
    transform-origin: center;
    line-height: 1;
}

.menu-item-has-children:hover>a::after {
    transform: rotate(180deg);
    color: #26BAFF;
}

/* ============================================
   CONTACT FORM 7 SUBMIT BUTTON COLOR MATCH
   ============================================ */
.wpcf7-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #111111, #333333) !important;
    color: #ffffff !important;
    padding: 16px 36px !important;
    border-radius: 100px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    font-size: 0.95rem !important;
    letter-spacing: 1.5px !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    text-decoration: none !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08) !important;
    border: none !important;
    cursor: pointer !important;
    width: auto !important;
}

.wpcf7-submit:hover {
    background: linear-gradient(90deg, #48C5FF, #26BAFF) !important;
    box-shadow: 0 15px 30px rgba(72, 197, 255, 0.25) !important;
    transform: translateY(-3px) !important;
    color: #ffffff !important;
}

/* ============================================
   SECOND FOOTER BOTTOM BAR
   ============================================ */
.footer-bottom-bar {
    padding: 30px 0;
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

@media screen and (min-width: 769px) {
    .footer-copyright {
        flex: 1 1 0%;
        display: flex;
        justify-content: flex-start;
    }

    .footer-legal-links {
        flex: 0 0 auto;
        display: flex;
        justify-content: center;
        margin: 0 auto;
    }

    .footer-social-icons {
        flex: 1 1 0%;
        display: flex;
        justify-content: flex-end;
    }
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    margin: 0;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: #26BAFF;
}

.footer-legal-links .separator {
    color: rgba(255, 255, 255, 0.15);
    font-size: 0.8rem;
}

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

.social-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none;
}

.social-icon-link:hover {
    background: rgba(38, 186, 255, 0.1);
    color: #26BAFF;
    border-color: rgba(38, 186, 255, 0.3);
    transform: translateY(-3px);
}

/* Tablet & Mobile Responsiveness for Sub-menu and Bottom Footer */
@media screen and (max-width: 1024px) {
    .site-header {
        padding: 15px 0 !important;
    }

    .site-header.scrolled {
        padding: 15px 0 !important;
    }

    .main-navigation ul .sub-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        background: transparent;
        border: none;
        padding: 5px 0 5px 20px;
        min-width: 100%;
        display: none;
        /* Let navigation JS handle mobile collapse toggling */
    }

    .menu-item-has-children.active>.sub-menu {
        display: flex;
    }
}

@media screen and (max-width: 768px) {
    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .footer-legal-links {
        justify-content: center;
    }

    .footer-social-icons {
        justify-content: center;
    }
}


/* ============================================
   CONTACT FORM 7 COMPATIBILITY
   ============================================ */

/* Disable vertical stacking and force row-based layout for both newsletter forms */
.hero-form form,
.footer-form form {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 10px !important;
    width: 100% !important;
}

.hero-form .wpcf7,
.footer-form .wpcf7 {
    width: 100% !important;
}

/* Eliminate any injected paragraph or line break wrapper tags layout-wise */
.hero-form form p,
.footer-form form p {
    display: contents !important;
}

.hero-form form br,
.footer-form form br {
    display: none !important;
}

/* Ensure the CF7 input wrapper stretches horizontally to take all remaining space */
.hero-form form .wpcf7-form-control-wrap,
.footer-form form .wpcf7-form-control-wrap {
    flex: 1 !important;
    display: block !important;
}

/* Force both inputs and submit buttons to have identical height and sizing for perfect alignment */
.hero-form form input[type="email"],
.footer-form form input[type="email"] {
    width: 100% !important;
    height: 58px !important;
    box-sizing: border-box !important;
}

.hero-form form input[type="email"] {
    padding: 18px 22px !important;
}

.footer-form form input[type="email"] {
    padding: 18px 24px !important;
}

/* 
   Dynamic CSS Submit Button styling:
   Works perfectly on both <button type="submit"> and standard <input type="submit"> tags!
   Uses relative background images so it never breaks.
*/
.hero-form form button,
.hero-form form input[type="submit"],
.hero-form form .wpcf7-submit {
    height: 58px !important;
    padding: 18px 48px 18px 24px !important; /* Added right padding for the arrow background image */
    background-color: #111 !important;
    background-image: url('../images/arrow.png') !important;
    background-repeat: no-repeat !important;
    background-position: right 24px center !important;
    background-size: 14px auto !important;
    color: #fff !important;
    border-radius: 50px !important;
    border: none !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    transition: var(--transition) !important;
    white-space: nowrap !important;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif !important;
    box-sizing: border-box !important;
}

.hero-form form button:hover,
.hero-form form input[type="submit"]:hover,
.hero-form form .wpcf7-submit:hover {
    background-color: #333 !important;
}

.footer-form form button,
.footer-form form input[type="submit"],
.footer-form form .wpcf7-submit {
    height: 58px !important;
    padding: 18px 48px 18px 24px !important;
    background-color: #027090 !important;
    background-image: url('../images/arrow.png') !important;
    background-repeat: no-repeat !important;
    background-position: right 24px center !important;
    background-size: 14px auto !important;
    color: #fff !important;
    border-radius: 50px !important;
    border: none !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    transition: var(--transition) !important;
    box-sizing: border-box !important;
}

.footer-form form button:hover,
.footer-form form input[type="submit"]:hover,
.footer-form form .wpcf7-submit:hover {
    background-color: #333 !important;
    transform: translateY(-1px) !important;
}

/* Hide any manually added icons or nested image tags inside buttons to prevent duplicates */
.hero-form form button img,
.footer-form form button img {
    display: none !important;
}

/* Ensure CF7's built-in alert/validation messages do not break the main layout */
.wpcf7 .wpcf7-response-output {
    margin: 10px 0 0 0 !important;
    padding: 10px 15px !important;
    border-radius: 8px !important;
    font-size: 0.85rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
    clear: both !important;
}

.wpcf7-not-valid-tip {
    font-size: 0.75rem !important;
    margin-top: 5px !important;
    color: #ff4d4d !important;
    display: block !important;
}