/* ===== GLOBAL RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", Arial, sans-serif;
    background: #f9f9f9;
    color: #333;
    line-height: 1.6;
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}



/* HEADER */
.header {
    position: sticky;
    top: 0;
    width: 100%;
    background: #fff;
    z-index: 9999;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

/* NAV CONTAINER */
.nav-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.logo img {
    height: 74px;
    width: auto;
    display: block;
}

/* NAV LINKS */
.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* LINKS */
.nav-item,
.dropdown-toggle {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    background: none;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    text-decoration: none;
}

/* DROPDOWN */
.dropdown {
    position: relative;
}

/* Dropdown menu hidden by default */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 220px;
    background: #fff;
    border-radius: 10px;
    padding: 8px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

/* Show dropdown when .open class added */
.dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

/* Dropdown menu links */
.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
    text-decoration: none;
    transition: all 0.25s ease;
}

.dropdown-menu a:hover {
    background: #f1f5f9;
    color: var(--teal);
    padding-left: 25px;
}

/* DESKTOP DROPDOWN */
@media (min-width:901px) {
    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }
}

@media (max-width:900px) {
    .dropdown {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        padding: 6px 0;
        gap: 12px;
    }

    .dropdown-toggle {
        justify-content: center;
        /* center "Ventures ▾" */
        width: 100%;
        cursor: pointer;
    }

    .dropdown-menu {
        position: static !important;
        left: 0 !important;
        transform: none !important;
        width: 100% !important;
        max-width: 100%;
        display: none;
        text-align: center;

    }

    /* Open dropdown */
    .dropdown.open .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        width: 100%;
        text-align: center;
        padding: 12px 10px;
        white-space: normal;
        word-break: break-word;
    }
}

/* CONTACT BUTTON */
.contact-btn {
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 700;
    background: var(--primary);
    color: #000000;
    text-decoration: none;
    font-size: 14px;
    white-space: nowrap;
}

/* HAMBURGER */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 10001;
}

.hamburger svg {
    width: 28px;
    height: 28px;
}

/* ===== MOBILE & TABLET FIX ===== */
@media (max-width: 900px) {

    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        right: 0;
        width: 280px;
        height: auto;
        max-height: calc(100vh - 70px);
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 16px;
        gap: 12px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
        box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
    }

    .nav-links.show {
        transform: translateX(0);
    }

    .nav-item,
    .dropdown-toggle {
        width: 100%;
        font-size: 15px;
        padding: 8px 0;
    }

    /* MOBILE DROPDOWN */
    .dropdown-menu {
        position: static;
        display: none;
        box-shadow: none;
        padding-left: 10px;
    }

    .dropdown.open .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        font-size: 14px;
        padding: 6px 0;
    }

    .contact-btn {
        width: 100%;
        text-align: center;
        margin-top: 8px;
    }
}

/* SMALL PHONES */
@media (max-width: 420px) {
    .logo img {
        height: 40px;
    }
}
/* ===== HERO ===== */
.hero {
    width: 100%;
    height: 100vh;
    max-height: 100vh;
    position: relative;
    /* for absolute positioning of logo card */
    background:
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url("travel main pic.jpg") center / cover no-repeat;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 20px;
    overflow: hidden;
}

/* ===== HERO CONTENT ===== */
.hero-content {
    max-width: 900px;
    width: 100%;
}

.hero-content h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 12px;
}

.hero-content p {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    margin-bottom: 24px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    background: #ffd60a;
    color: #000;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    margin: 5px;
}

.btn:hover {
    transform: scale(1.05);
}

/* ===== LOGO CARD BOTTOM RIGHT ===== */
.logo-card {
    position: absolute;
    bottom: 20px;
    /* distance from bottom */
    right: 20px;
    /* distance from right */
    background: rgba(255, 255, 255, 0.15);
    padding: 15px 20px;
    border-radius: 20px;
    display: inline-block;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
}

.logo-card img {
    width: 120px;
    max-width: 100%;
}

