
/* ===== SCROLL TO TOP — SMOOTH & FAST ===== */
#topBtn {
    position: fixed;
    bottom: 70px;
    right: 28px;
    width: 46px;
    height: 46px;
    
    /* Solid dark background - fast */
    background: #0a0e1a;
    
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 1000;

    /* Hide state */
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px) scale(0.9);

    /* Clean transition - smooth and fast */
    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        visibility 0.25s ease;

    will-change: transform, opacity;
}

/* Show state */
#topBtn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Hover effect - smooth */
#topBtn:hover {
    background: #1a1a3e;
    border-color: rgba(0, 191, 255, 0.4);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Active state - instant feedback */
#topBtn:active {
    transform: scale(0.92);
    background: #2a2a5e;
}

/* Icon — stays centered */
#topBtn i,
#topBtn svg {
    color: #ffffff;
    position: relative;
    z-index: 1;
    pointer-events: none;
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
    #topBtn {
        width: 40px;
        height: 40px;
        font-size: 16px;
        right: 16px;
        bottom: 64px;
        border-radius: 50%;
        background: #0a0e1a;
    }
    
    #topBtn:hover {
        background: #1a1a3e;
    }
    
    #topBtn:active {
        transform: scale(0.92);
    }
}

@media (max-width: 380px) {
    #topBtn {
        width: 38px;
        height: 38px;
        right: 12px;
        bottom: 60px;
        border-radius: 50%;
        background: #0a0e1a;
        font-size: 15px;
    }
}

/* ===== DARK MODE SUPPORT ===== */
@media (prefers-color-scheme: dark) {
    #topBtn {
        background: #0a0e1a;
        border-color: rgba(255, 255, 255, 0.12);
    }
    
    #topBtn:hover {
        background: #1a1a3e;
        border-color: rgba(0, 191, 255, 0.3);
    }
    
    #topBtn:active {
        background: #2a2a5e;
    }
}

/* ===== LIGHT MODE SUPPORT ===== */
@media (prefers-color-scheme: light) {
    #topBtn {
        background: #1a1a2e;
        border-color: rgba(255, 255, 255, 0.2);
    }
    
    #topBtn:hover {
        background: #2a2a4e;
        border-color: rgba(0, 191, 255, 0.4);
    }
    
    #topBtn:active {
        background: #3a3a6e;
    }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    #topBtn,
    #topBtn:hover,
    #topBtn:active {
        transition: none !important;
        transform: none !important;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    #topBtn {
        display: none !important;
    }
}


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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background:#0a0a0a;
    color:#fff;
    line-height:1.6;
    overflow-x:hidden;
}
/* ============================================================
   FOOTER - REDESIGNED
   ============================================================ */

.footer {
    width: 100%;
    padding: 80px 0 0;
    background: linear-gradient(180deg, #0a0e1a 0%, #070b15 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Animated gradient overlay */
.footer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 0%, rgba(0, 114, 255, 0.03) 0%, transparent 70%);
    animation: footerGlow 20s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes footerGlow {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    100% {
        transform: translate(10%, 10%) rotate(5deg);
    }
}

/* ----- Grid Container ----- */
.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    z-index: 1;
}

/* ===== Brand Column — FULL WIDTH, CENTERED ===== */
.footer-brand {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 30px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
}

.footer-brand::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00bfff, #0066ff, #00bfff, transparent);
    border-radius: 2px;
}

