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: 750px;
  /* font-size: 16px; */

}

.welcome-text {
  font-size: 40px;
  font-weight: bold;
}

.hero-title {
  font-size: 20px;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
}

.hero-text {
  font-size: 20px;
  margin-top: 10px;
}

/* 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;
  margin-top: 20px;
}

.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;
  }
}








/* ////////////////////// About Section with Animated Background ////////////////////// */
/* .about-us-section {
  position: relative;
  background: linear-gradient(135deg, #f8f9fa 0%, #e2e8f0 100%);
  overflow: hidden;
  padding: 100px 20px;
} */

/* Animated floating circles */
/* .about-us-section::before,
.about-us-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.081); 
  z-index: 0;
  pointer-events: none;
  animation: floatCircle 30s linear infinite alternate;
} */

/* Left circle */
/* .about-us-section::before {
  width: 600px;
  height: 600px;
  top: -150px;
  left: -200px;
} */

/* Right circle */
/* .about-us-section::after {
  width: 500px;
  height: 500px;
  bottom: -100px;
  right: -150px;
  animation-direction: alternate-reverse;
} */

/* Floating animation */
/* @keyframes floatCircle {
  0%   { transform: translateY(0) translateX(0) scale(1); }
  50%  { transform: translateY(40px) translateX(20px) scale(1.05); }
  100% { transform: translateY(0) translateX(0) scale(1); }
} */

/* Content container above circles */
/* .about-us-section .container {
  position: relative;
  z-index: 1;
} */

/* Section heading */
/* .section-heading h2 {
  font-size: 2.5rem;
  color: black;
  text-align: center;
  margin-bottom: 40px;
} */

/* Paragraph text */
/* .section-text p {
  font-size: 1.1rem;
  color: #4b5563;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto -15px;
} */

/* Rounded and shadowed image */
/* .about-us-section img {
  height: 400px;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  transition: transform 0.5s ease;
}

.about-us-section img:hover {
  transform: scale(1.03);
}
 */
/* Slide-up animation for text or elements */
/* .animate-slide-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.animate-slide-up.delay-1 { transition-delay: 0.3s; }
.animate-slide-up.delay-2 { transition-delay: 0.6s; }
.animate-slide-up.delay-3 { transition-delay: 0.9s; }

.animate-slide-up.visible {
  opacity: 1;
  transform: translateY(0);
} */

/* Partners section (dark background) */
/* .partners {
  background-color: #1a1a1a;
  padding: 60px 20px;
  overflow: hidden;
  position: relative;
}

.partner-item {
  background-color: #2a2a2a;
  transition: transform 0.3s, box-shadow 0.3s;
}

.partner-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.partner-item img {
  max-width: 70%;
  height: auto;
} */

/* Responsive adjustments */
/* @media (max-width: 768px) {
  .about-us-section {
    padding: 60px 15px;
  }

  .section-heading h2 {
    font-size: 2rem;
  }

  .section-text p {
    font-size: 1rem;
  }

  .about-us-section img {
    height: 350px;
  }
}
 */



/* Floating shapes animations */
/* @keyframes float1{0%,100%{transform:translateY(0) translateX(0);}50%{transform:translateY(40px) translateX(30px);}}
@keyframes float2{0%,100%{transform:translateY(0) translateX(0);}50%{transform:translateY(-50px) translateX(-40px);}}
@keyframes float3{0%,100%{transform:translateY(0) translateX(0);}50%{transform:translateY(30px) translateX(-20px);}}

.brand-section .sub-item:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 50px rgba(0,0,0,0.3);
  background:rgba(255,255,255,0.2);
}

@media(max-width:900px){
  .brand-container{flex-direction:column;}
}


 */






/* <!-- //////////////////////////////////////////////////////////carasole card  --> */

.qqqq {
  font-family: Arial, sans-serif;
  background: #f9f9f9;
}

/* CONTAINER */
.container-custom {
  max-width: 1300px;
  margin: auto;
  padding: 60px 20px;
}

/* ROW */
.row-custom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

/* COLUMNS */
.col-left-custom {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.col-left-custom img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.col-right-custom {
  flex: 1;
  min-width: 300px;
}

/* TABS NAV */
.tabs-custom {
  display: flex;
  border-bottom: 2px solid #ccc;
  margin-bottom: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.tab-custom {
  flex: 1;
  text-align: center;
  padding: 15px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
  color: #333;
  /* background removed */
}

.tab-custom.active {
  font-weight: 600;
  color: #000;
}

.tab-custom.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #000;
  border-radius: 2px;
}

/* TAB CONTENT */
.tab-content-custom .tab-pane-custom {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}

.tab-content-custom .tab-pane-custom.active {
  display: block;
}

/* TEXT */
.tab-pane-custom p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
  text-align: left;
}

