body {
  font-family: "Segoe UI", sans-serif;
}

/* ===== LOGO ===== */
.navbar-brand .logo-Eurika {
  width: 170px;
  height: auto;
  margin-left: -18px;
}



#navMenu {
  margin-right: -20px;
}


/* ===== 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 */
}

.btn-danger {
  background: orangered;
  border: none;
  border-radius: 40px;
  align-items: center;
  font-weight: 500;
}



/* ===== 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;
  }
}



.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;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

/* VIDEO */
.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: -2;
}

/* DARK OVERLAY */
.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

/* HERO CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-left: 140px;
  max-width: 750px;
 
}

/* TEXT STYLING */
.welcome-text,
.hero-title,
.hero-text,
.hero-buttons {
  opacity: 0;
  transform: translateY(80px);
  animation: slideUp 1s ease forwards;
}
.Welcome-text{
    margin-top:10px;
}

/* STAGGER ANIMATION DELAYS */
.animate-1 {
  animation-delay: 0.2s;
  margin-top: 10px;
}

.animate-2 {
  animation-delay: 0.5s;
}

.animate-3 {
  animation-delay: 0.8s;
}

.animate-4 {
  animation-delay: 1.1s;
}

/* KEYFRAMES */
@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* BUTTONS */
.hero-buttons .btn {
  display: inline-block;
  padding: 12px 20px;
  margin-right: 15px;
  border-radius: 40px;
  font-size: 15px;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-primary {
  background: orangered;
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.btn-outline {
  border: 2px solid #fff;
  color: #fff;
}

.btn-outline:hover {
  background: #fff;
  color: #000;
}

/* TABLET */
@media (max-width: 992px) {
  .hero-content {
    padding-left: 60px;
  }

  .hero-title {
    font-size: 2.8rem;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-section {
    text-align: center;
  }

  .hero-content {
    padding: 0 20px;
    margin: auto;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-buttons .btn {
    display: block;
    margin: 10px auto;
  }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }
}












/* ////////////////////////////////////////////////////////Who We Are with Animated Background */
/* //////////////////////////////////////////////////////// Who We Are Section with Black Floating Background */
.global-section {
  width: 100%;
  padding: 100px 60px;
  background: linear-gradient(135deg, white, white);
  color: #179CA9;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative; /* for pseudo-elements */
  overflow: hidden;
  z-index: 1;
}

/* Floating black background shapes */
.global-section::before,
.global-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  opacity: 0.1; /* subtle black */
  z-index: 0; /* behind content */
  background: rgb(60, 106, 255);
}

.global-section::before {
  width: 500px;
  height: 500px;
  top: -100px;
  left: -100px;
  animation: floatBG 15s ease-in-out infinite alternate;
}

.global-section::after {
  width: 400px;
  height: 400px;
  bottom: -80px;
  right: -80px;
  animation: floatBG2 18s ease-in-out infinite alternate-reverse;
}

/* Floating animations */
@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); }
}

/* Content container */
.global {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1300px;
  width: 100%;
  gap: 50px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1; /* ensures content is above background circles */
}

/* LEFT CONTENT */
.left1 {
  flex: 1;
  max-width: 600px;
  min-width: 280px;
}

.left1 .h1 {
  font-size: 60px;
  font-weight: 900;
  margin-bottom: 30px;
  background-color: #179CA9;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.left1 .h3 {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.9;
  color: #179CA9;
  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 10px 20px rgba(24, 24, 24, 0.3);
  transition: transform 0.6s ease;
  object-fit: cover;
}

.right1 img:hover {
  transform: scale(1.05);
}

/* RESPONSIVE STYLES */
@media (max-width: 1024px) {
  .global {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .global-section { padding: 60px 20px; }
  .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 img { height: 200px; width: 100%; }
}












/* //////////////////////////////////////////////////////////////////// MAIN STYLES */

.main-0 {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: rgb(249, 249, 249);
  color: #179CA9;
}

/* ------------------- CONTAINER ------------------- */
.containerw {
  width: 90%;
  max-width: 1350px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

/* ------------------- SERVICES SECTION ------------------- */
.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);
  }
}

/* ------------------- LEFT CONTENT ------------------- */
.services-content .col-lg-6:first-child {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
  /* corner align */
  padding-right: 60px;
  /* gap between left content & service cards */
}

/* Section heading */
.services-content h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.services-content p {
  font-size: 1.1rem;
  color: #179CA9;
  margin-bottom: 2.5rem;
}

/* Button */
.btn-modern0 {
  background-color: rgb(252, 243, 243);
  border: none;
  font-weight: 600;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  transition: all 0.4s ease;
}

.btn-modern0: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);
  cursor: pointer;
  flex: 1 1 45%;
  /* default 2 cards per row */
}

