/* =========================================
   Learning Atoms Academy - Ghost Theme CSS
   Color Palette:
   - Background: #f6f4ee
   - Primary Blue: #007BFF
   - Footer Blue: #3586ff
   - Teal Accent: #1e9a9c
   - Button Pink: #fee6e3
   - Button Hover: #00b4d8
   - About Blue: #cce6f1
   - Form Blue: #0980ff
   ========================================= */

:root {
    --bg: #f6f4ee;
    --primary: #007BFF;
    --footer-bg: #3586ff;
    --teal: #1e9a9c;
    --btn-bg: #fee6e3;
    --btn-hover: #00b4d8;
    --section-blue: #cce6f1;
    --form-blue: #0980ff;
    --text: #111;
    --text-light: rgba(48, 69, 92, 0.8);
    --white: #fff;
    --shadow: 0px 25px 20px -20px rgba(0, 0, 0, 0.45), -25px 0 20px -20px rgba(0, 0, 0, 0.45);
    --shadow-card: rgba(30, 154, 156, 0.24) 0px 15px 25px, rgba(30, 154, 156, 0.24) 0px 5px 10px;
}

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

*::-webkit-scrollbar {
    display: none;
}

body {
    font-family: 'Inter', 'Poppins', Arial, sans-serif;
    background-color: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 5%;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* ==================
   BUTTONS
   ================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 32px;
    height: 48px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid var(--text);
    position: relative;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--btn-bg);
    color: var(--text);
}

.btn-primary::after {
    content: "";
    display: block;
    position: absolute;
    background-color: var(--text);
    border-radius: 8px;
    height: 48px;
    width: 100%;
    left: 0;
    top: -2px;
    transform: translate(6px, 6px);
    transition: transform 0.2s ease-out;
    z-index: -1;
}

.btn-primary:hover {
    background-color: var(--btn-hover);
    color: var(--white);
}

.btn-primary:hover::after {
    transform: translate(0, 0);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--text);
}

.btn-outline:hover {
    background-color: var(--btn-hover);
    color: var(--white);
    border-color: var(--btn-hover);
}

