*{margin:0;padding:0;box-sizing:border-box;font-family:Poppins}

/* TOP BAR */
.topbar{
background:#0a2540;
color:#fff;
padding:10px 20px;
display:flex;
justify-content:space-between;
}

/* NAVBAR */
.nav{
margin-bottom: 0;
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 20px;
background:#fff;
position:sticky;
top:0;
box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

.nav a{
margin:0 10px;
text-decoration:none;
color:#333;
}

/* HERO FULL BANNER */
.hero{
height:75vh;
background:url('https://images.unsplash.com/photo-1518770660439-4636190af475') no-repeat center/cover;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:#fff;
position:relative;
}

.hero::before{
content:"";
position:absolute;
top:0;left:0;width:100%;height:100%;
background:rgba(0,0,0,0.6);
}

.hero-content{
position:relative;
z-index:2;
}

.hero h1{font-size:50px;margin-bottom:15px}
.hero p{font-size:18px;margin-bottom:20px}

.btn{
background:#00c6ff;
color:#fff;
padding:12px 25px;
border:none;
border-radius:25px;
}

/* SECTION COMMON */
section{
padding:70px 20px;
text-align:center;
}

/* SERVICES */
.grid{
display:flex;
flex-wrap:wrap;
justify-content:center;
}

.card{
background:#fff;
padding:25px;
margin:15px;
width:260px;
border-radius:15px;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
transition:0.3s;
}

.card:hover{
transform:translateY(-10px);
}

.about {
  padding: 80px 20px;
  background: #f5f8ff;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
  flex-wrap: wrap;
}

/* IMAGE */
.about-img {
  flex: 1;
}

.about-img img {
  width: 100%;
  border-radius: 15px;
}

/* TEXT */
.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.about-text p {
  margin-bottom: 20px;
  color: #555;
  line-height: 1.6;
}

/* BULLETS FIX */
.about-text ul {
  list-style: none;
  padding: 0;
}

.about-text ul li {
  margin-bottom: 10px;
  font-size: 16px;
  position: relative;
  padding-left: 25px;
}

/* CUSTOM ICON ✔ */
.about-text ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #007bff;
  font-weight: bold;
}

/* PRICING */
.price-card{
display:inline-block;
background:#fff;
padding:30px;
margin:15px;
border-radius:15px;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

/* TESTIMONIAL */
.testimonials{
background:#007bff;
color:#fff;
}

.testimonial{
margin:15px auto;
max-width:600px;
}

/* CONTACT */
.contact input,.contact textarea{
width:80%;
padding:12px;
margin:10px;
border-radius:8px;
border:1px solid #ddd;
}

/* FOOTER */
footer{
background:#0a2540;
color:#fff;
padding:20px;
}

/* MOBILE */
@media(max-width:768px){
.hero h1{font-size:30px}
.grid{flex-direction:column}
}

.hero-slider{
 margin-top: 0;
position:relative;
height:75vh;
overflow:hidden;
position: relative;
  top: -2px;
}

.slide{
position:absolute;
width:100%;
height:100%;
opacity:0;
transition:opacity 1s ease-in-out;
}

.slide img{
width:100%;
height:100%;
object-fit:cover;
}

.slide.active{
opacity:1;
}

.overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.6);
color:#fff;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
}
.card img{
width:60px;
margin-bottom:10px;
}

.testimonials {
  padding: 80px 20px;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  text-align: center;
  color: #fff;
}

.testimonials h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #ffffff;
}

/* SLIDER */
.testimonial-slider {
  display: flex;
  overflow-x: auto;
  padding: 20px;
  scroll-behavior: smooth;
}

.testimonial-slider::-webkit-scrollbar {
  display: none;
}

/* CARD */
.testimonial-card {
  min-width: 280px;
  background: #ffffff;
  margin: 10px;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  flex-shrink: 0;
  text-align: center;
  transition: 0.3s;
  border: 1px solid rgba(255,255,255,0.1);
}

.testimonial-card:hover {
  transform: translateY(-10px);
}

/* IMAGE */
.testimonial-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 15px;
}

/* TEXT */
.testimonial-card p {
  color: #555;
  font-size: 14px;
  margin-bottom: 10px;
}

.testimonial-card h4 {
  color: #007bff;
  font-weight: 600;
}
.pricing {
  padding: 80px 20px;
  text-align: center;
  background: #f5f8ff;
}

.pricing-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

/* CARD BASE */
.price-card {
  width: 280px;
  padding: 30px;
  border-radius: 20px;
  color: #fff;
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
  transition: 0.3s;
}

.price-card:hover {
  transform: translateY(-10px) scale(1.03);
}

