/* RESET */
/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

html, body {
  width: 100%;
  overflow-x: hidden;
}

.seo-hidden {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.seo-hidden {
  position: absolute;
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  overflow: hidden;
  white-space: nowrap;
}



/* CONTAINER */
.container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* ================= HERO ================= */

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: url('https://images.unsplash.com/photo-1556157382-97eda2d62296') center/cover no-repeat;
  display: flex;
  align-items: center;
}

.hero .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  /*background: linear-gradient(135deg, rgba(13,110,253,0.8), rgba(0,0,0,0.7));*/
}

.hero-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  z-index: 2;
}

/* TEXT */
.hero-text {
  flex: 1;
  color: #fff;
  animation: fadeUp 1s ease;
}

.hero-text h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.hero-text p {
  margin-bottom: 25px;
  font-size: 16px;
  opacity: 0.9;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary {
  background: #fff;
  color: #0d6efd;
}

.btn-primary:hover {
  background: #0d6efd;
  color: #fff;
  transform: translateY(-3px);
}

.btn-secondary {
  border: 2px solid #fff;
  color: #fff;
}

.btn-secondary:hover {
  background: #fff;
  color: #0d6efd;
  transform: translateY(-3px);
}

/* IMAGE */
.hero-image {
  flex: 1;
  text-align: center;
  animation: float 3s infinite ease-in-out;
}

.hero-image img {
  width: 300px;
}

/* ================= BUSINESS SECTION ================= */

.business-section {
  width: 100%;
  padding: 80px 0;
  background: linear-gradient(135deg, #0d1b2a, #1b263b);
  color: #fff;
}

.block {
  margin-bottom: 60px;
  text-align: center;
}

.block h2 {
  margin-bottom: 30px;
}

/* GRID */
.trusted-logos,
.why-grid,
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* CARDS */
.logo-box,
.why-card,
.service-card {
  padding: 20px;
  border-radius: 12px;
  background: rgba(255,255,255,0.1);
  transition: 0.4s;
  backdrop-filter: blur(6px);
}

.logo-box:hover,
.why-card:hover,
.service-card:hover {
  transform: translateY(-10px) scale(1.05);
  background: rgba(255,255,255,0.2);
}

/* ================= REVENUE ================= */

.revenue-stats-section {
  width: 100%;
  padding: 80px 0;
  background: #f5f9ff;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.rs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.rs-card {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  transition: 0.4s;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.rs-card:hover {
  transform: translateY(-10px);
}

.rs-card h3 {
  margin-bottom: 20px;
  color: #0d6efd;
}

.rs-card ul {
  list-style: none;
}

.rs-card ul li {
  margin-bottom: 10px;
}

.highlight {
  margin-top: 15px;
  color: green;
  font-weight: bold;
}

/* STATS */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.stat-box {
  background: #f1f1f1;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  transition: 0.3s;
}

.stat-box:hover {
  background: #0d6efd;
  color: #fff;
}

/* ================= GROWTH ================= */

.growth-section {
  width: 100%;
  padding: 80px 0;
  background: #fff;
}

.main-heading {
  text-align: center;
  margin-bottom: 40px;
}

.growth-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.growth-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  transition: 0.4s;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.growth-card:hover {
  transform: translateY(-10px);
}

.plan {
  background: #f5f5f5;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 10px;
}

/* ================= ANIMATIONS ================= */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .hero-text h1 {
    font-size: 30px;
  }

  .trusted-logos,
  .why-grid,
  .services-grid,
  .growth-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rs-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .trusted-logos,
  .why-grid,
  .services-grid,
  .growth-grid {
    grid-template-columns: 1fr;
  }

  .hero-image img {
    width: 200px;
  }
}

/* 🔝 TOP BAR */
.top-bar {
  background: linear-gradient(90deg, #0d6efd, #0a58ca);
  color: #fff;
  font-size: 12px;
  padding: 5px 0;
}

.top-bar .container {
  display: flex;
  justify-content: flex-end;
  gap: 25px;
  align-items: center;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.contact-item:hover {
  transform: translateY(-2px);
  opacity: 0.8;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

/* HEADER */
header {
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 999;
}

.logo .money {
  color: #8cc751; /* Brown */
  background: none;
  -webkit-text-fill-color: unset;
}

.logo .mud {
  color: #0096FF; /* Yellow */
  background: none;
  -webkit-text-fill-color: unset;
}

/* NAVBAR */
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  position: relative;
}

.nav-links li a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: #0d6efd;
  left: 0;
  bottom: -5px;
  transition: 0.3s;
}

.nav-links li a:hover::after {
  width: 100%;
}

.nav-links li a:hover {
  color: #0d6efd;
}

.menu-toggle {
  display: none;
}

/* MOBILE MENU */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    text-align: center;
    display: none;
    padding: 20px 0;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

/* 🔥 HERO FULL SCREEN */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: url('/assets/images/hero.jpeg') center/cover no-repeat;
  position: relative;
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  
}

.hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 40px;
  margin-bottom: 15px;
}

