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: 100svh; /* 👈 FIX mobile viewport issue */
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

/* VIDEO */
.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: -2;
}

/* OVERLAY */
.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: -1;
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  padding: 100px 20px 0 140px;
  max-width: 700px;
  /* font-size: 16px; */
  
}

.welcome-text{
  font-size: 20px;
    font-weight: 600;
   font-family: "Montserrat", sans-serif;
}

.hero-title{
  font-size: 30px;
  font-weight: 100;
   font-family: "Montserrat", sans-serif;
  /* font-family: "Roboto", sans-serif;   */
}

.hero-text{
  font-size: 20px;
  font-weight: 200;
}

/* TEXT ANIMATION */
.welcome-text,
.hero-title,
.hero-text,
.hero-buttons {
  opacity: 0;
  transform: translateY(80px);
  animation: slideUp 1s ease forwards;
}

/* ANIMATION DELAYS */
.animate-1 { animation-delay: 0.2s; }
.animate-2 { animation-delay: 0.5s; }
.animate-3 { animation-delay: 0.8s; }
.animate-4 { animation-delay: 1.1s; }

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-buttons .btn {
  padding: 12px 20px;
  border-radius: 40px;
  font-size: 15px;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-primary {
  background: orangered;
  color: #fff;
}

.btn-outline {
  border: 2px solid #fff;
  color: #fff;
}

/* TABLET */
@media (max-width: 992px) {
  .hero-content {
    padding: 80px 20px;
  }

  .hero-title {
    font-size: 2.6rem;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-section {
    justify-content: center;
    text-align: center;
  }

  .hero-content {
    padding: 60px 20px;
    max-width: 100%;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-buttons {
    justify-content: center;
  }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.6rem;
  }
}











/* ////////////////////////////////////////////////////////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;
}



.triangle-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0; /* behind content */
  pointer-events: none;
}

.triangle-bg-section .global {
  position: relative;
  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: rgba(233, 110, 9, 0.907);
}

.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: 80px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1; /* ensures content is above background circles */
}

/* LEFT CONTENT */
.left1 {
  flex: 1;
  max-width: 650px;
  min-width: 280px;
  /* margin-top: 70px; */
}


.left1 .h2 {
  font-size: 20px;
  font-weight: 900;
  /* margin-bottom: 45px; */
  background-color: #179CA9;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.left1 .h1 {
  font-size: 40px;
  font-weight: 900;
  /* margin-bottom: 45px; */
  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: 160px; */
}

/* RIGHT IMAGE */
.right1 {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 280px;
}

.right1 img {
  max-width: 100%;
  height: 500px;
  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%; }
}









/* ================= 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: 60px;
  margin-bottom: 15px;
}

.custom-description {
  font-size: 18px;
  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;
  }
}










/* //////////////////////////////////////////////////////////////////// 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 */
  margin-bottom: 100px;
}

/* Section heading */
.services-content h2 {
  font-size: 60px;
  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;
  }
}












/* ===========================
   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;
  }
}







/* MAIN WRAPPER */
.t-wrap{
  width:90%;
  max-width:1300px;
  margin:auto;
}

.t-center{
  text-align:center;
}

.t-section{
  padding:80px 0;
}

.t-small{
  color:#999;
  margin-bottom:10px;
  font-size: 30px;
}

.t-heading{
  font-size: 40px;
  margin-bottom:10px;
}

.t-desc{
  color:#666;
}

/* WRAPPER */
.t-flex{
  display:flex;
  align-items:center;
  justify-content:center;
  margin-top:50px;
  position:relative;
}

/* QUOTES */
.t-quote{
  font-size:130px;
  color:#ffe600;
  width:30%;
  text-align:center;
}

.t-left{
  text-align:right;
}

.t-right{
  text-align:left;
}

/* SLIDER */
.t-slider{
  width:60%;
}

/* CARD */
.t-card{
  text-align:center;
  padding:30px;
}

.t-card p{
  margin-top:20px;
}

.t-card h4{
  margin-top:5px;
}

.t-card span{
  color:#999;
  font-size:14px;
}

