body {
  font-family: "Segoe UI", sans-serif;
}

/* ===== LOGO ===== */
.navbar-brand .logo-Eurika {
  width: 170px;
  height: auto;
  margin-left: -80px;
}



#navMenu{
  margin-right: -50px;
}


/* ===== NAVBAR ===== */
.main-nav {
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-bottom: 4px solid orangered;
}

/* ===== NAV LINKS ===== */
.nav-link {
  position: relative;
  transition: 0.3s;
  font-weight: 600;
  font-size: 17px;
  color: orangered;
  display:inline-block;
}

.nav-item:hover {
  cursor: pointer;
}

/* TOP LINE ON HOVER */
.nav-link::before {
  content:'';
  position:absolute;
  top:0;
  left:0;
  width:0%;
  height:4px;
  background:#0272b3;
  transition:0.3s;
}

.nav-link:hover::before {
  width:100%;
}

.nav-link:hover {
  color:#0272b3;
}

/* ===== DROPDOWN MENU ===== */
.nav-item.dropdown:hover > .dropdown-menu {
  display:block;
  margin-top:0;
}

.dropdown-menu {
  display:none;
  margin-top:0;
  border-radius:6px;
  background: rgba(255,255,255,0.95);
  border:none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  min-width:180px;
}

.dropdown-menu li a {
  color: orangered;
  font-weight: 600;
  font-size: 17px;
  padding:10px 20px;
  position: relative;
  display:inline-block;
  transition: 0.3s;
}

/* TOP LINE ON DROPDOWN ITEMS */
.dropdown-menu li a::before {
  content:'';
  position:absolute;
  top:0;
  left:0;
  width:0%;
  height:3px;
  background:#0272b3;
  transition:0.3s;
}

.dropdown-menu li a:hover::before {
  width:100%;
}

.dropdown-menu li a:hover {
  color:#0272b3;
  background: rgba(255,255,255,0.2);
}

/* REMOVE DROPDOWN ICON */
.navbar-nav .dropdown-toggle::after {
  display:none;
}

/* SHOW DROPDOWN ON MOBILE WHEN .show CLASS ADDED */
.nav-item.dropdown.show > .dropdown-menu {
  display:block !important;
}

/* REMOVE BOTTOM LINE ON DROPDOWN ITEMS */
.dropdown-menu li a {
  text-decoration: none; /* remove underline */
  border-bottom: none; /* remove any bottom border */
}

.dropdown-menu li a:hover::before {
  width: 100%; /* only top line will show */
}

.dropdown-menu li a:hover {
  background: rgba(255,255,255,0.2);
  color:#0272b3;
}

/* SHOW DROPDOWN ON HOVER */
.nav-item.dropdown:hover > .dropdown-menu {
  display:block;
}

.nav-item.dropdown.show > .dropdown-menu {
  display: block !important; /* mobile pe JS toggle ke liye */
}



/* ===== RESPONSIVE ===== */
@media(max-width:992px){
  .navbar-nav {
    background: rgba(255,255,255,0.95);
    width:100%;
  }
  .nav-item.dropdown:hover > .dropdown-menu {
    display:none; /* disable hover on mobile */
  }
  .dropdown-menu {
    position: static !important;
    float: none;
    box-shadow: none;
  }
}

@media(max-width:768px){
  .navbar-brand .logo-Eurika { margin-left:0; width:140px; }
  #navMenu { margin-right:0; }
}

@media(max-width:992px){
  .nav-item.dropdown:hover > .dropdown-menu {
    display:none; /* disable hover on mobile */
  }
  .dropdown-menu {
    position: static !important;
    float: none;
    box-shadow: none;
  }
}

.nav-item.dropdown.show > .dropdown-menu {
  display:block !important;
}
/* Mobile: center dropdown items */
@media(max-width:992px){
  .dropdown-menu {
    text-align: center;   /* items center */
    width: auto;          /* fit content */
    margin: 0 auto;       /* center the menu */
  }

  .dropdown-menu li a {
    display: block;
    width: 100%; /* ya chhota kar sakte ho */
  }
}


/* ===== SUB DROPDOWN ===== */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-left: 0;
  display: none;
}

/* Hover show */
.dropdown-submenu:hover > .dropdown-menu {
  display: block;
}

