@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* Fixed header ke liye anchor offset fix */
:target::before {
  content: "";
  display: block;
  height: 80px;
  /* aapke header ki height */
  margin-top: -40px;
  /* same as header height */
  visibility: hidden;
}

@media (max-width: 768px) {
  :target::before {
    height: 60px;
    margin-top: -60px;
  }
}

body {
  font-family: "Poppins", sans-serif;
}

/* ===== Top Header ===== */
.top-header {
  /* background: #a31700; */
  /* background: linear-gradient(90deg, #0094FF, #005DAA); */
  background: linear-gradient(90deg, #00a8ff, #0078d4, #004a8f);

  padding: 15px 20px;
  width: 100%;
  color: #fff;
}

.top-header ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 50px;
}

.top-header li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-header a {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
}

.top-header i {
  color: #000;
  font-size: 18px;
}

/* Mobile: sirf phone numbers */
@media (max-width: 600px) {
  .top-header li:nth-child(1) {
    display: none;
  }
}



/* ===== Navbar ===== */
.navbar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: #fff;
  padding: 5px 30px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 9999;
}

.navbar .logo {
  font-size: 20px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo img {
  width: 100%;
  height: 60px;
}

.navbar .nav-links {
  list-style: none;
  display: flex;
  gap: 8px;
}

.navbar .nav-links li a {
  text-decoration: none;
  color: #222;
  font-size: 18px;
  font-weight: 500;
  padding: 8px 12px;
  position: relative;
  transition: color 0.3s ease;
}

/* Underline animation */
.navbar .nav-links li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: 0;
  /* background: orange; */
  background: linear-gradient(90deg, #00a8ff, #0078d4, #004a8f);

  transition: width 0.3s ease;
}

.navbar .nav-links li a:hover::after {
  width: 100%;
}

/* .navbar .nav-links li a:hover {
    color: orange;
    color: linear-gradient(90deg, #00A8FF, #0078D4, #004A8F);

} */

/* Mobile Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle .bar {
  width: 28px;
  height: 3px;
  background-color: #222;
  transition: 0.3s;
}


/* ===== Responsive Navbar ===== */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0;
    max-height: 0;
    /* Hidden initially */
    overflow: hidden;
    /* Smooth slide effect */
    transition: max-height 0.4s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    z-index: 998;
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  .logo img {
    /* width: 90px;
    height: 50px; */
    max-height: 70px;

  }


  .nav-links.active {
    max-height: 500px;
    /* Adjust height to fit menu */
    padding: 15px 0;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
    padding: 10px 0;
  }
}








/* HERO SECTION */
.hero {
  position: relative;
  width: 100%;
  height: 85vh;
  /* Full screen height */
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Video ko full cover karega */
  position: absolute;
  top: 0;
  left: 0;
}


/* Mobile Responsive */
@media (max-width: 768px) {
  .hero {
    height: 60vh;
    /* Mobile par kam height */
  }
}

.about {
  padding: 70px 6%;
  background: #fff;
}

/* Center the whole block */
.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1200px;
  /* CENTER WIDTH */
  margin: 0 auto;
  /* Center the whole section */
  animation: fadeUp 1s ease-out forwards;
  /* container fade-in */
  opacity: 0;
}

/* Fade-up Animation for container */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Left Video */
.about-video video {
  width: 100%;
  max-width: 480px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  height: 550px;
  /* thora kam height */
  object-fit: cover;
  transition: all 0.4s ease;
  /* smooth hover effect */
}