/* RESPONSIVE */
@media(max-width:1024px) {
  .row-custom {
    flex-direction: column;
  }

  .tabs-custom {
    justify-content: center;
  }

  .tab-custom {
    flex: 1 1 45%;
    margin-bottom: 10px;
  }
}

@media(max-width:480px) {
  .col-right-custom h2 {
    font-size: 24px;
  }

  .tab-custom {
    font-size: 14px;
    flex: 1 1 100%;
  }

  .tab-pane-custom p {
    font-size: 14px;
  }
}

/* FADE IN */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}





/* /////////////////////////////who we are  */


.hhhh{
    font-family:Arial;
    background-color:white;
}

/* SECTION */
.who-section{
    padding:80px 20px;
    background:  black;
}

.who-container{
    max-width:1200px;
    margin:auto;
}

/* ROW */
.who-row{
    display:flex;
    align-items:center;
    gap:50px;
    flex-wrap:wrap;
}

/* LEFT TEXT */
.who-left{
    flex:1;
    min-width:300px;
}

.who-left h2{
    font-size:36px;
    margin-bottom:15px;
    color: white;
}

.who-left p{
    color:white;
    line-height:1.7;
    font-size:16px;
}

/* RIGHT IMAGE */
.who-right{
    flex:1;
    min-width:300px;
}

.who-right img{
    width:100%;
    border-radius:12px;
}

/* RESPONSIVE */
@media(max-width:992px){
    .who-row{
        flex-direction:column-reverse;
        text-align:center;
    }

    .who-left h2{
        font-size:28px;
    }
}

@media(max-width:576px){
    .who-left h2{
        font-size:24px;
    }
}













/* ////////////////////////////////////////////////////////////whate we do  */
.wc-section {
    padding: 80px 20px;
    background: #fff;
}

.wc-container {
    max-width: 1300px;
    margin: auto;
}

.wc-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.wc-left {
    flex: 1;
    min-width: 300px;
}

.wc-left img {
    width: 100%;
}

.wc-right {
    flex: 1;
    min-width: 300px;
}

.wc-right h2 {
    font-size: 34px;
    margin-bottom: 15px;
}

.wc-right p {
    color: #555;
    line-height: 1.6;
}

/* CARDS */
.wc-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 50px;
}

.wc-card-col {
    flex: 1 1 250px;
    display: flex;
}

.wc-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    width: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    transition: 0.3s;
}

.wc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.wc-card img{
    font-size: 25px;
    /* color: #6c63ff; */
    margin-bottom: 15px;
    height: 80px;
}

.wc-card h5 {
    font-size: 18px;
    margin-bottom: 10px;
}

.wc-card p {
    font-size: 14px;
    color: #555;
}

/* TABLET */
@media (max-width: 992px) {
    .wc-row {
        flex-direction: column;
        text-align: center;
    }

    .wc-card-col {
        flex: 1 1 45%;
    }
}

/* MOBILE */
@media (max-width: 576px) {
    .wc-card-col {
        flex: 1 1 100%;
    }

    .wc-right h2 {
        font-size: 24px;
    }
}


















.skoo {
  background: black;
  color: #fff;
}

.expertise-section {
  padding: 80px 20px;
}

.container0200 {
  max-width: 1300px;
  margin: auto;
}

/* Header */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.badge {
  background: #2563eb;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
}

.section-header h2 {
  font-size: 36px;
  margin-top: 10px;
}

.subtitle {
  margin-top: 10px;
  color: #cbd5f5;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-size: 15px;
}

/* Grid */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* Card */
.expertise-card {
  background: #1e293b;
  padding: 30px 20px;
  border-radius: 15px;
  text-align: center;
  transition: 0.3s ease;
}

/* Hover */
.expertise-card:hover {
  transform: translateY(-10px);
  /* background: linear-gradient(135deg, #2563eb, #06b6d4); */
    background: #1e293b;
}

/* Icon */
.icon {
  font-size: 40px;
  margin-bottom: 15px;
}

/* Title */
.expertise-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

/* Text */
.expertise-card p {
  font-size: 14px;
  color: #cbd5f5;
}

/* Responsive */
@media (max-width: 992px) {
  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .expertise-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 28px;
  }
}




/* //////////////////////////////////////////////////////   */




.services-section {
  padding: 90px 20px;
  background: #f7f9fc;
  position: relative;
}