/* Hover Effect */
.logo-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .logo-card {
        bottom: 15px;
        right: 15px;
        padding: 12px 16px;
    }

    .logo-card img {
        width: 90px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .btn {
        padding: 12px 26px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .logo-card {
        bottom: 10px;
        right: 10px;
        padding: 10px 12px;
    }

    .logo-card img {
        width: 70px;
    }

    .hero-content h1 {
        font-size: 1.7rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }
}
/* ===== GENERIC SECTIONS ===== */
section {
    padding: 80px 20px;
    text-align: center;
}

section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #00264d;
    position: relative;
    animation: fadeUp 1s ease;
}

section h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: #ffcc00;
    margin: 10px auto 0;
    border-radius: 2px;
}
/* ===== COUNTERS ===== */
.content-container {
    max-width: 1300px;
    /* safe professional width */
    margin: 0 auto;
    padding: 0 20px;
}

.counters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.counter-card {
    background: #003b5f;
    color: hsl(0, 0%, 100%);
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease;
}

.counter-card:hover {
    transform: translateY(-8px);
}

.counter {
    font-size: 36px;
    font-weight: bold;
    display: block;
    color: #ffcc00;
    margin-bottom: 10px;
}

@media (max-width: 1024px) {
    .counters {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .counters {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .counters {
        grid-template-columns: 1fr;
    }
}


/* ===== CARDS (Companies, Events, etc.) ===== */
.card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    animation: fadeUp 1s ease;
}

.card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}



/* ===== ABOUT: TIMELINE ===== */
.about-timeline {
    padding: 80px 8%;
    text-align: center;
}

.about-timeline h2 {
    color: #00264d;
    margin-bottom: 30px;
    position: relative;
}

.timeline {
    position: relative;
    margin: 30px auto 0;
    max-width: 1000px;
    padding-left: 20px;
    padding-right: 20px;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #ffcc00, #003b5f);
    transform: translateX(-50%);
    opacity: .5;
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 18px 24px;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.tl-icon {
    position: absolute;
    top: -4px;  
    left: calc(50% - 18px);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #003b5f;
    color: #ffcc00;
    display: grid;
    place-items: center;
    z-index: 2;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .2);
}

.tl-content {
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .08);
    padding: 18px;
    text-align: left;
    border: 1px solid rgba(0, 0, 0, .05);
}

.timeline-item:nth-child(odd) .tl-content {
    margin-right: 36px;
}

.timeline-item:nth-child(even) .tl-content {
    margin-left: 36px;
}

.tl-content h3 {
    margin: 0 0 6px;
    color: #00264d;
    font-size: 18px;
}

.tl-content p {
    margin: 0;
    color: #555;
    line-height: 1.6;
    font-size: 15px;
}

/* ===== ABOUT: TEAM ===== */
.about-team {
    padding: 80px 8%;
    background: linear-gradient(135deg, #003366, #004c99);
    color: #fff;
    text-align: center;
}

.about-team h2 {
    color: #ffcc00;
    margin-bottom: 8px;
}

.team-sub {
    opacity: .9;
    max-width: 760px;
    margin: 0 auto 32px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Always 3 columns */
    gap: 22px;
    margin-top: 10px;
    max-width: 1100px;
    /* keeps grid from stretching too wide */
    margin-left: auto;
    /* centers grid */
    margin-right: auto;
    /* centers grid */
    justify-items: center;
    /* center each card inside grid cell */
}

/* Responsive breakpoints */
@media (max-width: 900px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns for tablets */
    }
}

@media (max-width: 600px) {
    .team-grid {
        grid-template-columns: 1fr;
        /* 1 column for mobile */
    }
}

.team-card {
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 18px;
    padding: 18px;
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .15);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* keeps height consistent */
    width: 100%;
    max-width: 320px;
    /* prevents cards from stretching too wide */
}

.team-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 204, 0, .6);
    box-shadow: 0 16px 34px rgba(0, 0, 0, .22);
}