.btn-sm {
    height: 40px;
    padding: 0 20px;
    font-size: 14px;
    background-color: var(--btn-bg);
    color: var(--text);
    border: 2px solid var(--text);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-sm:hover {
    background-color: var(--btn-hover);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.btn-white:hover {
    background: var(--btn-hover);
    color: var(--white);
    border-color: var(--btn-hover);
}

/* ==================
   HEADER / NAV
   ================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(246, 244, 238, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10%;
    height: 80px;
}

.nav-logo img {
    height: 60px;
    width: 60px;
    object-fit: contain;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}

.nav-link {
    padding: 8px 16px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    transition: color 0.2s;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-dropdown {
    position: relative;
}

.dropdown-toggle i {
    font-size: 10px;
    margin-left: 4px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding: 8px 0;
    min-width: 180px;
    list-style: none;
    z-index: 100;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: var(--text);
    transition: background 0.2s;
}

.dropdown-menu li a:hover {
    background: var(--section-blue);
    color: var(--primary);
}

.nav-dropdown:hover .dropdown-menu {
    display: block;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: all 0.3s;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: relative;
}

.hamburger::before { top: -7px; }
.hamburger::after { top: 5px; }

/* ==================
   HERO (matches original site)
   ================== */
.hero {
    position: relative;
    height: auto;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
}

.hero-bg {
    position: absolute;
    height: 180%;
    width: 150%;
    clip-path: ellipse(51% 42% at 50% 10%);
    background-image: linear-gradient(#ffffff, aqua);
    z-index: 0;
    left: -25%;
}

.hero-inner {
    position: relative;
    z-index: 1;
    top: 3%;
    width: 100%;
    padding: 0 10%;
}

.hero-heading {
    width: 100%;
    text-align: center;
}

.hero-heading h1 {
    font-size: 2.5rem;
    font-family: 'Space Grotesk', Montserrat, sans-serif;
    font-weight: 600;
    margin: 0;
    text-align: center;
}

.hero-heading h3 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 500;
}

.hero-courses {
    width: 100%;
    margin-top: 4%;
    display: flex;
    justify-content: space-around;
}

.hero-course {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0 10px;
    max-width: 33%;
}

.hero-course h3 {
    font-size: 1.15rem;
    margin: 8px 0;
}

.hero-course p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
}

.hero-cta-center {
    display: flex;
    justify-content: center;
    margin-top: 2%;
}

.button-56 {
    align-items: center;
    background-color: #fee6e3;
    border: 2px solid #111;
    border-radius: 8px;
    box-sizing: border-box;
    color: #111;
    cursor: pointer;
    display: inline-flex;
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-weight: 600;
    height: 48px;
    justify-content: center;
    line-height: 24px;
    max-width: 100%;
    padding: 0 25px;
    position: relative;
    text-align: center;
    text-decoration: none;
    user-select: none;
    touch-action: manipulation;
}

.button-56::after {
    background-color: #111;
    border-radius: 8px;
    content: "";
    display: block;
    height: 48px;
    left: 0;
    width: 100%;
    position: absolute;
    top: -2px;
    transform: translate(8px, 8px);
    transition: transform .2s ease-out;
    z-index: -1;
}

.button-56:hover::after {
    transform: translate(0, 0);
}

.button-56:hover {
    background-color: #00b4d8;
    color: white;
}

/* ==================
   ABOUT SECTION (matches original)
   ================== */
.about-section {
    text-align: center;
    padding: 40px 10%;
    min-height: 50vh;
}

.about-section > h1 {
    font-size: 2rem;
    margin-bottom: 32px;
}

.about-row {
    display: flex;
    background-color: #cce6f1;
    padding: 5%;
    margin: 5% 0;
    border-radius: 12px;
    box-shadow: var(--shadow);
    align-items: center;
    gap: 32px;
}

.about-data {
    flex: 1;
    text-align: left;
    line-height: 30px;
}

.about-data h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.about-data p {
    margin-bottom: 20px;
}

.about-img {
    flex: 1;
}

.about-img img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

/* ==================
   DIVE INTO SECTION (matches original)
   ================== */
.dive-section {
    position: relative;
    height: 100vh;
    min-height: 90vh;
}

.dive-imgs {
    z-index: 1;
    position: absolute;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.dive-imgs div {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
}

.dive-imgs img {
    height: 200px;
    width: 200px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.dive-content {
    position: absolute;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 90vh;
    width: 100%;
    text-align: center;
}

.dive-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

.dive-content h3 {
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.dive-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

/* ==================
   CYBER GYAANI SECTION (matches original)
   ================== */
.cyber-section {
    height: auto;
    min-height: 85vh;
    position: relative;
    background-image: linear-gradient(#f6f4ee, aqua, #f6f4ee);
}

.cyber-circle {
    position: absolute;
    border-radius: 50%;
    max-width: 200px;
    max-height: 200px;
    width: 120px;
    height: 120px;
    object-fit: cover;
}

.cyber-data {
    padding: 0 10%;
    color: #fff;
    position: absolute;
    z-index: 2;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.cyber-data h1 {
    font-size: 2.2rem;
}

.cyber-data h3 {
    font-size: 1.1rem;
    margin: 16px 0;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==================
   STATS
   ================== */
.stats-section {
    padding: 40px 0;
    margin-top: -40px;
    position: relative;
    z-index: 3;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--primary);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==================
   SECTIONS
   ================== */
.section {
    padding: 80px 0;
}

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

.section-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--teal);
    margin-bottom: 8px;
}

.section-cta {
    text-align: center;
    margin-top: 40px;
}

/* ==================
   PRINCIPLES
   ================== */
.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.principle-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: transform 0.3s;
}

.principle-card:hover {
    transform: translateY(-4px);
}

.principle-icon {
    font-size: 2.5rem;
    color: var(--teal);
    margin-bottom: 16px;
}

.principle-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.principle-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ==================
   ABOUT PREVIEW
   ================== */
.about-preview {
    background: var(--section-blue);
    border-radius: 16px;
    margin: 0 5%;
    padding: 60px 0;
}

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

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.about-image-placeholder {
    background: rgba(0, 123, 255, 0.1);
    border-radius: 12px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--primary);
}

.about-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.about-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

/* ==================
   COURSES
   ================== */
.courses-preview {
    background: var(--bg);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.course-card {
    background: var(--white);
    border-radius: 12px;
    padding: 32px 24px;
    box-shadow: var(--shadow-card);
    transition: transform 0.3s, color 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.course-card:hover {
    transform: translateY(-4px);
    color: var(--teal);
}

.course-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 16px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 123, 255, 0.08);
    border-radius: 50%;
}

.course-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    min-height: 2.5em;
}

.course-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

/* ==================
   BLOG / CYBER DIMENSION
   ================== */
.blog-preview {
    background: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.blog-card {
    background: var(--bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.blog-card-image {
    display: block;
    overflow: hidden;
    height: 200px;
}

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

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

.blog-card-content {
    padding: 20px;
}

.blog-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--teal);
    margin-bottom: 8px;
}

.blog-card-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}

.blog-card-content h3 a {
    color: var(--text);
    transition: color 0.2s;
}

.blog-card-content h3 a:hover {
    color: var(--primary);
}

.blog-card-content > p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 12px;
}

.blog-meta {
    display: flex;
    gap: 16px;
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ==================
   CTA SECTION
   ================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--teal));
    color: var(--white);
    text-align: center;
    padding: 80px 5%;
}