.footer-logo {
    width: 220px;
    height: auto;
    margin-bottom: 16px;
    filter: drop-shadow(0 0 30px rgba(0, 114, 255, 0.15));
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer-brand p {
    color: #8892a8;
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: 600px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.footer-socials {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: #8892a8;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}



.footer-socials a:hover {
    color: #fff;
    transform: translateY(-4px) scale(1.05);
}

.footer-socials a:hover::before {
    opacity: 1;
}

.footer-socials a i {
    position: relative;
    z-index: 1;
}

/* ===== Other Columns ===== */
.footer-col {
    text-align: center;
    padding: 0 10px;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #00bfff, #0066ff);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.footer-col:hover h4::after {
    width: 50px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #8892a8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    padding-left: 0;
}

.footer-col ul li a::before {
    content: '→';
    color: #00bfff;
    font-size: 0.7rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer-col ul li a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.footer-col ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Contact and Mail styling */
.footer-col ul li a i {
    width: 20px;
    color: #00bfff;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover i {
    color: #ffffff;
    transform: scale(1.1);
}

/* Special styling for contact items */
.footer-col:last-child ul li a {
    font-size: 0.85rem;
}

.footer-col:last-child ul li a i {
    width: 22px;
}

/* ===== Bottom Bar ===== */
.footer-bottom {
    margin-top: 0;
    padding: 25px 24px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom-left p {
    margin: 0;
    color: #556;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
}

/* Support Status - Redesigned */
.support-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fdfdfd;
    font-weight: 400;
    font-size: 13px;
    padding: 6px 16px;
    background: rgba(0, 191, 255, 0.08);
    border-radius: 5px;
    border: 1px solid rgba(0, 191, 255, 0.1);
    transition: all 0.3s ease;
}



.support-status i {
    color: #00bfff;
    font-size: 14px;
    animation: pulse 2.2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.65;
        transform: scale(0.94);
    }
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-bottom-right p {
    margin: 0;
    color: rgb(245, 245, 248);
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.footer-bottom-right p::before {
    content: '⚡';
    margin-right: 6px;
    color: #00bfff;
    font-size: 14px;
}

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

/* Tablet & small laptops: 2 columns */
@media (max-width: 992px) {
    .footer {
        padding: 60px 0 0;
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        padding-bottom: 20px;
    }

    .footer-logo {
        width: 180px;
    }

    .footer-col {
        text-align: center;
    }

    .footer-col ul li a::before {
        display: none;
    }

    .footer-bottom-content {
        justify-content: center;
    }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
    .footer {
        padding: 50px 0 90px;
    }

    .footer-container {
        gap: 25px;
        padding: 0 16px 30px;
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-brand {
        padding-bottom: 16px;
    }

    .footer-brand::after {
        width: 120px;
    }

    .footer-logo {
        width: 160px;
    }

    .footer-brand p {
        font-size: 0.85rem;
        max-width: 100%;
        padding: 0 10px;
    }

    .footer-socials a {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .footer-col h4 {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }

    .footer-col ul li a {
        font-size: 0.85rem;
    }

    .footer-bottom {
        padding: 20px 16px;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-bottom-left {
        flex-direction: column;
        gap: 10px;
        justify-content: center;
    }

    .footer-bottom-left p {
        font-size: 0.8rem;
    }

    .support-status {
        font-size: 12px;
        padding: 5px 14px;
    }

    .footer-bottom-right p {
        font-size: 0.75rem;
    }
}

/* Very small phones (≤480px) */
@media (max-width: 480px) {
    .footer {
        padding: 40px 0 80px;
    }

    .footer-container {
        gap: 20px;
        padding: 0 12px 25px;
        grid-template-columns: 1fr 1fr;
    }

    .footer-logo {
        width: 140px;
    }

    .footer-brand p {
        font-size: 0.8rem;
        line-height: 1.6;
    }

    .footer-socials {
        gap: 8px;
    }

    .footer-socials a {
        width: 36px;
        height: 36px;
        font-size: 0.8rem;
    }

    .footer-col h4 {
        font-size: 0.75rem;
        margin-bottom: 14px;
        letter-spacing: 0.8px;
    }

    .footer-col ul li {
        margin-bottom: 8px;
    }

    .footer-col ul li a {
        font-size: 0.75rem;
        gap: 6px;
    }

    .footer-col ul li a i {
        width: 16px;
        font-size: 0.75rem;
    }

    .footer-col:last-child ul li a {
        font-size: 0.75rem;
    }

    .footer-bottom {
        padding: 16px 12px;
    }

    .footer-bottom-left p {
        font-size: 0.7rem;
    }

    .support-status {
        font-size: 11px;
        padding: 4px 12px;
    }

    .footer-bottom-right p {
        font-size: 0.7rem;
    }
}

/* Extra small phones (≤360px) */
@media (max-width: 360px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        padding: 0 10px 20px;
    }

    .footer-logo {
        width: 120px;
    }

    .footer-brand p {
        font-size: 0.75rem;
    }

    .footer-socials a {
        width: 32px;
        height: 32px;
        font-size: 0.7rem;
    }

    .footer-col h4 {
        font-size: 0.7rem;
    }

    .footer-col ul li a {
        font-size: 0.7rem;
    }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    .footer::before {
        animation: none;
    }

    .footer-socials a,
    .footer-col ul li a,
    .footer-logo,
    .support-status {
        transition: none !important;
    }

    .footer-socials a:hover,
    .footer-logo:hover,
    .support-status:hover {
        transform: none !important;
    }

    .footer-socials a::before {
        opacity: 0 !important;
    }

    .support-status i {
        animation: none !important;
    }

    .footer-col h4::after {
        transition: none !important;
    }
}
/* ===== MOBILE BOTTOM BAR - FAST & BLACK ===== */

/* Hide on desktop */
.mobile-bottom-bar {
  display: none;
}

/* Show on tablets and mobile */
@media (max-width: 768px) {
  .mobile-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    
    /* Solid black background - fast */
    background: #000000;
    
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    
    /* Reduced responsive height */
    height: clamp(42px, 6vh, 50px);
  }
}

/* Icon buttons - White icons */
.bottom-item {
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: #ffffff;
  text-decoration: none;
  position: relative;
}

/* Icon size - Responsive and smaller */
.bottom-item i {
  font-size: clamp(1rem, 3.5vw, 1.2rem);
  color: #ffffff;
}

/* Label text - smaller */
.bottom-item span {
  font-size: clamp(8px, 2vw, 10px);
  font-weight: 500;
  color: #ffffff;
}

/* Active state - fast feedback */
.bottom-item:active {
  background: rgba(255, 255, 255, 0.08);
  transform: scale(0.92);
}

/* ===== FULL RESPONSIVE BREAKPOINTS ===== */

/* Tablet (768px) */
@media (max-width: 768px) {
  .mobile-bottom-bar {
    height: 48px;
    background: #000000;
  }
  
  .bottom-item i {
    font-size: 1.15rem;
  }
  
  .bottom-item span {
    font-size: 9px;
  }
  
  .bottom-item {
    gap: 2px;
  }
}

/* Mobile Medium (480px) */
@media (max-width: 480px) {
  .mobile-bottom-bar {
    height: 44px;
    background: #000000;
  }
  
  .bottom-item i {
    font-size: 1.05rem;
  }
  
  .bottom-item span {
    font-size: 8px;
  }
  
  .bottom-item {
    gap: 1px;
  }
}

/* Mobile Small (375px) */
@media (max-width: 375px) {
  .mobile-bottom-bar {
    height: 42px;
    background: #000000;
  }
  
  .bottom-item i {
    font-size: 1rem;
  }
  
  .bottom-item span {
    font-size: 7px;
  }
  
  .bottom-item {
    gap: 1px;
  }
}

/* Landscape mode for mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .mobile-bottom-bar {
    height: 38px;
    background: #000000;
  }
  
  .bottom-item i {
    font-size: 0.9rem;
  }
  
  .bottom-item span {
    display: none; /* Hide labels in landscape to save space */
  }
  
  .bottom-item {
    gap: 0;
  }
}

/* Add padding to body to prevent content hiding behind bottom bar */
@media (max-width: 768px) {
  body {
    padding-bottom: clamp(42px, 6vh, 50px);
  }
}

/* For devices with notch/hole-punch */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .mobile-bottom-bar {
    padding-bottom: env(safe-area-inset-bottom);
    height: calc(clamp(42px, 6vh, 50px) + env(safe-area-inset-bottom));
    background: #000000;
  }
  
  body {
    padding-bottom: calc(clamp(42px, 6vh, 50px) + env(safe-area-inset-bottom));
  }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  .bottom-item:active {
    transform: none !important;
  }
}

/* ===== PRINT STYLES ===== */
@media print {
  .mobile-bottom-bar {
    display: none !important;
  }
}


html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    padding-top: 50px;
} 