/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
    --primary: #FFD700;
    /* Gold Accent */
    --primary-hover: #FDB931;
    --secondary: #4ECDC4;
    /* Teal (kept for balance) */
    --dark: #120A2A;
    /* Deep Purple Background */
    --darker: #0A0518;
    /* Darker Purple */
    --header-bg: #1E1135;
    /* Header Purple */
    --light: #F7FFF7;
    /* Off White */
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--dark);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--darker);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Header */
header {
    background: var(--header-bg);
    border-bottom: 2px solid rgba(255, 215, 0, 0.1);
    /* Subtle Gold Border */
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: 90px;
    display: flex;
    align-items: center;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 30px;
    /* Add minimum gap between all header elements */
}

/* Centered Nav Links with robust spacing */
.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
    margin: 0 auto;
    padding: 0 40px;
    /* Force buffer zone */
    flex: 1;
    /* Take up available space */
    justify-content: center;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
    margin-left: 30px;
    /* Extra separation from links */
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-transform: uppercase;
    font-size: 1.2rem;
    /* Increased from 0.9rem */
    letter-spacing: 1.5px;
    font-weight: 800;
    line-height: 1.1;
    text-decoration: none;
    /* Ensure no underline */
}

.logo-img {
    height: 50px;
    /* Reduced to fix layout */
    max-height: 50px;
    /* Enforcement */
    width: auto;
    max-width: 200px;
    /* Prevent wide images from breaking layout */
    object-fit: contain;
    margin-right: 30px;
    /* Explicit gap */
}

.logo-icon {
    font-size: 3.5rem;
    /* Increased from 2.5rem */
    color: var(--primary);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    font-size: 1rem;
    color: #ddd;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: white;
    font-size: 1.1rem;
    transition: 0.2s;
}

.social-btn:hover {
    transform: scale(1.1);
}

.bg-fb {
    background: #3b5998;
}

.bg-wa {
    background: #25D366;
}

.bg-in {
    background: #E1306C;
}

.bg-yt {
    background: #FF0000;
}

.header-phone {
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
    letter-spacing: 0.5px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #1a0b2e;
    /* Deep Dark Purple */
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    /* Offset for fixed header */
}

/* Background Stars Effect */
.hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(white, rgba(255, 255, 255, .2) 2px, transparent 3px),
        radial-gradient(white, rgba(255, 255, 255, .15) 1px, transparent 2px),
        radial-gradient(white, rgba(255, 255, 255, .1) 2px, transparent 3px);
    background-size: 550px 550px, 350px 350px, 250px 250px;
    background-position: 0 0, 40px 60px, 130px 270px;
    opacity: 0.8;
}

.hero-content {
    max-width: 600px;
    z-index: 2;
    padding: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero h1 span.highlight {
    color: #00d280;
    /* Bright Green Highlgiht */
    font-weight: 800;
    text-decoration: underline;
    text-decoration-color: rgba(0, 210, 128, 0.3);
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #ccc;
    font-style: italic;
    border-left: 3px solid #00d280;
    padding-left: 15px;
}

.hero .btn-primary {
    background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    box-shadow: 0 5px 20px rgba(37, 117, 252, 0.4);
}

.hero .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 117, 252, 0.6);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
}

.stat-item i {
    font-size: 1.5rem;
    color: #fff;
    /* White Icon as per ref */
}

/* Hero Visuals (Right Side) */
.hero-visuals {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    position: relative;
    z-index: 2;
    padding: 20px;
}

.hero-card {
    background: #2a1b3d;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.hero-card img {
    width: 100%;
    display: block;
}

/* Staggered Animation */
.hero-card:nth-child(1) {
    animation-delay: 0s;
}

.hero-card:nth-child(2) {
    animation-delay: 2s;
    margin-top: 40px;
}

.hero-card:nth-child(3) {
    grid-column: span 2;
    width: 60%;
    margin: -40px auto 0;
    animation-delay: 4s;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Wavy Divider */
.custom-shape-divider-bottom-1 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 3;
}

