  body {
      margin: 0;
      font-family: 'Inter', sans-serif;
      background-color: #0b1d3a;
      color: #ffffff;
    }

    .container {
      width: 100%;
      max-width: 1600px;
      margin: 0 auto;
    }
/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.navbar {
  background-color: #0b1d3a;
  color: white;
  padding: 20px 40px;
  width: 100%;
  position: relative;
  z-index: 10;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Logo */
.logo img {
  margin-top: -40px;
  height: 150px;
  width: 160px;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  color: #f6c144;
  font-size: 25px;
  transition: transform 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.2);
}

/* Navigation */
.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 20px;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #f6c144;
}

/* Hamburger for Mobile */
.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #f6c144;
}

/* Responsive */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .main-nav {
    width: 100%;
    display: none;
  }

  .main-nav.active {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
  }

  .social-icons {
    margin-top: 10px;
    justify-content: center;
    width: 100%;
  }
}

    .hero {
  padding: 100px 0 80px;
  background-color: #0b1d3a;
}

.hero-layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1;
  min-width: 300px;
}

.hero-text .badge {
  background: #2fa59c;
  padding: 6px 16px;
  color: #fff;
  font-size: 14px;
  border-radius: 25px;
  display: inline-block;
  margin-bottom: 20px;
}

.hero-text h2 {
  font-size: 42px;
  font-family: 'Playfair Display', serif;
  margin-bottom: 20px;
}

.hero-text h2 .highlight {
  color: #f6c144;
}

.hero-text p {
  color: #d0d0d0;
  font-size: 16px;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.btn {
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s ease;
}

.btn-gold {
  background-color: #f6c144;
  color: #0b1d3a;
  border: none;
}

.btn-outline {
  color: #f6c144;
  border: 2px solid #f6c144;
  background: transparent;
}

.btn:hover {
  opacity: 0.9;
}

/* Right globe image */
.hero-image {
  flex: 1;
  text-align: right;
}
.hero-image .globe-smooth-spin {
  max-width: 600px;
  animation: smoothSpin 20s linear infinite;
  transform-origin: center center;
}

@keyframes smoothSpin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-layout {
    flex-direction: column;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-image .globe {
    max-width: 220px;
  }
}.about-section {
  width: 100%;
  text-align: center;
  padding: 50px 20px;
  background-color: #0c1b33;
  color: #fff;
}

.about-section h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 40px;
}

.about-section h2 span {
  color: #f5c34b;
  border-bottom: 3px solid #f5c34b;
  padding-bottom: 5px;
}

.about-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
}

.about-left {
  flex: 1;
  max-width: 500px;
}

.about-box {
  background: rgba(255, 255, 255, 0.03);
  border-left: 6px solid #f5c34b;
  padding: 25px 30px;
  border-radius: 8px;
  text-align: left;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

.about-box h4 {
  color: #f5c34b;
  margin-top: 0;
  font-size: 18px;
}

.about-box p {
  color: #e0e0e0;
  font-size: 15px;
  margin-bottom: 20px;
}

.about-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 300px;
  max-width: 550px;
}

.feature-box {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 20px 25px;
  text-align: left;
}

.feature-box h4 {
  color: #f5c34b;
  font-size: 16px;
  margin-bottom: 5px;
}

.feature-box p {
  font-size: 14px;
  color: #ddd;
}

 .business-portfolio {
  padding: 80px 0;
  background: #0b1d3a;
  color: #fff;
  text-align: center;
}

.business-portfolio h3 {
  font-size: 36px;
  font-family: 'Playfair Display', serif;
}

.business-portfolio h3 span {
  color: #f6c144;
}

.intro-text {
  max-width: 500px;
  margin: 10px auto 40px;
  color: #ccc;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 cards per row */
  gap: 30px;
  justify-content: center;
}
.business-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px; /* space between cards */
  padding: 20px;
  align-items: stretch;
}
.business-card {
  width: 40%;
  height: 300px; /* Same height for all */
  padding: 30px;
  border-radius: 12px;
  color: #fff;
  background-color: #021027;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
/* Sliding overlay effect */
.business-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: inherit; /* default fallback */
  transition: left 0.5s ease;
  z-index: 0;
}

/* Hover slide animation */
.business-card:hover::before {
  left: 0;
}

/* Bring text above overlay */
.business-card * {
  position: relative;
  z-index: 2;
}
.business-card h4 {
  font-size: 24px;
  margin-bottom: 10px;
  color: rgb(233, 159, 23);
}
.business-card p {
  font-size: 20px;
  flex-grow: 1;
  align-items:n;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.tags span {
  background: teal;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  color: #fff;
}

.btn.small {
  background: #f6c144;
  color: #0b1d3a;
  padding: 6px 16px;
  font-weight: 600;
  font-size: 13px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
  max-width: fit-content;
  text-align: center;
  transition: background 0.3s ease;
}
.btn.small:hover {
  background: #ff6ec4;
  color: #fff;
}

/* Optional lift and shadow on hover */
.business-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0,0,0,0.3);
}

