/* ==========================================================================
   ABED SIR ACADEMY PORTFOLIO - MAIN STYLESHEET
   ========================================================================== */

:root {
    --primary-color: #0f172a;    /* Deep Navy / Slate 900 */
    --secondary-color: #1e293b;  /* Dark Slate 800 */
    --accent-color: #ea580c;     /* Vibrant University Orange 600 */
    --accent-hover: #c2410c;     /* Orange 700 */
    --text-main: #334155;        /* Soft Slate Text 700 */
    --text-dark: #0f172a;        /* Heading Color */
    --text-light: #f8fafc;       /* Off-white Text */
    --text-muted: #64748b;       /* Muted Slate Gray */
    --bg-main: #f8fafc;          /* Modern Light Gray Page Background */
    --bg-card: #ffffff;          /* Card Background */
    --border-color: #e2e8f0;     /* Border gray */
    --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --radius: 8px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Typography */
h1, h2, h3, h4 {
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.25;
}

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

/* Header & Global Navigation */
header {
    background-color: var(--primary-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 2rem;
}

.logo a {
    color: var(--text-light);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--accent-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: #cbd5e1;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
}

.nav-links a:hover, 
.nav-links a.active {
    color: var(--text-light);
}

.nav-links a.active {
    border-bottom-color: var(--accent-color);
}

.nav-cta-btn {
    background-color: var(--accent-color);
    color: var(--text-light) !important;
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius);
    font-weight: 600 !important;
    box-shadow: var(--shadow-sm);
}

.nav-cta-btn:hover {
    background-color: var(--accent-hover);
    transform: translateY(-1px);
}

/* Hamburger Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.menu-toggle span {
    width: 24px;
    height: 3px;
    background-color: var(--text-light);
    border-radius: 2px;
    transition: var(--transition);
}

/* Main Layout Wrapper */
main {
    flex: 1;
}

.container {
    max-width: 100%;
    margin:10px  85px;
    padding: 3rem 0rem;
}
@media {
    .container{
        padding: 0;
        margin:5px 15px;
        padding-left: 0;
        padding-right: 0;
    }
}

/* Reusable Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.75rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--text-light);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-2px);
}

/* ==========================================================================
   PAGE-SPECIFIC STYLES
   ========================================================================== */

/* HOME PAGE */
.hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: var(--text-light);
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(234, 88, 12, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-tagline {
    background-color: rgba(234, 88, 12, 0.15);
    color: #f6840a;
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid rgba(234, 88, 12, 0.3);
    
}

.hero h1 {
    color: var(--text-light);
    font-size: 3rem;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}

.hero p {
    color: #94a3b8;
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
}

/* Stats Counter Grid */
.stats-bar {
    background-color: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
    padding: 2.5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 0.25rem;
}

.stat-item p {
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Features/Value Section */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem;
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: var(--bg-card);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: #cbd5e1;
}

.feature-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 5.5rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Home Courses Preview Banner */
.preview-banner {
    background-color: var(--secondary-color);
    color: var(--text-light);
    border-radius: var(--radius);
    padding: 3.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.preview-text h2 {
    color: var(--text-light);
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.preview-text p {
    color: #94a3b8;
}

/* ABOUT PAGE */
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.about-graphic {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: var(--radius);
    aspect-ratio: 4/5;
    position: relative;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.05);
    overflow: hidden;
}

.about-graphic-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    border-radius: var(--radius);
    color: var(--text-light);
    text-align: center;
}

.about-graphic-badge h4 {
    color:#ec6714;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.about-graphic-badge p {
    font-size: 0.85rem;
    color: #ec6714;
}

.about-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.about-text p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}

.pedagogy-block {
    background-color: var(--bg-card);
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    margin-top: 2rem;
    border-radius: 0 var(--radius) var(--radius) 0;
    box-shadow: var(--shadow-sm);
}

.pedagogy-block h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}


@media (max-width:768px){

    .about-graphic-badge{
        bottom: 10px;
        left: 10px;
        right: 10px;
        padding: 12px;
    }

    .about-graphic-badge h4{
        font-size:18px;
    }

    .about-graphic-badge p{
        font-size:13px;
    }
}
.about-graphic img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* COURSES PAGE */
/* ====================================
   COURSES PAGE
==================================== */

.courses-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
    gap:40px;
    margin-top:50px;
}