.team-photo {
    width: 100%;
    height: 220px;
    border-radius: 14px;
    background-size: contain;
    /* show full image without cropping */
    background-repeat: no-repeat;
    /* prevent tiling */
    background-position: center;
    /* keep image centered */
    background-color: #fff;
    /* fallback background */
    margin-bottom: 12px;
}

.team-card h3 {
    margin: 6px 0 2px;
    font-size: 18px;
}

.team-card p {
    margin: 0 0 10px;
    opacity: .9;
}

.team-social {
    margin-top: auto;
    /* pushes socials to bottom */
}

.team-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin: 0 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    color: #fff;
    transition: transform .25s ease, background .25s ease, color .25s ease;
    text-decoration: none;
}

.team-social a:hover {
    transform: translateY(-3px);
    background: #ffcc00;
    color: #003366;
}

/* Companies Grid */
.companies {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* max 4 cards */
    gap: 25px;
    margin-top: 40px;
}

.companies-container {
    max-width: 1300px;
    /* desktop limit */
    margin: 0 auto;
    /* center */
    padding: 0 20px;
    /* side spacing */
}

.companies-container {
    overflow-x: hidden;
}

/* Card Style */
.companies .card {
    position: relative;
    height: 280px;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    color: #fff;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.companies .card .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.8));
    z-index: 1;
}

.companies .card i,
.companies .card h3,
.companies .card p,
.companies .card a {
    position: relative;
    z-index: 2;
}

/* Hover Animation */
.companies .card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.companies .card:hover i {
    color: #ffcc00;
    transform: scale(1.2) rotate(360deg);
    transition: 0.5s;
}

.companies .card a {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 16px;
    background: #ffcc00;
    color: #00264d;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s;
}

.companies .card a:hover {
    background: #ffaa00;
}

/* Background Images */
.card.manpower {
    background: url('Manpower\ logo.png') center/cover no-repeat;
}

.card.travel {
    background: url('Travel\ logo.jpg') center/cover no-repeat;
}

.card.export {
    background: url('import\ export\ logo.jpg') center/cover no-repeat;
}

.card.media {
    background: url('Media\ logo.jpg') center/cover no-repeat;
}

.card.organic {
    background: url('reem\ and\ organic\ logo.jpg') center/cover no-repeat;
}

.card.enterprises {
    background: url('Rohtas\ enterprices\ logo.jpg') center/cover no-repeat;
}

.card.visa {
    background: url('study\ visa\ logo.jpg') center/cover no-repeat;
}

.card.buraq {
    background: url('Buraq-logo.jpg') center / cover no-repeat;
}

/* TABLET */
@media (max-width: 1024px) {
    .companies {
        grid-template-columns: repeat(3, 1fr);
        /* 3 cards */
    }
}

/* SMALL TABLET / LARGE MOBILE */
@media (max-width: 768px) {
    .companies {
        grid-template-columns: repeat(2, 1fr);
        /* 2 cards */
    }
}

/* MOBILE */
@media (max-width: 480px) {
    .companies {
        grid-template-columns: 1fr;
        /* 1 card */
    }
}

.partners-section {
    margin-top: 10px;
    padding: clamp(3rem, 6vw, 6rem) 1.2rem;
    background: radial-gradient(circle at top, #020617, #0f172a);
    color: #e5e7eb;
}

.partners-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3.5rem;
}

.partners-header h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.partners-header p {
    color: #9ca3af;
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    line-height: 1.7;
}

/* GRID */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: clamp(1.5rem, 3vw, 2.5rem);
    max-width: 1100px;
    margin: auto;
}

