@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

body{
	line-height: 1.5;
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
	overflow-x: hidden;
}
*{
	margin:0;
	box-sizing: border-box;
}
:before,:after{
	box-sizing: border-box;
}
.container{
	max-width: 1200px;
	margin:auto;
}
.row{
	display: flex;
	flex-wrap: wrap;
}
.v-center{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
ul{
	list-style: none;
	margin:0;
	padding:0;
}
a{
	text-decoration: none;
}
/* header */
.header{
	display: block;
	width: 100%;
	/* position: absolute; */
	background-color: #ea4636;
	z-index: 99;
	padding:15px;
}
.header .item-left{
	/* flex:0 0 17%; */
}
.header .logo a{
	font-size: 30px;
	color:#000000;
	font-weight: 700;
	text-decoration: none;
}
.header .item-center{
	/* flex:0 0 66%; */
}
.header .item-right{
	/* flex:0 0 17%; */
	/* display: flex; */
	/* justify-content: flex-end; */
}
.header .item-right a{ 
     text-decoration: none;
     font-size: 16px;
     color:#555555;
     display: inline-block;
     margin-left: 10px;
     transition: color 0.3s ease;
}
.header .menu > ul > li{
	display: inline-block;
	line-height: 50px;
	margin-left: 15px;
}
.header .menu > ul > li > a{
	font-size: 13.5px;
	font-weight: 500;
	color:#000000;
	position: relative;
	text-transform: uppercase;
	transition: color 0.3s ease;
}
.header .menu > ul > li .sub-menu{
	position: absolute;
	z-index: 500;
	background-color:#ffffff;
	box-shadow: -2px 2px 70px -25px rgba(0,0,0,0.3); 
	padding: 20px 30px;
	transition: all 0.5s ease;
	margin-top:25px;
	opacity:0;
	visibility: hidden;
}
@media(min-width: 992px){
.header .menu > ul > li.menu-item-has-children:hover .sub-menu{
	margin-top: 0;
	visibility: visible;
	opacity: 1;
}
}
.header .menu > ul > li .sub-menu > ul > li{
	line-height: 1;
}
.header .menu > ul > li .sub-menu > ul > li > a{
	display: inline-block;
	padding: 10px 0;
	font-size: 15px;
	color: #555555;
	transition: color 0.3s ease;
	text-decoration: none;
	text-transform: capitalize;
}
.header .menu > ul > li .single-column-menu{
	min-width: 280px;
	max-width: 350px;
}
.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li{
   line-height: 1;
   display: block; 
}
.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a {
	padding:10px 0;
	display: inline-block;
	font-size: 15px;
	color:#555555;
	transition: color 0.3s ease;
}
.header .menu > ul > li .sub-menu.mega-menu{ 
    left: 50%;
    transform: translateX(-50%);	
}

.header .menu > ul > li .sub-menu.mega-menu-column-4{
  max-width: 1300px;
  width: 100%; 	
  display: flex;
  flex-wrap: wrap;
  padding:20px 15px;
  border-radius: 10px;
  margin-top: 2rem;
}
.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item{
  flex:0 0 20%;
  padding:0 15px;
}
.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item .title{
	font-size: 14px;
	color:#ea4636;
	font-weight: 600;
	/* line-height: 1; */
	padding:10px 0;
}
.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item.text-center .title{
	text-align: center;
}
.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item img{
	max-width: 100%;
	width: 100%;
	vertical-align: middle;
	margin-top: 10px;
	height: 150px;
	border-radius: 10px;
	border: #ccc 1px solid;
	object-fit: cover;
}
.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item img:hover{
	transform: scale(1.05);
}
.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a:hover,
.header .menu > ul > li .sub-menu > ul > li > a:hover,
.header .item-right a:hover,
.header .menu > ul > li:hover > a{
	color:#ea4636;
}

.mobile-menu-head,
.mobile-menu-trigger{
	display: none;
}


/*responsive*/
@media(max-width: 991px){

	.header .item-center{
		order:3;
		flex:0 0 100%;
	}
	.header .item-left,
	.header .item-right{
		/* flex:0 0 auto; */
	}
	.v-center{
		justify-content: space-between;
	}
	.v-center {
    display: block;
    }
	.header .mobile-menu-trigger{
		display: flex;
		height: 30px;
		width: 30px;
		margin-left: 15px;
		cursor: pointer;
		align-items: center;
		justify-content: center;
	}
	.header .mobile-menu-trigger span{
		display: block;
		height: 2px;
		background-color: #333333;
		width: 24px;
		position: relative;
	}
	.header .mobile-menu-trigger span:before,
	.header .mobile-menu-trigger span:after{
		content: '';
		position: absolute;
		left:0;
		width: 100%;
		height: 100%;
		background-color: #333333;
	}
	.header .mobile-menu-trigger span:before{
		top:-6px;
	}
	.header .mobile-menu-trigger span:after{
		top:6px;
	}
	.header .item-right{
		align-items: center;
	}

	.header .menu{
		position: fixed;
		width: 320px;
		background-color:#ffffff;
		left:0;
		top:0;
		height: 100%;
		overflow: hidden;
		transform: translate(-100%);
		transition: all 0.5s ease;
		z-index: 1099;
	}
	.header .menu.active{
	   transform: translate(0%);	
	}
	.header .menu > ul > li{
		line-height: 1;
		margin:0;
		display: block;
	}
	.header .menu > ul > li > a{
		line-height: 50px;
		height: 50px;
		padding:0 50px 0 15px;
		display: block;
		border-bottom: 1px solid rgba(0,0,0,0.1);
	}
	.header .menu > ul > li > a i{
		position: absolute;
		height: 50px;
		width: 50px;
		top:0;
		right: 0;
		text-align: center;
		line-height: 50px;
		transform: rotate(-90deg);
	}
	.header .menu .mobile-menu-head{
		display: flex;
		height: 50px;
		border-bottom: 1px solid rgba(0,0,0,0.1);
		justify-content: space-between;
		align-items: center;
		position: relative;
		z-index: 501;
		position: sticky;
		background-color: #ffffff;
		top:0;
	}
	.header .menu .mobile-menu-head .go-back{
		height: 50px;
		width: 50px;
		border-right: 1px solid rgba(0,0,0,0.1);
		cursor: pointer;
		line-height: 50px;
		text-align: center;
		color:#000000;
		font-size: 16px;
		display: none;
	}
	.header .menu .mobile-menu-head.active .go-back{
		display: block;
	}
	.header .menu .mobile-menu-head .current-menu-title{
		font-size: 15px;
		font-weight: 500;
		color:#000000;
	}
	.header .menu .mobile-menu-head .mobile-menu-close{
	    height: 50px;
		width: 50px;
		border-left: 1px solid rgba(0,0,0,0.1);
		cursor: pointer;
		line-height: 50px;
		text-align: center;
		color:#000000;	
		font-size: 25px;
	}
	.header .menu .menu-main{
		height: 100%;
		overflow-x: hidden;
		overflow-y: auto;
	}
	.header .menu > ul > li .sub-menu.mega-menu,
	.header .menu > ul > li .sub-menu{
		visibility: visible;
		opacity: 1;
		position: absolute;
		box-shadow: none;
		margin:0;
		padding:15px;
		top:0;
		left:0;
		width: 100%;
		height: 100%;
		padding-top: 65px;
		max-width: none;
		min-width: auto;
		display: none;
		transform: translateX(0%);
		overflow-y: auto;
	}
.header .menu > ul > li .sub-menu.active{
	display: block;
}
@keyframes slideLeft{
	0%{
		opacity:0;
		transform: translateX(100%);
	}
	100%{
	    opacity:1;
		transform: translateX(0%);	
	}
}
@keyframes slideRight{
	0%{
		opacity:1;
		transform: translateX(0%);
	}
	100%{
	    opacity:0;
		transform: translateX(100%);	
	}
}
	.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item img{
		margin-top:0;
	}
	.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item.text-center .title{
		margin-bottom: 20px;
	}
	.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item.text-center:last-child .title{
		margin-bottom:0px;
	}
	.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item{
		flex: 0 0 100%;
        padding: 0px;
	}
	.header .menu > ul > li .sub-menu > ul > li > a,
	.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a{
		display: block;
	}
	.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul {
		margin-bottom: 15px;
	}
	.menu-overlay{
		position: fixed;
		background-color: rgba(0,0,0,0.5);
		left:0;
		top:0;
		width: 100%;
		height: 100%;
		z-index: 1098;
		visibility: hidden;
		opacity:0;
		transition: all 0.5s ease;
	}
	.menu-overlay.active{
	  visibility: visible;
	  opacity:1;	
	}
}



    h2 {
      font-size:28px;
      margin-bottom:30px;
      position:relative;
    }
    h2::after {
      content:"";
      display:block;
      width:60px;
      height:4px;
      background:#ff7b00;
      margin:12px auto 0;
      border-radius:2px;
    }



    .showcase {
      display:flex;
      justify-content:center;
      align-items:center;
      gap:40px;
      flex-wrap:wrap; /* responsive */
    }

    /* Phone mockup */
    .phone {
      width:280px;
      height:560px;
      background:#000;
      border-radius:36px;
      padding:16px 12px;
      position:relative;
      box-shadow:0 15px 40px rgba(0,0,0,0.3);
      overflow:hidden;
      flex-shrink:0;
    }
    .phone:before {
      content:"";
      position:absolute;
      top:8px;left:50%;
      transform:translateX(-50%);
      width:70px;height:8px;
      background:#1a1a1a;
      border-radius:0 0 10px 10px;
      z-index:5;
    }
    .phone-screen {
      width:100%;
      height:100%;
      border-radius:28px;
      overflow:hidden;
    }

    /* Swiper inside phone */
    .phone-screen .swiper {
      width:100%;
      height:100%;
    }
    .phone-screen img {
      width:100%;
      height:100%;
      object-fit:cover;
    }

    /* Side previews */
    .side-previews {
      display:flex;
      flex-direction:column;
      gap:16px;
    }
    .side-previews img {
      width:150px;
      height:260px;
      border-radius:20px;
      opacity:0.4;
      transform:scale(0.9);
      object-fit:cover;
      transition:opacity .3s ease, transform .3s ease;
    }
    .side-previews img.active {
      opacity:0.7;
      transform:scale(1);
    }

    /* Responsive tweaks */
    @media (max-width: 992px) {
      .showcase {
        gap:20px;
      }
      .side-previews {
        flex-direction:row;
        justify-content:center;
      }
      .side-previews img {
        width:90px;
        height:180px;
      }
    }

    @media (max-width: 600px) {
      h2 {
        font-size:22px;
      }
      .phone {
        width:220px;
        height:440px;
      }
      .side-previews img {
        width:70px;
        height:140px;
      }
      .showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 40px;
    flex-wrap: wrap;
}
.about-section .PP {
    width:100%;
    margin: auto;
    font-size: 14px!important;
    line-height: 1.7;
    padding: 10px;
    color: #555;
    margin-bottom: 20px;
}
h2{
  font-size: 26px!important;
}
    }   


  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes bounceIn {
    0% { opacity: 0; transform: scale(0.5); }
    60% { opacity: 1; transform: scale(1.1); }
    100% { transform: scale(1); }
  }
  @keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
  }
  .animate-fade-in { animation: fadeIn 1s ease forwards; }
  .animate-bounce-in { animation: bounceIn 1.2s ease forwards; }
  .animate-float { animation: float 4s ease-in-out infinite; }

  /* Screens Animation */
  .screen { opacity: 0; transition: opacity 1s ease; }
  .screen.active { opacity: 1; z-index: 10; }

    @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes bounceIn {
    0% { opacity: 0; transform: scale(0.5); }
    60% { opacity: 1; transform: scale(1.1); }
    100% { transform: scale(1); }
  }
  @keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
  }
  .animate-fade-in { animation: fadeIn 1s ease forwards; }
  .animate-bounce-in { animation: bounceIn 1.2s ease forwards; }
  .animate-spin-slow { animation: spin 20s linear infinite; }
  .animate-float { animation: float 4s ease-in-out infinite; }

   @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes bounceIn {
    0% { opacity: 0; transform: scale(0.5); }
    60% { opacity: 1; transform: scale(1.1); }
    100% { transform: scale(1); }
  }
  .animate-fade-in {
    animation: fadeIn 1s ease forwards;
  }
  .animate-bounce-in {
    animation: bounceIn 1.2s ease forwards;
  }
  .animate-spin-slow {
    animation: spin 20s linear infinite;
  }

  .animate-spin-slow {
    animation: spin 8s linear infinite;
  }
  .show {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      margin: 0;
      padding: 0;
      background: #fff8f3;
      color: #333;
    }
   
    .about-section h2 {
      font-size: 32px;
      font-weight: bold;
      /* color: #ff5722; */
      margin-bottom: 20px;
    }
    .about-section .PP {
      max-width: 850px;
      margin: auto;
      font-size: 16px;
      line-height: 1.7;
      color: #555;
      margin-bottom: 20px;
    }
    .key-points {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      margin-top: 20px;
    }
    .point-card {
      background: #fff;
      padding: 25px;
      border-radius: 15px;
      box-shadow: 0 6px 18px rgba(0,0,0,0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .point-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }
    .point-card i {
      font-size: 40px;
      color: #ff5722;
      margin-bottom: 15px;
    }
    .point-card h3 {
      font-size: 18px;
      margin-bottom: 10px;
      color: #222;
    }
    .point-card p {
      font-size: 14px;
      color: #666;
      line-height: 1.6;
    }
       .app-features {
      
      background: linear-gradient(135deg, #ff7043, #ffcc80);
      color: #fff;
    }
    h2 {
      text-align: center;
      padding: 40px 20px 20px;
      font-size: 28px;
      font-weight: bold;
      letter-spacing: 1px;
    }
    .features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 25px;
      max-width: 1200px;
      margin: auto;
      padding: 20px;
    }
    .features .card {
      background: #fff;
      border-radius: 20px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 6px 18px rgba(0,0,0,0.15);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      opacity: 0;
      animation: fadeInUp 1s forwards;
    }
    .features .card:nth-child(1) { animation-delay: 0.2s; }
    .features .card:nth-child(2) { animation-delay: 0.4s; }
    .features .card:nth-child(3) { animation-delay: 0.6s; }
    .features .card:nth-child(4) { animation-delay: 0.8s; }
    .features .card:nth-child(5) { animation-delay: 1s; }
    .features .card:nth-child(6) { animation-delay: 1.2s; }
    .features .card:nth-child(7) { animation-delay: 1.4s; }
    .features .card:nth-child(8) { animation-delay: 1.6s; }
    .features .card:hover {
      transform: translateY(-10px) scale(1.03);
      box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    }
    .features .card i {
      font-size: 45px;
      color: #ff5722;
      margin-bottom: 15px;
    }
    .features .card h3 {
      font-size: 18px;
      margin-bottom: 12px;
      color: #333;
    }
    .features  .card p {
      font-size: 14px;
      color: #555;
      line-height: 1.6;
    }
    @keyframes fadeInUp {
      from {
        transform: translateY(40px);
        opacity: 0;
      }
      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

    /* CTA Section */
    .cta {
      text-align: center;
      margin: 40px 20px;
    }
    .cta h3 {
      font-size: 24px;
      margin-bottom: 20px;
      font-weight: bold;
      color: #fff;
    }
    .cta-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }
    .cta-buttons a img {
      height: 55px;
      transition: transform 0.3s ease;
    }
    .cta-buttons a img:hover {
      transform: scale(1.05);
    }

	.banner-content-1{
   padding: 120px 0;
}
   .banner-content{
      padding: 120px 0;
      position: absolute;
   }

   .mockup img{
      width: 100%;
      padding: 0 3rem;
   }
.banner-section img{
 
  width: 100%;
}

   .btn-outline-danger{
       color: #ea4636!important;
       border: 1px solid #ea4636;
       background-color: transparent;
       padding: 10px 20px;
       border-radius: 5px;
       border-radius: 30px;
       width: 180px;
       transition: all 0.3s ease;
   }
   .btn-outline-danger:hover{
       background-color: #ea4636;
       color: #ffffff!important;
   }

   .logo img{
      width:120px;
   }

   .container-fluid-1{
       max-width: 1300px;
       margin: 0 auto;
       border: #ffffff 1px solid;
       border-radius: 50px;
       padding:  7px 2rem;
       background-color: #ffffff;
      box-shadow: rgb(204, 219, 232) 3px 3px 6px 0px inset, rgba(255, 255, 255, 0.5) -3px -3px 6px 1px inset;
   }
   @media (max-width: 1400px) {
      .space{
         padding: 0 3.5rem;
      }
   }
   @media (max-width: 991px) {
       .container-fluid-1{
          display: flex;
          justify-content: space-between;
          align-items: center;
       }
   }

       footer {
      background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
      color: #ddd;
      font-size: 14px;
      line-height: 1.8;
      position: relative;
      overflow: hidden;
    }

    /* Subtle background pattern */
    footer::before {
      content: "";
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(255,123,0,0.05) 20%, transparent 20%) repeat;
      background-size: 60px 60px;
      animation: moveBg 20s linear infinite;
    }

    @keyframes moveBg {
      from {transform: rotate(0deg);}
      to {transform: rotate(360deg);}
    }

    .footer-top {
      max-width: 1200px;
      margin: auto;
      padding: 60px 20px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 40px;
      position: relative;
      z-index: 2;
      animation: fadeIn 1.5s ease-in-out;
    }

    @keyframes fadeIn {
      0% {opacity: 0; transform: translateY(40px);}
      100% {opacity: 1; transform: translateY(0);}
    }

    .footer-col h3 {
      color: #fff;
      font-size: 16px;
      margin-bottom: 18px;
      text-transform: uppercase;
      position: relative;
      display: inline-block;
    }

    .footer-col h3::after {
      content: "";
      width: 40px;
      height: 2px;
      background: #ED3237;
      position: absolute;
      left: 0;
      bottom: -5px;
      transition: 0.3s;
    }

    .footer-col h3:hover::after {
      width: 70px;
    }

    .footer-col ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-col ul li {
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      transition: 0.3s;
    }

    .footer-col ul li i {
      margin-right: 8px;
      color: #ED3237;
      font-size: 13px;
      transition: 0.3s;
    }

    .footer-col ul li a {
      text-decoration: none;
      color: #bbb;
      position: relative;
      display: inline-block;
      transition: 0.3s;
    }

    .footer-col ul li a::after {
      content: "";
      width: 0;
      height: 2px;
      background: #ED3237;
      position: absolute;
      left: 0;
      bottom: -2px;
      transition: width 0.3s ease;
    }

    .footer-col ul li a:hover::after {
      width: 100%;
    }

    .footer-col ul li:hover i {
      transform: scale(1.2);
    }

    .footer-col img {
      max-width: 100%;
      border-radius: 8px;
      box-shadow: 0 0 10px rgba(0,0,0,0.5);
      transition: transform 0.4s;
    }

    .footer-col img:hover {
      transform: scale(1.05);
    }

    .footer-links {
      text-align: center;
      padding: 18px 10px;
      border-top: 1px solid #333;
      position: relative;
      z-index: 2;
    }

    .footer-links a {
      margin: 0 15px;
      color: #bbb;
      text-decoration: none;
      position: relative;
      font-weight: 500;
      transition: 0.3s;
    }

    .footer-links a:hover {
      color: #ED3237;
    }

    .social {
      text-align: center;
      padding: 18px;
      border-top: 1px solid #333;
      position: relative;
      z-index: 2;
    }

    .social span {
      margin-right: 15px;
      color: #aaa;
      font-weight: bold;
    }

    .social a {
      margin: 0 10px;
      font-size: 18px;
      display: inline-block;
      transition: 0.4s;
    }

    .social a i {
      padding: 10px;
      border-radius: 50%;
      background: #222;
      color: #fff;
      transition: all 0.4s ease;
    }

	h2{
		/* color: #ff5722; */
		font-weight: 800;
	}
    .social a:hover i {
      box-shadow: 0 0 15px rgba(255,123,0,0.8);
      transform: translateY(-4px) scale(1.1);
    }

    .social a:nth-child(2):hover i { background: #3b5998; } /* Facebook */
    .social a:nth-child(3):hover i { background: #00acee; } /* Twitter */
    .social a:nth-child(4):hover i { background: #0077b5; } /* LinkedIn */
    .social a:nth-child(5):hover i { background: #0d4e12; } /* whatsapp */
    .social a:nth-child(6):hover i { background: #e4405f; } /* Instagram */

    .footer-bottom {
      background: #0a0a0a;
      padding: 20px;
      text-align: center;
      font-size: 12px;
      color: #999;
      position: relative;
      z-index: 2;
    }

    .footer-bottom p {
      margin: 10px auto 0;
      font-size: 12px;
      color: #777;
      max-width: 900px;
      line-height: 1.6;
    }

    @media (max-width: 992px) {
      .footer-top {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
      }
      .footer-col ul li {
        justify-content: center;
      }
    }