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: 700px;
}

/* TEXT STYLING */
.welcome-text,
.hero-title,
.hero-text,
.hero-buttons {
  opacity: 0;
  transform: translateY(80px);
  animation: slideUp 1s ease forwards;
}

/* STAGGER 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 */
@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;
  }
}















/* ===== BRAND SECTION ===== */
.brand-section {
  position: relative;
  padding: 120px 60px;
  background: linear-gradient(135deg, white);
  color: black;
  overflow: hidden;
  font-family: "Segoe UI", sans-serif;
}

/* Floating shapes */
.float-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

.float1 {
  width: 150px;
  height: 150px;
  background: rgba(0, 0, 0, 0.891);
  top: 10%;
  left: 5%;
  animation: float1 20s infinite;
}

.float2 {
  width: 200px;
  height: 200px;
  background: rgba(0, 0, 0, 0.894);
  top: 50%;
  left: 80%;
  animation: float2 25s infinite;
}

.float3 {
  width: 100px;
  height: 100px;
  background: rgba(0, 0, 0, 0.909);
  top: 75%;
  left: 30%;
  animation: float3 22s infinite;
}

/* Floating animations */
@keyframes float1 {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-30px) rotate(180deg);
  }
}

@keyframes float2 {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-50px) rotate(180deg);
  }
}

@keyframes float3 {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

/* Brand Container */
.brand-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 60px;
  max-width: 1300px;
  margin: auto;
  position: relative;
  z-index: 1;
}

/* Left Image */
.brand-image {
  flex: 1;
  min-width: 300px;
}

.brand-image img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 40px 50px rgba(0, 0, 0, 0.3);
  object-fit: cover;
  transition: transform 1s;
}

.brand-image img:hover {
  transform: scale(1.05);
}

/* Right Text */
.brand-text {
  flex: 1;
  min-width: 300px;
}

.brand-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.brand-text h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.brand-text p {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

/* Subsections */
.subsections {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.sub-item  {
  flex: 1;
  min-width: 200px;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px;
  border-radius: 20px;
  transition: 0.3s;
  cursor: pointer;
}

.sub-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .brand-container {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .brand-section {
    padding: 80px 30px;
  }

  .brand-container {
    flex-direction: column;
    gap: 30px;
  }

  .brand-text h2 {
    font-size: 2rem;
  }

  .brand-text h3 {
    font-size: 1.5rem;
  }

  .brand-text p {
    font-size: 1rem;
  }

  .sub-item {
    min-width: 100%;
    padding: 18px;
  }

  /* Reduce floating shape sizes */
  .float1 {
    width: 100px;
    height: 100px;
  }

  .float2 {
    width: 150px;
    height: 150px;
  }

  .float3 {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 480px) {
  .brand-section {
    padding: 60px 20px;
  }

  .brand-text h2 {
    font-size: 1.5rem;
  }

  .brand-text h3 {
    font-size: 1.2rem;
  }

  .brand-text p {
    font-size: 0.95rem;
  }

  .sub-item {
    padding: 15px;
  }

  /* Adjust floating shapes for small screens */
  .float1 {
    top: 5%;
    left: 5%;
    width: 70px;
    height: 70px;
  }

  .float2 {
    top: 45%;
    left: 75%;
    width: 100px;
    height: 100px;
  }

  .float3 {
    top: 70%;
    left: 25%;
    width: 60px;
    height: 60px;
  }
}















/* <!--  ////////////////////////////////////////////////////// Website Design Development   */
.services-section {
  padding: 90px 20px;
  background: black;
  position: relative;
}

.services-container {
  max-width: 1300px;
  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;
  color: white;
}

.description {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
  color: white;
}

/* SERVICES GRID */
.services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.service-item {
  background: #ffffff;
  border-radius: 16px;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  border: 1px solid #e5e7eb;
  transition: all 0.35s ease;
  cursor: pointer;
  position: relative;
}

.service-item:hover {
  transform: translateY(-6px);
  border-color: #6366f1;
  box-shadow:
    0 10px 30px rgb(13, 16, 215),
    inset 0 0 0 1px rgba(99, 102, 241, 0.4);
}

.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 */
/* RIGHT IMAGE */
.services-right {
  width: 50%;
  display: flex;
  justify-content: center;
  /* center image horizontally */
}

.services-right img {
  width: 100%;
  max-width: 500px;
  /* large screens ke liye limit */
  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;
    align-items: center;
    /* center left and right vertically */
  }

  .services-left,
  .services-right {
    width: 100%;
    text-align: center;
    /* center text content */
  }

  .services-list {
    grid-template-columns: 1fr;
  }

  .services-right img {
    width: 90%;
    /* mobile ke liye chhoti width */
    max-width: 300px;
    /* mobile me max size */
    margin: 20px auto;
    /* horizontal center */
    display: block;
  }

  .tagline {
    font-size: 24px;
  }

  .main-title {
    font-size: 28px;
  }

  .description {
    font-size: 15px;
  }

  .service-item {
    padding: 18px 20px;
  }
}















/* <!--  ////////////////////////////////////////////////////// Mobile App Development   --> */
/* =========================
   SECTION BACKGROUND
========================= */
.app-section {
  position: relative;
  padding: 130px 20px;
  background: white;
  overflow: hidden;
}

/* animated background waves */
.app-section::before,
.app-section::after {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at center,
      rgba(253, 249, 249, 0.976),
      rgb(254, 254, 254),
      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: 1330px;
  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: rgb(0, 0, 0);
}

.title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 22px;
  letter-spacing: -0.5px;
  color: rgb(0, 0, 0);
}

.desc {
  font-size: 16px;
  line-height: 1.8;
  color: rgb(0, 0, 0);
  margin-bottom: 36px;
}

/* =========================
   PLATFORMS GRID
========================= */
.platforms {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.platform {
  padding: 10px 20px;
  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: 16px;
  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(39, 41, 201, 0.981),
    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);
  }
}








