/*
Theme Name: Sanjeev Consultancy Child
Theme URI: https://sanjeevconsultancy.com/
Description: Ultra Premium Child theme for Sanjeev Consultancy.
Author: Sanjeev Consultancy
Author URI: https://sanjeevconsultancy.com/
Template: generatepress
Version: 2.1.0
*/

/* =========================================
   1. VARIABLES & TYPOGRAPHY
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700&display=swap');

:root {
    --brand-primary: #a2c63e;
    /* Logo Green */
    --brand-dark: #1e1e1e;
    /* Logo Black/Dark Grey */
    --brand-heading: #121212;
    --brand-text: #555555;
    --brand-bg-light: #f7f9fa;
    --radius-round: 8px;
    --radius-pill: 50px;
}

body {
    font-family: 'Jost', sans-serif;
    color: var(--brand-text);
    background-color: #fff;
    font-size: 16px;
    line-height: 1.8;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--brand-heading);
    font-weight: 700;
    line-height: 1.3;
}


/* =========================================
   1.1. LAYOUT UTILITIES (RESTORED)
   ========================================= */
.sanjeev-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.sanjeev-section {
    padding: 80px 0;
}

.sanjeev-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sanjeev-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.sanjeev-grid-2-1 {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.sanjeev-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.text-center {
    text-align: center;
}

.justify-center {
    justify-content: center;
}

.align-center {
    align-items: center;
}

/* Responsive Core */
@media (max-width: 992px) {

    .sanjeev-grid-3,
    .sanjeev-grid-2-1,
    .sanjeev-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .sanjeev-grid-3,
    .sanjeev-grid-2,
    .sanjeev-grid-4,
    .sanjeev-grid-2-1 {
        grid-template-columns: 1fr;
    }

    .sanjeev-section {
        padding: 50px 0;
    }
}

/* =========================================
   ANIMATIONS & HOVER EFFECTS (GLOBAL)
   ========================================= */

/* --- Keyframes --- */
@keyframes sanFadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes sanFadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes sanFadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes sanScaleIn {
    from {
        opacity: 0;
        transform: scale(0.85);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes sanCounterPop {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    60% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes sanFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes sanPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(34, 197, 94, 0);
    }
}

@keyframes sanShimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* --- Scroll-Triggered Animation Classes --- */
.san-animate {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.san-animate.san-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Counter Pop */
.san-counter-pop {
    animation: sanCounterPop 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* --- Enhanced Global Hover Effects --- */

/* Buttons - Smooth lift + glow */
.btn,
.btn-primary,
.svc-cta-btn-primary,
.svc-cta-btn-outline,
.about-overview-btn,
.svc-card-link {
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn:hover,
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Links - Smooth underline */
a {
    transition: color 0.3s ease, opacity 0.3s ease;
}

/* Cards - Smooth lift */
.dlear-expertise-card,
.dlear-course-card,
.dlear-blog-card,
.about-campus-card,
.sidebar-card {
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.dlear-expertise-card:hover,
.dlear-course-card:hover,
.dlear-blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.about-campus-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.sidebar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Images - Smooth zoom on hover */
.about-founder-img-wrap:hover img,
.svc-why-img:hover,
.about-impressive-main-img:hover,
.footer-gallery img:hover {
    transform: scale(1.04);
}

.about-founder-img-wrap img,
.svc-why-img,
.about-impressive-main-img,
.footer-gallery img {
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Founder & Why-Us Image wrapper - Glow */
.about-founder-img-wrap:hover {
    box-shadow: 0 25px 70px rgba(22, 101, 52, 0.2);
}

/* Stats - Float animation on hover */
.about-founder-stat:hover,
.svc-process-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(22, 101, 52, 0.15);
}

.about-founder-stat,
.svc-process-step {
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Step Numbers - Pulse on hover */
.svc-step-number:hover {
    animation: sanPulse 1.2s infinite;
}

/* Why Check Marks - Scale on hover */
.svc-why-check {
    transition: transform 0.3s ease, background 0.3s ease;
}

.svc-why-feature:hover .svc-why-check {
    transform: scale(1.2);
    background: #22c55e;
    color: #fff;
}

/* Service Card Icons - Bounce */
.svc-card-icon {
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.svc-card:hover .svc-card-icon {
    transform: scale(1.15) rotate(-5deg);
}

/* Footer links */
.footer-col-2 a,
.footer-col-3 a,
.footer-links a {
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-col-2 a:hover,
.footer-col-3 a:hover {
    padding-left: 5px;
    color: #22c55e;
}

/* Footer social icons */
.footer-social a {
    transition: transform 0.3s ease, background 0.3s ease;
}

.footer-social a:hover {
    transform: translateY(-3px) scale(1.1);
}

/* Breadcrumb links */
.about-breadcrumb a:hover,
.svc-breadcrumb a:hover {
    text-decoration: underline;
}

/* Program items - Scale on hover */
.about-program-item {
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-program-item:hover {
    transform: translateY(-8px);
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .san-animate {
        opacity: 1;
        transform: none;
    }
}

/* =========================================
   2. DLEAR HERO
   ========================================= */
.dlear-hero {
    padding: 100px 0 150px;
    background: #edf5fa;
    /* Light blueish tint dlear uses */
    position: relative;
    overflow: hidden;
}

.dlear-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-tag {
    display: inline-block;
    color: var(--brand-primary);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dlear-hero-text h1 {
    font-size: 4rem;
    color: var(--brand-dark);
    margin-bottom: 25px;
}

.dlear-hero-text p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #666;
    max-width: 90%;
}

.dlear-hero-img {
    position: relative;
}

.dlear-hero-img img {
    border-radius: 20px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.float-card {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: #fff;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.fc-price {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-primary);
}

.fc-label {
    font-size: 0.9rem;
    color: #888;
}

.shape-leaf-1 {
    position: absolute;
    top: 50px;
    left: 20px;
    font-size: 60px;
    opacity: 0.2;
    transform: rotate(45deg);
    color: var(--brand-primary);
}

/* =========================================
   3. CATEGORIES / EXPERTISE
   ========================================= */
.sanjeev-expertise {
    margin-top: -80px;
    /* Overlap hero */
    position: relative;
    z-index: 5;
}

.section-subtitle-small {
    color: var(--brand-primary);
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-title-dlear {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: left;
}

.text-center .section-title-dlear {
    text-align: center;
}

.dlear-cat-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s;
}

.dlear-cat-card:hover {
    transform: translateY(-10px);
}

.cat-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

/* =========================================
   4. ABOUT SPLIT
   ========================================= */
.dlear-split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.dlear-image-wrapper {
    position: relative;
}

.dlear-img-main {
    width: 100%;
    border-radius: 10px;
}

.dlear-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--brand-primary);
    /* Logo Green */
    color: #fff;
    padding: 25px;
    border-radius: 50%;
    width: 140px;
    height: 140px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(162, 198, 62, 0.4);
}

.badge-number {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.badge-text {
    font-size: 0.8rem;
    line-height: 1.2;
}

.section-title-left {
    font-size: 2.8rem;
    margin-bottom: 30px;
}

.dlear-text {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: #666;
}

/* =========================================
   5. COURSE CARDS
   ========================================= */
.dlear-course-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.dlear-course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.course-thumb {
    position: relative;
    height: 220px;
}

.course-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.course-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--brand-primary);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.course-content {
    padding: 30px;
}

.course-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.course-content h3 a {
    color: var(--brand-dark);
}

.course-content h3 a:hover {
    color: var(--brand-primary);
}

.course-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.course-price {
    font-weight: 700;
    color: var(--brand-primary);
}

.course-user .user-avatar {
    font-size: 24px;
}

/* =========================================
   6. EVENTS LIST
   ========================================= */
.event-card {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: 0.3s;
}

.event-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    background: #fdfdfd;
}

.event-date {
    text-align: center;
    margin-right: 30px;
    min-width: 80px;
}

.event-date .day {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--brand-primary);
    line-height: 1;
}

.event-date .month {
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
}

.event-info {
    flex-grow: 1;
}

.event-time,
.event-loc {
    font-size: 0.85rem;
    color: #888;
    margin-right: 15px;
    display: inline-block;
    margin-bottom: 5px;
}

.event-info h4 {
    font-size: 1.1rem;
    margin: 5px 0 0;
}

.btn-event {
    border: 1px solid #eee;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    color: #444;
}

.btn-event:hover {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
    color: #fff;
}

.video-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
}

.video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-primary);
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* =========================================
   UTILITIES
   ========================================= */
.btn-outline-dark {
    border: 2px solid #ddd;
    color: #333;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
}

.btn-outline-dark:hover {
    border-color: var(--brand-primary);
    background: var(--brand-primary);
    color: #fff;
}

.sanjeev-bg-light {
    background: var(--brand-bg-light);
}

.text-center {
    text-align: center;
}

.mt-5 {
    margin-top: 3rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

/* Dlear Category Card */
.dlear-cat-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 250px;
}

.dlear-cat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.cat-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

.dlear-cat-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--brand-dark);
}

.dlear-cat-card p {
    margin: 0;
    font-size: 0.9rem;
    color: #888;
}

/* Responsive */
@media (max-width: 992px) {

    .dlear-hero-grid,
    .dlear-split-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sanjeev-expertise {
        margin-top: 40px;
    }

    .dlear-hero {
        padding: 80px 0;
    }

    .dlear-hero-text h1 {
        font-size: 3rem;
    }
}


/* =========================================
   4. SECTIONS
   ========================================= */

/* Hero Section */
.sanjeev-hero {
    height: 85vh;
    /* Slightly taller */
    min-height: 600px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: -20px;
    /* Pull up to cover header gap if any */
}

/* Remove default overlay div as we used linear-gradient in background-image */
.sanjeev-hero-overlay {
    display: none;
}

.sanjeev-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 40px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-welcome {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--brand-primary);
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.sanjeev-hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 30px;
    font-weight: 800;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.hero-desc {
    font-size: 1.4rem;
    margin-bottom: 50px;
    opacity: 0.95;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Section Backgrounds */
.sanjeev-features {
    background-color: #f9fbfd;
}

.sanjeev-services-section {
    background-color: #fff;
}

.sanjeev-why-choose {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.sanjeev-faq {
    background-color: #fff;
}

/* Page Headers (Inner Pages) */
.sanjeev-page-header {
    background: var(--brand-dark);
    padding: 120px 0 80px;
    text-align: center;
    color: #fff;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    /* Modern slant */
    margin-bottom: 60px;
}

.sanjeev-page-header h1 {
    color: #fff;
    font-size: 3rem;
}

.country-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?q=80&w=2021&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}

/* Sidebar */
.sidebar-card {
    background: #fff;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    border: 1px solid #eee;
}

/* Lists */
.sanjeev-list {
    list-style: none;
    padding: 0;
}

.sanjeev-list li {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23a2c63e" width="18px" height="18px"><path d="M0 0h24v24H0z" fill="none"/><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>') no-repeat left 4px;
    padding-left: 30px;
    margin-bottom: 15px;
}

/* =========================================
   7. CAMPUS INFO & STATS
   ========================================= */
.sanjeev-campus-info {
    background: linear-gradient(180deg, #1e3a8a 0%, #3b82f6 100%);
    color: #fff;
    padding: 80px 0;
    position: relative;
}

.sanjeev-campus-info .section-title-dlear,
.sanjeev-campus-info .section-subtitle-small {
    color: #fff;
}

.campus-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    color: var(--brand-text);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    height: 100%;
    /* Uniform height */
}

.campus-card:hover {
    transform: translateY(-10px);
}

.campus-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.campus-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--brand-dark);
}

.campus-stats-row {
    background: #fff;
    border-radius: 15px;
    padding: 40px 20px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-top: 60px;
    color: var(--brand-dark);
    flex-wrap: wrap;
    gap: 20px;
}

.stat-item {
    text-align: center;
}

.stat-num {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--brand-dark-heading);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-num::after {
    content: '+';
    color: #3b82f6;
    /* Blue accent */
    font-weight: 300;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =========================================
   8. BLOG GRID
   ========================================= */
.dlear-blog-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.dlear-blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.blog-thumb img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.blog-content {
    padding: 30px;
}

.blog-date {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 10px;
    display: block;
}

.blog-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.4;
}

.blog-footer {
    border-top: 1px solid #eee;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #888;
}

/* =========================================
   9. IMPROVEMENTS & UTILITIES
   ========================================= */
.dlear-signature-hidden {
    display: none;
}

/* Improve Typography Spacing */
p {
    margin-bottom: 1.8rem;
    font-size: 1.05rem;
    color: #555;
}

.btn {
    padding: 14px 35px;
    /* Larger buttons */
    letter-spacing: 0.5px;
}

.section-title-dlear {
    margin-bottom: 60px;
    /* More space below titles */
}

/* Map Section Adjustment */
.sanjeev-map-section {
    padding: 80px 0;
}

/* =========================================
   10. FOOTER (DLEAR STYLE)
   ========================================= */
.dlear-footer {
    background: #fff;
    padding: 80px 0 30px;
    border-top: 1px solid #eee;
    color: #555;
    font-size: 0.95rem;
}

.dlear-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    font-size: 2rem;
    color: var(--brand-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.footer-logo::before {
    content: '🎓';
    margin-right: 10px;
    color: var(--brand-primary);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f4f4f4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-weight: 600;
    transition: 0.3s;
}

.footer-social a:hover {
    background: var(--brand-primary);
    color: #fff;
}

.dlear-footer h3 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--brand-dark);
}

.dlear-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dlear-footer ul li {
    margin-bottom: 12px;
}

.dlear-footer ul li a {
    color: #666;
    transition: 0.3s;
}

.dlear-footer ul li a:hover {
    color: var(--brand-primary);
    padding-left: 5px;
}

/* Gallery */
.footer-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.footer-gallery img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
    transition: 0.3s;
}