.cta-section h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.cta-section p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 32px;
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.cta-section .btn-primary::after {
    display: none;
}

.cta-section .btn-primary:hover {
    background: var(--btn-hover);
    color: var(--white);
    border-color: var(--btn-hover);
}

.cta-section .btn-outline {
    color: var(--white);
    border-color: var(--white);
}

.cta-section .btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

/* ==================
   FAQ
   ================== */
.faq-section {
    padding: 80px 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 24px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
    color: var(--text-light);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    padding: 0 24px 20px;
    max-height: 200px;
}

/* ==================
   PARTNERS
   ================== */
.partners-section {
    padding: 60px 0;
    text-align: center;
}

.partners-section h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 32px;
}

.partners-grid {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.partners-grid img {
    height: 120px;
    width: 120px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.partners-grid img:hover {
    transform: scale(1.05);
}

/* ==================
   POST / PAGE
   ================== */
.post-header,
.page-header {
    padding: 60px 0 40px;
    text-align: center;
}

.post-title,
.page-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.post-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--teal);
    margin-bottom: 12px;
}

.post-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.post-meta-author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.post-feature-image {
    margin: 0 auto 40px;
    max-width: 1000px;
}

.post-feature-image img {
    width: 100%;
    border-radius: 12px;
}

.post-feature-image figcaption {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 8px;
}

/* Ghost content styles */
.gh-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text);
}

.gh-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    margin: 40px 0 16px;
}

.gh-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    margin: 32px 0 12px;
}

.gh-content p {
    margin-bottom: 20px;
}

.gh-content img {
    border-radius: 8px;
    margin: 24px 0;
}

.gh-content blockquote {
    border-left: 4px solid var(--teal);
    padding-left: 20px;
    margin: 24px 0;
    color: var(--text-light);
    font-style: italic;
}

.gh-content ul, .gh-content ol {
    margin: 16px 0;
    padding-left: 24px;
}

.gh-content li {
    margin-bottom: 8px;
}

.gh-content a {
    color: var(--primary);
    text-decoration: underline;
}

.gh-content pre {
    background: #1a1a2e;
    color: #e0e0e0;
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 24px 0;
}

.gh-content code {
    font-size: 0.9em;
}

.post-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.tag-pill {
    background: var(--section-blue);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: background 0.2s;
}

.tag-pill:hover {
    background: var(--primary);
    color: var(--white);
}

/* ==================
   TAG / AUTHOR PAGES
   ================== */
.tag-header,
.author-header {
    text-align: center;
    padding: 60px 0 40px;
    background: linear-gradient(180deg, var(--section-blue), var(--bg));
}

.tag-header h1,
.author-header h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
}

.tag-description,
.author-bio {
    font-size: 1.05rem;
    color: var(--text-light);
    margin: 8px auto;
    max-width: 600px;
}

.tag-count {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 8px;
    display: inline-block;
}

.author-avatar-lg {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 16px;
}

.related-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 32px;
}

/* ==================
   PAGINATION
   ================== */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.pagination a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s;
}

.pagination a:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.page-number {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ==================
   CONTACT FORM (custom page)
   ================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: linear-gradient(var(--section-blue), var(--white));
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-info h3,
.contact-form h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
}

.contact-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 4px;
}