.t-card img{
  width:140px;
  height:140px;
  border-radius:50%;
  margin-top:15px;
}

/* PAGINATION */
.swiper-pagination-bullet{
  background:#ccc;
}

.swiper-pagination-bullet-active{
  background:#000;
}

/* DIVIDER */
.t-divider{
  width:80%;
  height:1px;
  background:#eee;
  margin:60px auto;
}

/* RESPONSIVE */
@media(max-width:992px){
  .t-slider{
    width:80%;
  }
  .t-quote{
    display:none;
  }
}

@media(max-width:600px){
  .t-heading{
    font-size:24px;
  }
}





















/* /////////////////////// 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%;
  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;
    background: linear-gradient(45deg, #c2cdfd, #fbe7fe);

}

.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: 60%;
  left: 85%;
    background: linear-gradient(135deg, #ffe8d5, #f6cbe0);

  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,
  .input-group select {
    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,
.input-group select {
  width: 100%;
  padding: 12px 10px;
  background: transparent;
  border: none;
  border-bottom: 2px solid #555;
  color: #fff;
  outline: none;
  font-size: 14px;
}

/* textarea */
.input-group textarea {
  resize: none;
  height: 100px;
}

/* select extra */
.input-group select {
  appearance: none;
  cursor: pointer;
}

/* dropdown options */
.input-group select option {
  color: #000;
}

/* fix empty select */
.input-group select:required:invalid {
  color: #aaa;
}

/* label */
.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,
.input-group select:focus + label,
.input-group select: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 */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}













/* ////////////////////////////////////////////////////////////FOOTER  */





.footer{
  /* background:#f5f5f5; */
  padding:60px 80px;
  position:relative;
  overflow:hidden;
}


.footer{
  max-width:1450px;   /* 👈 width kam */
  margin:40px auto;   /* 👈 center + top/bottom space */
  border-radius:10px; /* 👈 optional (nice look) */
}



/* watermark */
.footer::after{
  content:"";
  position:absolute;
  right: 60px;
  top:  50px;
  width:500px;
  height:500px;
  background:url('img/favicon.jpg.png') no-repeat center;
  background-size:contain;
  opacity:0.05;

  pointer-events: none; /* ✅ IMPORTANT FIX */
}

/* LOGO */
.logo{
  margin-bottom:40px;
  margin-left: -14px;
}
.logo img{
  width:220px;
}

/* GRID */
.footer-grid{
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  gap:40px;
}

/* LINKS */
.footer a{
  text-decoration:none;
  color:#333;
  transition:0.3s;
}

.footer a:hover{
  color:orangered;
}

/* HEADINGS */
.footer h3{
  font-size:24px;
  margin-bottom:15px;
}

.footer h3::after{
  content:"";
  display:block;
  width:30px;
  height:3px;
  background:orangered;
  margin-top:8px;
}

/* LIST */
.footer ul{
  list-style:none;
  padding:0;
}

.footer ul li{
  margin:10px 0;
  font-size:14px;
}

/* NEWSLETTER */
.newsletter p{
  margin-bottom:15px;
}

.input-box{
  display:flex;
  align-items:center;
  background:#fff;
  border-radius:30px;
  overflow:hidden;
  border:1px solid #ddd;
}

.input-box input{
  border:none;
  padding:12px;
  flex:1;
  outline:none;
}

.input-box button{
  background:orangered;
  border:none;
  color:#fff;
  padding:12px 16px;
  cursor:pointer;
  border-radius:0 30px 30px 0;
}


/* SOCIAL */
.social-icons i{
  margin-right:15px;
  font-size:30px;
  cursor:pointer;
  transition:0.3s;
}

.social-icons i:hover{
  color: orangered;
}

/* TABLET */
@media(max-width:1024px){
  .footer-grid{
    grid-template-columns: repeat(2, 1fr);
    gap:40px;
  }
}

/* MOBILE */
@media(max-width:600px){
  .footer{
    padding:40px 20px;
  }
  .footer-grid{
    grid-template-columns:1fr;
  }
}