.footer-gallery img:hover {
    transform: scale(1.1);
}

/* Copyright */
.dlear-copyright {
    border-top: 1px solid #eee;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #888;
}

.footer-links a {
    color: #888;
    margin-left: 20px;
}

.footer-links a:hover {
    color: var(--brand-primary);
}

/* =========================================
   11. RESPONSIVE / MOBILE OPTIMIZATION
   ========================================= */

/* Tablets and below */
@media (max-width: 1024px) {
    .dlear-hero-grid {
        gap: 40px;
    }

    .dlear-hero-text h1 {
        font-size: 3rem;
    }
}

/* Common for Mobile/Small tablets */
@media (max-width: 768px) {

    /* Hero */
    .dlear-hero {
        padding: 60px 0 80px;
        text-align: center;
    }

    .dlear-hero-grid {
        grid-template-columns: 1fr;
    }

    .dlear-hero-text h1 {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    .hero-actions {
        justify-content: center;
    }

    .float-card {
        left: 20px;
        bottom: 10px;
    }

    /* Expertise / Categories */
    .sanjeev-expertise {
        margin-top: 0;
        padding: 60px 0;
    }

    .sanjeev-grid-3 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* About Split */
    .dlear-split-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-title-left {
        font-size: 2.2rem;
        text-align: center;
    }

    /* Stats Row - FIX OVERLAP */
    .sanjeev-campus-info {
        padding-bottom: 60px;
        margin-bottom: 0;
    }

    .campus-stats-row {
        position: relative;
        /* Remove absolute on mobile */
        bottom: 0;
        left: 0;
        transform: none;
        width: 100%;
        margin-top: 40px;
        padding: 30px 15px;
        box-shadow: none;
        border: 1px solid #eee;
    }

    .stat-num {
        font-size: 2rem;
    }

    /* Footer */
    .dlear-footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-gallery {
        justify-content: center;
        max-width: 300px;
        margin: 0 auto;
    }

    .footer-social {
        justify-content: center;
    }

    .dlear-copyright {
        flex-direction: column;
        gap: 15px;
    }

    .footer-links a {
        margin: 0 10px;
    }

    /* Spacing for sections */
    .sanjeev-section {
        padding: 60px 0;
    }

    .section-title-dlear {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }
}

/* Extra small mobile */
@media (max-width: 480px) {
    .dlear-hero-text h1 {
        font-size: 1.8rem;
    }

    .btn {
        width: 100%;
        margin-bottom: 10px;
    }
}

/* =========================================
   12. ABOUT US PAGE
   ========================================= */

/* --- Hero Banner --- */
.about-hero-banner {
    background: linear-gradient(135deg, #166534 0%, #22c55e 100%);
    padding: 120px 0 140px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: -40px;
}

.about-hero-inner h1 {
    color: #fff;
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.about-breadcrumb {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
}

.about-breadcrumb a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s;
}

.about-breadcrumb a:hover {
    color: #fff;
}

.about-breadcrumb-dot {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.5);
}

/* Decorative elements */
.about-hero-decor {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.about-decor-topleft {
    top: 0;
    left: 0;
}

.about-decor-topright {
    top: 0;
    right: 0;
}

.about-decor-bottomleft {
    bottom: -10px;
    left: 0;
}

.about-decor-dots {
    right: 30%;
    bottom: 35%;
}

/* --- Campus Information --- */
.about-campus-section {
    background: linear-gradient(180deg, #166534 0%, #22c55e 100%);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.about-campus-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.about-campus-circle {
    position: absolute;
    top: -30px;
    left: -40px;
    opacity: 0.5;
}

.about-campus-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 10px;
}

.about-campus-title {
    text-align: center;
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
}

.about-campus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.about-campus-card {
    background: #fff;
    border-radius: 14px;
    padding: 40px 30px;
    text-align: left;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.about-campus-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.about-campus-icon {
    font-size: 42px;
    margin-bottom: 20px;
}

.about-campus-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 10px;
}

.about-campus-card p {
    font-size: 0.95rem;
    color: #888;
    margin: 0;
    line-height: 1.6;
}

/* --- Academics Programs --- */
.about-academics-section {
    background: #fff;
    padding: 90px 0;
}

.about-academics-subtitle {
    text-align: center;
    color: #3b82f6;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 10px;
}

.about-academics-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 60px;
}

.about-programs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.about-program-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-program-img-wrap {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    margin-bottom: 25px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    background: #f5f5f5;
}

.about-program-img-bordered {
    box-shadow: none;
    border: 3px solid #22c55e;
}

.about-program-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.about-program-item:hover .about-program-img-wrap img {
    transform: scale(1.08);
}

.about-program-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.about-program-item h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 8px;
}