.custom-shape-divider-bottom-1 svg {
    position: relative;
    display: block;
    width: calc(138% + 1.3px);
    height: 120px;
    transform: rotateY(180deg);
}

.custom-shape-divider-bottom-1 .shape-fill {
    fill: #0A0518;
    /* Darker purple to match Features section */
}

/* Fallback for empty visuals */
.hero-image {
    display: none;
    /* Deprecated in new design */
}

/* Mobile Responsiveness */
@media (max-width: 968px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 120px;
        height: auto;
        padding-bottom: 100px;
    }

    .hero-content {
        margin-bottom: 50px;
    }

    .hero p {
        border-left: none;
        padding-left: 0;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visuals {
        width: 100%;
    }
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: #086F83;
    /* Deep Teal */
    color: white;
    overflow-x: hidden;
    /* Prevent horizontal scroll from animations */
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    /* Better fit for 5 items */
    gap: 50px;
    /* Space for arrows */
    margin-top: 60px;
    padding: 0 20px;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card {
    background: #e0fbfc;
    /* Very Light Blue */
    padding: 40px 20px;
    border-radius: 25px;
    /* Requested Round Box */
    text-align: center;
    transition: all 0.4s ease;
    color: #333;
    position: relative;
    border: none;
    margin-top: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);

    /* Animation */
    animation: fadeUp 0.8s ease-out forwards;
    opacity: 0;
}

/* Stagger Animations */
.feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.3s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.5s;
}

.feature-card:nth-child(4) {
    animation-delay: 0.7s;
}

.feature-card:nth-child(5) {
    animation-delay: 0.9s;
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Step Badges */
.step-number {
    background: #fff;
    color: #086F83;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid #086F83;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 5;
}

/* Icons */
.feature-icon {
    font-size: 3.5rem;
    color: #111;
    margin: 30px 0 20px;
    transition: transform 0.3s;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    color: #086F83;
}

/* Typography */
.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #000;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 0.5px;
}

.feature-card p {
    font-size: 0.9rem;
    color: #444;
    line-height: 1.6;
    font-weight: 500;
}

/* Desktop Connector Arrows */
@media (min-width: 992px) {
    .feature-card::after {
        content: '\f061';
        /* FA Arrow Right */
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        position: absolute;
        right: -40px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 1.8rem;
        color: rgba(255, 255, 255, 0.7);
        z-index: 1;
    }

    .feature-card:last-child::after {
        content: none;
    }
}

/* Courses Section */
.courses {
    padding: 100px 0;
    background: var(--dark);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.course-card {
    background: var(--darker);
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s;
    border: 1px solid var(--glass-border);
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.course-img {
    height: 200px;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-size: 3rem;
    background-size: cover;
    background-position: center;
}

.course-content {
    padding: 30px;
}

.course-price {
    display: inline-block;
    background: rgba(78, 205, 196, 0.2);
    color: var(--secondary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.course-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.course-card p {
    color: #aaa;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: var(--darker);
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--glass);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}

.stars {
    color: var(--accent);
    margin-bottom: 15px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    color: #ddd;
}

.student-name {
    font-weight: 700;
    color: var(--primary);
}

/* Footer */
footer {
    padding: 50px 0;
    text-align: center;
    background: #111;
    color: #777;
    border-top: 1px solid #222;
}

footer p {
    margin-top: 10px;
}

/* Mobile */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }

    .hero-image {
        display: none;
    }

    /* Hide hero image on mobile to focus on text */
    .hero-content {
        text-align: center;
        margin: 0 auto;
    }
}

/* Main Goal Section */
.main-goal {
    padding: 80px 0;
    background: #fff;
    /* White background as requested */
    color: #333;
    text-align: center;
}

.main-goal-text {
    max-width: 900px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.goal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.goal-card-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.goal-course-card {
    background: #2a1b3d;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.goal-course-card:hover {
    transform: translateY(-5px);
}

.goal-course-card img {
    width: 100%;
    display: block;
}

.goal-placeholder {
    height: 200px;
    background: #2a1b3d;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    padding: 20px;
}

/* Host Section */
.host-section {
    padding: 100px 0;
    background: #fff;
    color: #333;
}

.host-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

.host-content {
    flex: 1;
    min-width: 300px;
}

.host-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a0b2e;
}

.host-title .highlight-text {
    color: #5d3eff;
    /* Purple Highlight */
}

.host-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.host-list {
    list-style: none;
    margin-bottom: 40px;
}

.host-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #333;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 15px;
}

