/* Global Design System based on Reference */
:root {
    --primary: #0A2647;
    /* Dark Navy Blue */
    --secondary: #FF6600;
    /* Orange Highlight */
    --accent: #144272;
    /* Lighter Blue */
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
    --bg-light: #f9f9f9;
    --white: #ffffff;

    --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    --radius: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

a {
    text-decoration: none;
    transition: 0.3s;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: var(--primary);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--secondary);
    margin: 10px auto 0;
}

.section-title.text-left {
    text-align: left;
}

.section-title.text-left::after {
    margin: 10px 0 0;
}

.text-orange {
    color: var(--secondary);
}

/* Top Bar */
.top-bar {
    position: relative;
    /* Changed from absolute to relative for better flow */
    width: 100%;
    z-index: 1001;
    background: #000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 0.8rem 0;
    font-size: 0.9rem;
}

/* Home Page specific Override */
.home-page .top-bar {
    position: absolute;
    background: rgba(0, 0, 0, 0.8);
    /* Semi-transparent for overlay effect */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-contact {
    display: flex;
    gap: 1.5rem;
}

.top-nav {
    display: flex;
    gap: 1.5rem;
}

.top-nav a {
    color: var(--white);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.top-nav a:hover {
    color: var(--secondary);
    opacity: 1;
}

/* Responsive Top Bar */
@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        gap: 0.5rem;
    }

    .top-contact {
        flex-direction: column;
        gap: 0.3rem;
        text-align: center;
        font-size: 0.8rem;
    }

    .top-nav {
        display: none;
        /* Hide links on mobile to declutter */
    }
}

/* Navbar */
.navbar {
    display: block;
    background: var(--primary);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    position: relative;
    width: 100%;
    z-index: 1000;
    margin-top: 0;
    /* No margin needed if Top Bar is relative */
}

/* Home Page Navbar Overlay */
.home-page .navbar {
    background: transparent;
    box-shadow: none;
    position: absolute;
    top: 3.5rem;
    /* Push down by approx top-bar height */
    margin-top: 0;
    padding-bottom: 0;
    /* Remove padding to fit bar */
}

.mobile-slogan-bar {
    display: none !important;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: row;
    /* Row for side-by-side */
    align-items: center;
    /* Center vertically */
    text-decoration: none;
    /* Remove link underline */
    cursor: pointer;
    line-height: 1;
    gap: 0px;
    /* Space between image and text */
}

.logo-img {
    height: 65px;
    width: auto;
    transform: translateY(-8px);
    /* Move up to align with text */
}

.logo-text-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}



.logo-text-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.logo-line-1 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    /* White */
    line-height: 0.9;
    letter-spacing: 0.5px;
}

.logo-line-2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary);
    /* Orange */
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: 0.5px;
}

.logo-line-3 {
    font-size: 0.65rem;
    font-weight: 600;
    color: #ffffff;
    /* White */
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

.logo-line-4 {
    font-size: 0.6rem;
    color: var(--secondary);
    /* Orange */
    margin-top: 1px;
}

.highlight {
    color: var(--secondary);
}

.nav-links {
    display: none;
    /* Hidden on Desktop (links are in Top Bar) */
    gap: 2rem;
    align-items: center;
}

.menu-toggle {
    display: none;
    /* Hidden on Desktop */
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
}

.nav-links a {
    color: var(--white);
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--secondary);
}

.btn-primary {
    background: var(--secondary);
    color: var(--white) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 0;
}

.btn-primary:hover {
    background: #e05500;
}

/* Hero Section */
/* Hero Section - Diagonal Design */
/* Hero Section - Diagonal Design */
/* Hero Section - Diagonal Design */
.hero {
    /* Image removed, video only */
    background-color: #0A2647;
    /* Fallback color */
    min-height: 100vh;
    /* Full Height */
    position: relative;
    display: flex;
    align-items: center;
    padding: 0;
    overflow: hidden;
}

/* Hero Video Container - Full Screen */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    clip-path: none;
    /* Removed polygon shape */
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Cover entire area */
    display: block;
    transform: none;
    /* Reset transform */
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 38, 71, 0.60);
    /* Dark Blue Overlay - Reduced opacity for visibility */
    z-index: 2;
}