.about-program-item p {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 12px;
    max-width: 220px;
}

.about-apply-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--brand-dark);
    text-decoration: none;
    border-bottom: 2px solid var(--brand-dark);
    padding-bottom: 2px;
    transition: color 0.3s, border-color 0.3s;
}

.about-apply-link:hover {
    color: #22c55e;
    border-color: #22c55e;
}

/* --- Impressive Courses --- */
.about-impressive-section {
    background: #fff;
    padding: 90px 0;
    border-top: 1px solid #f0f0f0;
}

.about-impressive-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-impressive-img-col {
    position: relative;
}

.about-impressive-dots-decor {
    position: absolute;
    top: -20px;
    left: -20px;
    z-index: 1;
    opacity: 0.6;
}

.about-impressive-main-img {
    width: 100%;
    max-width: 480px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.about-impressive-subtitle {
    color: #3b82f6;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 10px;
}

.about-impressive-title {
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-impressive-desc {
    font-size: 1rem;
    color: #888;
    margin-bottom: 30px;
    line-height: 1.7;
}

.about-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 35px;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--brand-dark);
    font-weight: 500;
}

.about-feature-check {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.about-check-blue {
    background: #3b82f6;
    color: #fff;
}

.about-check-orange {
    background: #f59e0b;
    color: #fff;
}

.about-overview-btn {
    display: inline-block;
    padding: 14px 35px;
    border: 2px solid var(--brand-dark);
    border-radius: 50px;
    color: var(--brand-dark);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s;
}

.about-overview-btn:hover {
    background: #22c55e;
    border-color: #22c55e;
    color: #fff;
}

/* --- About Us Responsive --- */
@media (max-width: 992px) {
    .about-campus-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-programs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .about-impressive-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .about-hero-banner {
        padding: 60px 0 70px;
    }

    .about-hero-inner h1 {
        font-size: 2.2rem;
    }

    .about-campus-title,
    .about-academics-title {
        font-size: 1.8rem;
    }

    .about-impressive-title {
        font-size: 1.8rem;
    }

    .about-programs-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-program-img-wrap {
        width: 160px;
        height: 160px;
    }

    .about-campus-section,
    .about-academics-section,
    .about-impressive-section {
        padding: 60px 0;
    }

    .about-feature-grid {
        grid-template-columns: 1fr;
    }

    .about-founder-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .about-founder-img-wrap {
        max-width: 320px;
        margin: 0 auto;
    }

    .about-founder-highlights {
        justify-content: center;
    }
}

/* =========================================
   13. ABOUT FOUNDER SECTION
   ========================================= */

.about-founder-section {
    background: #fff;
    padding: 90px 0;
}

.about-founder-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 70px;
    align-items: center;
}