.hero-text p {
  margin-bottom: 20px;
}

/* BUTTONS */
.btn {
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: #ff6b00;
  color: #fff;
}

.btn-secondary {
  border: 1px solid #fff;
  color: #fff;
}

/* HERO IMAGE */
.hero-image img {
  width: 280px;
}

/* 🔥 BUSINESS SECTION FULL WIDTH */



























/*about section*/

/* Section background (FULL WIDTH) */

/* Heading Style */
.about-section h2 {
  font-size: 40px !important;
  font-weight: 700 !important;
  text-align: center !important;
  margin-bottom: 30px !important;

  background: linear-gradient(135deg, #0077ff, #00c6ff) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;

  position: relative;
  display: inline-block;
}

/* underline */
.about-section h2::after {
  content: "";
  width: 60%;
  height: 4px;
  background: linear-gradient(135deg, #0077ff, #00c6ff);
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  border-radius: 10px;
}

/* hover */
.about-section h2:hover::after {
  width: 80%;
}

.about-section h2:hover {
  text-shadow: 0 0 15px rgba(0, 119, 255, 0.4);
}




.about-section {
  position: relative;
  background: url('/assets/images/about1.jpg') center/cover no-repeat;
  padding: 100px 20px;
  overflow: hidden;
}

/* REMOVE background from cards container */
.about-cards {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}



.about-cards {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: nowrap; /* IMPORTANT */
}

/* Card */
.about-card {
  width: 48%;

  padding: 30px;
  border-radius: 15px;

  /* Better glass effect */
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(10px);

  border: 1px solid rgba(255,255,255,0.4);

  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: 0.4s;
}

/* Hover */
.about-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.5);
}



/* Button Base */
.about-btn {
  display: inline-block;
  margin-top: 50px;
  padding: 14px 40px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  background: linear-gradient(135deg, #0077ff, #00c6ff);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

/* Hover Lift Effect */
.about-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 119, 255, 0.4);
}

/* Shine Animation */
.about-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.6), transparent);
  transition: 0.6s;
}

/* Shine on hover */
.about-btn:hover::before {
  left: 100%;
}

/* Click Effect */
.about-btn:active {
  transform: scale(0.95);
}




/* Section */
/* Section */
.egg-section {
  position: relative;
  min-height: 700px; /* FIX: height flexible */
  padding: 100px 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #eef3f9, #dbe9f4);
}

/* Heading */
.egg-heading {
  text-align: center;
  font-size: 34px;
  margin-bottom: 40px;
}

/* Area */
.egg-area {
  position: relative;
  width: 100%;
  height: 600px;
}

/* Card */
.egg-card {
  position: absolute;
  width: 160px;
  height: 220px;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 15px;

  border-radius: 50% 50% 45% 45% / 60% 60% 40% 40%;

  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);

  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  font-size: 14px;

  transition: 0.3s;
}

/* Hover */
.egg-card:hover {
  transform: scale(1.1);
  background: linear-gradient(135deg, #0077ff, #00c6ff);
  color: #fff;
}

/* PERFECT POSITIONS (spread full area) */
.egg-card:nth-child(1) { top: 5%; left: 5%; animation: float1 14s infinite ease-in-out; }
.egg-card:nth-child(2) { top: 20%; left: 30%; animation: float2 16s infinite ease-in-out; }
.egg-card:nth-child(3) { top: 10%; left: 60%; animation: float3 18s infinite ease-in-out; }
.egg-card:nth-child(4) { top: 40%; left: 10%; animation: float4 15s infinite ease-in-out; }
.egg-card:nth-child(5) { top: 50%; left: 50%; animation: float5 17s infinite ease-in-out; }
.egg-card:nth-child(6) { top: 35%; left: 75%; animation: float6 14s infinite ease-in-out; }
.egg-card:nth-child(7) { top: 70%; left: 25%; animation: float7 16s infinite ease-in-out; }
.egg-card:nth-child(8) { top: 75%; left: 70%; animation: float8 18s infinite ease-in-out; }

/* BIGGER MOVEMENT (important fix) */
@keyframes float1 {
  0%,100% { transform: translate(0,0); }
  50% { transform: translate(60px,-50px); }
}
@keyframes float2 {
  0%,100% { transform: translate(0,0); }
  50% { transform: translate(-70px,40px); }
}
@keyframes float3 {
  0%,100% { transform: translate(0,0); }
  50% { transform: translate(80px,50px); }
}
@keyframes float4 {
  0%,100% { transform: translate(0,0); }
  50% { transform: translate(-60px,-40px); }
}
@keyframes float5 {
  0%,100% { transform: translate(0,0); }
  50% { transform: translate(50px,60px); }
}
@keyframes float6 {
  0%,100% { transform: translate(0,0); }
  50% { transform: translate(-50px,-60px); }
}
@keyframes float7 {
  0%,100% { transform: translate(0,0); }
  50% { transform: translate(70px,-30px); }
}
@keyframes float8 {
  0%,100% { transform: translate(0,0); }
  50% { transform: translate(-60px,50px); }
}

/* Mobile Fix */
@media (max-width: 768px) {
  .egg-area {
    height: auto;
  }

  .egg-card {
    position: relative;
    margin: 10px auto;
    display: block;
  }
}


/* service page*/

/* Section */
.services-section {
  position: relative;
  background: url('/assets/images/service.jpeg') center/cover no-repeat;
  padding: 100px 20px;
  color: #fff;
  overflow: hidden;
}

/* Dark overlay */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  top: 0;
  left: 0;
}

