*{
  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(4, 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);
}