.service-box:hover {
  transform: translateY(-25px) scale(1.1);
  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: #179CA9;
}

/* 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);
  }
}

/* ------------------- RESPONSIVE ------------------- */

/* Tablet / medium screens */
@media(max-width: 992px) {
  .services-content .col-lg-6:first-child {
    text-align: center;
    padding-right: 0;
    margin-bottom: 40px;
  }

  .services-content .col-lg-6:last-child {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  .service-box {
    flex: 1 1 45%;
    /* 2 per row */
  }
}

/* Mobile / small screens */
@media(max-width:768px) {
  .service-box {
    flex: 1 1 100%;
    /* stack vertically */
  }

  .services-content h2 {
    font-size: 2rem;
  }
}

@media(max-width:480px) {
  .services-content {
    padding: 20px;
  }

  .services-content h2 {
    font-size: 1.5rem;
  }
}







/* ================= SECTION ================= */
.custom-services {
  position: relative;
  padding: 80px 20px;
  background: #000;
  overflow: hidden;
}

/* Canvas */
#triangle-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* Container */
.custom-containerio {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 1;
  color: #fff;
}

/* Header */
.custom-header {
  text-align: center;
  margin-bottom: 50px;
}


.custom-title {
  font-size: 36px;
  margin-bottom: 15px;
}

.custom-description {
  font-size: 16px;
  color: #ccc;
}

/* ================= GRID ================= */
.custom-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* ================= CARD ================= */
.custom-card {
  display: flex;
  background: #ffffff;   /* WHITE CARD */
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: #111;
  transition: 0.3s ease;
}

.custom-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(255,255,255,0.3);
}

.custom-card-text {
  flex: 1;
  padding: 30px;
}

.custom-card-text h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #111;
}

.custom-card-text p {
  color: #555;
  font-size: 15px;
}

.custom-card-image {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.custom-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.custom-card:hover .custom-card-image img {
  transform: scale(1.2);
}

.custom-number {
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 28px;
  color: #fff;
  font-weight: bold;
  z-index: 2;
}

.custom-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
  top: 0;
  left: 0;
}

/* ================= RESPONSIVE ================= */
@media(max-width: 992px) {
  .custom-grid {
    grid-template-columns: 1fr;
  }
  .custom-card {
    flex-direction: column;
  }
}

@media(max-width: 768px) {
  .custom-title {
    font-size: 28px;
  }
}








/* ===========================
   GLOBAL
=========================== */

/* ===========================
   SECTION
=========================== */
.expertise-section {
  padding: 100px 20px;
  background: radial-gradient(circle at top right, #0d1b2a, #050d1a 60%);
}

.container020 {
  max-width: 1200px;
  margin: auto;
}

/* ===========================
   HEADER
=========================== */
.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255,255,255,0.08);
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 15px;
  color: white;
}

.section-header h2 {
  font-size: 60px;
  font-weight: 600;
  color: white;
}

/* ===========================
   GRID
=========================== */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* ===========================
   CARD STYLE
=========================== */
.expertise-card {
  background: rgba(255, 255, 255, 0.04);
  padding: 30px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.4s ease;
}

.expertise-card:hover {
  transform: translateY(-10px);
  border: 1px solid rgba(0, 200, 255, 0.6);
  box-shadow: 0 20px 40px rgba(0, 200, 255, 0.15);
}

.icon img {
  width: 60px;
  font-size: 32px;
  margin-bottom: 15px;
  color: #00c6ff;
}

.expertise-card h3 {
  margin-bottom: 12px;
  font-size: 25px;
  color: white;
}

.expertise-card p {
  font-size: 14px;
  color: #cfd8dc;
  line-height: 1.6;
}

/* ===========================
   CTA
=========================== */
.bottom-cta {
  text-align: center;
  margin-top: 70px;
}

.bottom-cta p {
  margin-bottom: 15px;
  color: #ccc;
}

.cta-btn {
  padding: 12px 28px;
  border-radius: 30px;
  border: none;
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
}

.cta-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0, 200, 255, 0.6);
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 992px) {
  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .expertise-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 28px;
  }
}






/* ============================= */
/* SECTION BACKGROUND */
/* ============================= */

.ss {
    position: relative;
    background: #f5f2f2;
    color: #fff;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 70vh;
    overflow: hidden;
}

/* ============================= */
/* TRIANGLES */
/* ============================= */

.triangle {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0.7;
    animation: floatTriangle linear infinite;
}

/* Small */
.triangle.small {
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 18px solid rgba(0, 0, 0, 0.386);
}

/* Medium */
.triangle.medium {
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 25px solid rgba(0, 0, 0, 0.08);
}