.host-list li i {
    color: #5d3eff;
    /* Purple Check */
    font-size: 1.2rem;
}

.host-btn {
    background: #1a0b2e;
    color: #fff;
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 8px;
    text-transform: capitalize;
}

.host-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    min-width: 300px;
}

.image-wrapper {
    position: relative;
    max-width: 400px;
}

.image-wrapper img {
    width: 100%;
    border-radius: 20px;
    position: relative;
    z-index: 2;
}

.host-badge {
    background: #FFEB3B;
    /* Yellow */
    color: #000;
    font-weight: 900;
    font-size: 1.8rem;
    padding: 10px 20px;
    text-transform: uppercase;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) rotate(-2deg);
    white-space: nowrap;
    z-index: 3;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    font-family: 'Arial Black', sans-serif;
}

.host-signature {
    text-align: center;
    margin-top: 40px;
    font-family: 'Brush Script MT', cursive;
    font-size: 1.5rem;
    color: #555;
    font-weight: bold;
}

/* Success / Process Section */
.process-section {
    padding: 80px 0;
    background: #1a0b2e;
    /* Dark Purple from reference */
    color: white;
    text-align: center;
}

.box-center {
    display: flex;
    justify-content: center;
}

.process-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: white;
}

.process-divider {
    width: 60%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 20px auto 50px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-content: center;
    /* Center the grid items */
    max-width: 1200px;
    margin: 0 auto;
}

.process-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 40px 20px;
    transition: transform 0.3s, background 0.3s;
}

.process-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.process-icon {
    font-size: 3rem;
    color: #00ff88;
    /* Neon Green from reference */
    margin-bottom: 25px;
}

.process-icon i {
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.4));
}

.process-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.5px;
}

/* Instructors Section */
.instructors-section {
    padding: 80px 0;
    background: #5D3EFF;
    /* Bright Purple from reference */
    color: white;
    text-align: center;
}

.instructor-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 50px;
}

.instructor-grid {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: marquee 50s linear infinite;
}

.instructor-grid:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.instructor-card {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    /* Dynamic dark gradient bg */
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    width: 350px;
    /* Increased from 300px */
    height: 450px;
    /* Increased from 350px */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    flex-shrink: 0;
    /* Prevent squishing */
}

.inst-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.inst-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inst-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    text-align: left;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.inst-tag {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #FFEB3B;
    font-weight: bold;
    margin-bottom: 5px;
}

.inst-info h3 {
    font-size: 1.4rem;
    line-height: 1.2;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-weight: 900;
}

.inst-name {
    font-size: 0.9rem;
    background: #FF9800;
    color: white;
    padding: 2px 10px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 10px;
}

.inst-live {
    font-size: 0.8rem;
    color: white;
    background: #ff0000;
    padding: 2px 8px;
    border-radius: 5px;
    display: inline-block;
}

.dot {
    height: 8px;
    width: 8px;
    background-color: white;
    border-radius: 50%;
    display: inline-block;
}

/* Footer Section */
.footer-section {
    background: #0f001e;
    /* Deep dark purple */
    color: white;
    padding: 60px 0 20px;
    position: relative;
    border-top: 1px solid #2a1b3d;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.brand-col .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.brand-col .logo img {
    height: 60px;
}

.footer-col h3 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: white;
    text-transform: uppercase;
    font-weight: 700;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #00ff88;
}