.about-founder-img-col {
    position: relative;
}

.about-founder-img-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.about-founder-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.about-founder-img-accent {
    position: absolute;
    bottom: -12px;
    right: -12px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #22c55e, #166534);
    border-radius: 16px;
    z-index: -1;
}

.about-founder-subtitle {
    color: #22c55e;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 8px;
}

.about-founder-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 8px;
    line-height: 1.2;
}

.about-founder-role {
    font-size: 1rem;
    color: #22c55e;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-founder-desc {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-founder-highlights {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.about-founder-stat {
    text-align: center;
    background: #f8faf5;
    border-radius: 12px;
    padding: 20px 25px;
    min-width: 110px;
    border: 1px solid #e8f0e0;
    transition: transform 0.3s, box-shadow 0.3s;
}

.about-founder-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.15);
}

.about-founder-stat-num {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #166534;
    line-height: 1;
    margin-bottom: 5px;
}

.about-founder-stat-label {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 992px) {
    .about-founder-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .about-founder-img-wrap {
        max-width: 400px;
        margin: 0 auto;
    }

    .about-founder-highlights {
        justify-content: center;
    }
}

/* =========================================
   14. SERVICES PAGE
   ========================================= */

/* --- Services Hero --- */
.svc-hero {
    background: linear-gradient(135deg, #166534 0%, #22c55e 100%);
    padding: 120px 0 140px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: -40px;
}

.svc-hero-decor {
    position: absolute;
    pointer-events: none;
}

.svc-decor-1 {
    top: 20px;
    left: -40px;
}

.svc-decor-2 {
    bottom: -30px;
    right: -20px;
}

.svc-hero-inner h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.svc-breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.svc-breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.svc-breadcrumb a:hover {
    color: #fff;
}

.svc-breadcrumb span {
    color: #fff;
}

.svc-breadcrumb-dot {
    color: rgba(255, 255, 255, 0.5);
}

/* --- Core Services Section --- */
.svc-core-section {
    background: #fff;
    padding: 90px 0;
}

.svc-section-subtitle {
    color: #22c55e;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
}

.svc-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--brand-dark);
    text-align: center;
    margin-bottom: 15px;
    line-height: 1.2;
}

.svc-section-desc {
    text-align: center;
    color: #666;
    max-width: 650px;
    margin: 0 auto 50px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.svc-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 35px 30px;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.svc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #22c55e, #166534);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.svc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(22, 101, 52, 0.12);
    border-color: transparent;
}

.svc-card:hover::before {
    transform: scaleX(1);
}

.svc-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.svc-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 12px;
}

.svc-card p {
    font-size: 0.93rem;
    color: #777;
    line-height: 1.7;
    margin-bottom: 18px;
}

.svc-card-link {
    color: #166534;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.svc-card-link:hover {
    color: #22c55e;
}

/* --- Why Choose Us Section --- */
.svc-why-section {
    background: #f7fdf7;
    padding: 90px 0;
}

.svc-why-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.svc-why-img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.svc-why-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 15px;
    line-height: 1.2;
}

.svc-why-desc {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1rem;
}

.svc-why-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.svc-why-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.svc-why-check {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: #dcfce7;
    color: #166534;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    margin-top: 2px;
}

.svc-why-feature strong {
    display: block;
    color: var(--brand-dark);
    font-size: 1rem;
    margin-bottom: 3px;
}

.svc-why-feature p {
    color: #888;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* --- Our Process Section --- */
.svc-process-section {
    background: #fff;
    padding: 90px 0;
}

.svc-process-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-top: 10px;
}

.svc-process-step {
    text-align: center;
    flex: 1;
    max-width: 240px;
    padding: 0 15px;
}

.svc-step-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #166534, #22c55e);
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(22, 101, 52, 0.3);
}

.svc-process-step h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 10px;
}

.svc-process-step p {
    font-size: 0.88rem;
    color: #888;
    line-height: 1.6;
    margin: 0;
}

.svc-process-connector {
    width: 60px;
    min-width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #22c55e, #166534);
    margin-top: 32px;
    border-radius: 2px;
    opacity: 0.5;
}

/* --- CTA Section --- */
.svc-cta-section {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    padding: 80px 0;
}

.svc-cta-box {
    text-align: center;
    background: linear-gradient(135deg, #166534, #22c55e);
    border-radius: 24px;
    padding: 60px 50px;
    color: #fff;
    box-shadow: 0 20px 60px rgba(22, 101, 52, 0.25);
}

.svc-cta-box h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.svc-cta-box p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 550px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

.svc-cta-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.svc-cta-btn-primary {
    background: #fff;
    color: #166534;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.svc-cta-btn-primary:hover {
    background: #f0fdf4;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.svc-cta-btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: #fff;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s;
}

.svc-cta-btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
}

/* --- Services Responsive --- */
@media (max-width: 992px) {
    .svc-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .svc-why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .svc-process-grid {
        flex-wrap: wrap;
        gap: 20px;
    }

    .svc-process-connector {
        display: none;
    }

    .svc-process-step {
        flex: 0 0 calc(50% - 20px);
        max-width: none;
    }
}

