/* ================================
   RESET & ROOT VARIABLES
================================ */

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

:root {
  --primary:#108d2df7;
  --primary-dark: #181918;
  --dark: #1b1b1b;
  --muted: #666;
  --bg: #eff1f6;
  --card: #ffffff;
  --radius: 10px;
  --shadow-soft: 0 8px 24px rgba(0,0,0,0.08);
  --transition: 0.25s ease;
}

html {
  scroll-behavior: smooth;
}
.red_font{
	color:red;
}
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  background: var(--bg);
  line-height: 1.6;
}

/* ================================
   LAYOUT CONTAINER
================================ */

.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}
.heading{
  justify-content: center;
  justify-items: center;
   
}
.contact{
  display: grid;

  justify-items: center;
  background-color: rgb(242, 242, 245);
  
}

hr{
border: none;
height: 1px;
max-width: 200px;   
background-color: blue;
margin: 0 auto;
}
.policy_list li{
  list-style: none;
}
.sub_points{
	margin-left:50px;
}
.list_margin{
	margin-left:30px;
}
/* ================================
   HEADER
================================ */

.header-container {
  display: grid;
  grid-template-columns: 1fr 3fr 1fr;
  align-items: center;
  padding: 20px;
  background: white;
  box-shadow: var(--shadow-soft);
}

.left-brand {
  text-align: center;
}

.logo-size {
  width: 150px;
  height: auto;
}

.brand-text {
  font-size: 1.0rem;
  font-weight: 700;
  font-family: Wide Latin; 
}

.text-accent {
  color: red;
}

.branding-image {
  text-align: center;
}