/* COLORS */
.basic {
  background: linear-gradient(135deg, #00c6ff, #0072ff);
}

.standard {
  background: linear-gradient(135deg, #ff7e5f, #feb47b);
}

.premium {
  background: linear-gradient(135deg, #8e2de2, #4a00e0);
}

/* TEXT */
.price-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.price-card h1 {
  font-size: 40px;
  margin-bottom: 15px;
}

.price-card ul {
  list-style: none;
  margin-bottom: 20px;
  padding: 0;
}

.price-card ul li {
  margin: 8px 0;
}

/* BUTTON */
.price-card button {
  background: #fff;
  color: #000;
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.price-card button:hover {
  background: #000;
  color: #fff;
}

/* CONTAINER */
.services-container {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap; /* responsive */
  margin-top: 30px;
}

/* CARD */
.card {
  width: 250px;
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* ICON */
.card i {
  font-size: 40px;
  margin-bottom: 15px;
  color: #007bff;
}

.contact {
  padding: 80px 20px;
  background: linear-gradient(135deg, #eef5ff, #ffffff);
  text-align: center;
}

.contact h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.subtitle {
  color: #666;
  margin-bottom: 40px;
}

/* LAYOUT */
.contact-container {
  display: flex;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
  flex-wrap: wrap;
}

/* LEFT SIDE */
.contact-info {
  flex: 1;
  text-align: left;
}

.contact-info h3 {
  margin-bottom: 15px;
}

.contact-info p {
  margin: 10px 0;
  font-size: 16px;
}

.contact-info i {
  color: #007bff;
  margin-right: 10px;
}

/* BOX */
.contact-box {
  margin-top: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* FORM */
.contact-form {
  flex: 1;
}

.contact-form form {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.input-group {
  display: flex;
  gap: 10px;
}

.input-group input {
  width: 100%;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border-radius: 8px;
  border: 1px solid #ddd;
}

/* BUTTON */
.contact-form button {
  width: 100%;
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width:768px){
  .contact-container {
    flex-direction: column;
  }

  .input-group {
    flex-direction: column;
  }
}
.logo img {
  height: 50px;
  width: auto;
}
body {
  margin: 0;
  padding: 0;
}
/* NAVBAR */
.nav {
  position: relative;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* DESKTOP MENU */
.menu {
  display: flex;
  gap: 20px;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {

  /* HAMBURGER SHOW */
  .menu-toggle {
    display: block;
  }

  /* MENU STYLE */
  .menu {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;

    background: #ffffff;
    padding: 20px;

    flex-direction: column;
    align-items: center;

    box-shadow: 0 10px 20px rgba(0,0,0,0.2);

    /* animation setup */
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;

    transition: all 0.3s ease;
  }

  /* MENU LINKS */
  .menu a {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    width: 100%;
    text-align: center;
    color: #333;
  }

  /* ACTIVE STATE */
  .menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
}
#topBtn {
  position: fixed;
  bottom: 30px;
  right: 20px;

  background: linear-gradient(135deg, #00c6ff, #0072ff);
  color: white;

  border: none;
  padding: 12px 15px;
  border-radius: 50%;

  font-size: 18px;
  cursor: pointer;

  display: none; /* hidden initially */

  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transition: 0.3s;
}

#topBtn:hover {
  transform: scale(1.1);
}
.badge {
  background: #ff4d4d;
  color: #fff;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 10px;
  margin-left: 5px;
}
.top-arrow {
  margin-top: 30px;
  text-align: right;
}

.top-arrow a {
  display: inline-block;
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  color: #fff;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  font-size: 16px;
  text-align: center;
  transition: 0.3s;
}

.top-arrow a:hover {
  transform: translateY(-5px);
}
html {
  scroll-behavior: smooth;
}
.top-contact-bar {
  background: linear-gradient(135deg, #0072ff, #00c6ff);
  color: #fff;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
}

.top-contact-bar i {
  margin-right: 6px;
}

/* RIGHT SIDE */
.contact-right a {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}

/* HOVER EFFECT */
.contact-right a:hover {
  text-decoration: underline;
}

/* MOBILE */
@media(max-width:768px){
  .top-contact-bar {
    flex-direction: column;
    gap: 5px;
    text-align: center;
  }
}
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
}
/* REMOVE DEFAULT GAP */
body {
  margin: 0;
  padding: 0;
}

/* REMOVE SPACE BELOW NAV */
.nav {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* REMOVE SPACE ABOVE SLIDER */
.hero-slider {
  margin-top: 0 !important;
  padding-top: 0 !important;
  display: block;
}

/* REMOVE IMAGE GAP */
.hero-slider img {
  display: block;
}