/* ========== Global Styles ========== */
body {
    font-family: 'Open Sans', sans-serif;
    background-color: #121318;
    color: white;
    margin: 0;
    padding: 0;
}
body *::selection  {
  color: #ffffff;
  background: RGBA(255, 98, 1, 0.7);
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

/* ========== Navbar ========== */
.navbar {
    background: transparent;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    width: 150px;
}

/* Mobile Menu Icon */
.menu-icon {
    font-size: 24px;
    color: white;
    cursor: pointer;
    display: none;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    z-index: 9999994674849999999999494999;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    transition: 0.3s;
    font-size: 18px;
}

.nav-links a:hover {
    color: #ff6201;
}

/* Mobile Navbar */
@media (max-width: 768px) {
    .navbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .menu-icon {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        background: #1A1B22;
        text-align: center;
        display: none;
        flex-direction: column;
        padding: 10px 0;
    }

    .nav-menu.active {
        display: flex;
        animation: fadeInDown 0.5s ease-in-out;
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
    }
}

/* ========== Hero Section ========== */
.hero {
    text-align: center;
    padding: 100px 0;
    animation: fadeIn 1.5s ease-in-out;
}

.hero h1 {
    font-size: 48px;
    font-weight: bold;
}

.hero p {
    color: #bbb;
    font-size: 18px;
}

/* ========== Buttons with Gradient ========== */
.btn {
    background: linear-gradient(45deg, #ff6201, #ff9500);
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    margin-top: 10px;
    transition: 0.3s;
    font-size: 18px;
    border: none;
}

.btn:hover {
    background: linear-gradient(45deg, #ff9500, #ff6201);
}

/* ========== Features Section ========== */
.features {
    padding: 50px 0;
    text-align: center;
}

.feature-boxes {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
}

.feature-box {
    background: #1A1B22;
    padding: 30px;
    border-radius: 10px;
    width: 30%;
    text-align: center;
    transition: 0.3s;
}

.feature-box:hover {
    transform: translateY(-10px);
}

.feature-box i {
    font-size: 40px;
    color: #ff6201;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .feature-box {
        width: 100%;
    }
}

/* ========== Screenshot Section ========== */
.screenshots {
    text-align: center;
    padding: 50px 0;
    background: #1A1B22;
    position: relative;
}

.screenshot-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: auto;
}

/* iPhone Frame */
.iphone-frame {
    position: relative;
    width: 100%;
    padding-top: 200%;
    background: url("https://i.ibb.co/KjMnvr8G/Picsart-25-02-26-12-07-22-539.png") no-repeat center;
    background-size: contain;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Screenshot Slider Inside iPhone */
.swiper-container {
    position: absolute;
    width: 84%;
    height: 84%;
    top: 8%;
    left: 8%;
    overflow: hidden;
    border-radius: 20px;
}

.swiper-slide img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

/* Responsive Screenshots */
@media (max-width: 768px) {
    .screenshot-wrapper {
        max-width: 300px;
    }
}

/* ========== Contact Us Button ========== */
.contact-container {
    text-align: center;
    margin: 50px 0;
    align-items: center;
    display: flex;
    justify-content: center;
}

.contactButton {
    background: #ff6201;
    color: white;
    font-family: inherit;
    padding: 12px 20px;
    font-size: 17px;
    font-weight: 500;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 6px rgba(255, 98, 1, 0.4);
    position: relative;
}

.iconButton {
    margin-left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ========== Contact Pop-up Dialog ========== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 99999999998484899;
}

.modal-content {
    background: #1e1e2d;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    animation: fadeInUp 0.5s ease-in-out;
}

.close {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 24px;
    cursor: pointer;
}

/* ========== Telegram Button ========== */
/* From Uiverse.io by faxriddin20 */ 
.telegram {
  transition: none 0.5s ease;
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 10px;
  padding-right: 10px;
  width: 130px;
  height: 50px;
  gap: 10px;
  border: none;
  background-color: rgb(42 171 238);
  color: white;
  border-radius: 15px;
  cursor: pointer;
}

.telegram-text {
  transition: none 0.3s ease;
  font-weight: bold;
  font-size: 1rem;
}

.telegram:hover .telegram-text {
  display: none;
  position: absolute;
}

.telegram-svg {
  width: 23px;
  height: 23px;
  transition: 0.8s;
}

.telegram:hover .telegram-svg {
  margin-left: 40px;
  display: block;
  transform: rotate(50deg);
}


/* ========== Animations ========== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