/* Socials */
.footer-socials {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.fs-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    color: white;
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.fs-icon:hover {
    transform: translateY(-3px);
}

.fs-icon.fb {
    background: #3b5998;
}

.fs-icon.wa {
    background: #25d366;
}

.fs-icon.in {
    background: #e1306c;
}

.fs-icon.yt {
    background: #ff0000;
}

/* Buttons */
.btn-book {
    display: block;
    background: #2D9CDB;
    /* Blue from ref */
    color: white;
    text-align: center;
    padding: 12px;
    border-radius: 5px;
    font-weight: bold;
    margin-bottom: 15px;
    text-decoration: none;
}

.btn-phone {
    display: block;
    background: #FFE600;
    /* Yellow from ref */
    color: black;
    text-align: center;
    padding: 12px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    padding: 5px 15px;
    border-radius: 20px;
    color: white;
}

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #5D3EFF;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

/ *   - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -           R E S P O N S I V E   &   M O B I L E   N A V I G A T I O N   A D D I T I O N S     - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -   * /         / *   M o b i l e   M e n u   B u t t o n   -   H i d d e n   b y   d e f a u l t   o n   D e s k t o p   * /     . m o b i l e - t o g g l e    {
                 d i s p l a y :    n o n e ;
                 f o n t - s i z e :    1 . 8 r e m ;
                 c o l o r :    w h i t e ;
                 c u r s o r :    p o i n t e r ;
                 z - i n d e x :    1 0 0 1 ;
         
}

         / *   T a b l e t   &   M o b i l e   S t y l e s   ( M a x   W i d t h   9 9 2 p x )   * /     @ m e d i a   ( m a x - w i d t h :   9 9 2 p x )    {
                     / *   H e a d e r   A d j u s t m e n t s   * /             h e a d e r    {
                             p a d d i n g :    0   2 0 p x ;
                             j u s t i f y - c o n t e n t :    s p a c e - b e t w e e n ;
                     
    }

                     n a v    {
                             j u s t i f y - c o n t e n t :    s p a c e - b e t w e e n ;
                     
    }

                     / *   H i d e   D e s k t o p   N a v   L i n k s   &   A c t i o n s   b y   d e f a u l t   * /             . n a v - l i n k s ,
                 . n a v - a c t i o n s    {
                             p o s i t i o n :    f i x e d ;
                             t o p :    0 ;
                             r i g h t :    - 1 0 0 % ;
                             / *   S l i d e   o u t   * /                     h e i g h t :    1 0 0 v h ;
                             b a c k g r o u n d :    r g b a ( 1 5 ,    0 ,    3 0 ,    0 . 9 8 ) ;
                             / *   D e e p   P u r p l e   O v e r l a y   * /                     b a c k d r o p - f i l t e r :    b l u r ( 1 0 p x ) ;
                             f l e x - d i r e c t i o n :    c o l u m n ;
                             j u s t i f y - c o n t e n t :    c e n t e r ;
                             a l i g n - i t e m s :    c e n t e r ;
                             w i d t h :    1 0 0 % ;
                             m a x - w i d t h :    3 0 0 p x ;
                             t r a n s i t i o n :    r i g h t   0 . 4 s   e a s e ;
                             z - i n d e x :    9 9 9 ;
                             b o x - s h a d o w :    - 5 p x   0   2 0 p x   r g b a ( 0 ,    0 ,    0 ,    0 . 5 ) ;
                     
    }

                     . n a v - l i n k s    {
                             p a d d i n g - t o p :    8 0 p x ;
                             / *   S p a c e   f o r   a c t i o n s   * /             
    }

                     / *   W h e n   A c t i v e   ( T o g g l e d   v i a   J S )   * /             . n a v - l i n k s . a c t i v e    {
                             r i g h t :    0 ;
                     
    }

                     / *   A c t i o n s   u s u a l l y   s t i c k   t o   b o t t o m   o r   m e r g e   i n t o   l i n k s   f o r   m o b i l e   * /             . n a v - a c t i o n s    {
                             d i s p l a y :    n o n e ;
                             / *   S i m p l i f y :    o f t e n   b e t t e r   t o   m e r g e   a c t i o n s   i n t o   t h e   m a i n   m e n u   l i s t   f o r   m o b i l e   * /             
    }

                     / *   H o w e v e r ,
       f o r   t h i s   s p e c i f i c   s i t e ,
       l e t ' s   m e r g e   t h e m   v i s u a l l y   v i a   J S   o r   j u s t   s i m p l e   C S S   a d j u s t m e n t s   * / 
            / *   A l t e r n a t i v e :   S h o w   N a v   A c t i o n s   b e l o w   L i n k s   i n s i d e   t h e   m o b i l e   m e n u   * /             . n a v - m o b i l e - c o n t a i n e r    {
                             p o s i t i o n :    f i x e d ;
                             t o p :    0 ;
                             r i g h t :    - 1 0 0 % ;
                             w i d t h :    8 0 % ;
                             m a x - w i d t h :    3 0 0 p x ;
                             h e i g h t :    1 0 0 v h ;
                             b a c k g r o u n d :    # 1 a 0 b 2 e ;
                             z - i n d e x :    1 0 0 0 ;
                             t r a n s i t i o n :    0 . 3 s ;
                             d i s p l a y :    f l e x ;
                             f l e x - d i r e c t i o n :    c o l u m n ;
                             a l i g n - i t e m s :    c e n t e r ;
                             j u s t i f y - c o n t e n t :    c e n t e r ;
                             g a p :    3 0 p x ;
                             b o x - s h a d o w :    - 1 0 p x   0   3 0 p x   r g b a ( 0 ,    0 ,    0 ,    0 . 5 ) ;
                     
    }

                     . n a v - m o b i l e - c o n t a i n e r . a c t i v e    {
                             r i g h t :    0 ;
                     
    }

                     . m o b i l e - t o g g l e    {
                             d i s p l a y :    b l o c k ;
                     
    }

                     / *   G r i d s   t o   S i n g l e   C o l u m n   * /             . a b o u t - g r i d ,
                 . c o n t a c t - g r i d ,
                 . p r o c e s s - g r i d ,
                 . c o u r s e s - g r i d ,
                 . t e s t i m o n i a l s - g r i d    {
                             g r i d - t e m p l a t e - c o l u m n s :    1 f r    ! i m p o r t a n t ;
                     
    }

                     / *   T y p o g r a p h y   S c a l i n g   * /             . h e r o   h 1    {
                             f o n t - s i z e :    2 . 8 r e m ;
                     
    }

                     . s e c t i o n - t i t l e    {
                             f o n t - s i z e :    2 r e m ;
                     
    }

                     / *   P a d d i n g   A d j u s t m e n t s   * /             . s e c t i o n - p a d d i n g ,
                 s e c t i o n    {
                             p a d d i n g :    6 0 p x   0 ;
                     
    }

                     / *   S t a t s   * /             . h e r o - s t a t s    {
                             j u s t i f y - c o n t e n t :    c e n t e r ;
                     
    }

                     / *   H e r o   V i s u a l s   * /             . h e r o - v i s u a l s    {
                             d i s p l a y :    n o n e ;
                             / *   H i d e   c o m p l e x   3 D   c a r d s   o n   m o b i l e   f o r   p e r f o r m a n c e / s p a c e   * /             
    }

         
}

         / *   M o b i l e   S m a l l   ( M a x   W i d t h   5 7 6 p x )   * /     @ m e d i a   ( m a x - w i d t h :   5 7 6 p x )    {
                 . h e r o   h 1    {
                             f o n t - s i z e :    2 . 2 r e m ;
                     
    }

                     . l o g o    {
                             f o n t - s i z e :    1 . 1 r e m ;
                     
    }

                     . b t n    {
                             w i d t h :    1 0 0 % ;
                             t e x t - a l i g n :    c e n t e r ;
                             m a r g i n - b o t t o m :    1 0 p x ;
                     
    }

                     . f o o t e r - c o n t e n t    {
                             t e x t - a l i g n :    c e n t e r ;
                     
    }

                     . f o o t e r - c o l    {
                             m i n - w i d t h :    1 0 0 % ;
                     
    }

                     . f o r m - b o x    {
                             p a d d i n g :    2 0 p x ;
                     
    }

         
}

     