*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: 'Segoe UI', sans-serif;
}

body{
  background:#f5f6fa;
  color:#111827;
}
/*HEADER*/
/* container */
.container{
  width:90%;
  margin:auto;
}

/* TOP BAR */
.top-bar{
  background:#111827;
  color:#fff;
  font-size:13px;
  padding:8px 0;
}

.top-bar .container{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
}

.top-bar .right a{
  color:#fff;
  margin-left:10px;
  transition:0.3s;
}

.top-bar .right a:hover{
  color:#a78bfa;
}

/* NAVBAR */
.navbar{
  background:#ffffff;
  box-shadow:0 6px 20px rgba(0,0,0,0.08);
  position:sticky;
  top:0;
  z-index:1000;
}

.nav-container{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:16px 0;
}

/* LOGO */
.logo h2{
  font-size:24px;
  font-weight:700;
  color:#111827;
}

.logo span{
  color:#7c3aed;
}

/* NAV LINKS */
.nav-links{
  display:flex;
  list-style:none;
  align-items:center;
}

.nav-links li{
  margin-left:25px;
}

.nav-links a{
  text-decoration:none;
  color:#374151;
  font-weight:500;
  transition:0.3s;
  position:relative;
}

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

/* underline animation */
.nav-links a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-5px;
  width:0%;
  height:2px;
  background:#7c3aed;
  transition:0.3s;
}

.nav-links a:hover::after{
  width:100%;
}

/* BUTTON */
.btn{
  background:#7c3aed;
  padding:8px 16px;
  border-radius:8px;
  color:#fff !important;
  transition:0.3s;
}

.btn:hover{
  background:#5b21b6;
}

/* MOBILE MENU */
.menu-btn{
  display:none;
  font-size:24px;
  cursor:pointer;
  color:#111827;
}

/* RESPONSIVE */
@media(max-width:768px){

  .menu-btn{
    display:block;
  }

  .nav-links{
    position:absolute;
    top:110px;
    right:0;
    background:#ffffff;
    width:100%;
    flex-direction:column;
    align-items:flex-start;
    padding:20px;
    display:none;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
  }

  .nav-links.active{
    display:flex;
  }

  .nav-links li{
    margin:15px 0;
  }
}

/*HEADER*/


/*MARQUEE*/
.marquee-wrapper{
  background: linear-gradient(90deg,#111827,#1f2937,#111827);
  overflow:hidden;
  position:relative;
  padding:10px 0;
  border-top:1px solid rgba(255,255,255,0.1);
  border-bottom:1px solid rgba(255,255,255,0.1);
}

/* moving container */
.marquee{
  display:flex;
  width:max-content;
  animation: scroll 18s linear infinite;
}

/* text style */
.marquee span{
  color:#fff;
  font-weight:600;
  font-size:16px;
  margin-right:60px;
  letter-spacing:1px;
  white-space:nowrap;

  /* glow effect */
  text-shadow:
    0 0 5px #7c3aed,
    0 0 10px #7c3aed,
    0 0 20px #a78bfa;
}

/* smooth infinite scroll */
@keyframes scroll{
  0%{
    transform:translateX(0);
  }
  100%{
    transform:translateX(-50%);
  }
}

/* MOBILE RESPONSIVE */
@media(max-width:768px){
  .marquee span{
    font-size:13px;
    margin-right:40px;
  }

  .marquee{
    animation-duration:12s;
  }
}
/*MARQUEE*/


/*SLIDER*/

/* SLIDER WRAPPER */
.slider{
  position:relative;
  width:100%;
  height:500px;
  overflow:hidden;
}

/* SLIDES CONTAINER */
.slides{
  position:relative;
  width:100%;
  height:100%;
}

/* EACH SLIDE */
.slide{
  position:absolute;
  width:100%;
  height:100%;
  opacity:0;
  transition:1s ease;
}

.slide.active{
  opacity:1;
}

/* IMAGE */
.slide img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* DARK OVERLAY TEXT */
.overlay{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.45);
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding-left:80px;
  color:#fff;
}