@media (max-width: 768px) {
    .svc-hero {
        padding: 80px 0 100px;
    }

    .svc-hero-inner h1 {
        font-size: 2.2rem;
    }

    .svc-grid {
        grid-template-columns: 1fr;
    }

    .svc-section-title {
        font-size: 1.8rem;
    }

    .svc-why-title {
        font-size: 1.8rem;
    }

    .svc-core-section,
    .svc-why-section,
    .svc-process-section {
        padding: 60px 0;
    }

    .svc-cta-box {
        padding: 40px 25px;
    }

    .svc-cta-box h2 {
        font-size: 1.6rem;
    }

    .svc-process-step {
        flex: 0 0 100%;
    }
}

/* =========================================
   15. USA PAGE
   ========================================= */

/* --- USA Hero --- */
.usa-hero {
    background: linear-gradient(135deg, #1a2a6c 0%, #b21f1f 50%, #fdbb2d 100%);
    padding: 130px 0 150px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: -40px;
}

.usa-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 20, 60, 0.55);
    z-index: 1;
}

.usa-hero-decor {
    position: absolute;
    pointer-events: none;
    z-index: 2;
}

.usa-decor-1 {
    top: 30px;
    left: -30px;
}

.usa-decor-2 {
    bottom: -20px;
    right: -15px;
}

.usa-hero-inner {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.usa-hero-flag {
    font-size: 3rem;
    display: block;
    margin-bottom: 15px;
    animation: sanFloat 3s ease-in-out infinite;
}

.usa-hero-inner h1 {
    font-size: 2.6rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
    line-height: 1.25;
}

.usa-hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 680px;
    margin: 0 auto 20px;
}

.usa-hero-breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.usa-hero-breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.usa-hero-breadcrumb a:hover {
    color: #fff;
}

.usa-hero-breadcrumb span {
    color: rgba(255, 255, 255, 0.9);
}

/* --- Overview Section --- */
.usa-overview-section {
    background: #fff;
    padding: 55px 0;
}

.usa-overview-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.usa-section-subtitle {
    color: #22c55e;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 600;
    margin-bottom: 10px;
}

.usa-overview-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 18px;
    line-height: 1.25;
}

.usa-overview-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 14px;
    font-size: 1rem;
}

.usa-overview-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.usa-stat-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 22px;
    border-left: 4px solid;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s;
}

.usa-stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.usa-stat-green {
    border-color: #22c55e;
}

.usa-stat-blue {
    border-color: #3b82f6;
}

.usa-stat-orange {
    border-color: #f59e0b;
}

.usa-stat-purple {
    border-color: #8b5cf6;
}

.usa-stat-icon {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 10px;
}

.usa-stat-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 6px;
}

.usa-stat-card p {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.5;
    margin: 0;
}

/* --- Why Choose USA --- */
.usa-why-section {
    background: #f8faf5;
    padding: 55px 0;
}

.usa-why-heading {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--brand-dark);
    text-align: center;
    margin-bottom: 50px;
}

.usa-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.usa-why-card {
    background: #fff;
    border-radius: 16px;
    padding: 35px 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s;
    position: relative;
    overflow: hidden;
}

.usa-why-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #22c55e, #166534);
    transform: scaleX(0);
    transition: transform 0.35s ease;
}

.usa-why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
}

.usa-why-card:hover::after {
    transform: scaleX(1);
}

.usa-why-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #166534, #22c55e);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    box-shadow: 0 5px 15px rgba(22, 101, 52, 0.3);
}

.usa-why-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 10px;
}

.usa-why-card p {
    color: #777;
    font-size: 0.93rem;
    line-height: 1.7;
    margin: 0;
}

/* --- Day 1 CPT & Programs --- */
.usa-programs-section {
    background: #fff;
    padding: 90px 0;
    border-top: 1px solid #f0f0f0;
}

.usa-programs-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 70px;
    align-items: center;
}

.usa-programs-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 15px;
    line-height: 1.25;
}

.usa-programs-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.usa-programs-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
}

.usa-programs-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.usa-pf-check {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: #dcfce7;
    color: #166534;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    transition: transform 0.3s, background 0.3s;
}

.usa-programs-feature:hover .usa-pf-check {
    transform: scale(1.15);
    background: #22c55e;
    color: #fff;
}

.usa-programs-feature span {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
}

.usa-programs-btn {
    display: inline-block;
    background: linear-gradient(135deg, #166534, #22c55e);
    color: #fff;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.35s;
    box-shadow: 0 6px 20px rgba(22, 101, 52, 0.3);
}

.usa-programs-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(22, 101, 52, 0.4);
    color: #fff;
}

.usa-programs-img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.usa-programs-img:hover {
    transform: scale(1.03);
}

/* --- Universities Section --- */
.usa-universities-section {
    background: #f8faf5;
    padding: 55px 0;
}

.usa-uni-heading {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--brand-dark);
    text-align: center;
    margin-bottom: 12px;
}

.usa-uni-desc {
    text-align: center;
    color: #666;
    max-width: 600px;
    margin: 0 auto 45px;
    font-size: 1rem;
    line-height: 1.7;
}

.usa-uni-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.usa-uni-tag {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 50px;
    padding: 10px 22px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--brand-dark);
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    cursor: default;
    white-space: nowrap;
}

.usa-uni-tag:hover {
    background: #166534;
    color: #fff;
    border-color: #166534;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(22, 101, 52, 0.2);
}

.usa-uni-tag span {
    color: #999;
    font-weight: 400;
    font-size: 0.8rem;
    margin-left: 5px;
}

.usa-uni-tag:hover span {
    color: rgba(255, 255, 255, 0.7);
}

/* --- USA CTA Section --- */
.usa-cta-section {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    padding: 50px 0;
}

.usa-cta-box {
    background: linear-gradient(135deg, #166534, #22c55e);
    border-radius: 24px;
    padding: 55px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 20px 60px rgba(22, 101, 52, 0.25);
}

.usa-cta-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.usa-cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 500px;
    margin-bottom: 15px;
}

.usa-cta-highlights {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.usa-cta-highlights span {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.88rem;
    font-weight: 500;
}

.usa-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 240px;
}

.usa-cta-btn-primary {
    background: #fff;
    color: #166534;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.usa-cta-btn-primary:hover {
    background: #f0fdf4;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.usa-cta-btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s;
}

.usa-cta-btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
}

