/* ===== BODY SPACE (fixed navbar ke liye) ===== */
body {
  padding-top: 80px;
  /* navbar height ke equal */
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: #051423;
  height: 80px;
  /* 🔥 increased */
  display: flex;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 0;
}

/* ===== LOGO FIX ===== */
.navbar-brand {
  display: flex;
  align-items: center;
}

.navbar-brand img {
  height: 80px;
  /* 🔥 bigger logo */
  width: auto;
  object-fit: contain;
  transition: 0.3s;
}

/* ===== NAV LINKS ===== */
.navbar-nav .nav-link {
  color: white !important;
  font-size: 14px;
  margin-left: 15px;
  text-transform: uppercase;
  position: relative;
  transition: 0.3s;
}

/* Underline hover effect */
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background: #D4AF37;
  transition: 0.3s;
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
  width: 80%;
}

/* Active link */
.navbar-nav .nav-link.active::after {
  width: 80%;
}

/* ===== TOGGLER BUTTON ===== */
.navbar-toggler {
  border: none;
  border: 1px solid white;
}

.navbar-toggler-icon {
  filter: invert(1);
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* ===== MOBILE VIEW ===== */
@media (max-width: 991px) {

  body {
    padding-top: 80px;
  }

  .navbar {
    height: auto;
    padding: 10px 0;
  }

  .navbar-brand img {
    height: 60px;
    /* 🔥 mobile optimized */
  }

  /* Menu background */
  .navbar-collapse {
    background: #0B1F33;
    margin-top: 10px;
    border-radius: 10px;
    padding: 15px;
  }

  /* Nav items */
  .navbar-nav {
    align-items: flex-start;
    width: 100%;
  }

  .navbar-nav .nav-link {
    color: #fff !important;
    margin: 8px 0;
    padding: 10px 15px;
    width: 100%;
  }

  /* Remove underline mobile */
  .navbar-nav .nav-link::after {
    display: none;
  }

  /* Hover effect mobile */
  .navbar-nav .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;

  }
}

/* ===== SMALL MOBILE ===== */
@media (max-width: 480px) {

  .navbar-brand img {
    height: 50px;
  }

  .navbar-nav .nav-link {
    font-size: 13px;
  }
}


/* ===== FOOTER MAIN ===== */
.down-nav {
  position: relative;
  background: url("images/a9.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  padding: 60px 0;
  z-index: 1;
}

/* 🔥 Overlay FIX */
.down-nav::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  /* better dark overlay */
  z-index: -1;
  /* ✅ content ke niche chala gaya */
}

/* 👇 IMPORTANT (content ko upar lana) */
.down-nav .container {
  position: relative;
  z-index: 2;
}

/* Headings */
.down-nav h2 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #D4AF37;
}

/* Text */
.down-nav p {
  font-size: 14px;
  line-height: 1.6;
}

/* Links */
.down-nav a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}


.down-nav a:hover {
  color: #D4AF37;
  padding-left: 5px;
}

/* Icons */
.down-nav i {
  margin-right: 8px;
}

.down-nav .row>div {
  padding-left: 8px;
  padding-right: 8px;
}

/* Social Icons Base */
.down-nav .fab {
  font-size: 16px;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  /* light glass bg */
  transition: all 0.3s ease;
  margin-right: 8px;
}

/* Hover Effect */
.down-nav .fab:hover {
  background: #D4AF37;
  /* golden bg */
  color: #0F2A44;
  /* dark text */
  transform: scale(1.2);
  /* 🔥 thoda bada */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  /* glow */
}

/* Newsletter */
.down-nav .form-control {
  border-radius: 5px;
  border: none;
  font-size: 14px;
}

