body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(85, 130, 227, 0.6), rgba(88, 99, 123, 0.6)), 
              url('https://images.unsplash.com/photo-1520857014576-2c4f4c972b57?auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
  padding: 120px 20px;
}


.navbar-nav .nav-link.active {
  
  color: #facc15 !important;
  font-weight: 600;
}
.hero h1 {
  font-size: 3rem;
  font-weight: 700;
}

.hero p {
  max-width: 700px;
  margin: 20px auto;
  font-size: 1.1rem;
}

.btn-custom {
  background: #facc15; /* Yellow */
  color: #000;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 30px;
  transition: 0.3s;
  text-decoration: none;
}

.btn-custom:hover {
  background: #eab308;
}


/* Who We Are Section */
.who-we-are {
  position: relative;
}

.who-we-are h2 {
  color: #facc15; /* Yellow heading accent */
}

.who-we-are p {
  font-size: 1rem;
  line-height: 1.7;
}

.who-we-are .btn-custom {
  background: #facc15;
  color: #000;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
}

.who-we-are .btn-custom:hover {
  background: #eab308;
  color: #000;
}

/* Right Image Box */
.image-box {
  position: relative;
}

/* Trusted Companies Section */
.trusted-companies {
  background: linear-gradient(to right, #f9fafb, #eef2ff, #f9fafb);
  border-radius: 12px;
}

.trusted-companies h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #111827;
}

.trusted-companies .highlight {
  background:  #facc15;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.gray-logo {
  filter: grayscale(100%);
  opacity: 0.8;
  width: 50%;
  transition: 0.3s;
}

.gray-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}



.ss-services-section {
  background: linear-gradient(to bottom right, #8ba7e6, #e1da95);
}

.ss-subtext {
  max-width: 700px;
  margin: 0 auto;
  color: #444;
  font-size: 15px;
}

.ss-service-card {
  text-align: left;
}

.ss-service-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
}

.ss-service-title {
  font-weight: 600;
  font-size: 18px;
}

.ss-service-text {
  font-size: 14px;
  color: #555;
}

.ss-services-btn {
  background-color: #f4b31a;
  color: white;
  border: none;
  border-radius: 30px;
  font-weight: 500;
}

.ss-services-btn:hover {
  background-color: #d99b12;
}


.sn-hero-section {
  background: url("../image/360_F_270291332_VSI6Wc9NPqgjJEqTaqkAhLs9qkp7RQpm.jpg") no-repeat center center/cover;
  object-fit: cover;
  min-height: 100vh;
  position: relative;
}
.sh-hero-section {
  background: url("../image/292cf44eddfe83eb64e177a092b3b483.jpg") no-repeat center center/cover;
  min-height: 100vh;
  position: relative;
}


.sn-hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.sn-hero-card {
  position: relative;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  color: #fff;
}

.sn-gradient-text {
  background:  #facc15;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sn-hero-btn {
  background:  #facc15;
  color: #fff;
  font-weight: 500;
  border-radius: 30px;
  padding: 10px 25px;
  border: none;
}

.sn-hero-btn:hover {
  opacity: 0.9;
  color: #fff;
}


/* ---------- Page background ---------- */
:root{
  --accent-1:  #facc15;
  --accent-2:  #facc15;
  --card-border: rgba(92,110,150,0.12);
}

/* subtle dotted-gradient background */
.sn-section {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background:
    radial-gradient(circle at 10% 10%, rgba(0,0,0,0.02) 0.5px, transparent 0.5px),
    radial-gradient(circle at 90% 90%, rgba(0,0,0,0.02) 0.5px, transparent 0.5px),
    linear-gradient(180deg, #f6f8ff 0%, #fff0f6 50%, #f3fff9 100%);
  background-size: 14px 14px, 14px 14px, cover;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #222;
  padding-top: 50px;
  padding-bottom: 60px;
}


/* small heading */
.sn-cap {
  font-size: 12px;
  letter-spacing: 1.6px;
  color: #666;
  margin-bottom: 8px;
  text-transform: uppercase;
}

/* main title */
.sn-main-title {
  font-weight: 700;
  font-size: 30px;
  margin-bottom: 6px;
}
.sn-accent {
  background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* sub text */
.sn-sub {
  color: #666;
  max-width: 820px;
  margin: 0 auto;
  font-size: 14px;
}

/* card outer wrapper (gives rounded border & spacing) */
.sn-card-wrapper {
  border-radius: 12px;
  padding: 10px;
  background: linear-gradient(180deg, rgba(255,255,255,0.6), rgba(255,255,255,0.5));
  box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset;
  border: 1px solid var(--card-border);
  transition: transform .18s ease, box-shadow .18s ease;
}

/* highlight (one card with stronger outline) */
.sn-card-highlight {
  box-shadow: 0 10px 30px rgba(110,100,240,0.06);
  border: 1px solid rgba(138,109,255,0.25);
}

/* inner white card */
.sn-card {
  background: #ffffff;
  border-radius: 10px;
  min-height: 210px;
}

/* icon box */
.sn-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #2f2f2f;
  color: #fff;
  box-shadow: 0 6px 18px rgba(46, 61, 73, 0.06);
}

/* text inside card */
.sn-card-title {
  font-size: 20px;
  margin-top: 12px;
  margin-bottom: 8px;
  color: #111;
  font-weight: 700;
}

.sn-card-text {
  color: #666;
  font-size: 16px;
  line-height: 1.45;
  min-height: 60px;
}

/* gradient pill button */
.sn-btn {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
  color: #fff;
  padding: 8px 16px;
  border-radius: 24px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  box-shadow: 0 6px 14px rgba(92,110,255,0.12);
  transition: transform .12s ease, box-shadow .12s ease, opacity .12s ease;
}

/* hover effects */
.sn-card-wrapper:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(39,52,92,0.08);
  border-color: rgba(138,109,255,0.28);
}

.sn-btn:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}



.package-card {
  border-radius: 16px;
  transition: all 0.3s ease-in-out;
  color: #fff;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

/* Different background colors */
.package-blue {
  background: linear-gradient(135deg, #0d3b66, #145374);
}

.package-cream {
  background: linear-gradient(135deg, #f7f3e9, #f0e4d7);
  color: #333;
}

.package-gold {
  background: linear-gradient(135deg, #b88a44, #d4a05f);
}

.price {
  font-weight: bold;
  margin-bottom: 15px;
  font-size: 14px;
  opacity: 0.9;
}

/* List items */
.package-card ul li {
  margin-bottom: 12px;
  line-height: 1.6;
  font-size: 15px;
}

/* Button */
.btn-discovery {
  border: 2px solid #333;
  color: #333;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s;
  background: #fff;
}

.btn-discovery:hover {
  background: #333;
  color: #fff;
}

.footer {
  background: #0d1b2a;
}

.footer h5 {
  color: #fff;
}

.footer p, 
.footer a {
  color: #ccc;
  text-decoration: none;
  font-size: 15px;
}

.footer a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer .bi {
  color: #f0ad4e; /* golden accent */
}

/* responsive tweaks */
@media (max-width: 767px) {
  .sn-main-title { font-size: 24px; }
  .sn-card { min-height: auto; }
  .sn-icon-box { width: 52px; height: 52px; }
}