.course-card{
    background:#ffffff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:all .3s ease;
}

.course-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 40px rgba(0,0,0,0.15);
}

.course-image{
    width:100%;
    height:260px;
    overflow:hidden;
}

.course-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:flex;
}

.course-content{
    padding:28px;
}

.course-content h3{
    font-size:1.6rem;
    color:#0ea5e9;
    margin-bottom:15px;
    font-weight:700;
}

.course-content p{
    font-size:1rem;
    color:#475569;
    line-height:1.8;
    margin-bottom:25px;
}

.course-btn{
    display:inline-block;
    background:#f97316;
    color:#ffffff;
    padding:14px 28px;
    border-radius:12px;
    font-weight:600;
    transition:0.3s;
    text-align: center;
}

.course-btn:hover{
    background:#ea580c;
    transform:translateY(-2px);
}

/* Filter Buttons */

.filter-tabs{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
    margin-bottom:40px;
}

.tab-btn{
    border:none;
    padding:12px 24px;
    border-radius:50px;
    background:#ffffff;
    cursor:pointer;
    font-weight:600;
    transition:.3s;
    box-shadow:0 4px 12px rgba(0,0,0,.08);
}

.tab-btn.active,
.tab-btn:hover{
    background:#0ea5e9;
    color:#fff;
}

/* Responsive */

@media(max-width:768px){

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

    .course-image{
        height:220px;
    }

    .course-content{
        padding:22px;
    }

    .course-content h3{
        font-size:1.3rem;
    }
}
/* CONTACT PAGE */
.contact-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
}

.contact-form-wrapper {
    background-color: var(--bg-card);
    padding: 3rem;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.contact-form-wrapper h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.form-input, .form-textarea, .form-select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.95rem;
    background-color: #f8fafc;
    transition: var(--transition);
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
    outline: none;
    border-color: var(--accent-color);
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.1);
}

.form-submit-btn {
    width: 100%;
    padding: 0.85rem;
}