/* Video Hover: zoom + shadow */
.about-video video:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* Right Text Column */
.about-text {
  flex: 1;
  max-width: 500px;
  text-align: start;
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Text Hover: small lift effect */
.about-text:hover {
  transform: translateY(-5px);
  color: #0078d4;
}

/* Section Title */
.section-title {
  font-size: 24px;
  font-weight: 700;
  color: #222;
  margin-bottom: 8px;
  text-transform: uppercase;
}

/* Welcome Heading */
.welcome {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.welcome span {
  /* color: #ff6600; */
  color: #0078d4;
}

/* Paragraph */
.about-text p {
  font-size: 17px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* Button */
.contact-btn {
  margin-top: 20px;
}

.contact-btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  /* thoda bada aur rounded */
  background: linear-gradient(90deg, #00a8ff, #0078d4, #004a8f);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  border-radius: 50px;
  /* full pill shape */
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  /* thoda strong shadow */
}

/* Hover Effect */
.contact-btn a:hover {
  background: linear-gradient(90deg, #00a8ff, #0078d4, #004a8f);
  transform: translateY(-4px) scale(1.08);
  /* lift + zoom */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  /* stronger shadow */
}

/* Mobile */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-text {
    text-align: center;
  }
}

.services-section {
  padding: 60px 6%;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.services-heading {
  font-size: 2.8rem;
  background: linear-gradient(90deg, #00a8ff, #0078d4, #004a8f);
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 700;
}

.underline {
  width: 120px;
  height: 4px;
  margin: 10px auto 40px;
  background: linear-gradient(90deg, #00a8ff, #0078d4, #004a8f);
  border-radius: 50px;
  animation: underlineAnim 1.5s ease-in-out infinite alternate;
}

@keyframes underlineAnim {
  0% {
    width: 80px;
  }

  100% {
    width: 140px;
  }
}

/* ===== Services Container ===== */
.services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

/* ===== Card ===== */
.service-card {
  width: 100%;
  max-width: 410px;
  background: #fff;
  padding: 30px 20px;
  border-radius: 15px;
  position: relative;
  overflow: hidden;

  /* Dubai shadow */
  box-shadow: 0px 10px 30px rgba(0, 48, 92, 0.15);

  /* smooth animation */
  animation: cardReveal 1s ease forwards;
  opacity: 0;
  transform: translateY(40px);

  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

/* ===== Card Reveal Animation ===== */
@keyframes cardReveal {
  0% {
    transform: translateY(40px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ===== Moving Shine Glow ===== */
.service-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 150px;
  height: 150px;
  background: linear-gradient(90deg, #00a8ff, #0078d4, #004a8f);
  border-radius: 50%;
  opacity: 0.15;
  filter: blur(35px);
  animation: shineMove 4s linear infinite alternate;
}

@keyframes shineMove {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(-40px, 40px);
  }
}

/* ===== Hover Style ===== */
.service-card:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0px 20px 50px rgba(0, 72, 143, 0.3);
}

/* ===== Border Light Stroke on Hover ===== */
.service-card:hover::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 15px;
  border: 2px solid rgba(0, 168, 255, 0.4);
  pointer-events: none;
  opacity: 1;
  animation: borderGlow 1s ease;
}

@keyframes borderGlow {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ===== Image ===== */
.service-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
  margin: 12px 0;
  transition: transform 0.45s ease;
}

/* Image Zoom Hover */
.service-card:hover img {
  transform: scale(1.06);
}

/* ===== Text ===== */
.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #004a8f;
  font-weight: 700;
  animation: textFade 1.2s ease;
}

@keyframes textFade {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card p {
  font-size: 15px;
  color: #555;
  margin-bottom: 20px;
  animation: textFade 1.4s ease;
}

/* ===== Button ===== */
.service-btn {
  display: inline-block;
  padding: 10px 25px;
  background: linear-gradient(90deg, #00a8ff, #0078d4, #004a8f);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  border-radius: 30px;
  transition: 0.4s ease;
  background-size: 200% 100%;
  background-position: left;
  font-weight: 600;
}

/* ===== Button Hover Effect ===== */
.service-btn:hover {
  background-position: right;
  box-shadow: 0 8px 22px rgba(0, 168, 255, 0.5);
  transform: translateY(-3px);
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .service-card img {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .services-heading {
    font-size: 2.3rem;
  }
}

@media (max-width: 480px) {
  .service-card {
    max-width: 100%;
  }
}

/* Section Background with Image + Gradient */
.why-choose-us {
  position: relative;
  background: linear-gradient(to bottom,
      rgba(204, 231, 255, 0.7),
      rgba(255, 255, 255, 0.7)),
    url("../images/service-1.webp") no-repeat center center/cover;
  padding: 100px 20px;
  color: #000;
  overflow: hidden;
  font-family: "Arial", sans-serif;
}

.why-choose-us .overlay {
  text-align: center;
}

/* Section Heading */
.section-title {
  font-size: 3rem;
  margin-bottom: 15px;
  /* color: #0078d4; */
  color: #1a237e;
  /* Dark indigo */
  animation: fadeInDown 1s ease forwards;
}

.section-subtitle {
  font-size: 1.2rem;
  margin-bottom: 50px;
  /* color: #004a8f; */
  color: #0d47a1;
  /* Dark blue */
  animation: fadeInUp 1s ease forwards;
  max-width: 900px;
  /* Text ki max width */
  margin-left: auto;
  /* Center horizontally */
  margin-right: auto;
}

/* Cards Container */
.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* Individual Card */
.card {
  background: transparent;
  /* No white background */
  border: 2px solid rgba(0, 168, 255, 0.5);
  /* Optional border to define card */
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 15px;
  width: 300px;
  transition: transform 0.5s, box-shadow 0.5s;
  animation: fadeIn 1s ease forwards;
  cursor: pointer;
}

/* Card Hover - Gradient Box Shadow */

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 5px 15px rgba(0, 168, 255, 0.4),
    0 5px 10px rgba(0, 120, 212, 0.3), 0 5px 20px rgba(0, 74, 143, 0.2);
}

/* Card Heading & Text */
.card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #004a8f;
}

.card p {
  font-size: 1rem;
  line-height: 1.5;
  color: #002f5f;
}

/* Animations */
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .cards {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .card {
    width: 90%;
    padding: 20px;
  }
}

/* Recent Work Section */
.recent-work {
  background: #ffffff;
  /* White background */
  padding: 100px 20px;
  font-family: "Arial", sans-serif;
  text-align: center;
}

.recent-work .section-title {
  font-size: 3rem;
  margin-bottom: 50px;
  color: #1a237e;
  animation: fadeInDown 1s ease forwards;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Work Gallery - Flexbox with 3 items per row */
.work-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.work-card {
  flex: 0 1 calc(33.333% - 20px);
  /* 3 per row */
  max-width: 400px;
  /* size bada kiya */
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  transition: transform 0.5s, box-shadow 0.5s;
  animation: fadeIn 1s ease forwards;
}

/* .work-card img {
  width: 100%;
  display: block;
  transition: transform 0.5s, filter 0.5s;
  border-radius: 15px;
} */

.work-card img {
  width: 100%;
  height: 400px;
  /* Ya jo bhi height aapko suit kare */
  display: block;
  object-fit: cover;
  /* Ye image ko bina stretch kiye adjust karega */
  object-position: center;
  /* Image ka center focus mein rahega */
  transition: transform 0.5s, filter 0.5s;
  border-radius: 15px;
}

/* Hover Effects */
.work-card:hover img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.work-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Animations */
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .work-card {
    flex: 0 1 calc(50% - 20px);
    /* 2 per row on medium screens */
  }
}

@media (max-width: 576px) {
  .work-card {
    flex: 0 1 100%;
    /* 1 per row on small screens */
  }

  .section-title {
    font-size: 2rem;
  }
}



/* ===== CONTACT SECTION ===== */
.contact-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.contact-box {
  width: 100%;
  max-width: 1100px;
  background: #fff;
  display: flex;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  animation: fadeUp 1s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== LEFT ===== */
.contact-info {
  width: 45%;
  background: linear-gradient(to bottom right, #1325e8, #8f10b7);
  color: #fff;
  padding: 50px;
}

.contact-info h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.contact-info p {
  opacity: 0.9;
  margin-bottom: 30px;
}

/* .info-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-size: 16px;
  flex-wrap: wrap; 
} */

.info-item {
  display: flex;
  align-items: flex-start;
  /* 🔴 center ki jagah flex-start */
  margin-bottom: 20px;
  font-size: 16px;
  gap: 15px;
}

.info-item i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
  /* icon never shrink */
}

.info-item i {
  margin-top: 1px;
  /* 🔴 icon thora neeche */
}

/* social icons */
.social-icons {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  /* responsive wrap */
  gap: 10px;
}

.social-icons a {
  width: 45px;
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #8f10b7;
  border-radius: 50%;
  transition: 0.4s;
}

.social-icons a:hover {
  transform: translateY(-6px) rotate(360deg);
  background: #ffde59;
}

/* ===== RIGHT FORM ===== */
.contact-form {
  width: 55%;
  padding: 50px;
}

.contact-form h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #333;
}

.input-group {
  position: relative;
  margin-bottom: 30px;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 12px 10px;
  border: none;
  border-bottom: 2px solid #ccc;
  outline: none;
  font-size: 16px;
  background: transparent;
}

.input-group textarea {
  resize: none;
  height: 100px;
}

.input-group label {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  color: #999;
  pointer-events: none;
  transition: 0.3s;
}

.input-group input:focus+label,
.input-group input:valid+label,
.input-group textarea:focus+label,
.input-group textarea:valid+label {
  top: -8px;
  font-size: 13px;
  color: #8f10b7;
}

.contact-form button {
  width: 100%;
  padding: 14px;
  background: linear-gradient(to right, #1325e8, #8f10b7);
  color: #fff;
  font-size: 18px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.4s;
}

.contact-form button:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(143, 16, 183, 0.5);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .contact-box {
    flex-direction: column;
  }

  .contact-info,
  .contact-form {
    width: 100%;
  }

  .info-item {
    flex-direction: row;
    align-items: center;
    margin-bottom: 15px;
  }

  .social-icons {
    justify-content: flex-start;
  }
}

@media (max-width: 576px) {
  .contact-section {
    padding: 20px;
  }

  .contact-info {
    padding: 30px 20px;
  }

  .contact-form {
    padding: 30px 20px;
  }

  .contact-info h2 {
    font-size: 26px;
  }

  .contact-info p {
    font-size: 14px;
  }

  .contact-form h2 {
    font-size: 24px;
  }

  .input-group input,
  .input-group textarea {
    font-size: 14px;
  }

  .contact-form button {
    font-size: 16px;
    padding: 12px;
  }

  .info-item {
    font-size: 14px;
    gap: 8px;
  }

  .social-icons a {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}




/* Main Footer Style */
.modern-footer {
  background: linear-gradient(90deg, #00a8ff, #0078d4, #004a8f);
  padding: 70px 0 20px 0;
  color: #ffffff;
  font-family: 'Arial', sans-serif;
}

.footer-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 25px;
  gap: 30px;
}

.footer-column {
  flex: 1;
  min-width: 250px;
}

/* Logo Section */
.footer-img {
  max-height: 70px;
  margin-bottom: 20px;
}

.footer-text {
  line-height: 1.6;
  font-size: 15px;
  opacity: 0.85;
}

/* Column Titles */
.column-title {
  font-size: 20px;
  margin-bottom: 25px;
  font-weight: bold;
  letter-spacing: 1px;
}

/* Social Media - No Circles, Just Text & Icon */
.social-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.social-item {
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: transparent;
  /* Pura transparent */
}

.social-item:hover {
  color: #ffd700;
  /* Gold Hover */
  transform: translateX(8px);
}

/* Get In Touch - Clean Background */
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: transparent;
  /* Yahan se white background remove kiya */
}

.contact-entry {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: transparent;
  /* No white box */
}

.contact-entry i {
  font-size: 18px;
  color: #ffd700;
  /* Icon color gold */
  margin-top: 4px;
}

.numbers {
  display: flex;
  flex-direction: column;
}

/* Bottom Strip */
.bottom-strip {
  text-align: center;
  margin-top: 50px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  opacity: 0.7;
}



/* Responsive */
@media (max-width: 768px) {
  .footer-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .social-item,
  .contact-entry {
    justify-content: center;
  }

  .social-item:hover {
    transform: scale(1.1);
  }
}