/* CARD */
.partner-card {
    background: linear-gradient(180deg, rgba(56, 189, 248, 0.08), transparent);
    border: 1px solid rgba(56, 189, 248, 0.15);
    border-radius: 18px;
    padding: clamp(1.8rem, 4vw, 2.6rem);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.partner-card:hover {
    transform: translateY(-8px) scale(1.03);
    border-color: #38bdf8;
    box-shadow: 0 25px 60px rgba(56, 189, 248, 0.25);
}

/* LOGO */
.partner-logo {
    height: clamp(50px, 8vw, 90px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo img {
    max-height: 100%;
    max-width: 160px;
    object-fit: contain;
    filter: grayscale(100%) brightness(1.1);
    opacity: 0.85;
    transition: all 0.4s ease;
}

.partner-card:hover img {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
    transform: scale(1.08);
}

/* CTA */
.partners-cta {
    margin-top: 4rem;
    text-align: center;
}

.cta-link {
    text-decoration: none;
}

#partnerBtn {
    position: relative;
    padding: clamp(0.9rem, 3vw, 1.2rem) clamp(2.2rem, 6vw, 3.8rem);
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    font-weight: 600;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    color: #020617;
    background: linear-gradient(135deg, #38bdf8, #0ea5e9, #22d3ee);
    background-size: 200% 200%;
    box-shadow: 0 18px 45px rgba(56, 189, 248, 0.45);
    transition: all 0.4s ease;
    overflow: hidden;
}

#partnerBtn .btn-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.6), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

#partnerBtn:hover {
    transform: translateY(-6px) scale(1.05);
    background-position: 100% 50%;
    box-shadow: 0 30px 80px rgba(56, 189, 248, 0.65);
}

#partnerBtn:hover .btn-glow {
    opacity: 1;
}

/* REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(40px) scale(0.96);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* MOBILE */
@media (max-width: 480px) {
    #partnerBtn {
        width: 100%;
        max-width: 320px;
    }
}



/* ===== FOOTER ===== */
/* Footer */
footer {
    background: linear-gradient(135deg, #001f3f, #003366);
    color: #fff;
    width: 100%;
    margin-top: 40px;
    box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.3);
    font-family: "Segoe UI", sans-serif;
    animation: fadeIn 1s ease-in-out;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    padding: 40px 20px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 12px;
    font-weight: 600;
    color: #f9c74f;
}

.footer-section p,
.footer-section ul li a {
    font-size: 15px;
    line-height: 1.8;
    color: #ddd;
    transition: color 0.3s ease;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a:hover {
    color: #f9c74f;
    text-decoration: underline;
}

.social-links {
    margin-top: 15px;
}

.social-links a {
    display: inline-block;
    margin-right: 12px;
    font-size: 18px;
    color: #fff;
    transition: transform 0.3s, color 0.3s;
}

.social-links a:hover {
    color: #f9c74f;
    transform: translateY(-3px) scale(1.1);
}

.footer-section p i {
    margin-right: 8px;
    color: #f9c74f;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px;
    font-size: 14px;
    color: #bbb;
    background: rgba(0, 0, 0, 0.2);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Back to Top Button */
#backToTop {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #f9c74f;
    color: #001f3f;
    border: none;
    padding: 12px 15px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    transition: opacity 0.4s ease, transform 0.3s ease;
    opacity: 0;
    pointer-events: none;
    /* prevent clicks when hidden */
    z-index: 1000;
}

#backToTop.show {
    opacity: 1;
    pointer-events: auto;
}

#backToTop:hover {
    background: #ffda6a;
    transform: scale(1.1) translateY(-3px);
}

/* Responsive */
@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links a {
        margin: 0 8px;
    }
}

/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {
    .timeline::before {
        left: 20px;
        transform: none;
    }

    .timeline-item,
    .timeline-item:nth-child(even),
    .timeline-item:nth-child(odd) {
        width: 100%;
        left: 0;
        text-align: left;
        padding-left: 52px;
    }

    .tl-icon {
        left: 2px;
    }

    .timeline-item .tl-content,
    .timeline-item:nth-child(odd) .tl-content,
    .timeline-item:nth-child(even) .tl-content {
        margin: 0 0 20px 0;
    }

    .about-hero {
        height: 48vh;
        min-height: 360px;
    }

    .team-photo {
        height: 200px;
    }
}

@media (max-width: 520px) {
    .team-grid {
        gap: 16px;
    }

    .about-team {
        padding: 64px 5%;
    }

    .about-timeline {
        padding: 64px 5%;
    }
}

