*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: Arial, sans-serif;
}

/* ===== TOP BAR ===== */
.top-bar{
  background:#000;
  color:#fff;
  padding:8px 0;
  font-size:14px;
}

.top-bar .container{
  display:flex;
  justify-content:space-between;
  align-items:center;
  width:90%;
  margin:auto;
  flex-wrap:wrap;
}

.phones span{
  margin-left:15px;
}

.phones i{
  margin-right:5px;
}

/* ===== NAVBAR ===== */
.navbar{
  background:#f3f3f3;
  padding:15px 0;
  box-shadow:0 2px 8px rgba(0,0,0,0.1);
}

.nav-container{
  width:90%;
  margin:auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo img{
  height:70px;
}

.nav-links{
  list-style:none;
  display:flex;
  align-items:center;
}

.nav-links li{
  margin-left:25px;
}

.nav-links a{
  text-decoration:none;
  color:#333;
  font-weight:600;
  position:relative;
  padding:5px 0;
  transition:0.3s;
}

/* Hover underline animation */
.nav-links a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-5px;
  width:0;
  height:2px;
  background:#007bff;
  transition:0.4s;
}

.nav-links a:hover::after{
  width:100%;
}

.nav-links a:hover{
  color:#007bff;
}

.active{
  color:#007bff;
}

/* NEW badge */
.new{
  background:red;
  color:#fff;
  font-size:10px;
  padding:2px 6px;
  border-radius:10px;
  margin-left:5px;
}

/* ===== MOBILE MENU ===== */
.menu-toggle{
  display:none;
  font-size:22px;
  cursor:pointer;
}

/* Responsive */
@media(max-width:992px){

  .nav-links{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#fff;
    flex-direction:column;
    text-align:center;
    display:none;
  }

  .nav-links li{
    margin:15px 0;
  }

  .nav-links.show{
    display:flex;
  }

  .menu-toggle{
    display:block;
  }

}

/* hero section */
.hero-full{
  width:100%;
  height:500px;
  position:relative;
  overflow:hidden;
}

.slider{
  width:100%;
  height:100%;
  position:relative;
}

.slide{
  position:absolute;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:0;
  transition:opacity 1s ease-in-out, transform 6s ease;
  transform:scale(1.1);
}

.slide.active{
  opacity:1;
  transform:scale(1);
}

/* Responsive */

@media(max-width:992px){
  .hero-full{
    height:400px;
  }
}

@media(max-width:768px){
  .hero-full{
    height:300px;
  }
}

@media(max-width:480px){
  .hero-full{
    height:250px;
  }
}

/* about */
/* ===== SECTION ===== */
.about-section{
  padding:70px 20px;
  background:#f5f7fa;
}

.about-container{
  max-width:1100px;
  margin:auto;
  display:flex;
  align-items:center;
  gap:50px;
  flex-wrap:wrap;
}