/* ===== Section Layout ===== */
.video-section {
  background-color: #000;
  padding: 60px 20px;
  border-radius: 20px;
  overflow: hidden;
  /* background: transparent; */
  color: rgb(255, 251, 251);
  font-family: Arial, sans-serif;
}

/* Container Layout */
.video-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1300px;
  margin: auto;
  align-items: flex-start;
}

/* Columns */
.video-text {
  flex: 1 1 500px;
}

.video-image {
  flex: 1 1 500px;
  text-align: center;
}

.video-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Feature Boxes */
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.feature-item {
  background: rgb(250, 249, 249);
  padding: 10px;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  color: rgb(0, 0, 0);
}

.feature-item:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(2, 5, 194, 0.741);
}

/* ===== Fade-in Animation ===== */
.fade {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s forwards;
}

.delay-1 {
  animation-delay: 0.3s;
}

.delay-2 {
  animation-delay: 0.6s;
}

.delay-3 {
  animation-delay: 0.9s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media(max-width: 900px) {
  .video-container {
    flex-direction: column;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }
}

/* ===== MOBILE RESPONSIVE ===== */
@media(max-width: 900px) {
  .video-section {
    padding: 30px 15px;
    /* top/bottom padding kam kardi mobile ke liye */
  }

  .video-container {
    flex-direction: column;
    align-items: center;
    /* text aur image center ho jaye */
    gap: 20px;
    /* gap thoda kam */
  }

  .video-text,
  .video-image {
    flex: 1 1 100%;
    /* full width */
    text-align: center;
    /* text center */
  }

  .video-image img {
    width: 90%;
    /* thoda chhota image */
    max-width: 400px;
    /* prevent too big image */
    height: auto;
    /* maintain aspect ratio */
    margin: 0 auto;
    /* center horizontally */
  }

  .feature-list {
    grid-template-columns: 1fr;
    /* ek column per row */
    gap: 15px;
    margin-top: 15px;
  }

  .feature-item {
    padding: 15px;
    font-size: 14px;
    /* thoda chhota text mobile ke liye */
  }
}









/* ===== Section with Animated Dot Background ===== */
.dm-section {
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(135deg, #fbf9f9 0%, #fcfbfb 100%);
  color: rgb(0, 0, 0);
}

/* Dot background animation */
.dm-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(#ccc 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.1;
  animation: moveDots 10s linear infinite;
  z-index: 0;
}

@keyframes moveDots {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 100px 100px;
  }
}

/* Container */
.dm-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 1;
  /* Above dots */
  align-items: flex-start;
}

/* Columns */
.dm-image {
  flex: 1 1 500px;
  text-align: center;
}

.dm-image img {
  width: auto;
  max-width: 100%;
  height: 450px;
  /* Reduced height */
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dm-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.dm-text {
  flex: 1 1 500px;
}

/* Feature Boxes */
.dm-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.dm-feature-item {
  background: rgba(255, 248, 248, 0.756);
  padding: 10px;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  color: black;
}

.dm-feature-item:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(23, 20, 20, 0.982);
}

/* ===== Fade-in Animation ===== */
.fade {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s forwards;
}

.delay-1 {
  animation-delay: 0.3s;
}

.delay-2 {
  animation-delay: 0.6s;
}

.delay-3 {
  animation-delay: 0.9s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== MOBILE RESPONSIVE ===== */
@media(max-width: 900px) {
  .dm-section {
    padding: 30px 15px;
    /* top/bottom aur sides padding kam ki */
  }

  .dm-container {
    flex-direction: column;
    /* vertical stacking */
    align-items: center;
    /* text aur image center */
    gap: 25px;
    /* gap thoda kam */
  }

  .dm-image,
  .dm-text {
    flex: 1 1 100%;
    /* full width */
    text-align: center;
    /* text center */
  }

  .dm-image img {
    width: 90%;
    /* mobile width adjust */
    max-width: 400px;
    /* image bohot badi na ho */
    height: auto;
    /* aspect ratio maintain */
    margin: 0 auto;
    /* horizontal center */
  }

  .dm-features {
    grid-template-columns: 1fr;
    /* ek column per row */
    gap: 15px;
    margin-top: 15px;
  }

  .dm-feature-item {
    padding: 15px;
    /* thoda chhota padding mobile */
    font-size: 14px;
    /* font size adjust */
  }
}




/* ////////////////////////////////////////////////////////////FOOTER  */






.main-2 {
  background: #0b0f1a;
}

/* footer */
.modern-footer {
  background: linear-gradient(180deg, #0b0f1a, #111827);
  color: #fff;
  overflow: hidden;
}

/* top call to action */
.footer-top {
  text-align: center;
  padding: 80px 20px;
  background: radial-gradient(circle at center, #1f2933, transparent 70%);
  animation: fadeUp 1.2s ease;
}

.footer-top h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.footer-top p {
  opacity: .8;
  margin-bottom: 25px;
}

.sk-3 {
  padding: 14px 36px;
  border: none;
  border-radius: 30px;
  background: linear-gradient(135deg, #ff6a00, #ee0979);
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  transition: .4s;
}

.sk-3:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(255, 106, 0, .5);
}

/* content */
.footer-content {
  max-width: 1300px;
  margin: auto;
  padding: 60px 40px;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
}

/* responsive */
@media(max-width:900px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:500px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
}

.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);
  }
}