.overlay h2{
  font-size:42px;
  margin-bottom:10px;
  text-shadow:0 0 10px rgba(124,58,237,0.8);
}

.overlay p{
  font-size:18px;
  opacity:0.9;
}

/* BUTTONS */
.prev, .next{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:rgba(255,255,255,0.2);
  border:none;
  color:#fff;
  font-size:28px;
  padding:10px 15px;
  cursor:pointer;
  border-radius:8px;
  backdrop-filter:blur(10px);
  transition:0.3s;
}

.prev:hover, .next:hover{
  background:rgba(124,58,237,0.7);
}

.prev{ left:20px; }
.next{ right:20px; }

/* MOBILE VIEW */
@media(max-width:768px){

  .slider{
    height:320px;
  }

  .overlay{
    padding-left:20px;
  }

  .overlay h2{
    font-size:22px;
  }

  .overlay p{
    font-size:14px;
  }

  .prev, .next{
    font-size:20px;
    padding:6px 10px;
  }
}
/*SLIDER*/

/* SECTION BACKGROUND */
.company-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #fff9e6, #fff3cc);
  text-align: center;
}

/* HEADING */
.section-title {
  font-size: 32px;
  margin-bottom: 40px;
  color: #333;
  font-weight: 700;
}

/* GRID */
.company-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

/* CARD */
.company-card {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  transition: 0.3s ease;
  cursor: pointer;
}

/* IMAGE */
.company-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
}

/* TEXT */
.company-card h3 {
  margin-top: 15px;
  font-size: 18px;
  color: #222;
}

/* HOVER EFFECT */
.company-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .company-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .company-container {
    grid-template-columns: 1fr;
  }
}


/* MODAL BACKGROUND */
.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: 999;
}

/* MODAL BOX */
.modal-box {
  background: linear-gradient(135deg, #fff9e6, #ffe6b3);
  padding: 30px;
  width: 350px;
  border-radius: 15px;
  text-align: center;
  position: relative;
  animation: popUp 0.3s ease;
}

/* ANIMATION */
@keyframes popUp {
  from {transform: scale(0.8); opacity: 0;}
  to {transform: scale(1); opacity: 1;}
}

/* CLOSE BUTTON */
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
}

/* INPUTS */
.modal-box input {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border-radius: 8px;
  border: 1px solid #ccc;
}

/* BUTTON */
.modal-btn {
  width: 100%;
  padding: 10px;
  background: #ffb300;
  border: none;
  border-radius: 8px;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
}

.modal-btn:hover {
  background: #e6a100;
}

/* TEXT */
.modal-box p {
  margin-top: 15px;
}

.modal-box span {
  color: #ff9800;
  cursor: pointer;
  font-weight: bold;
}


.captcha-refresh-btn{
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: #f1f1f1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
  font-size: 14px;
  color: #333;
}

.captcha-refresh-btn:hover{
  background: #ddd;
  transform: rotate(90deg);
}

.captcha-refresh-btn i{
  transition: 0.5s;
}

.captcha-refresh-btn:hover i{
  transform: rotate(180deg);
}