/* --- USA Responsive --- */
@media (max-width: 992px) {
    .usa-overview-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .usa-programs-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .usa-cta-box {
        flex-direction: column;
        text-align: center;
    }

    .usa-cta-actions {
        min-width: auto;
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .usa-hero {
        padding: 90px 0 110px;
    }

    .usa-hero-inner h1 {
        font-size: 1.8rem;
    }

    .usa-hero-subtitle {
        font-size: 0.95rem;
    }

    .usa-why-grid {
        grid-template-columns: 1fr;
    }

    .usa-why-heading,
    .usa-uni-heading {
        font-size: 1.8rem;
    }

    .usa-overview-content h2,
    .usa-programs-content h2 {
        font-size: 1.7rem;
    }

    .usa-overview-section,
    .usa-why-section,
    .usa-programs-section,
    .usa-universities-section {
        padding: 60px 0;
    }

    .usa-overview-stats {
        grid-template-columns: 1fr;
    }

    .usa-cta-box {
        padding: 40px 25px;
    }

    .usa-uni-tag {
        font-size: 0.82rem;
        padding: 8px 16px;
    }
}

@media (max-width: 480px) {
    .usa-hero-flag {
        font-size: 2.2rem;
    }

    .usa-hero-inner h1 {
        font-size: 1.5rem;
    }

    .usa-cta-highlights {
        flex-direction: column;
        gap: 8px;
    }
}

/* =========================================
   16. UK PAGE
   ========================================= */

/* --- UK Hero --- */
.uk-hero {
    background: linear-gradient(135deg, #1b2a4a 0%, #c41e3a 55%, #1b2a4a 100%);
    padding: 130px 0 150px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: -40px;
}

.uk-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 25, 55, 0.5);
    z-index: 1;
}

.uk-hero-decor {
    position: absolute;
    pointer-events: none;
    z-index: 2;
}

.uk-decor-1 {
    top: 30px;
    left: -30px;
}

.uk-decor-2 {
    bottom: -20px;
    right: -15px;
}

.uk-hero-inner {
    position: relative;
    z-index: 3;
    max-width: 820px;
    margin: 0 auto;
    padding: 0 20px;
}

.uk-hero-flag {
    font-size: 3rem;
    display: block;
    margin-bottom: 15px;
    animation: sanFloat 3s ease-in-out infinite;
}

.uk-hero-inner h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
    line-height: 1.25;
}

.uk-hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 20px;
}

.uk-hero-breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.uk-hero-breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.uk-hero-breadcrumb a:hover {
    color: #fff;
}

.uk-hero-breadcrumb span {
    color: rgba(255, 255, 255, 0.9);
}

/* --- UK Section Subtitle --- */
.uk-section-subtitle {
    color: #c41e3a;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
}

/* --- Why Choose UK --- */
.uk-why-section {
    background: #fafbff;
    padding: 70px 0;
}

.uk-why-heading {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--brand-dark);
    text-align: center;
    margin-bottom: 50px;
}

.uk-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.uk-why-card {
    background: #fff;
    border-radius: 16px;
    padding: 35px 30px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s;
    position: relative;
    overflow: hidden;
}

.uk-why-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1b2a4a, #c41e3a);
    transform: scaleX(0);
    transition: transform 0.35s ease;
}

.uk-why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
}

.uk-why-card:hover::after {
    transform: scaleX(1);
}

.uk-why-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1b2a4a, #c41e3a);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    box-shadow: 0 5px 15px rgba(196, 30, 58, 0.3);
}

.uk-why-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 10px;
}

.uk-why-card p {
    color: #666;
    font-size: 0.93rem;
    line-height: 1.7;
    margin: 0;
}

/* --- UK Inquiry Form --- */
.uk-form-section {
    background: #fff;
    padding: 70px 0;
}

.uk-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 24px;
    padding: 50px 45px;
    box-shadow: 0 10px 50px rgba(27, 42, 74, 0.08);
    border: 1px solid rgba(27, 42, 74, 0.06);
}

.uk-form-header {
    text-align: center;
    margin-bottom: 35px;
}

.uk-form-icon {
    font-size: 2.2rem;
    display: block;
    margin-bottom: 10px;
}

.uk-form-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 8px;
}

.uk-form-header p {
    color: #888;
    font-size: 0.95rem;
}

.uk-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.uk-form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

.uk-req {
    color: #c41e3a;
}

.uk-form-group input,
.uk-form-group select,
.uk-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e0e4ec;
    border-radius: 10px;
    font-size: 0.95rem;
    color: #333;
    background: #f9fafd;
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
    font-family: inherit;
    box-sizing: border-box;
}

.uk-form-group input:focus,
.uk-form-group select:focus,
.uk-form-group textarea:focus {
    border-color: #1b2a4a;
    box-shadow: 0 0 0 3px rgba(27, 42, 74, 0.08);
    background: #fff;
}

.uk-form-group input::placeholder,
.uk-form-group textarea::placeholder {
    color: #aab0bf;
}

.uk-form-full {
    margin-bottom: 25px;
}

.uk-form-submit {
    display: inline-block;
    background: linear-gradient(135deg, #1b2a4a, #c41e3a);
    color: #fff;
    border: none;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.35s;
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.25);
    font-family: inherit;
}

.uk-form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.35);
}

/* --- UK Universities Section --- */
.uk-universities-section {
    background: #f8f9fd;
    padding: 70px 0;
}

.uk-uni-heading {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--brand-dark);
    text-align: center;
    margin-bottom: 12px;
}

.uk-uni-desc {
    text-align: center;
    color: #666;
    max-width: 600px;
    margin: 0 auto 45px;
    font-size: 1rem;
    line-height: 1.7;
}

.uk-uni-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.uk-uni-tag {
    background: #fff;
    border: 1px solid #e0e4ec;
    border-radius: 50px;
    padding: 10px 22px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--brand-dark);
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    cursor: default;
    white-space: nowrap;
}

.uk-uni-tag:hover {
    background: #1b2a4a;
    color: #fff;
    border-color: #1b2a4a;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(27, 42, 74, 0.2);
}

.uk-uni-tag span {
    color: #999;
    font-weight: 400;
    font-size: 0.8rem;
    margin-left: 5px;
}

.uk-uni-tag:hover span {
    color: rgba(255, 255, 255, 0.7);
}