/* Container */
.services-container {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: auto;
}

/* Text */
.services-text {
  text-align: center;
  margin-bottom: 50px;
  animation: fadeDown 1s ease;
}

.services-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.services-text p {
  font-size: 17px;
  margin-bottom: 10px;
  opacity: 0.9;
}

/* Cards */
.services-cards {
  display: flex;
  justify-content: center;
}

/* Card */
.service-card {
  width: 350px;
  padding: 30px;
  border-radius: 15px;

  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);

  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transition: 0.4s;

  text-align: left;
}

/* Hover */
.service-card:hover {
  transform: translateY(-10px) scale(1.03);
  background: rgba(255,255,255,0.2);
}

/* Card text */
.service-card h3 {
  margin-bottom: 10px;
}

.service-card ul {
  margin-top: 15px;
  padding-left: 0;
  list-style: none;
}

.service-card ul li {
  margin-bottom: 8px;
  transition: 0.3s;
}

/* Hover list */
.service-card ul li:hover {
  transform: translateX(5px);
  color: #00c3ff;
}




/* Cards layout */
.services-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* Card width adjust */
.service-card {
  width: 320px;
}

/* Bottom note */
.card-note {
  margin-top: 15px;
  font-size: 14px;
  opacity: 0.9;
  transition: 0.3s;
}

/* Hover note */
.service-card:hover .card-note {
  color: #00c3ff;
}





/* Animation */
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .service-card {
    width: 100%;
  }

  .services-text h2 {
    font-size: 28px;
  }
}





/* Section */
.zigzag-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #f5f7fa, #e4ecf7);
}

/* Heading */
.zigzag-heading {
  text-align: center;
  font-size: 36px;
  margin-bottom: 60px;
}

/* Item */
.zigzag-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
  gap: 40px;
}

/* Reverse layout */
.zigzag-item.reverse {
  flex-direction: row-reverse;
}

/* Image */
.zigzag-img img {
  width: 220px;
  animation: floatImg 3s ease-in-out infinite;
}

/* Content */
.zigzag-content {
  max-width: 500px;
}

/* Card style */
.zigzag-content {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: 0.3s;
}

/* Hover */
.zigzag-content:hover {
  transform: translateY(-8px);
}

/* List */
.zigzag-content ul {
  margin-top: 10px;
  padding-left: 0;
  list-style: none;
}

.zigzag-content ul li {
  margin-bottom: 8px;
  transition: 0.3s;
}

/* Hover list */
.zigzag-content ul li:hover {
  transform: translateX(5px);
  color: #0077ff;
}

/* Note */
.note {
  margin-top: 10px;
  font-size: 14px;
  color: #555;
}

/* Image animation */
@keyframes floatImg {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Responsive */
@media (max-width: 768px) {
  .zigzag-item {
    flex-direction: column !important;
    text-align: center;
  }

  .zigzag-img img {
    width: 150px;
  }
}










.contact-box {
    max-width: 1000px;
    display: flex;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.left, .right {
    flex: 1;
    padding: 30px;
}

.left {
    background: #f5f5f5;
}

.left iframe {
    width: 100%;
    height: 200px;
    margin-top: 15px;
    border-radius: 10px;
}

.right input, .right textarea {
    width: 100%;
    margin: 10px 0;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.right textarea {
    height: 100px;
}

button {
    width: 100%;
    padding: 12px;
    background: #4facfe;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

button:hover {
    background: #007bff;
    transform: scale(1.05);
}

/* Responsive */
@media(max-width: 768px) {
    .contact-box {
        flex-direction: column;
    }
}



/*contact*/

.contact-highlight {
  position: relative;
  background: url('/assets/images/contact.jpg') center/cover no-repeat;
  padding: 80px 20px;
  color: #fff;
  text-align: center;
}

.contact-highlight .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
}

.contact-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: auto;
}

.contact-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.contact-content p {
  font-size: 18px;
  margin-bottom: 40px;
}

.contact-features {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.feature-box {
  background: rgba(255,255,255,0.1);
  padding: 15px 20px;
  border-radius: 10px;
  transition: 0.3s;
  cursor: pointer;
}

.feature-box:hover {
  background: #00c3ff;
  color: #000;
  transform: translateY(-5px);
}

.contact-btn {
  display: inline-block;
  padding: 12px 25px;
  background: #00c3ff;
  color: #000;
  text-decoration: none;
  border-radius: 30px;
  transition: 0.3s;
}

.contact-btn:hover {
  background: #fff;
  transform: scale(1.05);
}




/*ABOUT PAGE*/