/* ===== CID FEATURE SECTION ===== */
.cid-feature-section{
  padding: 70px 20px;
  background: linear-gradient(135deg, #f8fafc, #eef2f7);
  text-align: center;
}

/* TITLE */
.cid-section-title{
  font-size: 30px;
  font-weight: 600;
  position: relative;
  display: inline-block;
  margin-bottom: 50px;
}

.cid-section-title::after{
  content: "";
  width: 60%;
  height: 3px;
  background: #222;
  position: absolute;
  left: 20%;
  bottom: -8px;
  border-radius: 5px;
  transition: 0.3s;
}

.cid-section-title:hover::after{
  width: 90%;
  left: 5%;
}

/* GRID */
.cid-feature-container{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* CARD */
.cid-feature-card{
  position: relative;
  padding: 30px 20px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.3);
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
}

/* BORDER EFFECT */
.cid-feature-card::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(120deg, transparent, #dcdcdc, transparent);
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/* ICON */
.cid-feature-card i{
  font-size: 32px;
  margin-bottom: 15px;
  display: inline-block;
  transition: 0.3s;
}

/* TEXT */
.cid-feature-card h3{
  font-size: 19px;
  margin-bottom: 10px;
  color: #222;
}

.cid-feature-card p{
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

/* HOVER */
.cid-feature-card:hover{
  transform: translateY(-12px) scale(1.02);
  background: #ffffff;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.cid-feature-card:hover i{
  transform: rotate(8deg) scale(1.2);
}

/* LIGHT EFFECT */
.cid-feature-card::after{
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.4), transparent 70%);
  top: -100%;
  left: -100%;
  opacity: 0;
  transition: 0.5s;
}

.cid-feature-card:hover::after{
  top: 0;
  left: 0;
  opacity: 1;
}

/* RESPONSIVE */
@media(max-width: 992px){
  .cid-feature-container{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 576px){
  .cid-feature-container{
    grid-template-columns: 1fr;
  }

  .cid-feature-section{
    padding: 50px 15px;
  }

  .cid-section-title{
    font-size: 24px;
  }
}

/* SECTION */
.pricing-section {
    padding: 60px 20px;
    text-align: center;
}

.section-title {
    font-size: 32px;
    margin-bottom: 10px;
}

.section-subtitle {
    color: #aaa;
    margin-bottom: 40px;
}

/* CONTAINER */
.pricing-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

/* CARD */
.pricing-card {
    background: #111;
    padding: 30px 20px;
    width: 280px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.05);
    
  transition: all 0.3s ease;
    position: relative;
}

/* GLOW EFFECT */
.pricing-card:hover {
   
  transform: translateY(-8px) scale(1.02);
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.6);
}

/* FREE PLAN STYLE */
.free-plan {
    border: 1px solid rgba(255,255,255,0.08);
}

/* FREE BUTTON DIFFERENT LOOK */
.free-btn {
    background: transparent;
    border: 1px solid #8a2be2;
}

.free-btn:hover {
    background: #8a2be2;
    box-shadow: 0 0 10px #8a2be2;
}

/* POPULAR CARD */
.pricing-card.popular {
    border: 2px solid #8a2be2;
    transform: scale(1.08);
}

.badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #8a2be2;
    color: white;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 10px;
}

/* PRICE */
.price {
    font-size: 28px;
    margin: 15px 0;
  color:white;
}

.price span {
    font-size: 14px;
    color: #aaa;
}

/* LIST */
.pricing-card ul {
    list-style: none;
    padding: 0;
}

.pricing-card ul li {
    margin: 10px 0;
    color: #ccc;
}

/* BUTTON */
.pricing-card button {
    margin-top: 20px;
    padding: 10px 20px;
    border: none;
    background: linear-gradient(45deg, #8a2be2, #5f00ff);
    color: white;
    border-radius: 25px;
    cursor: pointer;
    transition: 0.3s;
}

.pricing-card button:hover {
    box-shadow: 0 0 15px #8a2be2;
}

/* MOBILE RESPONSIVE */
@media(max-width: 768px) {
    .pricing-container {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card {
        width: 90%;
    }
}

.features-gradient {
    padding: 80px 20px;
    text-align: center;

    /* 🔥 BEAUTIFUL LIGHT GRADIENT */
    background: linear-gradient(135deg, #f5f3ff, #e0e7ff, #fdf2ff);
}

/* Title */
.section-title {
    font-size: 34px;
    color: #222;
}

.section-subtitle {
    color: #666;
    margin-bottom: 50px;
}

/* GRID */
.features-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: auto;
}

/* CARD (Glass Style) */
.feature-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 15px;
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.4);
}

/* Hover Glow */
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.25);
}

/* Text */
.feature-card h3 {
    color: #333;
    margin-bottom: 10px;
}