/* Individual hover colors for each card */
.business-card.blue::before {
  background: linear-gradient(to right, #0256c7, #003b99);
}

.business-card.brown::before {
  background: linear-gradient(to right, #884617, #5c2e0f);
}

.business-card.teal::before {
  background: linear-gradient(to right, #097b74, #05514d);
}

.business-card.magenta::before {
  background: linear-gradient(to right, #7b1fa2, #4d1264);

 }
 @media (max-width: 768px) {
  .business-grid {
    grid-template-columns: 2fr;
  }
}
.journey-section {
  padding: 4rem 2rem;
  color: #ffffff;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.section-title span {
  color: #ffc947;
}

.section-subtitle {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 1.1rem;
  color: #ccc;
}

.timeline {
  position: relative;
  margin-left: 50px;
  border-left: 3px solid #ffc947;
  padding-left: 100px;
  margin-left: 200px;
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -37px;
  top: 5px;
  width: 15px;
  height: 15px;
  background-color: #ffc947;
  border-radius: 50%;
  border: 2px solid #0d1b2a;
}

.year {
  font-weight: bold;
  color: #ffc947;
  margin-bottom: 8px;
  font-size: 1.1rem;
}
.timeline-content {
  background-color: #1b2a41;
  padding: 1rem 1rem;          /* Reduced padding */
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  max-width: 600px; 
  text-align: left;         /* 👈 Add this */
  }

.timeline-content h4 {
  margin: 0 0 5px;
  font-size: 1.1rem;
  color: #ffc947;
}

.timeline-content p {
  margin: 0;
  font-size: 0.95rem;
  color: #d6e0f5;
  align-items: left;
}
/* Container Flexbox Layout */
.bulk-orders-section {
  display: flex;
   background-color: #0c1b33;
  justify-content: center;
  align-items: flex-start;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 3rem 2rem;
}

/* Left Content Area */
.bulk-orders-left {
  max-width: 450px;
  text-align: left;
}
.bulk-orders-left p {
  margin-top: 20px;
}
.bulk-orders-left h2 {
  font-size: 2rem;
  color: #fff;
  font-weight: 800;
}
.bulk-orders-left h2 span {
  color: gold;
}
.bulk-orders-left ul {
  list-style: disc;
  padding-left: 1.2rem;
  margin-top: 1rem;
}
.bulk-orders-left li {
  padding: 0.5rem 0;
  color: #fff;
  display: flex;
  align-items: center;
}

.bulk-orders-left li::before {
  content: "●";
  color: gold;
  font-size: 0.7rem;
  margin-right: 10px;
}

/* Button Style */
.bulk-orders-left .bulk-btn {
  background-color: #f5c244;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 1.5rem;
  color: #000;
  font-weight: bold;
  margin-top: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.bulk-orders-left .bulk-btn:hover {
  background-color: #fff;
  align-items: left;
}

/* Right Cards Grid */
.bulk-orders-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  text-align: left;
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.bulk-card {
  background-color: #14233d;
  padding: 1rem 1.2rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  color: #fff;
  animation: bounce 2s ease-in-out infinite;
}

.bulk-card:hover {
  animation: bounce 1s infinite;
}
.bulk-card i {
  color: gold;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.bulk-card h3 {
  font-size: 1.1rem;
  font-weight: bold;
}

.bulk-card p {
  font-size: 0.9rem;
  color: #ccc;
}

.contact-section {
  padding: 80px 0;
  background-color: #0b1d3a;
  color: #fff;
  text-align: center;
}

.contact-section h3 {
  font-size: 36px;
  font-family: 'Playfair Display', serif;
}

.contact-section h3 span {
  color: #f6c144;
}

.contact-section .subtext {
  color: #ccc;
  font-size: 15px;
  margin-bottom: 40px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  text-align: left;
}

.contact-info,
.contact-form {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  background-color: #132647;
  padding: 30px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
}

.contact-info h4,
.contact-form h4 {
  color: #f6c144;
  margin-bottom: 20px;
}

.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-info li {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-info i {
  color: #f6c144;
  font-size: 18px;
  margin-top: 5px;
}

/* Form Styles */
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form .form-row {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 6px;
  background-color: #0b1d3a;
  color: #fff;
  font-size: 14px;
  border: 1px solid rgba(255,255,255,0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #ccc;
}

.contact-form button {
  background-color: #f6c144;
  color: #0b1d3a;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background-color: #ffdb75;
}

@media (max-width: 768px) {
  .contact-grid {
    flex-direction: column;
  }

  .form-row {
    flex-direction: column;
  }
}
.site-footer {
  background-color: #0b1d3a;
  color: #ccc;
  padding: 10px 0 10px;
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  align-items: start;
}

.footer-about h4 {
  font-family: 'Playfair Display', serif;
  color: #f6c144;
  font-size: 20px;
}

.footer-about h4 span {
  color: #fff;
}

.footer-about p {
  margin: 10px 0 15px;
  color: #bbb;
  font-size: 14px;
}

.social-icons a {
  color: #f6c144;
  margin-right: 10px;
  font-size: 16px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #ffffff;
}

.footer-links h5,
.footer-contact h5 {
  color: #fff;
  margin-bottom: 12px;
  font-size: 16px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: #ccc;
  text-decoration: none;
}

.footer-links ul li a:hover {
  color: #f6c144;
}

.footer-contact p {
  color: #ccc;
  margin-bottom: 10px;
}

.footer-contact i {
  color: #f6c144;
  margin-right: 8px;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 15px;
  margin-top: 40px;
  font-size: 13px;
  color: #888;
  margin-bottom: -170px;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-about,
  .footer-links,
  .footer-contact {
    margin-bottom: 30px;
  }

  .social-icons {
    justify-content: center;
  }
}
