/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== SCROLL ANIMATION: FADE + SCALE IN ===== */
.animate-on-scroll {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: scale(1);
}

/* ===== HEADER STYLES ===== */
.header-main {
    background: linear-gradient(135deg, #fbcc6eec, #ffcd82e1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 20px;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-list a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.nav-list a:hover,
.nav-list a.active {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

.btn-login {
    background: orange;
    color: #6e8efb;
    font-weight: bold;
    padding: 8px 20px;
    border-radius: 25px;
}

.btn-login:hover {
    background: #f0f0f0;
    transform: scale(1.05);
}

.toggle-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.toggle-btn span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ===== MOBILE RESPONSIVE (HEADER) ===== */
@media (max-width: 768px) {
    .header-container {
        padding: 10px 0;
    }

    .nav-menu {
        position: fixed;
        top: 59px;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #fbcc6ec4, #e3b877be);
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        flex-direction: column;
        padding: 20px 0;
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.4s ease;
        z-index: 999;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-list {
        flex-direction: column;
        gap: 15px;
    }

    .nav-list a {
        padding: 10px 25px;
        width: 80%;
        text-align: center;
        color: black;
        border-radius: 20px;
        transition: all 0.3s ease;
        margin-right: 4px;
    }

    .nav-list a:hover,
    .nav-list a.active {
        background: rgba(255,255,255,0.2);
    }

    .btn-login {
        background: #fff;
        color: #6e8efb;
        font-weight: bold;
        padding: 8px 20px;
        border-radius: 25px;
        width: 80%;
        text-align: center;
    }

    .toggle-btn {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 1000;
        margin-right: 10px;
    }

    .toggle-btn span {
        width: 25px;
        height: 3px;
        background: white;
        border-radius: 3px;
        transition: all 0.3s ease;
    }

    .toggle-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .toggle-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .toggle-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(135deg, #ffa500, #ffffff);
    padding: 100px 20px 60px;
    position: relative;
    overflow: visible;
    border-radius: 0 0 50% 50%;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        rgba(255,255,255,0.05),
        rgba(255,255,255,0.05) 10px,
        transparent 10px,
        transparent 20px
    );
    opacity: 0.05;
    pointer-events: none;
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.hero-text {
    text-align: center;
    max-width: 800px;
}

.hero-text h1 {
    color: #ffffff;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.btn-get-now {
    background: #ffffff;
    color: #333;
    border: 1px solid #e0e0e0;
    padding: 12px 35px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.btn-get-now:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.hero-image {
    position: relative;
    width: 100%;
    max-width: 900px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
    top: -30px;
    transform: translateY(-30px);
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    transition: transform 0.4s ease;
    margin-top: 30px;
}



/* ===== TECH STACK SECTION ===== */
.tech-stack-section {
    padding: 80px 20px;
    background: #ffffff;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-items: center;
}

.tech-box {
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 180px;
}

.tech-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.tech-box img {
    width: 97px;
    height: auto;
    margin-bottom: 15px;
}

.tech-box p {
    color: #333;
    font-weight: 500;
    margin: 0;
}

/* ===== DEMO SECTION ===== */
.demo-section {
    padding: 80px 20px;
    background: #fff8f0;
    position: relative;
    overflow: hidden;
}

.demo-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
    flex-wrap: wrap;
}

.demo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 350px;
}

.laptop-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.laptop-wrapper img {
    width: 300px;
    height: auto;
    z-index: 2;
}

.laptop-glow {
    position: absolute;
    width: 150px;
    height: 150px;
    background: #ffcd82;
    border-radius: 50%;
    opacity: 0.3;
    z-index: 1;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
}

.central-image {
    position: relative;
    z-index: 3;
    margin: 0 40px;
    transform: translateY(-40px);
}

.central-image img {
    width: 250px;
    height: auto;
    border-radius: 12px;
    margin-top: 30px;
}

.demo-card {
    background: white;
    padding: 25px;
    border: 2px dashed #ff8c00;
    border-radius: 16px;
    text-align: center;
    width: 100%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.demo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.demo-card h3 {
    color: #ff8c00;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.demo-card p {
    color: #666;
    margin: 5px 0;
    line-height: 1.5;
}

/* ===== VIEW DEMO BUTTON (as <a> tag) ===== */
.btn-view-demo {
    display: inline-block;
    background: #ff8c00;
    color: white;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-top: 15px;
    text-align: center;
    cursor: pointer;
}

.btn-view-demo:hover {
    background: #ff7000;
    transform: scale(1.05);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero-section {
        padding: 80px 15px 50px;
        border-radius: 0 0 40% 40%;
    }

    .hero-text h1 {
        font-size: 2.2rem;
        padding: 0 20px;
    }

    .hero-image {
        top: -20px;
        transform: translateY(-20px);
    }

    .hero-image img {
        max-width: 90%;
        transform: none;
    }

    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .demo-container {
        flex-direction: column;
        gap: 40px;
    }

    .demo-item {
        max-width: 100%;
    }

    .laptop-wrapper img {
        width: 250px;
    }

    .central-image {
        transform: translateY(-20px);
    }

    .central-image img {
        width: 200px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 60px 15px 40px;
        border-radius: 0 0 30% 30%;
    }

    .hero-text h1 {
        font-size: 1.8rem;
        line-height: 1.4;
    }

    .btn-get-now {
        padding: 10px 25px;
        font-size: 0.95rem;
    }

    .hero-image {
        top: -15px;
        transform: translateY(-15px);
    }

    .hero-image img {
        max-width: 119%;
        border-radius: 10px;
    }

    .tech-grid {
        grid-template-columns: 1fr;
    }

    .tech-box {
        width: 100%;
    }

    .demo-container {
        gap: 30px;
    }

    .laptop-wrapper img {
        width: 360px;
    }

    .central-image {
        transform: translateY(-10px);
    }

    .central-image img {
        width: 187px;
    }

    .btn-view-demo {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}

/* ===== STUDENT SECTION ===== */
.student-section {
    padding: 80px 20px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.student-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    position: relative;
}

/* Decorative Circle */
.circle.big-circle {
    position: absolute;
    width: 400px;
    height: 400px;
    background: #ffcd82;
    border-radius: 50%;
    opacity: 0.3;
    z-index: -1;
    top: -100px;
    left: -150px;
}

/* Phones Image (Single Image) */
.phones-image {
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

.phones-image img {
    width: 500px;
    height: auto;
}

.phones-image:hover {
    transform: rotate(-5deg) scale(1.02);
}

/* Student Cards */
.student-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 350px;
}

.mobile-card {
    background: white;
    padding: 25px;
    border: 2px dashed #ff8c00;
    border-radius: 16px;
    text-align: center;
    width: 100%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.mobile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.mobile-card h3 {
    color: #ff8c00;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.mobile-card p {
    color: #666;
    margin: 5px 0;
    line-height: 1.5;
}

/* View Demo Button */
.btn-view-demo {
    display: inline-block;
    background: #ff8c00;
    color: white;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-top: 15px;
    text-align: center;
    cursor: pointer;
}

.btn-view-demo:hover {
    background: #ff7000;
    transform: scale(1.05);
}

/* Google Play Button */
.google-play-btn {
    display: block;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.google-play-btn img {
    width: 180px;
    height: auto;
    border-radius: 8px;
}

.google-play-btn:hover {
    transform: scale(1.05);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .student-container {
        flex-direction: column;
        gap: 40px;
    }

    .circle.big-circle {
        width: 300px;
        height: 300px;
        top: -50px;
        left: -100px;
    }

    .phones-image {
        transform: none;
    }

    .phones-image img {
        width: 250px;
    }

    .student-cards {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .student-container {
        gap: 30px;
    }

    .circle.big-circle {
        width: 250px;
        height: 250px;
        top: -30px;
        left: -80px;
    }

    .phones-image img {
        width: 300px;
    }

    .btn-view-demo {
        padding: 8px 15px;
        font-size: 0.9rem;
    }

    .google-play-btn img {
        width: 150px;
    }
}

/* ===== FEATURES SECTION ===== */
.features-section {
    padding: 80px 20px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.features-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

/* Features Card */
.features-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    max-width: 500px;
    width: 100%;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.feature-list li:last-child {
    margin-bottom: 0;
}

.checkmark {
    color: #4CAF50;
    font-weight: bold;
    font-size: 1.2rem;
    min-width: 20px;
}

.feature-list strong {
    color: #ff8c00;
    font-weight: 600;
}

/* Composite Image */
.composite-image {
    position: relative;
    width: 100%;
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.composite-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    transition: transform 0.4s ease;
}

.composite-image:hover img {
    transform: rotate(-2deg) scale(1.02);
}

/* Decorative Elements */
.decorative-circle {
    position: absolute;
    width: 200px;
    height: 200px;
    background: #ffcd82;
    border-radius: 50%;
    opacity: 0.3;
    z-index: -1;
    top: -50px;
    right: -100px;
}

.decorative-waves {
    position: absolute;
    bottom: -20px;
    left: -30px;
    width: 100px;
    height: 50px;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255,255,255,0.1) 10px,
        rgba(255,255,255,0.1) 20px
    );
    z-index: -1;
    opacity: 0.5;
    transform: rotate(-30deg);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .features-container {
        flex-direction: column;
        gap: 40px;
    }

    .features-card {
        max-width: 100%;
    }

    .composite-image {
        max-width: 100%;
    }

    .composite-image img {
        width: 100%;
        transform: none;
    }

    .decorative-circle {
        width: 150px;
        height: 150px;
        top: -30px;
        right: -80px;
    }
}

@media (max-width: 576px) {
    .features-container {
        gap: 30px;
    }

    .features-card {
        padding: 20px;
    }

    .composite-image img {
        width: 117%;
    }

    .decorative-circle {
        width: 120px;
        height: 120px;
        top: -20px;
        right: -60px;
    }
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: 80px 20px;
    background: #fff8f0; /* Light cream */
    position: relative;
    overflow: hidden;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.3;
}

.header-line {
    width: 60px;
    height: 4px;
    background: #ff8c00;
    margin: 0 auto;
}

/* Testimonials Content */
.testimonials-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
    flex-wrap: wrap;
}

/* Stats Cards */
.stats-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 350px;
    width: 100%;
}

.stats-card {
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s ease;
    position: relative;
}

.stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: #ffcd82;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-box img {
    width: 30px;
    height: auto;
    filter: brightness(0) invert(1); /* White icon on orange bg */
}

.stats-text {
    flex: 1;
    text-align: left;
}

.stats-number {
    font-size: 1.8rem;
    color: #ff8c00;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.stats-label {
    color: #333;
    font-weight: 600;
    display: block;
    line-height: 1.3;
}

.vertical-line {
    width: 4px;
    height: 60px;
    background: #ff8c00;
    border-radius: 2px;
}

/* Testimonials List */
.testimonials-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 600px;
    width: 100%;
}

.testimonial-item {
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    position: relative;
    transition: transform 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.testimonial-quote {
    color: #ff8c00;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
}

.testimonial-text {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.quote-marks {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #ffcd82;
    font-size: 2rem;
    opacity: 0.5;
    pointer-events: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .testimonials-content {
        flex-direction: column;
        gap: 40px;
    }

    .stats-cards {
        max-width: 100%;
    }

    .testimonials-list {
        max-width: 100%;
    }

    .stats-card {
        padding: 20px;
    }

    .icon-box {
        width: 50px;
        height: 50px;
    }

    .icon-box img {
        width: 25px;
    }

    .stats-number {
        font-size: 1.5rem;
    }

    .vertical-line {
        height: 50px;
    }
}

@media (max-width: 576px) {
    .testimonials-content {
        gap: 30px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .stats-card {
        padding: 15px;
        gap: 15px;
    }

    .icon-box {
        width: 40px;
        height: 40px;
    }

    .icon-box img {
        width: 20px;
    }

    .stats-number {
        font-size: 1.3rem;
    }

    .vertical-line {
        height: 40px;
    }

    .testimonial-quote {
        font-size: 1rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }

    .quote-marks {
        font-size: 1.5rem;
    }
}

/* ===== MAIN FEATURES SECTION ===== */
.features-main-section {
    padding: 80px 20px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.features-main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.features-main-container h2 {
    font-size: 2.2rem;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.3;
}

/* Banner */
.banner {
    background: linear-gradient(135deg, #ffd166, #ff8c00);
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    margin: 0 auto 50px;
    max-width: 800px;
    transform: translateY(-10px);
    transition: transform 0.4s ease;
}

.banner:hover {
    transform: translateY(-10px) scale(1.02);
}

.banner p {
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    line-height: 1.5;
    margin: 0;
}

/* Features Main Content */
.features-main-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

/* Features List */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 500px;
    width: 100%;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: white;
    border: 2px solid #ffcd82;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.feature-icon img {
    width: 93px;
    height: auto;
}

.feature-text {
    flex: 1;
}

.feature-text h3 {
    color: #ff8c00;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-text p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Illustration Image */
.illustration-image {
    position: relative;
    width: 100%;
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.illustration-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    transition: transform 0.4s ease;
}

.illustration-image:hover img {
    transform: scale(1.02);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .features-main-content {
        flex-direction: column;
        gap: 40px;
    }

    .features-list {
        max-width: 100%;
    }

    .illustration-image {
        max-width: 100%;
    }

    .illustration-image img {
        width: 120%;
    }

    .banner {
        max-width: 100%;
        padding: 15px 20px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .features-main-content {
        gap: 30px;
    }

    .features-list {
        gap: 20px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
    }

    .feature-icon img {
        width: 25px;
    }

    .feature-text h3 {
        font-size: 1.1rem;
    }

    .feature-text p {
        font-size: 0.95rem;
    }

    .banner {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
}

/* ===== MULTI ADMIN SECTION ===== */
.multi-admin-section {
    padding: 80px 20px;
    background: #fff8f0; /* Light cream */
    position: relative;
    overflow: hidden;
}

.multi-admin-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.section-text {
    text-align: left;
    max-width: 400px;
}

.section-text h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
}

.text-line {
    width: 60px;
    height: 4px;
    background: #ff8c00;
}

.laptop-image {
    position: relative;
    width: 100%;
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.laptop-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    transition: transform 0.4s ease;
}

.laptop-image:hover img {
    transform: scale(1.02);
}

.decorative-circle {
    position: absolute;
    background: #ffcd82;
    border-radius: 50%;
    opacity: 0.3;
    z-index: -1;
}

.circle-left {
    width: 150px;
    height: 150px;
    top: -50px;
    left: -80px;
}

.circle-right {
    width: 150px;
    height: 150px;
    bottom: -50px;
    right: -80px;
}

/* ===== EDIT OPTION SECTION ===== */
.edit-option-section {
    padding: 80px 20px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.edit-option-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

/* Zoom Circle (For Edit Icons) */
.zoom-circle {
    position: absolute;
    width: 80px;
    height: 80px;
    background: white;
    border: 3px solid #ff8c00;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    top: 50%;
    right: 20%;
    transform: translateY(-50%);
    z-index: 2;
}

.zoom-circle img {
    width: 40px;
    height: auto;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .multi-admin-container,
    .edit-option-container {
        flex-direction: column;
        gap: 40px;
    }

    .section-text {
        max-width: 100%;
        text-align: center;
    }

    .laptop-image {
        max-width: 100%;
    }

    .laptop-image img {
        width: 100%;
    }

    .circle-left,
    .circle-right {
        width: 120px;
        height: 120px;
    }

    .zoom-circle {
        width: 60px;
        height: 60px;
        right: 15%;
        top: 45%;
    }

    .zoom-circle img {
        width: 30px;
    }
}

@media (max-width: 576px) {
    .multi-admin-container,
    .edit-option-container {
        gap: 30px;
    }

    .section-text h2 {
        font-size: 1.8rem;
    }

    .laptop-image img {
        width: 100%;
    }

    .circle-left,
    .circle-right {
        width: 100px;
        height: 100px;
    }

    .zoom-circle {
        width: 50px;
        height: 50px;
        right: 10%;
        top: 40%;
    }

    .zoom-circle img {
        width: 25px;
    }
}

/* ===== OFFLINE PAYMENT SECTION ===== */
.offline-payment-section {
    padding: 80px 20px;
    background: #fff8f0; /* Light cream */
    position: relative;
    overflow: hidden;
}

.offline-payment-container h2 {
    font-size: 2.2rem;
    color: #333;
    text-align: center;
    margin-bottom: 15px;
    line-height: 1.3;
}

.header-line {
    width: 60px;
    height: 4px;
    background: #ff8c00;
    margin: 0 auto;
}

.offline-payment-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.payment-card {
    position: relative;
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    max-width: 400px;
    width: 100%;
    text-align: center;
    transition: transform 0.3s ease;
}

.payment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: #ffcd82;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

.card-icon img {
    width: 40px;
    height: auto;
    filter: brightness(0) invert(1); /* White icon on orange bg */
}

.payment-card h3 {
    color: #333;
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.payment-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.btn-contact {
    display: inline-block;
    background: #ff6b6b;
    color: white;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-contact:hover {
    background: #ff5252;
    transform: scale(1.05);
}

.decorative-circle {
    position: absolute;
    background: #ffcd82;
    border-radius: 50%;
    opacity: 0.3;
    z-index: -1;
}

.circle-left {
    width: 150px;
    height: 150px;
    top: -50px;
    left: -80px;
}

.circle-right {
    width: 150px;
    height: 150px;
    bottom: -50px;
    right: -80px;
}

.woman-image {
    position: relative;
    width: 100%;
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.woman-image img {
    width: 70%;
    height: auto;
    border-radius: 12px;
    transition: transform 0.4s ease;
}

.woman-image:hover img {
    transform: scale(1.02);
}

/* ===== ENHANCED ADMIN SECTION ===== */
.enhanced-admin-section {
    padding: 80px 20px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.enhanced-admin-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.section-text {
    text-align: left;
    max-width: 400px;
}

.section-text h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
}

.text-line {
    width: 60px;
    height: 4px;
    background: #ff8c00;
}

.laptop-image {
    position: relative;
    width: 100%;
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.laptop-image img {
    width: 70%;
    height: auto;
    border-radius: 12px;
    transition: transform 0.4s ease;
}

.laptop-image:hover img {
    transform: scale(1.02);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .offline-payment-content,
    .enhanced-admin-container {
        flex-direction: column;
        gap: 40px;
    }

    .payment-card {
        max-width: 100%;
    }

    .woman-image,
    .laptop-image {
        max-width: 100%;
    }

    .woman-image img,
    .laptop-image img {
        width: 100%;
    }

    .circle-left,
    .circle-right {
        width: 120px;
        height: 120px;
    }

    .card-icon {
        width: 70px;
        height: 70px;
    }

    .card-icon img {
        width: 35px;
    }

    .btn-contact {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .offline-payment-content,
    .enhanced-admin-container {
        gap: 30px;
    }

    .payment-card {
        padding: 20px;
    }

    .section-text h2 {
        font-size: 1.8rem;
    }

    .woman-image img,
    .laptop-image img {
        width: 100%;
    }

    .circle-left,
    .circle-right {
        width: 100px;
        height: 100px;
    }

    .card-icon {
        width: 60px;
        height: 60px;
    }

    .card-icon img {
        width: 30px;
    }

    .btn-contact {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}

/* ===== FEATURES GRID SECTION ===== */
.features-grid-section {
    padding: 80px 20px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.features-grid-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.features-grid-container h2 {
    font-size: 2.2rem;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.3;
}

/* Banner */
.banner {
    background: linear-gradient(135deg, #ffd166, #ff8c00);
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    margin: 0 auto 50px;
    max-width: 800px;
    transform: translateY(-10px);
    transition: transform 0.4s ease;
}

.banner:hover {
    transform: translateY(-10px) scale(1.02);
}

.banner p {
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    line-height: 1.5;
    margin: 0;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    justify-items: center;
}

.feature-box {
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    text-align: center;
    width: 100%;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 150px;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #ffcd82;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.feature-icon img {
    width: 30px;
    height: auto;
    filter: brightness(0) invert(1); /* White icon on orange bg */
}

.feature-box p {
    color: #333;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    font-size: 0.95rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-box {
        min-height: 120px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
    }

    .feature-icon img {
        width: 25px;
    }

    .feature-box p {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-box {
        min-height: 100px;
        padding: 20px;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
    }

    .feature-icon img {
        width: 20px;
    }

    .feature-box p {
        font-size: 0.85rem;
    }

    .banner {
        max-width: 100%;
        padding: 15px 20px;
        font-size: 1rem;
    }
}

/* ===== BENEFITS SECTION ===== */
.benefits-section {
    padding: 80px 20px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.benefits-container h2 {
    font-size: 2.2rem;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.3;
}

.highlight {
    color: #ff8c00;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 60px;
    height: 4px;
    background: #ff8c00;
}

/* Comparison Table */
.comparison-table {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    overflow: hidden;
}

.table-header {
    display: grid;
    grid-template-columns: 1fr 2fr 2fr;
    background: linear-gradient(135deg, #ff8c00, #ffd166);
    padding: 15px 20px;
    font-weight: bold;
    color: white;
}

.header-cell {
    padding: 5px 10px;
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 2fr 2fr;
    border-bottom: 1px solid #eee;
    padding: 20px;
    align-items: flex-start;
}

.particulars-cell {
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-box {
    width: 40px;
    height: 40px;
    background: #ffcd82;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-box img {
    width: 20px;
    height: auto;
    filter: brightness(0) invert(1); /* White icon on orange bg */
}

.particulars-cell span {
    color: #333;
    font-weight: 600;
}

.content-cell {
    color: #666;
    line-height: 1.5;
    padding: 0 10px;
}

/* Decorative Shapes */
.decorative-shape {
    position: absolute;
    z-index: -1;
    background: #ffcd82;
    opacity: 0.3;
    border-radius: 50%;
}

.shape-left {
    width: 200px;
    height: 200px;
    top: 50px;
    left: -100px;
}

.shape-right {
    width: 200px;
    height: 200px;
    bottom: 50px;
    right: -100px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .benefits-container {
        padding: 0 15px;
    }

    .table-header {
        grid-template-columns: 1fr 1fr 1fr;
        font-size: 0.9rem;
        padding: 10px;
    }

    .table-row {
        grid-template-columns: 1fr 1fr 1fr;
        padding: 15px;
        font-size: 0.9rem;
    }

    .particulars-cell {
        gap: 5px;
    }

    .icon-box {
        width: 30px;
        height: 30px;
    }

    .icon-box img {
        width: 15px;
    }

    .shape-left,
    .shape-right {
        width: 150px;
        height: 150px;
        top: 30px;
        left: -80px;
        bottom: 30px;
        right: -80px;
    }
}

@media (max-width: 576px) {
    .benefits-container {
        padding: 0 10px;
    }

    .benefits-container h2 {
        font-size: 1.8rem;
    }

    .table-header {
        grid-template-columns: 1fr;
        padding: 10px;
        font-size: 0.8rem;
    }

    .table-row {
        grid-template-columns: 1fr;
        padding: 10px;
        font-size: 0.8rem;
    }

    .particulars-cell {
        gap: 5px;
    }

    .icon-box {
        width: 25px;
        height: 25px;
    }

    .icon-box img {
        width: 12px;
    }

    .shape-left,
    .shape-right {
        width: 120px;
        height: 120px;
        top: 20px;
        left: -60px;
        bottom: 20px;
        right: -60px;
    }
}

/* ===== INSTALLATION SECTION ===== */
.installation-section {
    padding: 80px 20px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.installation-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.installation-container h2 {
    font-size: 2.2rem;
    color: #333;
    text-align: center;
    margin-bottom: 10px;
    line-height: 1.3;
}

.sub-header {
    color: #ff8c00;
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.sub-header::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #ff8c00;
}

.installation-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.laptop-image {
    position: relative;
    width: 100%;
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.laptop-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.4s ease;
}

.laptop-image:hover img {
    transform: scale(1.02);
}

.steps-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 600px;
    width: 100%;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.step-item:hover {
    transform: translateY(-5px);
}

.step-number {
    font-size: 2.5rem;
    color: #333;
    font-weight: bold;
    margin-bottom: 10px;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: white;
    border: 2px solid #ffcd82;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.step-icon img {
    width: 30px;
    height: auto;
}

.step-text {
    color: #333;
    font-weight: 600;
    margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .installation-content {
        flex-direction: column;
        gap: 40px;
    }

    .laptop-image {
        max-width: 100%;
    }

    .laptop-image img {
        width: 100%;
    }

    .steps-container {
        max-width: 100%;
    }

    .step-number {
        font-size: 2rem;
    }

    .step-icon {
        width: 50px;
        height: 50px;
    }

    .step-icon img {
        width: 25px;
    }
}

@media (max-width: 576px) {
    .installation-content {
        gap: 30px;
    }

    .installation-container h2 {
        font-size: 1.8rem;
    }

    .sub-header {
        font-size: 1.2rem;
    }

    .step-number {
        font-size: 1.8rem;
    }

    .step-icon {
        width: 40px;
        height: 40px;
    }

    .step-icon img {
        width: 20px;
    }
}

/* ===== INSTALL AND START TEACHING SECTION ===== */
.install-teach-section {
    padding: 80px 20px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.install-teach-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.install-teach-container h2 {
    font-size: 2.2rem;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.3;
}

/* Banner */
.banner {
    background: linear-gradient(135deg, #ffd166, #ff8c00);
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    margin: 0 auto 50px;
    max-width: 800px;
    position: relative;
    transform: translateY(-10px);
    transition: transform 0.4s ease;
}

.banner:hover {
    transform: translateY(-10px) scale(1.02);
}

.banner p {
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    line-height: 1.5;
    margin: 0;
}

.cursor-icon {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cursor-icon img {
    width: 100%;
    height: auto;
    filter: brightness(0) invert(1); /* White icon on orange bg */
}

/* Install Teach Content */
.install-teach-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.dashboard-image {
    position: relative;
    width: 100%;
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    transition: transform 0.4s ease;
}

.dashboard-image:hover img {
    transform: scale(1.02);
}

.dashboards-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 500px;
    width: 100%;
}

.dashboard-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: transform 0.3s ease;
}

.dashboard-item:hover {
    transform: translateY(-5px);
}

.dashboard-icon {
    width: 60px;
    height: 60px;
    background: white;
    border: 2px solid #ffcd82;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.dashboard-icon img {
    width: 30px;
    height: auto;
}

.dashboard-text {
    flex: 1;
}

.dashboard-text h3 {
    color: #ff8c00;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.dashboard-text p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .install-teach-content {
        flex-direction: column;
        gap: 40px;
    }

    .dashboard-image {
        max-width: 100%;
    }

    .dashboard-image img {
        width: 100%;
    }

    .dashboards-list {
        max-width: 100%;
    }

    .dashboard-icon {
        width: 50px;
        height: 50px;
    }

    .dashboard-icon img {
        width: 25px;
    }

    .dashboard-text h3 {
        font-size: 1.1rem;
    }

    .dashboard-text p {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .install-teach-content {
        gap: 30px;
    }

    .banner {
        max-width: 100%;
        padding: 15px 20px;
        font-size: 1rem;
    }

    .cursor-icon {
        top: 10px;
        right: 10px;
        width: 30px;
        height: 30px;
    }

    .dashboard-icon {
        width: 40px;
        height: 40px;
    }

    .dashboard-icon img {
        width: 20px;
    }

    .dashboard-text h3 {
        font-size: 1rem;
    }

    .dashboard-text p {
        font-size: 0.9rem;
    }
}


/* ===== DASHBOARD FEATURES SECTION ===== */
.dashboard-features-section {
    padding: 80px 20px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.dashboard-features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.dashboard-features-container h2 {
    font-size: 2.2rem;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.3;
}

.highlight {
    color: #ff8c00;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #ff8c00;
}

.feature-rows {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.feature-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.feature-image {
    position: relative;
    width: 100%;
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-image img {
    width: 70%;
    height: auto;
    border-radius: 12px;
    transition: transform 0.4s ease;
}

.feature-image:hover img {
    transform: scale(1.02);
}

.feature-box {
    background: white;
    padding: 25px;
    border: 2px solid #ffcd82;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    max-width: 500px;
    width: 100%;
    position: relative;
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.feature-box h3 {
    color: #ff8c00;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-box p {
    color: #666;
    line-height: 1.6;
    margin: 0 0 15px;
}

.arrow-icon {
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    color: #ff8c00;
    font-size: 1.5rem;
    font-weight: bold;
    background: white;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .feature-rows {
        gap: 40px;
    }

    .feature-row {
        flex-direction: column;
        gap: 40px;
    }

    .feature-image {
        max-width: 100%;
    }

    .feature-image img {
        width: 100%;
    }

    .feature-box {
        max-width: 100%;
    }

    .arrow-icon {
        top: 10px;
        right: 10px;
        transform: none;
        position: static;
        margin-top: 10px;
        width: 25px;
        height: 25px;
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .feature-rows {
        gap: 30px;
    }

    .feature-row {
        gap: 30px;
    }

    .feature-image img {
        width: 100%;
    }

    .feature-box {
        padding: 20px;
    }

    .feature-box h3 {
        font-size: 1.1rem;
    }

    .feature-box p {
        font-size: 0.95rem;
    }

    .arrow-icon {
        width: 20px;
        height: 20px;
        font-size: 1rem;
        margin-top: 5px;
    }
}

/* ===== FOOTER SECTION ===== */
.footer-section {
    background: linear-gradient(135deg, #ffa500, #ff8c00);
    padding: 60px 20px 30px;
    color: white;
    position: relative;
    overflow: hidden;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.logo img {
    height: 40px;
    width: auto;
    margin-bottom: 15px;
}

.footer-column p {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: white;
}

.footer-links,
.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.contact-info li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.contact-info li {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: white;
    color: #ff8c00;
    transform: translateY(-3px);
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-form input {
    padding: 10px 15px;
    border: none;
    border-radius: 25px;
    outline: none;
    font-size: 0.9rem;
}

.newsletter-form button {
    background: white;
    color: #ff8c00;
    border: none;
    padding: 10px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #f0f0f0;
    transform: scale(1.05);
}

/* Copyright */
.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.copyright p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-column h3::after {
        width: 30px;
    }

    .newsletter-form {
        gap: 8px;
    }

    .newsletter-form input,
    .newsletter-form button {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
}