/* --- UK CTA Section --- */
.uk-cta-section {
    background: linear-gradient(135deg, #eef1f9, #f4e8eb);
    padding: 50px 0;
}

.uk-cta-box {
    background: linear-gradient(135deg, #1b2a4a, #c41e3a);
    border-radius: 24px;
    padding: 55px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 20px 60px rgba(27, 42, 74, 0.25);
}

.uk-cta-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.uk-cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 500px;
    margin-bottom: 15px;
}

.uk-cta-highlights {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.uk-cta-highlights span {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.88rem;
    font-weight: 500;
}

.uk-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 240px;
}

.uk-cta-btn-primary {
    background: #fff;
    color: #1b2a4a;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.uk-cta-btn-primary:hover {
    background: #fef2f4;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.uk-cta-btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s;
}

.uk-cta-btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
}

/* --- UK Responsive --- */
@media (max-width: 992px) {
    .uk-cta-box {
        flex-direction: column;
        text-align: center;
    }

    .uk-cta-actions {
        min-width: auto;
        width: 100%;
        max-width: 300px;
    }

    .uk-form-wrapper {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .uk-hero {
        padding: 90px 0 110px;
    }

    .uk-hero-inner h1 {
        font-size: 1.9rem;
    }

    .uk-hero-subtitle {
        font-size: 0.95rem;
    }

    .uk-why-grid {
        grid-template-columns: 1fr;
    }

    .uk-why-heading,
    .uk-uni-heading {
        font-size: 1.8rem;
    }

    .uk-why-section,
    .uk-form-section,
    .uk-universities-section {
        padding: 50px 0;
    }

    .uk-form-grid {
        grid-template-columns: 1fr;
    }

    .uk-form-wrapper {
        padding: 30px 20px;
    }

    .uk-cta-box {
        padding: 40px 25px;
    }

    .uk-uni-tag {
        font-size: 0.82rem;
        padding: 8px 16px;
    }
}

@media (max-width: 480px) {
    .uk-hero-flag {
        font-size: 2.2rem;
    }

    .uk-hero-inner h1 {
        font-size: 1.5rem;
    }

    .uk-cta-highlights {
        flex-direction: column;
        gap: 8px;
    }

    .uk-why-heading {
        font-size: 1.5rem;
    }

    .uk-form-header h2 {
        font-size: 1.5rem;
    }
}

/* =========================================
   20. IRELAND PAGE STYLES (REDESIGN)
   ========================================= */

/* Hero Section */
.ireland-hero {
    position: relative;
    height: 85vh;
    min-height: 600px;
    background: url('https://upload.wikimedia.org/wikipedia/commons/thumb/6/62/Ireland_location_map.svg/1707px-Ireland_location_map.svg.png') no-repeat center right;
    background-size: contain;
    background-color: #f0fdf4;
    /* Light Green Tint */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    margin-top: -40px;
    overflow: hidden;
}

.ireland-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.7) 100%);
    z-index: 1;
}

.ireland-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.ireland-hero-flag {
    font-size: 4rem;
    display: block;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out;
}

.ireland-hero-inner h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #166534;
    /* Ireland Green */
    margin-bottom: 20px;
    line-height: 1.1;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.ireland-hero-subtitle {
    font-size: 1.2rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

/* Principles Section */
.ireland-principles-section {
    padding: 100px 0;
    background: #fff;
}

.ireland-principles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ireland-principles-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.ip-stat-card {
    background: #f0fdf4;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #dcfce7;
    transition: transform 0.3s;
}

.ip-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(22, 163, 74, 0.1);
}

.ip-stat-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #166534;
    margin-bottom: 5px;
}

.ip-stat-desc {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    font-weight: 600;
}

/* Why Choose Ireland Professional Grid */
.ireland-why-section {
    padding: 100px 0;
    background: #f8f9fa;
    text-align: center;
    /* Enforce centering */
}

.ireland-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* Forced 4 columns for desktop */
    gap: 50px;
    /* Even bigger gap */
    margin-top: 60px;
    align-items: stretch;
    /* Ensure all cards are same height */
    justify-content: center;
    /* Center grid */
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.ireland-why-card {
    background: #fff;
    padding: 60px 40px;
    /* Massive padding increase */
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    /* Stronger shadow */
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    /* Vertical layout */
    align-items: center;
    /* Center horizontally */
    text-align: center;
    /* Center text */
    height: 100%;
    position: relative;
    top: 0;
}

.ireland-why-card:hover {
    top: -10px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
    border-color: #22c55e;
}

.iw-icon-wrapper {
    width: 90px;
    /* Larger icon circle */
    height: 90px;
    background: #f0fdf4;
    border-radius: 50%;
    /* Circle */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: 0.3s;
}

.ireland-why-card:hover .iw-icon-wrapper {
    background: #166534;
    transform: scale(1.1);
}

.iw-icon {
    font-size: 36px;
    /* Larger icon */
    line-height: 1;
}

.iw-content {
    width: 100%;
}

.ireland-why-card h3 {
    font-size: 1.5rem;
    /* Larger Heading */
    font-weight: 700;
    margin-bottom: 15px;
    color: #1f2937;
    margin-top: 0;
}

.ireland-why-card p {
    font-size: 1.05rem;
    /* Larger Text */
    color: #555;
    line-height: 1.8;
    margin: 0;
}

/* CTA Section */
.ireland-cta-section {
    padding: 100px 0;
}

.ireland-cta-box {
    background: linear-gradient(135deg, #166534 0%, #14532d 100%);
    border-radius: 30px;
    padding: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    color: #fff;
    box-shadow: 0 30px 60px rgba(22, 101, 52, 0.25);
}

.ireland-cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="50" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: 60px 60px;
    opacity: 0.2;
}

.ireland-cta-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.ireland-cta-content h2 {
    color: #fff;
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.ireland-cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    line-height: 1.6;
}

.ireland-cta-btn-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 15px;
}

.btn-ireland-primary {
    background: #fff;
    color: #166534;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    display: inline-block;
}

.btn-ireland-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background: #f0fdf4;
}

.btn-ireland-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-block;
    backdrop-filter: blur(5px);
}

.btn-ireland-secondary:hover {
    background: #fff;
    color: #166534;
    border-color: #fff;
}

/* Responsiveness */
@media (max-width: 1200px) {
    .ireland-cta-box {
        padding: 60px;
    }
}