/* IMAGE */
.about-image{
  flex:1;
  overflow:hidden;
  border-radius:15px;
  box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

.about-image img{
  width:100%;
  display:block;
  transition:0.6s;
}

/* Hover zoom */
.about-image:hover img{
  transform:scale(1.08);
}

/* TEXT */
.about-text{
  flex:1;
  animation:fadeUp 1s ease forwards;
}

.about-text h5{
  color:#00bcd4;
  letter-spacing:2px;
  margin-bottom:10px;
}

.about-text h2{
  font-size:32px;
  margin-bottom:15px;
}

.about-text p{
  color:#555;
  line-height:1.7;
  margin-bottom:25px;
}

/* BUTTON */
.about-btn{
  text-decoration:none;
  background:#00bcd4;
  color:#fff;
  padding:12px 28px;
  border-radius:30px;
  font-weight:600;
  transition:0.3s;
}

.about-btn:hover{
  background:#000;
}

/* TEXT ANIMATION */
@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(30px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* ===== Responsive ===== */

@media(max-width:768px){
  .about-container{
    flex-direction:column;
    text-align:center;
  }

  .about-text h2{
    font-size:26px;
  }
}


/* vision and mission */
.vm-modern {
    padding: 80px 20px;
    background: linear-gradient(120deg, #98b1be, #e0d8d8);
    text-align: center;
}

.vm-heading{
  font-size:34px;
  margin-bottom:50px;
}

.vm-heading span{
  color:#0077b6;
}

/* wrapper */
.vm-wrapper{
  max-width:1000px;
  margin:auto;
  display:flex;
  gap:30px;
  justify-content:center;
  flex-wrap:wrap;
}

/* card */
.vm-card{
  flex:1 1 420px;
  padding:40px 30px;
  border-radius:20px;
  background:rgba(255,255,255,0.6);
  backdrop-filter: blur(10px);
  box-shadow:0 10px 30px rgba(0,0,0,0.1);
  transition:0.4s ease;
  opacity:0;
  transform:translateY(40px);
  animation:fadeUp 1s forwards;
}

.vm-card:nth-child(2){
  animation-delay:0.3s;
}

.vm-icon{
  font-size:50px;
  margin-bottom:15px;
  transition:0.4s;
}

.vm-card h3{
  margin-bottom:15px;
  font-size:24px;
}

.vm-card p{
  color:#555;
  line-height:1.7;
}

/* hover */
.vm-card:hover{
  transform:translateY(-10px) scale(1.03);
  box-shadow:0 15px 40px rgba(0,0,0,0.15);
}

.vm-card:hover .vm-icon{
  transform:rotate(10deg) scale(1.2);
}

/* animation */
@keyframes fadeUp{
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* mobile */
@media(max-width:768px){
  .vm-heading{
    font-size:28px;
  }
}


/* service */
.services{
  padding:80px 20px;
  background:#f8f9fb;
}

.container{
  max-width:1200px;
  margin:auto;
}

.section-title{
  text-align:center;
  font-size:34px;
  margin-bottom:50px;
}

.section-title span{
  color:#0077b6;
}

/* GRID */
.services-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}

/* CARD */
.service-card{
  background:#fff;
  padding:30px 20px;
  border-radius:15px;
  text-align:center;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  transition:0.4s ease;
  opacity:0;
  transform:translateY(40px);
  animation:fadeUp 1s forwards;
}

.service-card:nth-child(even){
  animation-delay:0.3s;
}

.icon{
  font-size:40px;
  margin-bottom:15px;
  transition:0.4s;
}

.service-card h4{
  font-size:16px;
  color:#333;
}

/* Hover Effect */
.service-card:hover{
  transform:translateY(-10px);
  box-shadow:0 15px 35px rgba(0,0,0,0.15);
}

.service-card:hover .icon{
  transform:scale(1.2) rotate(5deg);
  color:#0077b6;
}

/* Animation */
@keyframes fadeUp{
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* Responsive */

@media(max-width:992px){
  .services-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .services-grid{
    grid-template-columns:1fr;
  }

  .section-title{
    font-size:26px;
  }
}


/* testinamal */


.testimonial-section {
  background: #2f3944;
  padding: 80px 20px;
  text-align: center;
  color: white;
}

.small-title {
  color: #f4b400;
  font-size: 22px;
  font-style: italic;
  margin: 0;
}

.main-title {
  font-size: 48px;
  margin: 10px 0 50px;
  letter-spacing: 2px;
}

.testimonial-box {
  max-width: 900px;
  margin: auto;
  position: relative;
}

.testimonial {
  background: white;
  color: #333;
  padding: 40px;
  border-radius: 10px;
  display: none;
  align-items: center;
  gap: 30px;
  animation: fadeIn 0.8s ease;
}

.testimonial.active {
  display: flex;
}

.image-box img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #f4b400;
}

.content {
  text-align: left;
}

.content h3 {
  margin: 0 0 5px;
}

.content span {
  color: #f4b400;
  font-size: 14px;
}

.content p {
  margin-top: 15px;
  line-height: 1.6;
}

@keyframes fadeIn {
  from {opacity: 0; transform: translateY(20px);}
  to {opacity: 1; transform: translateY(0);}
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial {
    flex-direction: column;
    text-align: center;
  }

  .content {
    text-align: center;
  }

  .main-title {
    font-size: 32px;
  }
}

/* contact */
.job-form-section{
  padding:80px 20px;
  background:linear-gradient(135deg,#f0f4f8,#ffffff);
  display:flex;
  justify-content:center;
}

.form-container{
  background:#fff;
  padding:40px;
  border-radius:20px;
  width:100%;
  max-width:500px;
  box-shadow:0 15px 40px rgba(0,0,0,0.1);
  text-align:center;
  animation:fadeUp 1s ease;
}

.form-container h2{
  margin-bottom:10px;
  font-size:28px;
}

.form-container p{
  margin-bottom:30px;
  color:#666;
}

/* Input group */
.input-group{
  margin-bottom:20px;
}

.input-group input,
.input-group select{
  width:100%;
  padding:12px 15px;
  border-radius:8px;
  border:1px solid #ccc;
  font-size:14px;
  transition:0.3s;
}

/* Focus effect */
.input-group input:focus,
.input-group select:focus{
  border-color:#0077b6;
  box-shadow:0 0 8px rgba(0,119,182,0.3);
  outline:none;
}

/* File upload */
.file-upload{
  text-align:left;
}

.file-upload label{
  display:block;
  margin-bottom:8px;
  font-weight:600;
}

/* Button */
.submit-btn{
  width:100%;
  padding:14px;
  border:none;
  border-radius:30px;
  background:#0077b6;
  color:#fff;
  font-size:16px;
  font-weight:600;
  cursor:pointer;
  transition:0.4s;
}

/* Hover effect */
.submit-btn:hover{
  background:#000;
  transform:translateY(-3px);
}

/* Animation */
@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(40px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* Responsive */
@media(max-width:600px){
  .form-container{
    padding:25px;
  }

  .form-container h2{
    font-size:22px;
  }
}


/* footer */


/* Footer Style */
.footer{
  background:#111;
  color:#fff;
  padding:50px 20px;
  font-family:Arial, sans-serif;
}

.footer-container{
  max-width:1200px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:30px;
}

/* Footer Columns */
.footer-col{
  flex:1 1 300px;
}

.footer-logo{
  width:150px;
  margin-bottom:15px;
}

.footer-col h3{
  margin-bottom:15px;
  font-size:18px;
  color:#fff;
  position:relative;
}

/* Underline effect */
.footer-col h3::after{
  content:"";
  width:40px;
  height:3px;
  background:#ff6600;
  position:absolute;
  left:0;
  bottom:-5px;
}

/* Text */
.footer-col p{
  font-size:14px;
  line-height:1.6;
  margin-bottom:10px;
  color:#ccc;
}

/* Links */
.footer-col ul{
  list-style:none;
  padding:0;
}

.footer-col ul li{
  margin-bottom:10px;
}

.footer-col ul li a{
  text-decoration:none;
  color:#ccc;
  transition:0.3s;
}

/* Hover Effect */
.footer-col ul li a:hover{
  color:#ff6600;
  padding-left:5px;
}

/* Social Icons */
.social-icons a{
  display:inline-block;
  margin-right:10px;
  font-size:18px;
  color:#fff;
  transition:0.3s;
}

.social-icons a:hover{
  color:#ff6600;
  transform:translateY(-3px);
}

/* Responsive */

@media (max-width:768px){

  .footer-container{
    flex-direction:column;
    text-align:center;
  }

  .footer-col h3::after{
    left:50%;
    transform:translateX(-50%);
  }

  .footer-logo{
    margin:auto;
    display:block;
  }

}