/* Ensure Text is visible */
.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 600px;
    text-align: left;
    color: var(--white);
    padding-left: 2rem;
    position: relative;
    z-index: 2;
    /* Ensure above overlay */
}

.hero-subtitle {
    display: block;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    line-height: 1.4;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-transform: capitalize;
    color: var(--secondary);
}

.hero h1 span {
    color: var(--secondary);
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
    color: var(--white);
    max-width: 90%;
}

/* Hide separate image containers */
.hero-image,
.hero-image img {
    display: none;
}

/* Responsive Adjustments */
@media(max-width: 992px) {

    /* Mobile Navbar Layout - SOLID BAR */
    .top-bar {
        display: none;
    }

    /* Force Solid Background & Normal Flow */
    .home-page .navbar {
        position: relative !important;
        background: radial-gradient(circle at 10% 50%, #eef7ff 25%, #ffffff 65%) !important;
        top: auto;
        margin-top: 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .navbar-container {
        position: relative;
        justify-content: center;
        min-height: 55px;
        /* Slight bump for 2 lines */
        padding: 0.2rem 0;
        align-items: center;
        display: flex;
    }

    /* Logo Styling */
    .logo-main {
        font-weight: 700;
        font-size: 1.4rem;
        color: var(--white);
        /* Default White for Subpages */
        display: block;
        line-height: 1.2;
    }

    .home-page .logo-main {
        color: var(--primary);
        /* Blue for Home Page */
    }

    .logo-main .highlight {
        color: var(--secondary);
    }

    .menu-toggle {
        display: block !important;
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        color: var(--white) !important;
        /* Default White for Subpages */
        z-index: 1001;
    }

    /* Home Page Specific Mobile Menu Color */
    .home-page .menu-toggle {
        color: #003366 !important;
        /* Blue for Home Page */
    }

    /* Bigger & Centered Logo inside the Bar */
    /* Bigger & Centered Logo inside the Bar */
    .logo {
        display: flex !important;
        flex-direction: column !important;
        /* Stack Text for Subpages */
        justify-content: center;
        /* Center Vertically */
        align-items: flex-start;
        text-align: left;
        max-width: 100%;
        margin: 0;
        padding-bottom: 0;
        height: 100%;
        text-decoration: none;
        padding-left: 0.2rem;
        gap: 0.2rem;
        /* Reduced gap for stacked text */
    }

    /* Keep Home Page Logo Side-by-Side (Image + Text) */
    .home-page .logo {
        flex-direction: row !important;
        justify-content: flex-start;
        align-items: center;
        gap: 1rem;
    }

    .logo-sub {
        font-size: 0.65rem;
        /* Slightly larger for readability */
        font-weight: 400;
        color: rgba(255, 255, 255, 0.9);
        letter-spacing: 0.5px;
        line-height: 1.2;
        display: block;
        margin-top: 2px;
    }

    /* Mobile Logo Text Scaling */
    .logo-img {
        height: 75px;
        /* Increased size as requested */
        transform: none;
        margin-bottom: 5px;
    }

    .mobile-slogan-bar {
        display: flex !important;
    }

    .logo-line-1 {
        font-size: 1.5rem;
        color: var(--primary);
    }

    .logo-line-2 {
        font-size: 0.8rem;
        color: var(--primary);
    }

    .logo-line-3 {
        font-size: 0.5rem;
        color: #27ae60;
    }

    .logo-line-4 {
        font-size: 0.45rem;
        color: var(--primary);
    }

    .logo-badge {
        display: inline-block;
        background-color: #27ae60;
        color: #fff;
        font-size: 0.45rem;
        padding: 2px 6px;
        border-radius: 4px;
        margin-top: 3px;
        font-weight: 500;
        letter-spacing: 0.3px;
    }



    .logo-sub {
        font-size: 0.6rem;
        font-weight: 400;
        color: rgba(255, 255, 255, 0.85);
        letter-spacing: 0.5px;
        line-height: 1.2;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--primary);
        padding: 1rem;
        z-index: 1000;
        text-align: center;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links.active li {
        margin: 1rem 0;
    }

    /* Mobile Hero: Standard Padding (No Overlap Risk) */
    .hero {
        /* Maintain Desktop Two-Column Logic */
        display: flex;
        align-items: center;
        background: none;
        /* No background image */

        /* STANDARD PADDING - Header is now above it! */
        padding-top: 2rem;

        padding-bottom: 2rem;
        height: auto;
        min-height: 45vh;
        /* slightly shorter to fit screen better */
        overflow: hidden;
    }

    /* Restore Video Full Width */
    .hero-video-container {
        clip-path: none;
        width: 100%;
        height: 100%;
    }

    .hero-video-overlay {
        background: rgba(10, 38, 71, 0.7);
    }

    .hero-container {
        flex-direction: row;
        /* FORCE ROW */
        align-items: center;
        width: 100%;
        padding: 0 1rem;
    }

    .hero-content {
        max-width: 65%;
        /* Restrict width to allow image visibility */
        text-align: left;
        /* Keep left alignment */
        padding-left: 0.5rem;
        margin-bottom: 0;
    }

    /* Proportional Scaling Typography */
    .hero h1 {
        /* Make smaller as requested */
        font-size: 1rem !important;
        /* Force SMALL size */
        line-height: 1.2;
        margin-bottom: 0.5rem;
        font-weight: 600;
    }

    .hero h1 span {
        display: inline-block;
    }

    .hero p {
        font-size: 0.8rem;
        margin-bottom: 1rem;
        max-width: 100%;
        line-height: 1.4;
    }

    /* Scaled Buttons */
    .hero-buttons {}
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.cta-button {
    background: var(--secondary);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: bold;
}

.cta-outline {
    border: 2px solid var(--white);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: bold;
}

.cta-outline:hover {
    background: var(--white);
    color: var(--primary);
}

/* Stats Bar */
.stats-section {
    background: var(--white);
    padding: 4rem 0;
    margin-top: -3rem;
    /* Overlap hero */
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.stat-item h2 {
    color: var(--secondary);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-light);
    font-weight: 600;
}

/* Why Choose Us */
.why-choose-us {
    padding: 4rem 0;
    background: var(--bg-light);
    text-align: center;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card .icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--primary);
}

/* Schedule Section */
.schedule-section {
    padding: 4rem 0;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.schedule-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    text-align: center;
}

.card-header {
    padding: 1.5rem;
    color: var(--white);
}

.blue-bg {
    background: var(--primary);
}

.orange-bg {
    background: var(--secondary);
}

.green-bg {
    background: #27ae60;
}

.card-body {
    padding: 2rem;
}

.card-body h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.card-body .days {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.card-body hr {
    border: 0;
    border-top: 1px solid #eee;
    margin: 1rem 0;
}

.card-body .desc {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.btn-text {
    color: var(--primary);
    font-weight: bold;
}

.btn-text:hover {
    color: var(--secondary);
}

/* Success Stories */
.success-stories {
    padding: 4rem 0;
    background: var(--bg-light);
}

.gallery {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 1rem;
}

.gallery img {
    height: 200px;
    border-radius: var(--radius);
}

/* Footer */
footer {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 2rem;
}

/* Responsive */
@media(max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero {
        padding: 4rem 1rem;
        height: auto;
        min-height: auto;
        text-align: center;
    }

    .hero-container {
        flex-direction: column-reverse;
        /* Image on top? No, usually image first or text first. Let's do Text first. */
        flex-direction: column;
        gap: 2rem;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center !important;
    }

    .hero-image {
        max-width: 100%;
    }

    .hero h1 {
        font-size: 2rem;
    }
}

/* Empower Section */
.empower-section {
    padding: 6rem 0;
    background-color: #fff;
}

.empower-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.empower-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.empower-content .section-title {
    color: var(--secondary);
    /* Orange */
    font-size: 2.2rem;
    font-weight: 700;
}

.separator-line {
    width: 60px;
    height: 3px;
    background-color: #ddd;
    margin: 1.5rem 0;
}

.btn-dark {
    display: inline-block;
    padding: 12px 30px;
    background-color: #34495e;
    /* Dark Blue/Grey */
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.btn-dark:hover {
    background-color: #2c3e50;
}

/* Responsive */
@media (max-width: 768px) {
    .empower-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .empower-content .section-title {
        text-align: center !important;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    /* Icon size */
    box-shadow: 2px 2px 3px #999;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
    /* Pulse Animation */
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    color: #FFF;
    /* Ensure icon stays white */
}

.whatsapp-float i {
    margin-top: 2px;
    /* Visual adjustment */
    margin-left: 2px;
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}


.separator-line {
    margin: 1.5rem auto;
}

/* Founders Section */
.founders-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.founder-card:nth-child(1) {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 600px;
    width: 100%;
}

/* Triangle Layout for Founders */
.founder-top {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.founder-bottom {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

/* Founder Cards */
.founder-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s;
    border: 1px solid #eee;
    width: 350px !important;
    min-width: 350px !important;
    max-width: 350px !important;
}

.founder-card:hover {
    transform: translateY(-5px);
}

.founder-card img {
    width: 100% !important;
    height: 350px !important;
    /* Fixed uniform height */
    object-fit: cover;
    object-position: top;
    border-radius: 10px;
    margin-bottom: 1rem;
    border: none;
}

.founder-card h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.founder-card p {
    color: #666;
    font-size: 0.9rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .founder-bottom {
        flex-direction: row !important;
        /* Force row to keep side-by-side */
        justify-content: center;
        gap: 10px;
        /* Smaller gap */
    }

    /* Founder Card on Mobile */
    .founder-card {
        width: 48% !important;
        /* Fit 2 side-by-side */
        min-width: unset !important;
        max-width: unset !important;
        padding: 1rem;
    }

    /* Top founder stays centered and can be slightly bigger or same */
    .founder-top .founder-card {
        width: 80% !important;
        /* Top one slightly bigger/centered */
    }

    .founder-card img {
        height: 180px !important;
        /* Smaller image height for mobile */
    }

    /* Fix aspect ratio for the top wider card */
    .founder-top .founder-card img {
        height: 280px !important;
    }
}

.founder-main-desc {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: #555;
    line-height: 1.8;
}
}

/* Parents Section Features */
.parents-features {
    list-style: none;
    margin-top: 1.5rem;
}

.parents-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #4a5568;
    /* Darker gray text */
    font-size: 1rem;
}

.parents-features li i {
    color: var(--primary);
    /* Navy Blue Icons */
    margin-right: 12px;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

/* Stats Section Icons */
.stat-item i {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
    display: block;
}

/* CTA Section */
.cta-section {
    position: relative;
    background: url('cta-background.jpg') no-repeat center center/cover;
    padding: 6rem 0;
    text-align: center;
    color: #fff;
    margin-top: 0;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    /* Dark Overlay */
    z-index: 1;
}

/* Founders Mobile Layout */
@media (max-width: 768px) {
    .founders-grid {
        grid-template-columns: 1fr;
    }

    .founder-card:nth-child(1) {
        grid-column: auto;
        max-width: 100%;
    }
}

/* Popup Modal Styles */
.popup-modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 9999;
    /* High z-index to be on top */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.popup-modal.show {
    display: flex;
    opacity: 1;
}

.popup-content {
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    width: 90%;
    max-width: 450px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    animation: popup-anim-in 0.5s ease-out;
    text-align: center;
    overflow: hidden;
}

@keyframes popup-anim-in {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.close-btn {
    color: #fff;
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 30px;
    font-weight: bold;
    z-index: 10;
    background: rgba(0, 0, 0, 0.5);
    width: 35px;
    height: 35px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
    user-select: none;
}

.close-btn:hover,
.close-btn:focus {
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}

.popup-img {
    width: 100%;
    height: auto;
    display: block;
}

.popup-actions {
    padding: 20px;
    background: #fff;
}

.register-btn {
    background-color: #FF6600;
    color: white !important;
    padding: 12px 30px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.2s, background-color 0.3s;
    box-shadow: 0 4px 6px rgba(255, 102, 0, 0.3);
    border: none;
    cursor: pointer;
}

.register-btn:hover {
    background-color: #e65c00;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 102, 0, 0.4);
}