.down-nav .btn {
  background: linear-gradient(135deg, #D4AF37, #C9A227);
  border: none;
}

.down-nav .btn:hover {
  background: #fff;
  color: #0F2A44;
}

/* ===== FOOTER BOTTOM ===== */
.footer {
  background: #0B1F33;
  color: #fff;
  font-size: 13px;

}

.footer strong {
  color: #D4AF37;
}

/* ===== TABLET ===== */
@media (max-width: 991px) {
  .down-nav {
    text-align: center;
    padding: 50px 0;
  }

  .down-nav .row>div {
    margin-bottom: 30px;
  }

  .down-nav h2 {
    font-size: 17px;
  }
  .footer{
    width: 100%;
    height: auto;
  }
}

/* ===== MOBILE ===== */
@media (max-width: 576px) {
  .down-nav {
    padding: 40px 0;
    background-attachment: scroll;
    /* 🔥 mobile fix */
  }

  .down-nav h2 {
    font-size: 16px;
    padding-left: 5px;
  }

  .down-nav p,
  .down-nav a {
    font-size: 13px;
  }

  .down-nav .fab {
    font-size: 18px;
    margin: 0 8px;
  }

  .down-nav form {
    max-width: 280px;
    margin: auto;
  }

}


/* Contact Hero */

/* ===== HERO SECTION ===== */
.contact-hero {
  background: url("images/c2.jpg") center/cover no-repeat;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}
.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}


.contact-hero .container {
  position: relative;
  z-index: 2;
}

.contact-hero h1 {
  font-size: 42px;
  font-weight: 700;
}

.contact-hero p {
  font-size: 18px;
  opacity: 0.9;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  background: #f9f9f9;
  padding: 60px 0;
}

/* ===== FORM CARD ===== */
.contact-form {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  padding: 25px;
   width: 100%;
  max-width: 550px;    /* maximum width limit */ 
  margin: 0 auto; 
}

.contact-form:hover {
  transform: translateY(-5px);
}

/* ===== INPUTS ===== */
.form-control {
  border-radius: 10px;
  border: 1px solid #ddd;
  padding: 12px;
  transition: 0.3s;
  font-size: 14px;
}

.form-control:focus {
  border-color: #c9a14a;
  box-shadow: 0 0 10px rgba(201, 161, 74, 0.3);
}

/* ===== LABELS ===== */
.form-label {
  font-weight: 500;
  margin-bottom: 6px;
}

/* ===== RADIO ===== */
input[type="radio"] {
  accent-color: #c9a14a;
  margin-right: 5px;
  margin-bottom: 15px;
}

/* ===== BUTTON ===== */
.btn-gold {
  background: linear-gradient(45deg, #c9a14a, #f5d27a);
  border: none;
  color: #000;
  font-weight: 600;
  padding: 12px;
  border-radius: 30px;
  transition: 0.3s;
}

.btn-gold:hover {
  background: linear-gradient(45deg, #b8913f, #eac96a);
  transform: scale(1.05);
}

/* ===== CONTACT INFO BOX ===== */
.contact-info {
  background: #051423;
  color: #fff;
  border-radius: 15px;
  padding: 30px;
  height: auto;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  width: 100%;        /* screen ke 90% ke width me adjust ho */
  max-width: 550px;  /* maximum width limit */
  margin: 0 auto;  
}

.contact-info h5,
.contact-info h6 {
  color: #f5d27a;
}

.contact-info p {
  margin-bottom: 10px;
  font-size: 14px;
}

.contact-info i {
  color: #f5d27a;
  margin-right: 10px;
}


/* ===== MAP ===== */
iframe {
  border-radius: 10px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .contact-hero {
    height: 300px;
  }

  .contact-hero h1 {
    font-size: 28px;
  }

  .contact-form {
    padding: 20px;
    width: 100%;
    margin-bottom: 5px;
  }
}

/* ===== WHY CHOOSE US ===== */


.why-us h2 {
  color: #f5d27a;
}

.why-card {
  background: #1a1a1a;
  padding: 25px;
  border-radius: 15px;
  transition: 0.3s;
  height: 100%;
}

.why-card i {
  font-size: 30px;
  color: #f5d27a;
  margin-bottom: 15px;
}

.why-card h5 {
  margin-bottom: 10px;
  font-weight: 600;
  color: white;
}

.why-card p {
  font-size: 14px;
  color: white;
}

.why-card:hover {
  transform: translateY(-8px);
  background: #222;
}

@media (max-width: 768px) {
  .why-card {
    padding: 20px;
  }

  .why-card h2 {
    font-size: 16px;
  }

  .why-card i {
    font-size: 25px;
  }
}

@media (max-width: 576px) {
  .why-card {
    padding: 15px;
  }

  .why-card i {
    font-size: 18px;
  }

}
/* End Contact Section */

/*Home page Hero Section */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Carousel Images */
.hero .carousel-inner .carousel-item img.hero-bg {
  width: 100%;
  height: 80vh; 
  object-fit: cover; 
  filter: brightness(70%); 
}

/* Hero Content (Text Overlay) */
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

/* Hero Button */
.hero-content .btn {
  background-color: #ffd700; /* Customize button color */
  border: none;
  color: #fff;
  padding: 12px 30px;
  font-size: 1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.hero-content .btn:hover {
  background-color: #e65c00;
  transform: scale(1.05);
}

/* Carousel Controls (Prev/Next Arrows) */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0,0,0,0.5);
  border-radius: 50%;
  padding: 15px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .hero .carousel-inner .carousel-item img.hero-bg {
    height: 60vh;
  }
  .hero-content h1 {
    font-size: 1.8rem;
  }
  .hero-content p {
    font-size: 0.9rem;
  }
  .hero-content .btn {
    padding: 10px 25px;
    font-size: 0.9rem;
  }
}



.hero-content .btn:hover {
  background: #0B1F33;

}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
}