.contact-info-panel h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.info-cards-stack {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.info-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

.info-card:hover {
    border-color: #cbd5e1;
    transform: translateX(4px);
}

.info-card-icon {
    width: 42px;
    height: 42px;
    background-color: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.info-card-details h4 {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-card-details p, .info-card-details a {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

.social-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.social-tile {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 1rem;
    border-radius: var(--radius);
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.social-tile.yt-tile {
    border-left: 4px solid #ef4444;
}

.social-tile.insta-tile {
    border-left: 4px solid #ec4899;
}

.social-tile:hover {
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

/* Notification banner styling */
.alert-banner {
    background-color: #dcfce7;
    border: 1px solid #bbf7d0;
    color: #15803d;
    padding: 1rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    font-weight: 500;
    display: none;
}

/* ==========================================================================
   GLOBAL FOOTER
   ========================================================================== */
footer {
    background-color: var(--primary-color);
    color: #cbd5e1;
    padding: 4rem 2rem 2rem;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    border-bottom: 1px solid #334155;
    padding-bottom: 3rem;
}

.footer-brand h3 {
    color: var(--text-light);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-brand h3 span {
    color: var(--accent-color);
}

.footer-brand p {
    color: #94a3b8;
    font-size: 0.95rem;
    max-width: 320px;
}

.footer-links h4 {
    color: var(--text-light);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.25rem;
}

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

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links ul li a {
    color: #94a3b8;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--text-light);
    padding-left: 2px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    display: flex;
    justify-content:center;
    align-items: center;
    text-align: center;
    color: #64748b;
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 1rem;
}

/* ==========================================================================
   RESPONSIVE DESIGN MEDIA QUERIES
   ========================================================================== */
@media (max-width: 992px) {
    .about-layout, .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .about-graphic {
        aspect-ratio: 16/9;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--primary-color);
        padding: 2rem;
        gap: 1.5rem;
        border-top: 1px solid #1e293b;
        box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.3);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li, .nav-cta-btn {
        width: 100%;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.25rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .preview-banner {
        text-align: center;
        justify-content: center;
    }
}

/* =========================================
   POPULAR TOPICS SECTION
   ========================================= */

.popular-topics{
    padding: 90px 8%;
    background: #f8fafc;
    font-family: 'Poppins', sans-serif;
}

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

.section-header h2{
    font-size: 42px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 15px;
    line-height: 1.3;
}

.section-header p{
    max-width: 850px;
    margin: auto;
    color: #6b7280;
    font-size: 18px;
    line-height: 1.8;
}

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

.topic-card{
    background: #ffffff;
    border-radius: 24px;
    padding: 35px 28px;
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.topic-card::before{
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right,#ff9800,#ff5722);
    transition: 0.5s ease;
}

.topic-card:hover::before{
    left: 0;
}

.topic-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.icon{
    width: 75px;
    height: 75px;
    border-radius: 20px;
    background: #fff7ed;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    margin-bottom: 25px;
    transition: 0.4s ease;
}

.topic-card:hover .icon{
    transform: rotate(6deg) scale(1.08);
}

.topic-card h3{
    font-size: 24px;
    color: #111827;
    margin-bottom: 15px;
    line-height: 1.4;
    font-weight: 700;
}

.topic-card p{
    color: #6b7280;
    line-height: 1.8;
    font-size: 16px;
}

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

@media(max-width:992px){

    .section-header h2{
        font-size: 34px;
    }

    .section-header p{
        font-size: 16px;
    }
}

@media(max-width:768px){

    .popular-topics{
        padding: 70px 20px;
    }

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

    .topic-card{
        padding: 30px 24px;
    }

    .section-header h2{
        font-size: 28px;
    }

    .topic-card h3{
        font-size: 21px;
    }
}

/* ==========================================
   MESSAGE TO STUDENTS SECTION
========================================== */

.students-message-section{
    padding: 60px 0;
}

.students-wrapper{
    display:grid;
    grid-template-columns: 1.1fr 1fr;
    gap:50px;
    align-items:center;
    background:#fff;
    border-radius:30px;
    padding:50px;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
}

.section-subtitle{
    display:block;
    font-size:18px;
    font-weight:700;
    color:#111827;
    letter-spacing:2px;
    margin-bottom:10px;
    text-transform:uppercase;
}

.students-content h2{
    font-size:72px;
    font-weight:800;
    color:#5b21b6;
    line-height:1;
    margin-bottom:15px;
}

.students-content h2 i{
    font-size:45px;
    color:#111827;
    margin-left:10px;
}

.title-line{
    width:130px;
    height:5px;
    background:#5b21b6;
    border-radius:20px;
    margin-bottom:25px;
}

.students-content h3{
    font-size:32px;
    margin-bottom:15px;
    color:#111827;
}

.students-content p{
    color:#374151;
    line-height:1.9;
    margin-bottom:20px;
    font-size:17px;
}

.highlight-message{
    display:flex;
    align-items:center;
    gap:12px;
    background:#f5f3ff;
    color:#5b21b6;
    padding:16px 20px;
    border-radius:50px;
    font-weight:700;
    margin-top:25px;
    margin-bottom:25px;
    width:fit-content;
}

.students-content h4{
    font-size:28px;
    font-weight:800;
    color:#111827;
}

/* Right Side */

.students-image{
    position:relative;
    text-align:center;
}

.students-image img{
    width:100%;
    max-width:440px;
    border-radius:25px;
    display:block;
    margin:auto;
}

.quote-box{
    position:absolute;
    top:40px;
    right:-20px;
    max-width:220px;
    color:#111827;
    font-style:italic;
}

.quote-box span{
    color:#7c3aed;
    font-size:50px;
    font-weight:700;
}

.quote-box p{
    font-size:24px;
    line-height:1.4;
}

.quote-box strong{
    color:#7c3aed;
}

.author-card{
    position:absolute;
    right:0;
    bottom:20px;
    background:#fff;
    padding:18px 25px;
    border-radius:18px;
    box-shadow:0 8px 25px rgba(0,0,0,.12);
    text-align:left;
}

.author-card h3{
    color:#7c3aed;
    margin-bottom:5px;
    font-size:28px;
}

.author-card p{
    color:#374151;
    margin:0;
    font-size:16px;
}

/* Bottom Features */

.message-features{
    margin-top:35px;
    background:#fff;
    border-radius:25px;
    padding:35px;
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:25px;
    box-shadow:0 8px 25px rgba(0,0,0,0.05);
}

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

.feature-item .icon{
    width:75px;
    height:75px;
    margin:auto auto 15px;
    border-radius:50%;
    background:#f5f3ff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:35px;
}

.feature-item h4{
    color:#5b21b6;
    font-size:20px;
    margin-bottom:10px;
}

.feature-item p{
    color:#4b5563;
    font-size:15px;
    line-height:1.7;
}

/* Responsive */

@media(max-width:1200px){

    .message-features{
        grid-template-columns:repeat(3,1fr);
    }
}

@media(max-width:768px){

    .students-wrapper{
        grid-template-columns:1fr;
        padding:25px;
    }

    .students-content h2{
        font-size:50px;
    }

    .students-content h3{
        font-size:24px;
    }

    .quote-box{
        position:static;
        margin-top:20px;
        max-width:100%;
    }

    .author-card{
        position:static;
        margin-top:20px;
        text-align:center;
    }

    .message-features{
        grid-template-columns:1fr;
        padding:25px;
    }

    .highlight-message{
        width:100%;
        border-radius:15px;
    }
}
.amazon-store-section{
    padding:100px 8%;
    background:#fff;
}

.store-content{
    max-width:100%;
    margin:auto;
    text-align:center;
    background:#f8fafc;
    border-radius:30px;
    padding:60px;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.store-badge{
    display:inline-block;
    padding:10px 20px;
    color:#ea580c;
    border-radius:5px;
    font-weight:1000;
    font-size: 28px;
    
}

.store-content h2{
    font-size:42px;
    margin:25px 0 15px;
}

.store-content p{
    max-width:700px;
    margin:auto;
    color:#64748b;
    line-height:1.8;
}

.store-categories{
    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));

    gap: 20px;

    margin-top: 40px;

    width: 100%;
}

.store-item{
    background:#fff;

    padding:20px 15px;

    border-radius:18px;

    font-weight:600;

    transition:.3s;

    text-align:center;

    min-height:100px;

    display:flex;

    align-items:center;

    justify-content:center;

    line-height:1.5;
}

.store-item:hover{
    transform:translateY(-8px);
}

.store-btn{
    display:inline-block;
    margin-top:40px;
    padding:16px 35px;
    background:#ea580c;
    color:#fff;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
}
/* =========================================
   MOBILE RESPONSIVE FIX
   ========================================= */

@media (max-width: 768px) {

    .amazon-store-section{
        padding: 60px 20px;
    }

    .store-content{
        padding: 35px 20px;
        border-radius: 20px;
        width: 100%;
        overflow: hidden;
    }

    .store-content h2{
        font-size: 34px;
        line-height: 1.3;
    }

    .store-content p{
        font-size: 15px;
        line-height: 1.8;
    }

    .store-categories{
        grid-template-columns:1fr;
        gap: 15px;
    }

    .store-item{
        padding: 18px 12px;
        font-size: 14px;
        border-radius: 14px;
    }

    .store-btn{
        width: 100%;
        text-align: center;
        padding: 15px;
        font-size: 16px;
    }

}


/* EXTRA SMALL DEVICES */

@media (max-width: 480px){

    .store-content h2{
        font-size: 28px;
    }

    .store-categories{
        grid-template-columns: 1fr 1fr;
    }

    .store-item{
        font-size: 13px;
        padding: 16px 10px;
    }

}

/* ===================================
   HEADER LOGO
=================================== */
.nav-container {
    max-width: 1200px;
    height: 80px;

    margin: 0 auto;
    padding: 0 2rem;

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

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 50%;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.logo-sub {
    color: var(--accent-color);
    font-size: 0.95rem;
    font-weight: 600;
}

/* Navigation alignment */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

@media (max-width: 768px) {

    .logo-img {
        width: 48px;
        height: 48px;
    }

    .logo-main {
        font-size: 1.2rem;
    }

    .logo-sub {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {

    .logo-img {
        width: 42px;
        height: 42px;
    }

    .logo-main {
        font-size: 1rem;
    }

    .logo-sub {
        font-size: 0.75rem;
    }

    .logo-link {
        gap: 8px;
    }
}

/* ==========================================================================
   ADDED CUSTOM STYLES (Footer Logo & Developer Link)
   ========================================================================== */
.footer-logo-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    text-decoration: none;
}

.footer-logo-link h3 {
    margin-bottom: 0 !important;
}

.footer-logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 50%;
    flex-shrink: 0;
}

.developer-link {
    color: var(--accent-color) !important;
    font-weight: 600;
    transition: var(--transition);
}

.developer-link:hover {
    color: var(--accent-hover) !important;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        justify-content: center;
    }
}