.feature-card p {
    color: #555;
    font-size: 14px;
}

/* RESPONSIVE */
@media(max-width: 900px) {
    .features-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px) {
    .features-container {
        grid-template-columns: 1fr;
    }
}

.cid-testimonial-wrapper {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, #f5f3ff, #e0e7ff, #fdf2ff);
    overflow: hidden;
}

.cid-testimonial-title {
    font-size: 32px;
    margin-bottom: 40px;
    color: #222;
}

/* SLIDER */
.cid-testimonial-slider {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 1100px;
    margin: auto;
}

.cid-testimonial-viewport {
    overflow: hidden;
    width: 100%;
}


/* TRACK */
.cid-testimonial-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
}

/* CARD */
.cid-testimonial-card {
    flex: 0 0 300px;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 15px;
    transition: 0.3s;
}

/* HOVER */
/* HOVER */
.cid-testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(138, 43, 226, 0.25);
}

/* BUTTONS */
/* BUTTONS */
.cid-btn-prev,
.cid-btn-next {
    background: white;
    border: none;
    font-size: 22px;
    padding: 10px 14px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
  margin:20px;
}

.cid-btn-prev:hover,
.cid-btn-next:hover {
    background: #8a2be2;
    color: white;
}

/* MOBILE */
@media(max-width: 768px) {
    .cid-testimonial-card {
        flex: 0 0 260px;
    }
}

.cid-footer {
    background: #0a0a0a;
    color: #fff;
    padding: 60px 20px 20px;
}

/* GRID */
.cid-footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

/* BOX */
.cid-footer-box h2,
.cid-footer-box h3 {
    color: #b388ff;
}

.cid-footer-box p {
    color: #aaa;
    font-size: 14px;
    line-height: 1.6;
}

.cid-footer-box a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin: 6px 0;
    transition: 0.3s;
}

.cid-footer-box a:hover {
    color: #b388ff;
    padding-left: 5px;
}

/* SOCIAL ICONS */
.cid-social {

  display:flex;
}

.cid-social i {
    font-size: 18px;
    margin-right: 10px;
    color: #ccc;
    cursor: pointer;
    transition: 0.3s;
}

.cid-social i:hover {
    color: #b388ff;
    transform: translateY(-3px);
}

/* BOTTOM BAR */
.cid-footer-bottom {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid #222;
    padding-top: 15px;
    color: #777;
    font-size: 13px;
}

/* RESPONSIVE */
@media(max-width: 900px) {
    .cid-footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px) {
    .cid-footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cid-footer-box a {
        display: inline-block;
        margin: 5px 10px;
    }
}

.cid-contact-cta {
    background: radial-gradient(circle at top, #111, #0a0a0a);
    padding: 90px 20px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

/* glowing purple effect */
.cid-contact-cta::before {
    content: "";
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(138,43,226,0.25), transparent 70%);
    filter: blur(50px);
}

.cid-contact-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: auto;
}

.cid-contact-cta h2 {
    font-size: 34px;
    margin-bottom: 10px;
}

.cid-contact-cta p {
    color: #bbb;
    margin-bottom: 40px;
}

/* BOXES */
.cid-contact-boxes {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* CARD */
.cid-contact-item {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(138,43,226,0.3);
    padding: 25px;
    border-radius: 15px;
    width: 250px;
    transition: 0.3s;
    backdrop-filter: blur(10px);
}

/* hover effect */
.cid-contact-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 20px rgba(138,43,226,0.5);
}

.cid-contact-item i {
    font-size: 28px;
    color: #b388ff;
    margin-bottom: 10px;
}

.cid-contact-item h3 {
    margin-bottom: 5px;
}

.cid-contact-item p {
    color: #ccc;
    font-size: 14px;
}

/* RESPONSIVE */
@media(max-width: 600px) {
    .cid-contact-item {
        width: 90%;
    }

    .cid-contact-cta h2 {
        font-size: 24px;
    }
}
.modal-box select {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 8px;
    border: 1px solid #ccc;
}