/* small fade-in if AOS not loaded */
.timeline-item {
    opacity: .0;
    transform: translateY(16px);
    transition: .5s ease;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Floating AI Bot Button ===== */
#aiBotBtn {
    position: fixed;
    bottom: 75px;
    right: 17px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #007aff, #00c6ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 122, 255, 0.4);
    z-index: 9999;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

#aiBotBtn:hover {
    transform: scale(1.15);
    box-shadow: 0 10px 35px rgba(0, 122, 255, 0.6);
}

/* ===== iPhone Style Bot Popup ===== */
#aiBotPopup {
    position: fixed;
    bottom: 100px;
    right: 25px;
    width: 360px;
    height: 720px;
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 38px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    transform: scale(0);
    opacity: 0;
    transition: all 0.35s ease;
    z-index: 99999;
    display: flex;
    flex-direction: column;
}

#aiBotPopup.active {
    transform: scale(1);
    opacity: 1;
}

/* Dynamic Island */
.iphone-header {
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dynamic-island {
    width: 120px;
    height: 35px;
    background: #000;
    border-radius: 18px;
}

/* Bot Screen */
.bot-screen {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 25px;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    color: #fff;
}

/* Footer */
.bot-footer {
    padding: 15px;
    text-align: center;
}

.home-bar {
    width: 140px;
    height: 6px;
    background: #555;
    border-radius: 3px;
    margin: 0 auto 10px;
}

#closeBot {
    background: linear-gradient(135deg, #ff3b30, #ff6b6b);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 18px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s ease;
}

#closeBot:hover {
    background: linear-gradient(135deg, #ff6b6b, #ff3b30);
}

/* ===== Responsive Design ===== */

/* Tablets */
@media (max-width: 1024px) {
    #aiBotPopup {
        width: 300px;
        height: 600px;
        bottom: 90px;
        right: 20px;
        border-radius: 28px;
    }

    #aiBotBtn {
        width: 58px;
        height: 58px;
        font-size: 24px;
    }
}

/* Mobile Phones */
@media (max-width: 768px) {
    #aiBotPopup {
        width: 90%;
        height: 70vh;
        bottom: 65px;
        right: 5%;
        left: 5%;
        border-radius: 25px;
    }

    #aiBotBtn {
        width: 54px;
        height: 54px;
        font-size: 22px;
        bottom: 75px;
        right: 20px;
    }
}

/* Small Mobiles */
@media (max-width: 480px) {
    #aiBotPopup {
        width: 95%;
        height: 65vh;
        bottom: 10px;
        right: 2.5%;
        left: 2.5%;
        border-radius: 20px;
    }

    #aiBotBtn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .bot-screen {
        font-size: 16px;
        padding: 15px;
    }
}

/* Overlay */
#announcement-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 60px;
    z-index: 9999;
}

#announcement-overlay.hidden {
    display: none;
}

/* Announcement Box */
.announcement-box {
    background: #ffffff;
    width: 92%;
    max-width: 720px;
    padding: 20px 18px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    position: relative;
    box-sizing: border-box;
}

/* Headings & Text */
.announcement-box h2 {
    font-size: 1.2rem;
    line-height: 1.4;
    text-align: center;
}

.announcement-box p,
.announcement-box ul li {
    font-size: 0.95rem;
    line-height: 1.5;


}

/* Close Button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
}

/* LIST SPACING */
.announcement-box ul {
    padding-left: 18px;
}

/* ========== MOBILE OPTIMIZATION ========== */
@media screen and (max-width: 480px) {

    #announcement-overlay {
        padding-top: 40px;
    }

    .announcement-box {
        width: 94%;
        padding: 18px 15px;
        border-radius: 10px;
    }

    .announcement-box h2 {
        font-size: 1.05rem;
    }

    .announcement-box p,
    .announcement-box ul li {
        font-size: 0.88rem;
    }

    .close-btn {
        font-size: 18px;
        top: 8px;
        right: 8px;
    }
}