/* Arrow spacing fix */
.dropdown-submenu > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Mobile fix */
@media (max-width: 992px) {
  .dropdown-submenu > .dropdown-menu {
    position: static;
    display: none;
  }

  .dropdown-submenu.show > .dropdown-menu {
    display: block;
  }
}





/* HERO SECTION */
.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

/* VIDEO */
.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: -2;
  /* Optimize loading */
  will-change: transform;
}

/* OVERLAY */
.video-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
}



/* TEXT STYLE */
.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
}

.hero-text {
  font-size: 1.2rem;
}

.welcome-text {
  color: #ff4d5a;
  letter-spacing: 2px;
  font-weight: 600;
}



/* BUTTON ANIMATION */
.btn {
  transition: all 0.3s ease;
  font-size: 13px;
}

.btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

.btn-danger {
  background: orangered;
  border: none;
  border-radius: 40px;
  align-items: center;
  font-weight: 600;
}

/* ===============================
   Tablets (max-width: 992px)
================================ */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.8rem;
  }

  .hero-text {
    font-size: 1.1rem;
  }

  .btn {
    font-size: 12px;
    padding: 10px 24px;
  }
}

/* ===============================
   Mobile (max-width: 768px)
================================ */
@media (max-width: 768px) {
  .hero-section {
    min-height: 90vh;
    text-align: center;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .welcome-text {
    letter-spacing: 1px;
    font-size: 14px;
  }

  .btn {
    font-size: 12px;
    padding: 10px 22px;
  }
}

/* ===============================
   Small Mobile (max-width: 480px)
================================ */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-text {
    font-size: 0.95rem;
  }

  .btn {
    font-size: 11px;
    padding: 8px 20px;
  }
}





/* //////////////////////////////////////////////////////////////////// About  */




.main-0 {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #0a0a0a;
  color: #fff;
}

.services-section0 {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}

/* Floating animated background shapes */
.services-section0::before,
.services-section0::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  z-index: 0;
}