@media (max-width: 992px) {
    .ireland-hero h1 {
        font-size: 3.5rem;
    }

    .ireland-principles-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    /* Tablet: 2 Columns */
    .ireland-why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .ireland-cta-box {
        flex-direction: column;
        text-align: center;
        padding: 50px 30px;
    }

    .ireland-cta-content {
        margin-bottom: 40px;
    }

    .ireland-cta-btn-wrapper {
        flex-direction: column;
        width: 100%;
        max-width: 350px;
    }

    .btn-ireland-primary,
    .btn-ireland-secondary {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .ireland-hero h1 {
        font-size: 2.5rem;
    }

    .ireland-principles-stats {
        grid-template-columns: 1fr;
    }

    /* Mobile: 1 Column */
    .ireland-why-grid {
        grid-template-columns: 1fr;
    }

    .ireland-why-section {
        padding: 60px 0;
    }

    .ireland-cta-content h2 {
        font-size: 2rem;
    }
}

/* =========================================
   AUSTRALIA PAGE STYLES
   ========================================= */

/* Hero */
.australia-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://azure-magpie-825570.hostingersite.com/wp-content/uploads/2026/02/ireland-image.png');
    background-size: cover;
    background-position: center;
    padding: 150px 0;
    color: #fff;
    text-align: center;
}

.australia-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.australia-hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.australia-hero p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
}

.btn-australia-hero {
    display: inline-block;
    padding: 18px 45px;
    background: #ffc107;
    /* Aussie Gold */
    color: #000;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-australia-hero:hover {
    background: #ffb300;
    transform: translateY(-3px);
}

/* Intro Section */
.australia-intro-section {
    padding: 100px 0;
    background: #fff;
}

.australia-intro-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-left h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
    line-height: 1.4;
}

.intro-left p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
}

.intro-stat-card {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid #eee;
}

.intro-stat-num {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    color: #16a085;
    /* Teal */
    line-height: 1;
    margin-bottom: 10px;
}

.intro-stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Why Choose Australia - Premium Emerald Redesign */
.australia-why-section {
    padding: 120px 0;
    /* Deep Emerald Green Gradient (Dark edges, lighter center) */
    background: radial-gradient(circle at center, #0d5238 0%, #032418 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Background Glow Effect */
.australia-why-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.australia-why-section .section-title {
    font-size: 3.5rem;
    /* ~56px */
    font-weight: 700;
    color: #ffffff !important;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    z-index: 1;
}

/* Accent Underline */
.australia-why-section .section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #d4af37;
    /* Gold Accent */
    margin: 15px auto 0;
    border-radius: 2px;
}

.australia-why-section .section-subtitle {
    font-size: 1.125rem;
    /* ~18px */
    color: #a3c2b8;
    /* Muted light green/gray */
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 1;
}

/* Override parent container to allow full-width centering */
.australia-why-section .sanjeev-container {
    max-width: 100%;
    padding: 0 25px;
}

.australia-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
    width: 100%;
    /* Restore max-width to prevent infinite stretching */
    max-width: 1500px;
    /* Center the container */
    margin-left: auto;
    margin-right: auto;
    align-items: stretch;
    /* Aggressive Left Shift for Visual Center */
    transform: translateX(-80px);
}

.australia-why-card {
    /* Soft Elevated Card Style */
    background: #0f4633;
    /* Slightly lighter than section bg */
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.australia-why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: #12523b;
    /* Creating visual lift */
    border-color: rgba(212, 175, 55, 0.3);
    /* Subtle gold border on hover */
}

.aw-icon-wrapper {
    width: 70px;
    height: 70px;
    /* Soft Gold Background */
    background: rgba(212, 175, 55, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.aw-icon-wrapper:hover {
    color: #000;
    transform: scale(1.1);
}

.aw-icon {
    font-size: 28px;
    color: #ffffff;
    /* White Icon */
    line-height: 1;
}

.australia-why-card h3 {
    font-size: 1.5rem;
    /* ~24px */
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
    margin-top: 0;
}

.australia-why-card p {
    font-size: 1.05rem;
    /* ~17px */
    color: #d1e3dd;
    /* Light readable text */
    line-height: 1.7;
    margin: 0;
}

/* Universities List */
.australia-uni-section {
    padding: 100px 0;
    background: #fff;
}

.uni-list-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2c3e50;
}

.australia-uni-list {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #eee;
}

.australia-uni-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    /* CSS Columns for Multi-Column List */
    column-count: 3;
    column-gap: 40px;
}

.australia-uni-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
    color: #444;
    transition: 0.2s;
    break-inside: avoid;
    /* Prevent split across cols */
}

.australia-uni-list li:hover {
    color: #000;
    padding-left: 5px;
    border-left: 3px solid #ffc107;
}

/* Responsive */
@media (max-width: 992px) {
    .australia-hero h1 {
        font-size: 3rem;
    }

    .australia-intro-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .australia-why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .australia-uni-list ul {
        column-count: 2;
    }
}

@media (max-width: 768px) {
    .australia-hero h1 {
        font-size: 2.5rem;
    }

    .australia-why-grid {
        grid-template-columns: 1fr;
    }

    .australia-uni-list ul {
        column-count: 1;
    }
}

/* Fix for Why Sanjeev Consultancy cards alignment */
.campus-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid #eee;
    transition: transform 0.3s, box-shadow 0.3s;
}

.campus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.campus-card .campus-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.campus-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--brand-dark);
}

.campus-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* =========================================
   DLEAR FOOTER STYLES (Improved & Mobile Responsive)
   ========================================= */
.dlear-footer {
    background: #111;
    color: #fff;
    padding: 80px 0 30px;
    font-size: 0.95rem;
}

.dlear-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    letter-spacing: -1px;
}

.footer-col-1 p {
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    display: flex;
    /* Center the letter */
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: 0.3s;
    font-weight: bold;
    /* Make letters bold */
}

.footer-social a:hover {
    background: var(--brand-primary, #a2c63e);
    color: #000;
    transform: translateY(-3px);
}

.footer-social a svg {
    display: block;
    /* Remove baseline gap */
}

.dlear-footer h3 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #fff;
    font-weight: 600;
}

.dlear-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dlear-footer ul li {
    margin-bottom: 15px;
}

.dlear-footer ul li a {
    color: #aaa;
    text-decoration: none;
    transition: 0.2s;
    display: inline-block;
}

.dlear-footer ul li a:hover {
    color: var(--brand-primary, #a2c63e);
    padding-left: 5px;
}

.footer-contact-list li {
    color: #aaa;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

/* Copyright Bar */
.dlear-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.dlear-copyright p {
    color: #777;
    margin: 0;
    font-size: 0.9rem;
}

.footer-links a {
    color: #777;
    text-decoration: none;
    margin-left: 20px;
    font-size: 0.9rem;
    transition: 0.2s;
}

.footer-links a:hover {
    color: #fff;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .dlear-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
}

@media (max-width: 600px) {
    .dlear-footer {
        padding: 60px 0 30px;
    }

    .dlear-footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-col-1 p {
        margin: 0 auto 25px;
        /* Center text */
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact-list li {
        justify-content: center;
    }

    .dlear-copyright {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .footer-links a {
        margin: 0;
    }
}