.hero p {
  font-size: 1.2rem;
  margin: 15px 0;
}



/* Section title */
.about-title {
  font-weight: 700;
  color: #0B1F33;
}

/* Card */
.about-box {
  background: #0F2A44;
  border-radius: 20px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}



/* Hover */
.about-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Heading */
.about-box h5 {
  font-weight: 600;
  color: white;
}

/* Text */
.about-box p {
  font-size: 14px;
  color: white;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .about-box {
    padding: 20px;
  }

  .about-box h5 {
    font-size: 16px;
  }

  .about-box p {
    font-size: 13px;
  }
}

/* Card Slider */
/* Section Title */
.services-title {
  font-weight: 700;
  color: #0B1F33;
}

/* Card */
.service-card {
  border-radius: 20px;
  background: #fff;
  transition: 0.4s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Hover */
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Icon */
.service-icon {
  font-size: 40px;
  color: #0B1F33;
  transition: 0.3s;
}

/* Icon hover */
.service-card:hover .service-icon {
  color: #ffd700;
  transform: scale(1.2) rotate(5deg);
}


.reach-card {
  border-radius: 20px;
  background: linear-gradient(135deg, #5da0e2, #1c3d5a);
  color: #fff;
  transition: 0.4s;
}

.reach-card i {
  font-size: 40px;
  color: #ffd700;
  transition: 0.4s;
}

.reach-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.reach-card:hover i {
  transform: scale(1.2) rotate(5deg);
}

/* Section spacing */
.section-title {
  text-align: center;
  margin-bottom: 50px;
  font-weight: 700;
}

/* ===== SECTION ===== */
.trust-section {
  background: #f8f9fa;
}

/* Heading reuse */
.main-heading {
  color: #0F2A44;
  font-weight: 700;
}

/* Points Layout */
.trust-points {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

/* Each item */
.trust-points span {
  background: #fff;
  border: 1px solid #eee;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 14px;
  color: #333;
  transition: 0.3s;
}

/* Hover effect */
.trust-points span:hover {
  background: #D4AF37;
  color: #0F2A44;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 576px) {
  .trust-points span {
    font-size: 13px;
    padding: 8px 14px;
  }
}

/* Message Section Background */
.message-section {
  background: linear-gradient(135deg, #0B1F33, #1c3d5a);
  color: #fff;
  position: relative;
  overflow: hidden;
   padding: 20px 15px; 
}


/* Container spacing */
.message-section .container {
  max-width: 800px;
  margin: auto;
}

/* Heading */
.message-section h2 {
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 32px;
}

/* Paragraph */
.message-section p {
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.9;
  position: relative;
  padding-left: 20px; /* space for quote */
}

/* Quote icon */
.message-section p::before {
  content: "❝";
  font-size: 60px;
  position: absolute;
  top: -20px;
  left: -10px;
  color: rgba(255, 255, 255, 0.2);
}

/* Button */
.ready {
  background-color: white;
  color: #0B1F33;
  text-decoration: none;
  display: inline-block;
  padding: 12px 25px;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-bottom: 8px;
}

/* Hover */
.ready:hover {
  color: #0F2A44;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Glow effect background */
.message-section::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  top: -100px;
  right: -100px;
  z-index: 0;
}

/* Ensure content stays above glow */
.message-section * {
  position: relative;
  z-index: 2;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {
  .message-section h2 {
    font-size: 28px;
  }

  .message-section p {
    font-size: 16px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .message-section {
    padding: 10px 15px;
  }

  .message-section h2 {
    font-size: 24px;
  }

  .message-section p {
    font-size: 15px;
    line-height: 1.6;
    padding-left: 15px;
  }

  .message-section p::before {
    font-size: 40px;
    top: -10px;
    left: -5px;
  }

  .ready {
    padding: 10px 20px;
    font-size: 14px;
  }

  /* Reduce glow size */
  .message-section::before {
    width: 200px;
    height: 200px;
    top: -80px;
    right: -80px;
  }
}

/* Small Mobile */
@media (max-width: 576px) {
  .message-section h2 {
    font-size: 20px;
  }

  .message-section p {
    font-size: 14px;
  }

  .ready {
    width: 100%; /* full width button */
    text-align: center;
  }

  .message-section::before {
    width: 150px;
    height: 150px;
  }
}

/* ===== About Hero Section ===== */
.about-hero {
   background: url("images/3.jpeg") no-repeat;
   background-size:auto ;
  width: 100%;
  height: 50vh; /* viewport ke hisaab se height */
  min-height: 400px; /* small screens ke liye minimum height */
  position: relative;
}


/* Dark overlay */
.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

/* Text Content */
.about-hero .overlay {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 20px;
}

.about-hero h2 {
  font-size: 42px;
  font-weight: 700;
}

.about-hero p {
  max-width: 700px;
  margin: 10px auto 0;
  font-size: 16px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .about-hero {
    height: 280px;
  }

  .about-hero h2 {
    font-size: 28px;
  }

  .about-hero p {
    font-size: 14px;
  }
}

/* Center the column */
.about-container .col-sm-9 {
  margin: auto;
}

/* Card center */
.custom-card {
  text-align: center;
  padding: 25px;
}

/* Paragraph center */
.custom-card p {
  text-align: center;
}

/* List center but readable */
.custom-card ul {
  display: inline-block;
  text-align: left;
  margin-top: 15px;
}

/* Optional: better spacing */
.custom-card ul li {
  margin-bottom: 10px;
}

/* ===== SECTION TITLE ===== */
section.bg-light {
  position: relative;
  padding: 60px 0;
}
.section-title {
  font-size: 34px;
  font-weight: 700;
  position: relative;
  display: inline-block;
  color: white;
}

.section-title::after {
  content: "";
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, #D4AF37, #f5d76e);
  display: block;
  margin: 10px auto 0;
  border-radius: 3px;
}

/* ===== VALUE BOX ===== */
.value-box {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 18px;
  height: 100%;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
}

/* subtle top border accent */
.value-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, #D4AF37, #f5d76e);
}

/* Equal height fix */
.row.g-4 > div {
  display: flex;
}

.value-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* TEXT */
.value-box h5 {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 18px;
}

.value-box p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

/* HOVER EFFECT */
.value-box:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* optional glow effect */
.value-box:hover::before {
  height: 6px;
}

/* ===== TABLET ===== */
@media (max-width: 992px) {

  .section-title {
    font-size: 28px;
  }

  .value-box {
    padding: 25px 18px;
  }

}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

  .section-title {
    font-size: 24px;
  }

  .value-box {
    text-align: center;
    padding: 22px 15px;
  }

  .value-box h5 {
    font-size: 16px;
  }

  .value-box p {
    font-size: 13px;
  }

}

/* ===== SMALL MOBILE ===== */
@media (max-width: 576px) {

  .section-title {
    font-size: 22px;
  }

  .value-box {
    padding: 20px 12px;
  }

}

/* Services Section */
/* Hero Section with Background Image */
.service-hero {
  position: relative;
  width: 100%;
  height: 400px; /* fixed height */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  background-image: url('images/v6.jpg'); /* yaha aap apni image path dalen */
  background-size: cover;       /* image cover kare poora area */
  background-position: center;  /* center aligned */
  background-repeat: no-repeat;
  overflow: hidden;
}

/* Dark Overlay */
.service-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5); /* semi-transparent black */
  z-index: 1;
}

/* Text on top of overlay */
.service-hero .overlay {
  position: relative;
  z-index: 2;
  max-width: 90%;
  padding: 0 1rem;
}

.service-hero .overlay h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.service-hero .overlay p {
  font-size: 1.1rem;
  line-height: 1.5;
}

/* Responsive for tablets */
@media (max-width: 768px) {
  .service-hero .overlay h2 {
    font-size: 1.8rem;
  }
  .service-hero .overlay p {
    font-size: 1rem;
  }
}

/* Responsive for mobile */
@media (max-width: 576px) {
  .service-hero .overlay h2 {
    font-size: 1.5rem;
  }
  .service-hero .overlay p {
    font-size: 0.9rem;
  }
}

/* Section Background & Typography */
.services-section {
  background-color: #f9f9f9;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

.services-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #D4AF37;
}

.services-header p {
  font-size: 1.1rem;
  color: #555;
}

/* Services Cards */
.service-card {
  background-color: #fff;
  padding: 2rem 1rem;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card i {
  font-size: 2.5rem;
  color: #0F2A44;
  margin-bottom: 1rem;
  transition: 0.3s;
}
.service-card:hover i {
  transform: translateY(-8px) scale(1.2) rotate(10deg);
  color: #D4AF37;
}

.service-card h5 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.95rem;
  color: #555;
}

.service-card i:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}
.industries {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* center all pills */
  gap: 20px; /* gap between pills */

}


/* Industries Pills */
.industries > div {
 background: linear-gradient(90deg, #D4AF37, #f5d76e);
  color: #fff; /* text color white for contrast */
  padding: 60px 0;
  color: #fff;
  padding: 0.8rem 1.2rem;
  border-radius: 50px;
  gap: 20px;
  text-align: center;
  flex: 1 1 200px;
  transition: background-color 0.3s;
  transition: 0.3s;
}

.industries > div:hover {
  background: linear-gradient(90deg, #f5d76e, #D4AF37);
  transform: scale(1.05); /* slightly enlarge */
  box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

/* Responsive Typography & Layout */
@media (max-width: 992px) {
  .services-header h2 {
    font-size: 2rem;
  }
  .service-card i {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .services-header h2 {
    font-size: 1.8rem;
  }
  .services-header p {
    font-size: 0.95rem;
  }
  .service-card {
    padding: 1.5rem 1rem;
  }
}

@media (max-width: 576px) {
  .services-header h2 {
    font-size: 1.5rem;
  }
  .services-header p {
    font-size: 0.9rem;
  }
  .service-card i {
    font-size: 1.8rem;
  }
  .industries > div {
    flex: 1 1 100%;
    margin-bottom: 0.5rem;
  }
}

/* Services Cart Section  */
/* ===== SECTION ===== */
.cart-section {
  background: #f8f9fa;
  /* padding: 60px 0; */
}

/* Heading */
.main-heading {
  font-size: 32px;
  font-weight: 700;
  color: #0F2A44;
}

.main-heading::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #D4AF37;
  display: block;
  margin: 10px auto 0;
}

/* ===== CARD ===== */
.why-cart {
  background: #fff;
  padding: 30px 20px;
  border-radius: 15px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

/* Icon */
.why-cart i {
  font-size: 32px;
  color: #0B1F33;
  margin-bottom: 15px;
  transition: 0.3s;
}
.why-cart:hover i {
  color: #D4AF37;
}

/* Hover */
.why-cart:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  border-color: #D4AF37;
}

.why-cart:hover i {
  transform: scale(1.2);
}

/* Heading */
.why-cart h5 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #0F2A44;
  font-weight: 600;
}

/* Text */
.why-cart p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 991px) {
  .main-heading {
    font-size: 28px;
  }

  .why-cart {
    padding: 25px 15px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .cart-section {
    padding: 40px 0;
  }

  .main-heading {
    font-size: 24px;
  }

  .why-cart h5 {
    font-size: 16px;
  }

  .why-cart p {
    font-size: 13px;
  }

  .why-cart i {
    font-size: 28px;
  }
}


.stats-section h4 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #D4AF37;
}

.stats-box {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.stat-item {
  background: rgba(255,255,255,0.1);
  padding: 10px 15px;
  border-radius: 30px;
  font-size: 14px;
  color: black;
  border: 1px solid rgba(255,255,255,0.2);
  transition: 0.3s;
  font-weight: bold;
}

.stat-item:hover {
  background: #D4AF37;
  color: #0F2A44;
}

/* Section */
.client-section {
  background: #f8f9fa;
}

/* Box */
.client-box {
  background: #fff;
  padding: 30px 25px;
  border-radius: 15px;
  height: 100%;
  width: 100%;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: 0.3s;
}

/* Hover */
.client-box:hover {
  transform: translateY(-8px);
}

/* Heading */
.client-box h4 {
  color: #0F2A44;
  margin-bottom: 15px;
}

/* List */
.client-box ul {
  list-style: none;
  padding: 0;
}

.client-box ul li {
  font-size: 14px;
  margin-bottom: 10px;
  color: #555;
}

/* Responsive */
@media (max-width: 576px) {
  .client-box {
    text-align: center;
  }
}



/* About Page Founder Message */
/* ===== FOUNDER SECTION ===== */
.founder-section {
  background: #f8f9fa;
  top: 0;
}

/* Box Design */
.founder-box {
  max-width: 800px;
  margin: auto;
  background: #fff;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  position: relative;
}

/* Heading */
.founder-box h3 {
  font-size: 26px;
  color: #0F2A44;
  font-weight: 600;
  margin-bottom: 20px;
}

/* Paragraph */
.founder-box p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  font-style: italic;
}

/* Quote Icon (optional premium look) */
.founder-box::before {
  content: "“";
  font-size: 60px;
  color: #D4AF37;
  position: absolute;
  top: 10px;
  left: 20px;
  opacity: 0.3;
}

/* Hover effect */
.founder-box:hover {
  transform: translateY(-5px);
  transition: 0.3s;
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 991px) {
  .founder-box {
    padding: 30px 20px;
  }

  .founder-box h3 {
    font-size: 22px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .founder-box {
    padding: 25px 15px;
  }

  .founder-box h3 {
    font-size: 20px;
  }

  .founder-box p {
    font-size: 14px;
  }
}





/* Section Background */
.strong-section {
  background: #f9fbfd;
  padding: 80px 0;
}

/* Heading */
.strong-section h2 {
  font-size: 22px;
  color: #051423;
  position: relative;
}

/* Underline effect */
.strong-section h2::after {
  content: "";
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #D4AF37, #f5d27a);
  position: absolute;
  left: 0;
  bottom: -8px;
}

/* Paragraph */
.strong-section p {
  font-size: 14px;
  color: #555;
  margin-top: 15px;
}

/* List Styling */
.strong-section ul {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
}

.strong-section ul li {
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
  font-size: 14px;
  color: #333;
  line-height: 1.5;
}

/* Custom Tick Icon */
.strong-section ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #D4AF37;
  font-weight: bold;
}

/* Responsive spacing */
@media (max-width: 768px) {
  .strong-section .col-md-4 {
    margin-bottom: 20px;
  }
}