.services-section0::before {
  width: 500px;
  height: 500px;
  top: -100px;
  left: -100px;
  background: linear-gradient(45deg, #6f42c1, #0d6efd);
  animation: floatBG 15s ease-in-out infinite alternate;
}

.services-section0::after {
  width: 400px;
  height: 400px;
  bottom: -80px;
  right: -80px;
  background: linear-gradient(135deg, #fd7e14, #d63384);
  animation: floatBG2 18s ease-in-out infinite alternate-reverse;
}

@keyframes floatBG {
  0% {
    transform: translateY(0px) translateX(0px);
  }

  50% {
    transform: translateY(30px) translateX(20px);
  }

  100% {
    transform: translateY(0px) translateX(0px);
  }
}

@keyframes floatBG2 {
  0% {
    transform: translateY(0px) translateX(0px);
  }

  50% {
    transform: translateY(-30px) translateX(-20px);
  }

  100% {
    transform: translateY(0px) translateX(0px);
  }
}

@media (max-width: 768px) {
  .services-section0::before {
    width: 250px;
    height: 250px;
    top: -50px;
    left: -50px;
  }

  .services-section0::after {
    width: 200px;
    height: 200px;
    bottom: -40px;
    right: -40px;
  }
}

/* Section heading */
.services-content {
  position: relative;
  z-index: 1;
}



.services-content h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.services-content p {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 2.5rem;
}

.btn-modern {
  /* background: linear-gradient(90deg, #0d6efd, #6f42c1); */
  background-color: white;
  border: none;
  font-weight: 600;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  transition: all 0.4s ease;
}

.btn-modern:hover {
  transform: scale(1.1);
}

/* Service boxes */
.service-box {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 25px;
  text-align: center;
  padding: 2rem 1.5rem;
  margin-bottom: 30px;
  transition: all 0.5s ease;
  backdrop-filter: blur(15px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
  cursor: pointer;
}

.service-box:hover {
  transform: translateY(-25px) scale(1.1);
  /* box-shadow: 0 35px 80px rgba(0, 0, 0, 0.7); */
  box-shadow: 0 0 15px rgba(255, 106, 0, 0.8);

}

.service-box img {
  width: 80px;
  margin-bottom: 20px;
  transition: all 0.5s;
}

.service-box:hover img {
  transform: rotate(20deg) scale(1.2);
}

.service-box h4 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.service-box span {
  font-size: 0.95rem;
  color: #aaa;
}

/* Floating animation */
@keyframes floaty {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

.service-box {
  animation: floaty 6s ease-in-out infinite;
}

/* Sequential fade-in-up */
[data-animate="fadeinup"] {
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 0.8s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media(max-width:768px) {
  .services-content h2 {
    font-size: 2rem;
  }

  .global-section {
    padding: 60px 20px;
  }
}

@media(max-width:480px) {
  .services-content {
    padding: 20px;
  }

  .services-content h2 {
    font-size: 1.5rem;
  }

  .global-section {
    padding: 40px 15px;
  }
}




/* ////////////////////////////////////////////////////////who are you  */
.global-section {
  width: 100%;
  padding: 100px 60px;
  background: linear-gradient(135deg, #0f0f0f, #111827);
  /* dark modern gradient */
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.global {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  gap: 50px;
  flex-wrap: wrap;
}

/* LEFT CONTENT */
.left1 {
  flex: 1;
  max-width: 600px;
  min-width: 280px;
}

.left1 .h1 {
  font-size: 60px;
  font-weight: 900;
  margin-bottom: 30px;
  background-color: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.left1 .h3 {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.9;
  color: white;
  margin-bottom: 40px;
}


/* RIGHT IMAGE */
.right1 {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 280px;
}

.right1 img {
  max-width: 100%;
  height: 400px;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  transition: transform 0.6s ease;
  object-fit: cover;
}

@media (max-width: 768px) {
  .global-section {
    padding: 60px 20px;
  }

  .global {
    gap: 40px;
  }

  .left1 .h1 {
    font-size: 36px;
    margin-bottom: 20px;
  }

  .left1 .h3 {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .right1 img {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .global-section {
    padding: 40px 15px;
  }

  .global {
    flex-direction: column;
    gap: 30px;
  }

  .left1 .h1 {
    font-size: 28px;
  }

  .left1 .h3 {
    font-size: 14px;
  }

  .right1 {
    width: 100%;
  }

  .right1 img {
    height: 200px;
    width: 100%;
  }
}

.right1 img:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .global {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .left .h1 {
    font-size: 42px;
  }

  .left .h3 {
    font-size: 16px;
  }
}




/* ////////////////////////////////////////////////////////dot animation   */



.premium-expensive {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  background-color: #020617;
}

#expensiveBG {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* Container above background */
.premium-expensive .container {
  position: relative;
  z-index: 1;
  padding: 100px 20px;
}

/* Title */
.section5-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 60px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffd700;
  /* Gold accent */
}

/* Divisions */
.divisions-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
}

.division-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 40px 30px;
  max-width: 350px;
  text-align: center;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.division-card:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7);
  /* box-shadow: 0 0 15px rgba(255, 106, 0, 0.8); */

}

.division-icon img {
  width: 300px;
  margin-bottom: 25px;
}

.division-icon img:hover {
  cursor: pointer;
}

.division-card h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #ffd700;
}

.division-card p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #e0e0e0;
}

/* Responsive */
@media (max-width: 768px) {
  .section5-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .divisions-wrapper {
    gap: 30px;
  }

  .division-card {
    max-width: 90%;
    padding: 30px 20px;
  }

  .division-icon img {
    width: 200px;
    margin-bottom: 15px;
  }

  .division-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }

  .division-card p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .premium-expensive {
    min-height: auto;
  }

  .premium-expensive .container {
    padding: 60px 15px;
  }

  .section5-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }

  .divisions-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .division-card {
    max-width: 100%;
    padding: 20px 15px;
  }

  .division-icon img {
    width: 150px;
    height: auto;
    margin-bottom: 12px;
  }

  .division-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }

  .division-card p {
    font-size: 13px;
    line-height: 1.6;
  }
}






/* ////////////////////////////////////////////////card section animation  */


.services-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #fff;
}

.container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.section-title {
  font-size: 42px;
  margin-bottom: 50px;
  font-weight: 800;
}

.section-title .sp-2 {
  background: linear-gradient(90deg, #ff512f, #dd2476);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 35px 25px;
  border-radius: 18px;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-12px) scale(1.03);
  /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4); */
  box-shadow: 0 0 15px rgba(255, 106, 0, 0.8);

}

