/* ===============================
   1. RESET & BASE
================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html, body {
  font-size: 16px;
  line-height: 1.6;
  color: #111;
  scroll-behavior: smooth;
  background: #f7f9fb;
}

a {
  text-decoration: none;
  color: inherit;
  font-weight: 600; /* Bold links globally */
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ===============================
   2. TYPOGRAPHY
================================= */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700; /* Bold headings globally */
  color: #111;
  line-height: 1.3;
  margin-bottom: 0.6rem;
}

body, p, li, span {
  font-size: 1rem;
  font-weight: 400; /* normal text */
  line-height: 1.7;
  color: #111;
}

/* Optional: unify heading sizes */
h1 { font-size: 2rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

.section-title {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
  position: relative;
}
.section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 50%;
  height: 3px;
  background: #b1974b;
  border-radius: 2px;
}

/* ===============================
   3. NAVBAR
================================= */
.navbar {
  background: linear-gradient(135deg, #0b0f1c 0%, #1b2436 70%, #101320 100%);
  padding: 12px 0;
}
.navbar-brand img {
  height: 60px;
}
.navbar-nav .nav-link {
  color: #ddd !important;
  font-weight: 600;
  padding: 10px 12px;
  font-size: 1rem;
  transition: color 0.3s;
}
.navbar-nav .nav-link:hover {
  color: #b1974b !important;
  border-bottom: 2px solid #b1974b;
}
.navbar .btn-gold, .navbar .btn-teal {
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 20px;
  border-radius: 25px;
  margin-left: 8px;
  text-align: center;
  transition: all 0.3s ease;
}
.navbar .btn-gold {
  background: #b1974b;
  color: #081226;
  border: none;
}
.navbar .btn-gold:hover {
  background: #d0b878;
  color: #fff;
}
.navbar .btn-teal {
  background: #05b0cd;
  color: #fff;
}
.navbar .btn-teal:hover {
  background: #0295a5;
}

/* ===============================
   4. HERO SECTION
================================= */
.hero, .hero-premium, .faq-hero {
  text-align: center;
  overflow: hidden;
}

.hero {
  position: relative;
  padding: 60px 20px;
  background: #101320;
  color: #fff;
}

.hero h1, .hero-title, .hero-premium .hero-title, .faq-hero .faq-title {
  font-weight: 700;
  line-height: 1.3;
}

.hero-title .highlight-text {
  color: #b1974b;
  font-weight: inherit;
  font-size: inherit;
}

.hero p, .hero-subtitle, .cta-premium p, .faq-hero .faq-subtitle {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #f1f1f1;
  max-width: 700px;
  margin: 15px auto 0;
}

.hero img {
  border-radius: 10px;
  max-width: 100%;
  height: auto;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.hero-badge {
  font-size: 0.85rem;
  background-color: #b1974b;
  color: #111;
  padding: 6px 14px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 12px;
}

/* Buttons inside Hero */
.btn-hero-gold {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 25px;
  padding: 10px 25px;
  background: linear-gradient(135deg, #ffd700, #b1974b);
  color: #000;
  text-transform: uppercase;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}
.btn-hero-gold:hover {
  background: linear-gradient(135deg, #b1974b, #ffd700);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

/* ===============================
   5. BUTTONS (Global Style)
================================= */
.btn, .btn-gold, .btn-teal, .btn-premium-gold {
  border: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Gold Button */
.btn-gold {
  background-color: #b1974b;
  color: #081226;
}
.btn-gold:hover {
  background-color: #d0b878;
  color: #fff;
}

/* Teal Button */
.btn-teal {
  background-color: #008080;
  color: #ffffff;
}
.btn-teal:hover, .btn-teal:focus {
  background-color: #006666;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Premium Gold Button */
.btn-premium-gold {
  background: linear-gradient(135deg, #FFD700, #FFC300, #FFB700);
  border: none;
  color: #1a1a1a;
  font-weight: 600;
  font-size: 1rem;
  text-shadow: 0 1px 2px rgba(255,255,255,0.5);
  padding: 12px 35px;
  box-shadow: 0 6px 15px rgba(255,215,0,0.5);
  transition: all 0.3s ease;
}
.btn-premium-gold:hover {
  background: linear-gradient(135deg, #FFC300, #FFD700, #FFCC00);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255,215,0,0.7);
}


/* ===== Section Titles ===== */
.section-title {
  font-size: 2rem;
  color: #111;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 100px;
  height: 5px;
  background: #007bff;
  margin: 0.5rem auto 0;
  border-radius: 3px;
}

/* ===== Price Table Icons ===== */
.table-compare i {
  color: #007bff;           /* Always blue */
  font-size: 1.3rem;        /* Slightly larger */
  vertical-align: middle;
  transition: transform 0.3s ease, color 0.3s ease;
}

.table-compare i:hover {
  transform: scale(1.2);    /* Zoom on hover */
  color: #007bff;           /* Remain blue */
}

/* ===== Calculator / Cards Styling ===== */
.calculator {
  transition: all 0.3s ease;
}

.calculator .btn {
  font-weight: 600;
}

.bulk-banner {
  font-weight: bold;
  border-radius: 1rem;
}

/* ===== Cards (Premium Services) ===== */
.service-card, .industry-card, .choose-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover, .industry-card:hover, .choose-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* ===== Card Icons ===== */
.card-icon, .choose-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #e0f2ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: #1e40af;
  margin: 0 auto 1rem;
  transition: transform 0.3s, background-color 0.3s, color 0.3s, box-shadow 0.3s;
}

.service-card:hover .card-icon,
.industry-card:hover .card-icon,
.choose-card:hover .choose-icon {
  transform: scale(1.15);
  background-color: #bae6fd;
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.25);
}

.service-card:hover .card-icon i,
.industry-card:hover .card-icon i,
.choose-card:hover .choose-icon i {
  transform: scale(1.25);
  color: #0a2a8a;
}


/* ===============================
   7. FOOTER
================================= */
.footer {
  background: #101320;
  color: #dcdcdc;
  padding: 30px 20px;
}

.footer h5 { 
  color: #f0c874; 
  margin-bottom: 1rem; 
  font-weight: 600; 
}

.footer a { 
  color: #ccc; 
  transition: 0.3s; 
}
.footer a:hover { 
  color: #f0c874; 
}

/* Footer Paragraphs */
.footer p { 
  font-size: 14px; 
  color: #ccc; 
  margin: 0; 
  text-align: center;   /* ✅ Center aligned */
}

/* Footer Links */
.footer p a {
  color: #f0c874;      /* Golden premium tone */
  text-decoration: none;
  margin: 0 6px;
  font-weight: 500;
}
.footer p a:hover {
  text-decoration: underline;
  color: #ffd77a;      /* Brighter golden on hover */
}



/* ===================== TESTIMONIAL SECTION ===================== */
.testimonials-section {
  background: #1e1e1e; 
  padding: 5rem 1rem;
}

/* ===================== TESTIMONIAL HEADING ===================== */
.testimonials-title {
  font-weight: 900;
  font-size: 2.6rem;
  text-align: center;
  margin-bottom: 0.6rem;
  line-height: 1.1;
}

.testimonials-title .title-bold {
  font-weight: 900;
  font-size: inherit;
  display: inline-block;
}

.client-white {
  color: #fff; /* Client white */
}

.bluetheme {
  color: #87CEFA; /* Feedback sky blue */
}

.title-underline {
  width: 80px;
  height: 3px;
  background-color: #87CEFA;
  margin: 0.5rem auto;
  border-radius: 2px;
}

.testimonials-subtitle {
  font-size: 1.1rem;
  color: #ccc;
  text-align: center;
  max-width: 600px;
  margin: 0.5rem auto 1.5rem auto;
  line-height: 1.5;
}


/* ===================== TESTIMONIAL SLIDER ===================== */
.testimonial-slider-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 60px; /* space for arrows */
  box-sizing: border-box;
}

.testimonial-slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

/* Display one card at a time */
.testimonial-card {
  flex: 0 0 100%; /* full width of wrapper */
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 2rem 2.5rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2e2e2e, #3a3a3a);
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  position: relative;
  color: #fff;
  overflow: hidden;
}

/* Floating subtle gradient effect */
.testimonial-card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(135,206,250,0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: floatBG 30s linear infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes floatBG {
  0% { transform: translate(0,0) rotate(0deg); }
  50% { transform: translate(15px,15px) rotate(180deg); }
  100% { transform: translate(0,0) rotate(360deg); }
}

.testimonial-card .avatar {
  width: 60px;
  height: 60px;
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
  background: linear-gradient(135deg, #87CEFA, #00BFFF);
  color: #111;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 1;
}

.testimonial-card .testimonial-name {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
  color: #87CEFA; 
  z-index: 1;
}

.testimonial-card .testimonial-text {
  color: #ccc;
  line-height: 1.5;
  margin-bottom: 0.5rem;
  text-align: center;
  font-size: 0.95rem;
  max-width: 80%;
  z-index: 1;
}

.testimonial-card .stars {
  color: #87CEFA; 
  font-size: 1.2rem;
  z-index: 1;
}

/* Slider Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #87CEFA, #00BFFF);
  border: none;
  color: #111;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.6rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 10px rgba(0,0,0,0.3);
}

.slider-arrow:hover {
  background: linear-gradient(135deg, #00BFFF, #87CEFA);
  transform: translateY(-50%) scale(1.05);
  transition: all 0.3s ease;
}

.left-arrow { left: 10px; }
.right-arrow { right: 10px; }

/* Mobile adjustments */
@media (max-width: 768px) {
  .testimonial-slider-wrapper { padding: 0 20px; }
  .testimonial-card { padding: 1.6rem 1.2rem; }
  .testimonial-card .avatar { width: 50px; height: 50px; font-size: 1.4rem; }
  .testimonial-card .testimonial-name { font-size: 1rem; }
  .testimonial-card .testimonial-text { font-size: 0.9rem; max-width: 90%; }
  .slider-arrow { width: 40px; height: 40px; font-size: 1.4rem; }
}






/* ===============================
   9. SLIDER & MODAL
================================= */
.twentytwenty-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 450px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  border: 3px solid #87ceeb;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.twentytwenty-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.25);
  border-color: #b1974b;
}
.twentytwenty-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
}
.twentytwenty-container:hover img {
  transform: scale(1.03);
}





/* ===============================
   10. RESPONSIVE
================================= */
@media (max-width: 991px){
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  .section-title { font-size: 1.5rem; }
  .hero-title { font-size: 1.8rem; }
  .twentytwenty-container { height: 350px; }
}
@media (max-width: 768px){
  .hero-title { font-size: 1.6rem; }
  .hero-subtitle { font-size: 0.95rem; }
  .card-mrcs, .choose-card { padding: 15px; }
  .twentytwenty-container { height: 300px; }
}
@media (max-width: 576px){
  .section-title { font-size: 1.4rem; }
  .btn, .btn-gold, .btn-teal { width: 100%; padding: 10px; font-size: 0.95rem; }
  .hero { padding: 50px 10px; }
  .twentytwenty-container { height: 250px; }
}





.cta-premium {
  background: linear-gradient(
    135deg, 
    #87CEFA,   /* Sky Blue */
    #00BFFF,   /* Deep Sky Blue */
    #1E90FF,   /* Dodger Blue */
    #f0c874,   /* Soft Gold */
    #f0c874    /* Soft Gold */
  ); 
  color: black; 
  position: relative;
  overflow: hidden;
  font-family: 'Cinzel', serif; /* Unique & premium font for CTA */
  padding: 6rem 1rem;
  text-align: center;
  background-size: 400% 400%; /* To make gradient flow more dynamic */
  animation: gradientShift 15s ease infinite;
  transition: background 1.5s ease;
}



/* Smooth gradient shifting animation */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Floating subtle gradient animation overlay */
.cta-premium::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: floatBG 30s linear infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes floatBG {
  0% { transform: translate(0,0) rotate(0deg); }
  50% { transform: translate(20px,20px) rotate(180deg); }
  100% { transform: translate(0,0) rotate(360deg); }
}

.cta-premium .container {
  position: relative;
  z-index: 1;
}

/* Heading */
.cta-heading {
  font-family: 'Playfair Display', serif; 
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #000000 !important;   /* Black color */
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.4); 
}

/* Description */
.cta-desc {
  font-size: 1.2rem;
  color: #000000 !important;   /* Black color */
  max-width: 750px;
  margin: 0 auto 2.5rem auto;
  line-height: 1.6;
  animation: fadeInUp 1.2s ease forwards;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.2);
}

/* Buttons */
.btn-premium-gold {
  background: linear-gradient(135deg, #556B2F, #D4AF37); /* Dark Olive to Gold */
  color: #000 !important;                /* Changed from white to black */
  border: none;
  font-weight: 600;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  position: relative;
  overflow: hidden;
}

.btn-premium-gold::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255,255,255,0.15);
  transform: skewX(-25deg);
  transition: all 0.5s ease;
}

.btn-premium-gold:hover::after {
  left: 125%;
}

.btn-premium-gold:hover {
  background: linear-gradient(135deg, #3B5323, #FFD700); /* Darker Olive to Gold */
  color: #000 !important;                /* Hover text color also black */
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}



/* Animation */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .cta-heading { font-size: 2.2rem; }
  .cta-desc { font-size: 1rem; max-width: 90%; }
  .btn-premium-gold { font-size: 0.95rem; padding: 0.6rem 1.5rem; }
}








/* ================= SECTION STYLING ================= */
.country-section {
  padding: 5rem 0;
  background: #f5f5f5; /* Light neutral background */
}

/* ================= CARDS ================= */
.country-card {
  background: linear-gradient(135deg, #BFA55A, #D4B65A, #A9A9A9); /* Golden + subtle dark gray gradient */
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 420px;
  padding: 1.5rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  color: black;
  font-family: 'Poppins', sans-serif;
}

/* Floating subtle shimmer */
.country-card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: floatBG 30s linear infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes floatBG {
  0% { transform: translate(0,0) rotate(0deg); }
  50% { transform: translate(20px,20px) rotate(180deg); }
  100% { transform: translate(0,0) rotate(360deg); }
}




/* ================= FLAGS ================= */
.flag-square {
  width: 60px;
  height: 40px;
  border-radius: 8px;
  border: 1.5px solid rgba(0,0,0,0.1);
  object-fit: cover;
  z-index: 1;
  position: relative;
}

/* ================= TEXT ================= */
.country-card h6 {
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  z-index: 1;
  position: relative;
}

.country-card ul li {
  color: #111; /* Black text like CTA */
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  z-index: 1;
  position: relative;
}

/* Hover effect */
.country-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 28px rgba(0,0,0,0.2);
}

/* ================= Responsive ================= */
@media (max-width: 768px) {
  .country-card { min-height: 380px; padding: 1.2rem; }
  .flag-square { width: 50px; height: 33px; }
}

@media (max-width: 480px) {
  .country-card { min-height: 340px; padding: 1rem; }
  .flag-square { width: 40px; height: 27px; }
}





/* ===== Calculator Layout ===== */
.flex-section {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding: 50px 0;
  flex-wrap: wrap;
}

.left-side {
  flex: 1 1 400px;
}

.right-side {
  flex: 2 1 650px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}

.right-side .col-card {
  flex: 1 1 200px;
}

/* ===== Calculator Box ===== */
.calculator {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.calculator:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

/* ===== Result Box ===== */
.result {
  background: #e6f7f5;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  margin-top: 20px;
}

.result h4 {
  color: #009b97;
  font-weight: 700;
  font-size: 1.5rem;
}

/* ===== Selected Services ===== */
.selected-service {
  display: flex;
  justify-content: space-between;
  padding: 8px 12px;
  margin: 5px 0;
  background: #d1f0ee;
  border-radius: 8px;
  font-weight: 500;
}

.selected-service button {
  background: #ff4d4f;
  border: none;
  color: #fff;
  border-radius: 5px;
  padding: 2px 8px;
  cursor: pointer;
  transition: 0.3s;
}

.selected-service button:hover {
  background: #e63946;
}

/* ===== Premium Service Cards ===== */
.premium-card {
  cursor: pointer;
  transition: 0.4s;
  background: linear-gradient(145deg, #ffffff, #f0f8ff);
  border-radius: 15px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  padding: 20px;
  text-align: center;
}

.premium-card:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

/* ===== Premium Card Icon & Price ===== */
.premium-card .icon-wrapper {
  font-size: 2.2rem;
  color: #007bff; /* blue premium icon */
  text-align: center;
  margin-bottom: 15px;
  transition: transform 0.3s, color 0.3s;
}

.premium-card:hover .icon-wrapper {
  transform: scale(1.2);
  color: #0a2a8a;
}

.premium-card .price {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
  color: #111;
}

.premium-card .old-price {
  text-decoration: line-through;
  color: #888;
  margin-right: 5px;
}


/* ===== Premium Pricing Table ===== */
.pricing-table {
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  width: 100%;
}

.pricing-table thead {
  background: linear-gradient(135deg, #0072ff, #00c6ff);
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
}

.pricing-table thead th {
  padding: 15px;
  font-size: 0.95rem;
}

.pricing-table tbody tr {
  transition: background 0.3s;
}

.pricing-table tbody tr:nth-child(even) {
  background: #f9f9f9;
}

.pricing-table tbody tr:hover {
  background: #e7f1ff;
}

.pricing-table td {
  padding: 14px;
  font-size: 0.95rem;
  color: #333;
}

/* ===== Buttons in Pricing Table ===== */
.pricing-table .btn {
  display: inline-block;
  background-color: #007bff; /* Blue background */
  color: #fff; /* White text */
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.pricing-table .btn:hover {
  background-color: #0056b3; /* Darker blue on hover */
  transform: translateY(-2px);
  color: #fff;
}





/* Premium Why Choose Us Card */
.why-card {
  background: #fdfdfd; /* off white */
  border: 1px solid #eee;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.why-card h5 {
  color: #0d47a1;
  font-weight: 700;
  margin-bottom: 20px;
}

.why-item {
  text-align: center;
  padding: 18px;
  background: #fff;
  border-radius: 15px;
  border: 1px solid #f1f1f1;
  transition: transform 0.3s, box-shadow 0.3s;
}

.why-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}

.why-item i {
  color: #0d47a1;  /* premium deep blue */
  margin-bottom: 10px;
}

.why-item p {
  margin: 0;
  font-weight: 600;
  font-size: 0.95rem;
  color: #333;
}







/* Premium Pricing Table */
.pricing-table {
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.pricing-table thead {
  background: linear-gradient(135deg, #0072ff, #00c6ff);
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
}

.pricing-table thead th {
  padding: 15px;
  font-size: 0.95rem;
}

.pricing-table tbody tr {
  transition: background 0.3s;
}

.pricing-table tbody tr:nth-child(even) {
  background: #f9f9f9;
}

.pricing-table tbody tr:hover {
  background: #e9f2ff;
}

.pricing-table td {
  padding: 14px;
  font-size: 0.95rem;
  color: #333;
}






.hero-section {
  background: url('images/hero-bg.jpg') no-repeat center center/cover;
  color: #fff;
  padding: 120px 0;
  position: relative;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.4); /* Overlay for better text readability */
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 35px;
  line-height: 1.6;
}

.hero-buttons .btn {
  border-radius: 30px;
  padding: 12px 35px;
  font-weight: 600;
  margin: 5px;
  transition: all 0.3s ease-in-out;
}

.hero-buttons .btn-primary {
  background-color: #007bff;
  border: none;
}

.hero-buttons .btn-primary:hover {
  background-color: #0056b3;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.hero-buttons .btn-outline-primary {
  border: 2px solid #fff;
  color: #fff;
  background-color: transparent;
}

.hero-buttons .btn-outline-primary:hover {
  background-color: #fff;
  color: #007bff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}