.top-image {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.right-block {
  text-align: center;
}

.social {
  width: 30px;
  margin: 0 6px;
  transition: transform var(--transition);
}

.social:hover {
  transform: scale(1.3);
}

/* ================================
   NAVIGATION
================================ */

.nav-container {
  position: sticky;
  top: 0;
  background: var(--primary);
  z-index: 999;
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
  position: relative;
}

.menu-toggle {
  display: none;
  font-size: 26px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

.main-menu {
  list-style: none;
  display: flex;
  gap: 20px;
}
.main-menu li {
  position: relative;
  border-bottom:1px solid rgba(255,255,255,0.2);
}

.main-menu a {
  text-decoration: none;
  color: white;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 6px;
  transition: var(--transition);
}

.main-menu a:hover {
  background: white;
  color: var(--primary);
}

/* Dropdown */

.submenu,
.sub-submenu {
  list-style:none;
  position: absolute;
  background: var(--primary);
  padding:3px;
  border-radius: 0 0 10px 10px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  text-wrap: nowrap;
}
.submenu li{
  padding: 6px;
}

.submenu {
  top: 35px;
  left: 0;
}

.sub-submenu {
  top: 0;
  left: 100%;
}

.main-menu li:hover > .submenu {
  opacity: 1;
  visibility: visible;
}

.submenu li:hover > .sub-submenu {
  opacity: 1;
  visibility: visible;

}

/* ================================
   HERO
================================ */

.hero {
  padding: 100px 0;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-text {
  flex: 1;
}

.hero h1 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.lead {
  color: var(--muted);
  margin-bottom: 20px;
}

.hero-image img {
  max-width: 400px;
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

/* ================================
   BUTTONS
================================ */

.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.btn.primary {
  background: var(--primary);
  color: white;
}

.btn.primary:hover {
  background: rgb(179, 157, 232);
  color: rgb(15, 0, 128);
}

.btn.outline {
  border: 1px solid #ddd;
  background: rgb(33, 7, 149);
  color: white;
}

.btn.outline:hover {
background: rgba(164, 241, 181, 0.848);
color: rgb(41, 18, 173);
  
}
/* Language Switch */

.language-switch {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 10px;
}

.lang-btn {
  padding: 6px 12px;
  border: 1px solid #ddd;
  background: white;
  cursor: pointer;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.2s ease;
}

.lang-btn.active {
  background: var(--primary);
  color: rgb(221, 226, 241);
  border-color: var(--primary);
}
/* ========For Published App========== */

.app-card{

    display:flex;
    gap:30px;

    align-items:flex-start;

    background:#fff;

    border-radius:20px;

    padding:30px;

    box-shadow:0 10px 35px rgba(0,0,0,.08);

    transition:.3s;

    margin:40px 0;

}

.app-card:hover{

    transform:translateY(-5px);

    box-shadow:0 20px 40px rgba(0,0,0,.12);

}

.app-icon img{

    width:140px;

    border-radius:28px;

}

.app-details{

    flex:1;

}

.app-header{

    margin-bottom:15px;

}

.app-header h2{

    margin:0;

    font-size:32px;

    color:#222;

}

.tagline{

    margin-top:8px;

    font-size:18px;

    color:#0a74da;

    font-weight:600;

}

.badge{

    display:inline-block;

    margin-left:10px;

    padding:5px 12px;

    border-radius:30px;

    background:#28a745;

    color:#fff;

    font-size:13px;

    font-weight:600;

}

.app-description{

    color:#555;

    font-size:17px;

    line-height:1.8;

    margin-bottom:20px;

}

.feature-list{

    display:flex;

    flex-wrap:wrap;

    gap:12px;

    margin-bottom:25px;

}

.feature-list span{

    background:#f3f6fb;

    border-radius:30px;

    padding:10px 18px;

    font-size:15px;

    color:#333;

}

.button-group{

    display:flex;

    gap:15px;

    flex-wrap:wrap;

}

.btn-play{

    background:#0d6efd;

    color:#fff;

    text-decoration:none;

    padding:14px 28px;

    border-radius:10px;

    font-weight:600;

    transition:.3s;

}

.btn-play:hover{

    background:#0b5ed7;

}

.btn-more{

    border:2px solid #0d6efd;

    color:#0d6efd;

    text-decoration:none;

    padding:12px 28px;

    border-radius:10px;

    font-weight:600;

    transition:.3s;

}

.btn-more:hover{

    background:#0d6efd;

    color:#fff;

}

/* ================================
   SECTIONS
================================ */

section {	
	padding: 30px 0;  
}

h2 {
  font-size: 2rem;
  margin-bottom: 8px;
}

/* ================================
   SERVICES
================================ */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  background: var(--card);
  padding: 25px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-6px);
}

/* ================================
   PORTFOLIO
================================ */

.apps-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.app-item {
  display: flex;
  gap: 20px;
  align-items: center;
  background: var(--card);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.app-item img {
  width: 70px;
  border-radius: var(--radius);
}

.app-item>img:hover {
  transform: scale(2.4);
  transition:0.4s;
}

.badge {
  font-size: 0.75rem;
  background: var(--primary);
  color: white;
  padding: 4px 8px;
  border-radius: 50px;
}
.upcoming{
  font-size: 0.75rem;
  background: rgb(82, 121, 228);
  color: white;
  padding: 4px 8px;
  border-radius: 50px;

}

/* ================================
   BENEFITS
================================ */

.benefit-list {
  list-style: none;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.benefit-list li {
  flex: 1 1 30%;
  background: var(--card);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

/* ================================
   CONTACT
================================ */

.form {
  display: grid;
  gap: 15px;
  max-width: 700px;
}

.form input,
.form textarea,
.form select {
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-size: 0.95rem;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(13,183,36,0.15);
}

/* ================================
   FOOTER
================================ */

.site-footer {
  text-align: center;
  background: rgb(26, 5, 108);
  color: white;
  padding: 30px 0;
  font-size: 0.9rem;
}
.site-footer a{
    color: white;
}

/* CAPTCHA styling */
#captcha {
  text-align: center;
  font-weight: bold;
}

#captchaLabel {
  font-weight: 600;
}

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

@media (max-width: 992px) {

  .hero-inner {
    flex-direction: column-reverse;
    text-align: center;
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .app-item {
    flex-direction: column;
    text-align: center;
  }
  /*=============added =========*/
  .menu-toggle {
    display: block;
  }

  .main-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 40px;
    right: 20px;
    width: 240px;
    background: var(--primary);
    padding: 10px;
    border-radius: var(--radius);
  }

  .main-menu.active {
    display: flex;
  }

 /*new added */
 .submenu,
.sub-submenu{
    position:static;
    opacity:1;
    visibility:visible;
    display:none;
    background:rgba(255,255,255,0.08);
    padding-left:10px;
}

.submenu.show,
.sub-submenu.show{
display:block;
}
.hero-image {
  max-width: 250px;
}
.grid-3 {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .header-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }

}