.contact-info p,
.contact-info a {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-info iframe {
    width: 100%;
    height: 200px;
    border: 0;
    border-radius: 8px;
    margin-top: 20px;
}

.form-group {
    position: relative;
    margin-top: 24px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    color: var(--form-blue);
    margin-bottom: 4px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 0;
    border: none;
    border-bottom: 1px solid var(--form-blue);
    background: transparent;
    font-size: 1rem;
    color: var(--form-blue);
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-bottom: 2px solid var(--form-blue);
}

.form-group textarea {
    border: 1px solid var(--form-blue);
    padding: 10px;
    border-radius: 4px;
    min-height: 80px;
    resize: vertical;
}

.form-submit {
    text-align: center;
    margin-top: 32px;
}

/* ==================
   ABOUT PAGE
   ================== */
.about-hero {
    padding: 0 10%;
}

.about-hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1.05;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 1.15rem;
    line-height: 1.7;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    border-radius: 12px;
    padding: 24px;
    background: linear-gradient(to right, rgb(153, 225, 253), transparent);
    transition: background 0.3s;
}

.info-card:hover {
    background: linear-gradient(to right, rgb(101, 195, 233), transparent);
}

.info-card h4 {
    font-size: 1rem;
    font-weight: 600;
}

.importance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.importance-card {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-card);
    text-align: center;
}

.importance-card img {
    width: 100px;
    height: 100px;
    margin-bottom: 16px;
}

.importance-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.importance-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Mission & Vision */
.mv-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 32px;
    align-items: start;
}

.mv-divider {
    width: 2px;
    background: var(--primary);
    height: 100%;
    min-height: 200px;
}

.mv-card {
    border-radius: 20px;
    padding: 40px;
    transition: box-shadow 0.3s;
}

.mv-card:hover {
    box-shadow: var(--shadow-card);
}

.mv-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary);
}

.mv-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ==================
   FOOTER
   ================== */
.site-footer {
    background: var(--footer-bg);
    color: var(--white);
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 60px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120'%3E%3Cpath fill='%233586ff' d='M0,64L48,69.3C96,75,192,85,288,80C384,75,480,53,576,48C672,43,768,53,864,64C960,75,1056,85,1152,80C1248,75,1344,53,1392,42.7L1440,32L1440,120L0,120Z'/%3E%3C/svg%3E") no-repeat bottom;
    background-size: cover;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    width: 80px;
    margin-bottom: 12px;
}

.footer-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.footer-description {
    font-size: 0.9rem;
    opacity: 0.85;
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    font-size: 0.9rem;
    opacity: 0.85;
    transition: opacity 0.2s;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-contact ul {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.footer-contact li i {
    margin-top: 3px;
    opacity: 0.85;
}

.footer-contact a {
    opacity: 0.85;
    transition: opacity 0.2s;
}

.footer-contact a:hover {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    transition: all 0.3s;
    font-size: 1rem;
}

.social-links a:hover {
    background: var(--white);
    color: var(--footer-bg);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ==================
   RESPONSIVE
   ================== */
@media (max-width: 768px) {
    .navbar {
        padding: 0 5%;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 16px 0;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        padding-left: 16px;
    }

    .nav-dropdown:hover .dropdown-menu {
        display: none;
    }

    .nav-dropdown.active .dropdown-menu {
        display: block;
    }

    .hero {
        min-height: auto;
    }

    .hero-bg {
        clip-path: ellipse(150% 42% at 50% 10%);
    }

    .hero-heading h1 {
        font-size: 2rem;
    }

    .hero-heading h3 {
        font-size: 1rem;
    }

    .hero-courses {
        flex-direction: column;
        align-items: center;
    }

    .hero-course {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .about-row {
        flex-direction: column;
    }

    .dive-section {
        height: auto;
        min-height: auto;
    }

    .dive-imgs {
        display: none;
    }

    .dive-content {
        position: static;
        min-height: auto;
        padding: 40px 10%;
    }

    .dive-content h1 {
        font-size: 1.5rem;
    }

    .dive-buttons {
        flex-direction: column;
        align-items: center;
    }

    .dive-buttons a {
        margin-bottom: 15px;
    }

    .cyber-section {
        min-height: 40vh;
        position: static;
    }

    .cyber-circle {
        display: none;
    }

    .cyber-data {
        position: static;
        color: black;
        padding: 40px 10%;
    }

    .cyber-data h1 {
        font-size: 1.5rem;
    }

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

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .courses-grid {
        grid-template-columns: 1fr;
    }

    .mv-grid {
        grid-template-columns: 1fr;
    }

    .mv-divider {
        display: none;
    }

    .post-title,
    .page-title {
        font-size: 1.8rem;
    }

    .about-hero h1 {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .stats-grid {
        flex-direction: row;
        gap: 24px;
    }

    .hero-title {
        font-size: 1.6rem;
    }
}
