@import url("utilitty.css");
@import url("loginmodal.css");
@import url("signupmodal.css");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* overflow: hidden; */
  font-family: 'Poppins', sans-serif;
}

:root {
  --top_header_footercolor: #0a2751;
  --navbtncolor: #3d96bb;
  --choseboxcolor: #5e99e3;
  --headingcolor: #1371db;
  --subheading_btncolor: #14498c;
  --pcard_scardcolor: #edf6fc;
  --quoteBtncolor: #a947d7;
  --title_color_2:#b91093;
}

/* top navbar */
header {
  /* width: 100%;
  height: 60px; */
  /* background-color: var(--top_header_footercolor); */
  /* font-size: 18px;
  color: #fff; */
}
header img {
  /* width: 20px; */
}

header .top_nav_l {
  /* gap: 5px; */
  /* margin-left: 50px; */
}

header .top_nav_r {
  /* margin-right: 24px; */
}
h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #1A73E8, #7B61FF);
  margin: 8px auto 0;
  border-radius: 3px;
}


/* test*/

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
   width: 100%;
  transition: all 0.4s ease;
  background: transparent;
  position: fixed;
  top: 0;
  /* left: 0; */
  z-index: 1000;
  
}
.navbar.scrolled {
  background: #ebe8e8;
  padding: 10px 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  z-index: 1000;
}
/* Text Color After Scroll */
.navbar.scrolled .menu li a
 {
  color: #141414;
}
.navbar.scrolled .menu li a:hover
 {
   color: #3f6ccc;
}
.navbar.scrolled .logo span {
  color: #111111;
}
/* Button After Scroll */
.navbar.scrolled .btn_1 {
  background: #1371db;
  color: #fff;
}

/* Hamburger After Scroll */
.navbar.scrolled .hamburger span {
  background: #111111;
}
.logo img {
  height: 60px;
  margin-right: 10px;
}

.logo span {
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
}

.menu {
  list-style: none;
  display: flex;
  gap: 25px;
  font-size: 20px;
}

.menu li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  text-transform: capitalize;
  transition: color 0.3s ease;
}

.menu li a:hover {
  color: #ffdd57;
}

.btn_1 {
  background-color: #ffdd57;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.btn_1:hover {
  background-color: #e6c84b;
}

.login_icon {
  width: 40px;
  height: 40px;
  margin-left: 20px;
  cursor: pointer;
}

/* Title Section */
.title {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 2;
}

.title .line-1,
.title .line-2,
.title .line-3 {
  font-weight: 600;
  margin: 10px 0;
  text-transform: capitalize;
}

.line-1 { font-size: 2rem; }
.line-2 { font-size: 1.5rem; }
.line-3 { font-size: 2.1rem; color: #ffdd57; }

.btn-group {
  margin-top: 20px;
}

.btn-primary {
  border: 2px solid #ffdd57;
  color: #ffdd57;
  background: transparent;
  padding: 10px 20px;
  margin: 0 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #ffdd57;
  color: #000;
}

.btn-lg {
  padding: 12px 30px;
  font-size: 1rem;
}

.background {
  position: relative;
  background: rgba(0, 0, 0, 0.4) url("../image/bg.webp") no-repeat;
  background-position: center;
  background-size: cover;
  height: 80vh;
  clip-path: polygon(0 0, 100% 0, 100% 95%, 70% 100%, 30% 100%, 0 95%);
  margin-top: 0px;
  background-blend-mode: darken;
}
section .title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  padding: 14px;
}
section .line-1 {
  font-size: 2rem;
  font-weight: 600;
  text-transform: capitalize;
}
section .line-2 {
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: capitalize;
}
section .line-3 {
  font-size: 2.05rem;
  font-weight: 600;
  text-transform: capitalize;
}
#title-card{
  width: 100%;
  /* height: 500px; */
  /* background-color: red; */

}
/* ---------- Typewriter Animation ---------- */
#typewriter {
  color: #ffff1c;
  font-weight: bold;
  border-right: 3px solid #ffff1c;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  animation: blink 0.6s step-end infinite alternate;
}