/* .services-section {
  padding: 80px 20px;
  background: linear-gradient(120deg, #f8f9ff, #eef2ff, #fdfbff);
  background-size: 300% 300%;
  animation: bgMove 10s ease infinite;
  position: relative;
  overflow: hidden;
}

@keyframes bgMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
} */


.services-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 50px;
}

/* LEFT SIDE */
.services-left {
  width: 50%;
}

.tagline {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
}

.main-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.description {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
  color: #555;
}

/* SERVICES GRID */
.services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}


.service-item {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px 24px;
  font-size: 17px;
  font-weight: 600;
  color: #0f172a;
  border: 1px solid #e5e7eb;
  transition: all 0.35s ease;
  cursor: pointer;
  position: relative;
}

/* Clean hover */
.service-item:hover {
  transform: translateY(-6px);
  border-color: #6366f1;
  box-shadow:
    0 10px 30px rgba(99, 102, 241, 0.15),
    inset 0 0 0 1px rgba(99, 102, 241, 0.4);
}



/* Smooth underline glow */
.services-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#e5e9f2 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.35;
  pointer-events: none;
}


.service-item:hover::after {
  width: 60%;
}


/* RIGHT IMAGE */
.services-right {
  width: 50%;
}

.services-right img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Floating shapes animations */
@keyframes float1 {

  0%,
  100% {
    transform: translateY(0) translateX(0);
  }

  50% {
    transform: translateY(40px) translateX(30px);
  }
}

@keyframes float2 {

  0%,
  100% {
    transform: translateY(0) translateX(0);
  }

  50% {
    transform: translateY(-50px) translateX(-40px);
  }
}

@keyframes float3 {

  0%,
  100% {
    transform: translateY(0) translateX(0);
  }

  50% {
    transform: translateY(30px) translateX(-20px);
  }
}

.brand-section .sub-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.2);
}


/* RESPONSIVE */
@media (max-width: 991px) {
  .services-container {
    flex-direction: column;
  }

  .services-left,
  .services-right {
    width: 100%;
  }

  .services-list {
    grid-template-columns: 1fr;
  }
}















/* =========================
   SECTION BACKGROUND
========================= */
.app-section {
  position: relative;
  padding: 130px 20px;
  background: #f9fafb;
  overflow: hidden;
}

/* animated background waves */
.app-section::before,
.app-section::after {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at center,
      rgba(99, 102, 241, 0.15),
      rgba(14, 165, 233, 0.10),
      transparent 65%);
  animation: bgExpand 18s ease-in-out infinite;
}

.app-section::after {
  animation-delay: 8s;
  opacity: 0.6;
}

@keyframes bgExpand {
  0% {
    transform: scale(1) translateY(0);
  }

  50% {
    transform: scale(1.4) translateY(-60px);
  }

  100% {
    transform: scale(1) translateY(0);
  }
}

/* =========================
   CONTAINER
========================= */
.app-container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 70px;
  position: relative;
  z-index: 1;
}

/* =========================
   IMAGE
========================= */
.app-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.app-image img {
  width: 90%;
  border-radius: 22px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.18);
  animation: floatImage 6s ease-in-out infinite;
}

@keyframes floatImage {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-18px);
  }

  100% {
    transform: translateY(0);
  }
}

/* =========================
   CONTENT
========================= */
.app-content {
  flex: 1;
}

.tagline {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 14px;
  color: #0f172a;
}

.title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 22px;
  letter-spacing: -0.5px;
  color: #020617;
}

.desc {
  font-size: 16px;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 36px;
}

/* =========================
   PLATFORMS GRID
========================= */
.platforms {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.platform {
  padding: 20px 26px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
  animation: breathe 5s infinite ease-in-out;
}

@keyframes breathe {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.03);
  }

  100% {
    transform: scale(1);
  }
}

/* hover expand */
.platform:hover {
  transform: scale(1.18);
  z-index: 2;
  box-shadow:
    0 25px 60px rgba(99, 102, 241, 0.35),
    inset 0 0 0 1px rgba(99, 102, 241, 0.6);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  .app-container {
    flex-direction: column;
  }

  .app-image img {
    width: 85%;
  }

  .platforms {
    grid-template-columns: 1fr;
  }

  .platform:hover {
    transform: scale(1.08);
  }
}









/* 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;
  }
}


















/* /////////////////////////////////////////////////////////////////////////////CONTECT  */

.main-1 {
  background: linear-gradient(135deg, #0b0f1a, #111827);
  /* background-color: #159DA9; */
}

/* 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;
  list-style: none;
  text-decoration: none;
}

.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;
  }
}