/* Large */
.triangle.large {
    border-left: 22px solid transparent;
    border-right: 22px solid transparent;
    border-bottom: 35px solid rgba(0, 0, 0, 0.562);
}

/* Animation */
@keyframes floatTriangle {
    0% {
        transform: translateY(120px) rotate(0deg);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(-1000px) rotate(360deg);
        opacity: 0;
    }
}

/* ============================= */
/* HEADING */
/* ============================= */

.sk5 {
    margin: 30px 0;
    font-size: 64px;
    font-weight: 900;
    padding: 0 20px;
    text-align: center;
    color: #000000;
    position: relative;
    z-index: 2;
}

/* ============================= */
/* CAROUSEL */
/* ============================= */

.carousel-container-new {
    width: 90%;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.carousel-track-new {
    display: flex;
    gap: 20px;
    animation: carouselScrollNew 20s linear infinite;
}

.carousel-container-new:hover .carousel-track-new {
    animation-play-state: paused;
}

@keyframes carouselScrollNew {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.carousel-item-new {
    flex: 0 0 230px;
    height: 180px;
    background: linear-gradient(to right, #050505, #201F21);
    border-radius: 25px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s, box-shadow 0.3s;
}

.carousel-item-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.carousel-item-desc-new p {
    color: #9ca3af;
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 20px;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 768px) {

    .ss {
        height: auto;
        padding: 60px 0;
    }

    .sk5 {
        font-size: 40px;
    }

    .carousel-item-new {
        flex: 0 0 180px;
        height: 160px;
    }
}























/* /////////////////////// Career Section with Multiple Floating Circles /////////////////////// */
.career-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: #fff; /* optional: white background */
}

/* Multiple floating circles using pseudo-elements and extra spans */
.career-section .floating-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(53, 52, 49, 0.05);
  pointer-events: none;
  z-index: 0;
  animation: floatCircle 25s linear infinite;
}

/* Different sizes and positions */
.career-section .floating-circle.circle1 {
  width: 500px;
  height: 500px;
  top: -100px;
  left: -200px;
  animation-duration: 30s;
}

.career-section .floating-circle.circle2 {
  width: 400px;
  height: 400px;
  bottom: -150px;
  right: -150px;
  animation-duration: 35s;
  animation-direction: reverse;
}

.career-section .floating-circle.circle3 {
  width: 300px;
  height: 300px;
  top: 50%;
  left: 70%;
  animation-duration: 40s;
}

.career-section .floating-circle.circle4 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  left: 20%;
  animation-duration: 45s;
  animation-direction: reverse;
}

/* Floating animation */
@keyframes floatCircle {
  0%   { transform: translateY(0px) translateX(0px) scale(1); }
  50%  { transform: translateY(30px) translateX(20px) scale(1.05); }
  100% { transform: translateY(0px) translateX(0px) scale(1); }
}

/* Ensure content stays above circles */
.containersa {
  width: 90%;
  margin: auto;
  position: relative;
  z-index: 1;
}

/* Section Heading */
.section-heading {
  text-align: center;
  margin-bottom: 50px;
}

.subtitle {
  color: #000;
  font-weight: 600;
}

.title {
  font-size: 36px;
  margin: 10px 0;
}

.description {
  max-width: 700px;
  margin: auto;
  color: #444;
}

/* Slider */
.abud-slider {
  position: relative;
  overflow: hidden;
}

.abud-slides {
  display: flex;
  transition: transform 0.6s ease;
}

.abud-slide {
  min-width: 100%;
  padding: 20px;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .abud-slide {
    min-width: 33.33%;
  }
}

.abud-content {
  border-radius: 20px;
  padding: 30px;
  border: 7px solid transparent;
  position: relative;
  transition: 0.3s;
  height: 100%;
}

.abud-content:hover {
  border: 7px solid #00a9ee;
}

.abud-content p {
  margin-bottom: 70px;
}

.abud-apply-now {
  position: absolute;
  bottom: 20px;
  right: -200px;
  background: #fff;
  color: #00a9ee;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  border: 1px solid #002d40;
  transition: 0.3s;
}

.abud-content:hover .abud-apply-now {
  right: 80px;
}

.abud-round-button {
  position: absolute;
  bottom: 20px;
  right: 20px;
  height: 50px;
  width: 50px;
  background: #00a9ee;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.abud-navigation {
  text-align: center;
  margin-top: 30px;
}

.abud-navigation button {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  border: 1px solid #002d40;
  background: #fff;
  color: #00a9ee;
  font-size: 20px;
  margin: 0 10px;
  cursor: pointer;
  transition: 0.3s;
}

.abud-navigation button:hover {
  background: #00a9ee;
  color: #fff;
}










/* /////////////////////////////////////////////////////////////////////////////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;
  list-style: none;
  text-decoration: none;
}

.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);
  }
}