@keyframes blink {
  from { border-color: transparent; }
  to { border-color: #ffff1c; }
}

/* Optional: make it look good in hero */
.title {
  text-align: center;
  /* margin-top: 120px; */
}

.title h1 {
  font-size: 48px;
  color: #fff;
  margin-bottom: 10px;
}

.title h2 {
  font-size: 36px;
  color: #ffff1c;
}

.title-boxes{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(227px, 1fr));
  gap: 20px;
  padding: 20px;
  justify-items: center;
  align-items: center;
  position: relative;
  margin-top: -7rem;
  /* margin-bottom: 2rem; */
  justify-content: center;
}
.title-box{
  display: flex;
  flex-direction: column;
  align-items: center;;
  padding: 16px 17px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  background-color: #edf6fc;
  transition: transform 0.3s ease, box-shadow 0.3s ease;

}
/* Fade-in from bottom animation */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1.3s ease forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Delay control (optional) */
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.5s; }
.delay-3 { animation-delay: 0.9s; }

.title-box:hover{
  transform: translateY(-10px);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.2);
}
.title-box img{
  width: 65px;

}
.title-box h3{
  color: var(--headingcolor);
}
.about-us{
  padding: 60px 0;
  /* background-color: #f9f9f9; */
  background-color:#ffffff;
}
.about-us-body {
  display: grid;
  /* grid-template-columns: 1fr 1fr; */
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 20px;
  align-items: center;
  width:100%;
  margin:0 auto;
}

.about-left p {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #333;
}
.about-left h2{
  color:var(--headingcolor);
  margin: 12px 0;
}
.about-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-right img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 8px;
}
.list{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
  width:100%;
  justify-content: center;
  margin:18px 32px;
}
.list li{ 
  padding: 20px;
  /* font-size: 1.3rem; */
}
.list ul{
  font-size: 160%;
  list-style: url('../image/tick.png');
  /* list-style-image: linear-gradient(to left bottom, red, blue); */
  
}
/* SERVICE SECTION */
.services h2{
  color:var(--headingcolor);
  margin: 12px 0;
}
.service-sub-title{
  color: #333;
  font-size:1.25rem;
}

.services-card{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin: 25px 0;
}
.services-card-item{ 
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 17px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  background-color: #edf6fc;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

.services-card-item:hover{
  transform: translateY(-10px);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.2);
}
.services-card-item img{
  width: 85px;
  margin-bottom: 10px;
}
.services-card-item h3{
  color: var(--headingcolor);
  /* color: #b91093; */
}
/* Choose us */
.choose_us{
  padding: 22px 0;
}
.choose_us_card{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax( 342px, 1fr));
  /* grid-template-columns: repeat(3,1fr); */
  gap: 20px;
  margin-top: 30px;
}
.choose_us_card_item{
 display: grid;
  /* grid-template-columns: 1fr,1fr; */
  gap: 20px ;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  
}
.block{
  width: 40px;
  height: 40px;
  /* border-radius:50; */
  background-color: #1371db;
  margin: 20px 25px;
}
.card_box-title{
  margin: 20px 25px;
}
.choose_us_card_item img{
  width: 100%;
  height: 100%;
}
.choose_us h2{
  color:var(--headingcolor);
  margin: 12px 0;
}
.choose_us p{
  color: #333;
  font-size:1.25rem;
}
/* Price plans */