.service-card .icon {
  font-size: 45px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #ddd;
}

@media (max-width: 768px) {
  .services-section {
    padding: 60px 15px;
  }

  .section-title {
    font-size: 32px;
    margin-bottom: 35px;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }

  .service-card {
    padding: 25px 18px;
  }

  .service-card .icon {
    font-size: 36px;
    margin-bottom: 15px;
  }

  .service-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .service-card p {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .services-section {
    padding: 40px 12px;
  }

  .section-title {
    font-size: 24px;
    margin-bottom: 25px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .service-card {
    padding: 20px 15px;
  }

  .service-card .icon {
    font-size: 32px;
    margin-bottom: 12px;
  }

  .service-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .service-card p {
    font-size: 12px;
  }
}








/*                                                       carasole img  */




    .sd {
      min-height: auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      background: #f2f2f2;
      padding: 40px 0;
    }

    .sd h1 {
      margin: 30px 0;
      font-size: 64px;
      font-weight: 900;
      padding: 0 20px;
      text-align: center;
      color: #333;
    }

    .dd,
    .sd {
      margin: 0;
      padding: 0;
      width: 100%;
      overflow-x: hidden;
    }

    @media (max-width: 768px) {
      .sd h1 {
        font-size: 28px;
        margin: 20px 0;
        padding: 0 15px;
      }

      .sd {
        padding: 30px 0;
      }
    }

    @media (max-width: 480px) {
      .sd h1 {
        font-size: 22px;
        margin: 15px 0;
        padding: 0 12px;
      }

      .sd {
        padding: 20px 0;
      }
    }
  

    .carousel-wrapper {
      overflow: hidden;
    }


    h1 {
      margin: 30px 0;
    }

    .carousel-wrapper {
      position: relative;
      width: 100%;
      max-width: 900px;
      height: 380px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .carousel-container {
      width: 100%;
      height: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      perspective: 1200px;
    }

    .carousel {
      position: relative;
      width: 100%;
      height: 100%;
      transform-style: preserve-3d;
      perspective: 1200px;
    }

    .card {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 160px;
      height: 160px;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: #fff;
      border-radius: 15px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, .2);
      transform-style: preserve-3d;
      backface-visibility: hidden;
      text-align: center;
      padding: 15px;
      transition: all 0.6s ease;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    .card h3 {
      margin: 0 0 10px 0;
      font-size: 20px;
      font-weight: 600;
    }

    .card p {
      margin: 0 0 15px 0;
      font-size: 0.95rem;
    }

    .card button {
      background: rgba(255,255,255,0.3);
      color: #fff;
      border: 1px solid #fff;
      padding: 5px 10px;
      border-radius: 20px;
      cursor: pointer;
      font-weight: 600;
      transition: 0.3s;
    }

    .card button:hover {
      background: #fff;
      color: #667eea;
    }

    .card.center {
      width: 170px;
      height: 170px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, .35);
      z-index: 5;
    }

    .card.back {
      opacity: .4;
      transform: scale(.85);
    }

    .arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 45px;
      height: 45px;
      border-radius: 50%;
      border: none;
      background: #000;
      color: #fff;
      font-size: 1.6rem;
      cursor: pointer;
      z-index: 10;
    }

    .arrow-left {
      left: 10px;
    }

    .arrow-right {
      right: 10px;
    }

    .dots {
      display: flex;
      gap: 10px;
      margin: 20px 0;
    }

    .dot {
      width: 12px;
      height: 12px;
      background: #aaa;
      border-radius: 50%;
      cursor: pointer;
    }




    .dot.active {
      background: #1d4ed8;
    }


    /* Tablet */
    @media (max-width:768px) {
      .carousel-wrapper {
        height: 320px;
      }

      .card {
        width: 160px;
        height: 150px;
        padding: 12px;
      }

      .card.center {
        width: 180px;
        height: 170px;
      }

      .arrow {
        width: 40px;
        height: 40px;
        font-size: 1.4rem;
      }
    }

    /* Mobile */
    @media (max-width:480px) {
      h1 {
        font-size: 20px;
        margin: 20px 0;
      }

      .carousel-wrapper {
        height: 280px;
      }

      .card {
        width: 120px;
        height: 130px;
        padding: 10px;
      }

      .card.center {
        width: 145px;
        height: 150px;
      }

      .arrow {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
      }

      .dots {
        gap: 6px;
      }

      .dot {
        width: 10px;
        height: 10px;
      }
    }






/* /////////////////////////////////////////////card  */


.main {
  min-height: 100vh;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.why-choose {
  /* width: 100%; */
  /* padding: 120px 0; */
  /* background: radial-gradient(circle at top, #020617, #000); */
  text-align: center;
  overflow: hidden;
  padding-bottom: 120px;
}

.section-title {
  font-size: 64px;
  font-weight: 900;
  /* margin-bottom: 80px; */
  color: #fff;
}

.section-title span {
  background: linear-gradient(90deg, #ff512f, #dd2476, #1fa2ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Grid Layout */
.cards-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1300px;
  width: 100%;
}

/* Responsive */
@media (max-width: 1100px) {
  .cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .cards-container {
    grid-template-columns: 1fr;
  }
}

/* Card Border Animation */
.card-wrapper {
  padding: 3px;
  border-radius: 20px;
  background: linear-gradient(270deg, #ff6a00, #ee0979, #00c6ff);
  background-size: 600% 600%;
  animation: borderMove 6s ease infinite;
}

/* Card */
.company-card {
  height: 100%;
  padding: 28px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  color: #fff;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.company-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.company-card h2 {
  font-size: 20px;
  margin-bottom: 14px;
}

.company-card p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 22px;
  color: #e0e0e0;
}

.sk-1 {
  padding: 10px 26px;
  border: none;
  border-radius: 25px;
  background: linear-gradient(135deg, #ff6a00, #ee0979);
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sk-1:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(255, 106, 0, 0.8);
}

/* Border Animation */
@keyframes borderMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}





/* /////////////////////////////////////////////////////////////////////////////CONTECT  */


.main-1 {
  background: linear-gradient(135deg, #0b0f1a, #111827);
}

/* section */
.contact-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

/* card */
.contact-card {
  max-width: 1000px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(14px);
  border-radius: 20px;
  overflow: hidden;
  animation: fadeUp 1.2s ease;
}

/* responsive */
@media(max-width:800px) {
  .contact-card {
    grid-template-columns: 1fr;
  }

  .contact-left,
  .contact-right {
    padding: 40px;
  }

  .contact-left h2 {
    font-size: 28px;
  }
}

@media(max-width:480px) {
  .contact-section {
    padding: 20px;
    min-height: auto;
  }

  .contact-card {
    border-radius: 15px;
  }

  .contact-left,
  .contact-right {
    padding: 25px;
  }

  .contact-left h2 {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .contact-left p {
    font-size: 13px;
    margin-bottom: 15px;
  }

  .contact-info p {
    font-size: 12px;
    margin-bottom: 8px;
  }

  .input-group {
    margin-bottom: 18px;
  }

  .input-group input,
  .input-group textarea {
    font-size: 14px;
    padding: 12px 10px;
  }

  .sk-2 {
    padding: 12px 20px;
    font-size: 13px;
  }
}

/* left */
.contact-left {
  padding: 50px;
  color: #fff;
  background: linear-gradient(160deg, #111827, #1f2933);
}

.contact-left h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.contact-left p {
  opacity: .8;
  line-height: 1.6;
  margin-bottom: 25px;
}

.contact-info p {
  margin-bottom: 12px;
  font-size: 14px;
}

.contact-info i {
  color: #ff6a00;
  margin-right: 10px;
}

/* right */
.contact-right {
  padding: 50px;
  background: rgba(0, 0, 0, .25);
}

/* inputs */
.input-group {
  position: relative;
  margin-bottom: 25px;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 12px 10px;
  background: transparent;
  border: none;
  border-bottom: 2px solid #555;
  color: #fff;
  outline: none;
  font-size: 14px;
}

.input-group textarea {
  resize: none;
  height: 100px;
}

.input-group label {
  position: absolute;
  top: 12px;
  left: 10px;
  font-size: 13px;
  color: #aaa;
  pointer-events: none;
  transition: .3s;
}

/* floating label */
.input-group input:focus+label,
.input-group input:valid+label,
.input-group textarea:focus+label,
.input-group textarea:valid+label {
  top: -10px;
  font-size: 11px;
  color: #ff6a00;
}

/* button */
.sk-2 {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 30px;
  background: linear-gradient(135deg, #ff6a00, #ee0979);
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  transition: .4s;
}

.sk-2:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(255, 106, 0, .5);
}

/* animation */
/* Who We Are / What We Do Section */
.who-we-are {
  width: 100%;
}

.who-we-are-container {
  width: 100%;
}

@media (max-width: 768px) {
  .who-we-are {
    padding: 60px 20px !important;
  }

  .who-we-are-container {
    flex-direction: column !important;
    gap: 30px !important;
  }

  .who-image {
    flex: 1 !important;
    min-width: auto !important;
    order: 2;
  }

  .who-text {
    flex: 1 !important;
    min-width: auto !important;
    order: 1;
  }

  .who-text h2 {
    font-size: 36px !important;
    margin-bottom: 20px !important;
  }

  .who-text p {
    font-size: 15px !important;
    line-height: 1.6 !important;
  }

  .who-image img {
    width: 100% !important;
    height: 250px !important;
  }
}

@media (max-width: 480px) {
  .who-we-are {
    padding: 40px 15px !important;
  }

  .who-text h2 {
    font-size: 24px !important;
    margin-bottom: 15px !important;
  }

  .who-text p {
    font-size: 13px !important;
  }

  .who-image img {
    height: 180px !important;
  }
}







/* ////////////////////////////////////////////////////////////FOOTER  */






.main-2 {
  background: #0b0f1a;
}

/* footer */
.modern-footer {
  background: linear-gradient(180deg, #0b0f1a, #111827);
  color: #fff;
  overflow: hidden;
}

/* top call to action */
.footer-top {
  text-align: center;
  padding: 80px 20px;
  background: radial-gradient(circle at center, #1f2933, transparent 70%);
  animation: fadeUp 1.2s ease;
}

.footer-top h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.footer-top p {
  opacity: .8;
  margin-bottom: 25px;
}

.sk-3 {
  padding: 14px 36px;
  border: none;
  border-radius: 30px;
  background: linear-gradient(135deg, #ff6a00, #ee0979);
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  transition: .4s;
}

.sk-3:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(255, 106, 0, .5);
}

/* content */
.footer-content {
  max-width: 1300px;
  margin: auto;
  padding: 60px 40px;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
}

/* responsive */
@media(max-width:900px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top h2 {
    font-size: 28px;
  }

  .footer-top {
    padding: 50px 20px;
  }
}

@media(max-width:500px) {
  .footer-content {
    grid-template-columns: 1fr;
    padding: 40px 20px;
  }

  .footer-top {
    padding: 40px 20px;
  }

  .footer-top h2 {
    font-size: 22px;
    margin-bottom: 8px;
  }

  .footer-top p {
    font-size: 13px;
    margin-bottom: 15px;
  }

  .sk-3 {
    padding: 12px 28px;
    font-size: 13px;
  }

  .footer-box h3 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .footer-box h4 {
    font-size: 15px;
    margin-bottom: 10px;
  }

  .footer-box p,
  .footer-box ul li a {
    font-size: 12px;
  }

  .footer-bottom {
    padding: 15px 20px;
    font-size: 12px;
  }
}

.footer-box img{
  width: 170px;
  height: auto;
}

.footer-box h4 {
  margin-bottom: 15px;
}

.footer-box p {
  font-size: 14px;
  opacity: .8;
  line-height: 1.7;
}

.footer-box ul {
  list-style: none;
}

.footer-box ul li {
  margin-bottom: 10px;
}

.footer-box ul li a {
  color: #c7c7c7;
  text-decoration: none;
  transition: .3s;
}

.footer-box ul li a:hover {
  color: #ff6a00;
  padding-left: 6px;
}

/* social */
.social {
  display: flex;
  gap: 15px;
}

.social a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  transition: .4s;
}

.social a:hover {
  background: linear-gradient(135deg, #ff6a00, #ee0979);
  transform: translateY(-6px);
}

/* bottom */
.footer-bottom {
  text-align: center;
  padding: 18px;
  font-size: 13px;
  background: #020617;
  opacity: .7;
}

/* animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