#price h2{
  color:var(--headingcolor);
  margin: 12px 0;
}
#price p{
  color: #333;
  font-size:1.25rem;
}
.price_cards{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin: 25px 0;
}
.price_card{
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  background-color: #edf6fc;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* padding: 23px 0; */
  /* width: 350px;
  height: 450px; */
}
.price_card:hover{
  transform: translateY(-10px);
}
.smblock{
  width: 15px;
  height: 15px;
  background-color: #1371db;
  display:inline-block;
}
.sub_title-color {
  color:var(--headingcolor);
  /* margin: 12px 0; */
}
.price-card-list{
  
  gap: 15px;
  
}
.price-card-list span{
  margin-left: 10px;
}
.price-card-list{
  margin: 10px;
  display:flex;
  flex-direction: column;
  gap: 53px;
}
.price-card-list button{
  padding: 10px;
  border-radius: 6;
  background-color:var(--headingcolor);
  color: #ffffff;
  /* width: 40%;
  display: block;
  margin: 0 auto; */

  
}
/* contact us */
#contact_us{
  margin-top: 65px;
}
.grid_container{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  
}
.grid_contact_item{
box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
  /* background-color: #edf6fc; */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* padding: 23px 0; */
}
.grid_contact_item:hover{
  transform: translateY(-10px);
}
.block_list{
  display: flex;
  align-items: center;

}
.grid_contact_item form{
  display: flex;
  flex-direction: column;
  padding: 14px;
  gap: 16px;
}
.grid_contact_item input ,select{
  padding: 8px;
  margin: 10px 0;
  border-radius: 6px;
}
.right_contact{
  width: 100%;
  height: 100%;
  background-color: var(--headingcolor);

}
.right_contact form input[type="submit"] {
  background-color: #a947d7;
  color: #ffffff;
}
.left_contact .d_text{
  padding: 25px;
}

/* Web Application Software solutions */
#software h2{
  color:var(--headingcolor);
  margin: 12px 0;
}
.software_card{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
  margin: 25px 0;
}
.software_card_item{
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  background-color: #edf6fc;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 17px;
  border-radius: 10px;

 }
.software_card_item:hover{
  transform: translateY(-10px);
}
.soft_image{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  /* border: 2px solid #ddd ; */
  border-radius: 10px;
  background-color: #fff;
}
.software_card_item img{
  width:80%;
  height: auto;
  margin-bottom: 10px;
  
}
.software_card_item h3{
  color: var(--headingcolor);
  /* color: #b91093; */
}
.software_card_item p{
  color: #333;
  font-size:1.15rem;
}
/*section Testimony */



/* Testimonial Card */
.client-slider {
  background: #f8fbff;
  padding: 40px 0;
}
/* #testimonials{
  padding: 40px 0;
} */
#testimonials h2{
  color:var(--headingcolor);
  margin: 12px 0;
}
.testimony_card_item {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  background-color: #edf6fc;
  padding: 40px 35px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimony_card_item:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.testimony_card_item img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.testimony_card_item h3 {
  margin-bottom: 8px;
  color: #222;
}

.testimony_card_item p {
  color: #333;
  font-size: 1rem;
  font-style: italic;
}

/* Swiper Fix */
.swiper {
  padding-bottom: 40px;
}
/* footer */
.footer {
  background: #0b2c4d;
  color: #ffffff;
  padding: 60px 0 0;
  font-size: 14px;
  
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 100px;
}

.footer-box h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #ffffff;
}

.footer-box p {
  line-height: 1.7;
  color: #dcdcdc;
}

.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box ul li {
  margin-bottom: 10px;
  color: #dcdcdc;
}

.footer-box ul li a {
  color: #dcdcdc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-box ul li a:hover {
  color: #00aaff;
  padding-left: 5px;
}

.footer-logo {
  /* width: 160px; */
  width: 80px;
  margin-bottom: 15px;
}

.footer-bottom {
  background: #071f36;
  text-align: center;
  padding: 15px 0;
  margin-top: 40px;
  font-size: 13px;
  color: #cfcfcf;
}
.footer-logo-box{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
}
.footer-logo-box span{
  font-size: 1.4rem;
}
 .whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 25px;
  right: 25px;

  background-color: #25D366;
  color: #fff;

  border-radius: 50%;
  text-align: center;
  font-size: 32px;

  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);

  z-index: 9999999;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  transition: 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #1ebc5a;
}

/* ======================
   HAMBURGER MENU
====================== */

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  position: relative;
  z-index: 3; 
}


.hamburger span {
  width: 28px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: 0.3s;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}


/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}
