body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f0f4ff, #e6f0ff, #ffffff);
    overflow-x: hidden;
    color: #1b1b1b;
  }

  /* Navbar */
  .navbar {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  }

  .navbar-brand {
    font-weight: 800;
    font-size: 1.6rem;
    color: #ff6600;
    letter-spacing: 1px;
  }

  .navbar-nav .nav-link {
    color: #000;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
  }

  .navbar-nav .nav-link:hover {
    color: #ff6600;
  }

  /* Hero Section */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at top left, #e6f0ff, #ffffff);
    position: relative;
    overflow: hidden;
  }

  .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
  }

  .shape.one {
    width: 300px; height: 300px;
    background: #ff4b2b;
    top: -100px; left: -100px;
  }

  .shape.two {
    width: 250px; height: 250px;
    background: #007bff;
    bottom: -100px; right: -100px;
  }

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

  .hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1b1b1b;
  }

  .hero h1 span {
    color: #ff2b2b;
  }

  .hero p {
    margin-top: 15px;
    font-size: 1.1rem;
    color: #444;
  }

  /* --- Glowing Buttons Section --- */
  .button-group {
    margin-top: 40px;
  }

  .magic-btn {
    position: relative;
    display: inline-block;
    padding: 14px 40px;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: 600;
    overflow: hidden;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.4s ease;
    background: transparent;
    border: 2px solid transparent;
  }

  .magic-btn span {
    position: relative;
    z-index: 2;
    color: #fff;
  }

  .magic-btn::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(90deg, #ff4b2b, #ff416c, #ff6600, #007bff);
    background-size: 400%;
    border-radius: 50px;
    z-index: 1;
    filter: blur(4px);
    opacity: 0.8;
    transition: all 0.3s ease;
    animation: glowMove 6s linear infinite;
  }

  @keyframes glowMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }

  /* Button Color Themes */
  .magic-btn.blue::before {
    background: linear-gradient(45deg, #007bff, #00d4ff, #007bff);
  }

  .magic-btn.red::before {
    background: linear-gradient(45deg, #ff4b2b, #ff416c, #ff4b2b);
  }

  .magic-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  }

  .magic-btn:hover::before {
    opacity: 1;
  }

  /* Hero Image */
  .hero img {
    border-radius: 25px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transform: rotate(3deg);
    transition: all 0.4s ease;
  }

  .hero img:hover {
    transform: rotate(0deg) scale(1.02);
  }

  /* Responsive */
  @media (max-width: 992px) {
    .hero h1 {
      font-size: 2.3rem;
    }
    .hero {
      text-align: center;
      padding: 100px 0;
    }
    .hero img {
      margin-top: 30px;
      transform: none;
    }
  }

  /* Modern HR Section */
.hr-modern-section {
position: relative;
padding: 100px 0;
overflow: hidden;
color: #1b1b1b;
}

/* Background wave gradient */
.wave-bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 130%;
background: radial-gradient(circle at 20% 20%, #eaf1ff 0%, #ffffff 60%);
z-index: 0;
clip-path: ellipse(150% 90% at 50% 0%);
}

/* Floating icons */
.floating-icon {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
transition: all 0.4s ease;
position: relative;
}

.floating-icon i {
font-size: 2.5rem;
background: linear-gradient(45deg, #007bff, #00c6ff, #ff416c);
/* -webkit-background-clip: text; */
-webkit-text-fill-color: transparent;
animation: floatIcon 4s ease-in-out infinite;
}

.floating-icon::after {
content: "";
position: absolute;
width: 60px;
height: 60px;
border-radius: 50%;
background: radial-gradient(circle at center, rgba(0,123,255,0.15), transparent);
z-index: -1;
top: 5px;
transition: 0.4s;
}

.floating-icon p {
margin-top: 10px;
font-weight: 600;
color: #1b1b1b;
}

.floating-icon:hover i {
transform: scale(1.15);
filter: brightness(1.2);
}

@keyframes floatIcon {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-10px); }
}

/* Stylish gradient text */
.highlight-text {
color: #ff2b2b;
}

/* Gradient Button */
.btn-creative {
background: linear-gradient(45deg, #ff4b2b, #ff416c, #007bff);
background-size: 300%;
color: white;
border: none;
border-radius: 50px;
padding: 12px 40px;
font-weight: 600;
transition: all 0.4s ease;
}

.btn-creative:hover {
background-position: right center;
transform: translateY(-4px);
box-shadow: 0 8px 20px rgba(255, 65, 108, 0.3);
}

/* ⭐ Star Shaped Image */
.star-image-wrapper {
position: relative;
width: 80%;
margin: auto;
filter: drop-shadow(0 8px 20px rgba(0,0,0,0.1));
}

.star-shaped-img {
width: 100%;
height: auto;
clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 
                   68% 57%, 79% 91%, 50% 70%, 
                   21% 91%, 32% 57%, 2% 35%, 
                   39% 35%);
transition: all 0.5s ease;
border: 4px solid transparent;
background: linear-gradient(white, white) padding-box,
            linear-gradient(45deg, #ff416c, #007bff) border-box;
}

.star-shaped-img:hover {
transform: scale(1.05) rotate(2deg);
filter: brightness(1.1) drop-shadow(0 12px 25px rgba(0,0,0,0.15));
}

/* Responsive */
@media (max-width: 768px) {
.floating-icon i {
  font-size: 2rem;
}
.star-image-wrapper {
  width: 90%;
}
}

.hire-talent-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 60%, #eef4ff 100%);
    overflow: hidden;
    z-index: 1;
  }

  /* Floating gradient background glow */
  .bg-blob {
    position: absolute;
    top: -60px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at 30% 30%, #007bff45, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    animation: blobFloat 10s ease-in-out infinite;
  }

  @keyframes blobFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
  }

  /* Enquire Button */
  .btn-enquire {
    display: inline-block;
    background: linear-gradient(90deg, #007bff, #00c6ff);
    color: #fff;
    font-weight: 600;
    padding: 14px 42px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 6px 18px rgba(0, 123, 255, 0.3);
  }
  .btn-enquire:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 28px rgba(0, 123, 255, 0.4);
    background: linear-gradient(90deg, #00c6ff, #007bff);
  }

  /* Gradient Text */
  .text-gradient {
    background: linear-gradient(45deg, #ff416c, #ff4b2b, #007bff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  /* Unique Star / Blob Image Shape */
  .blob-image {
    position: relative;
    width: 90%;
    margin: auto;
    overflow: hidden;
    transition: all 0.5s ease;
  }
  .blob-image img {
    width: 100%;
    height: auto;
    clip-path: path("M50 0 L61 35 L98 35 L68 57 L79 91 L50 70 L21 91 L32 57 L2 35 L39 35 Z");
    transition: all 0.6s ease;
    border: 5px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(45deg, #ff4b2b, #007bff) border-box;
  }
  .blob-image img:hover {
    transform: scale(1.05);
    filter: brightness(1.1) drop-shadow(0 12px 25px rgba(0, 0, 0, 0.15));
  }

  /* Quote Styling */
  .italic-quote {
    font-style: italic;
    font-size: 1.1rem;
    color: #555;
    padding-left: 15px;
    border-left: 3px solid #007bff;
  }

  /* Text styles */
  .hire-talent-section h2 {
    font-weight: 700;
    font-size: 2.5rem;
  }
  .hire-talent-section small {
    letter-spacing: 1.5px;
    font-weight: 600;
    color: #6c757d;
  }

  /* Responsive */
  @media (max-width: 992px) {
    .hire-talent-section {
      padding: 80px 0;
    }
    .blob-image {
      width: 100%;
    }
  }
  @media (max-width: 576px) {
    .hire-talent-section h2 {
      font-size: 2rem;
    }
    .btn-enquire {
      padding: 12px 30px;
    }
  }

  /* ========== IMAGE (STAR SHAPE) – BIGGER VERSION ========== */

.blob-image {
position: relative;
width: 110%;            /* ⬆ Increased width */
margin: auto;
overflow: hidden;
transition: all 0.5s ease;
}

.blob-image img {
width: 115%;            /* ⬆ Slightly larger inside container */
height: auto;
object-fit: cover;
clip-path: path("M50 0 L61 35 L98 35 L68 57 L79 91 L50 70 L21 91 L32 57 L2 35 L39 35 Z");
transition: all 0.6s ease;
border: 6px solid transparent;
background: linear-gradient(white, white) padding-box,
            linear-gradient(45deg, #ff4b2b, #007bff) border-box;
border-radius: 15px;
}

.blob-image img:hover {
transform: scale(1.08);   /* More zoom on hover */
filter: brightness(1.1) drop-shadow(0 15px 30px rgba(0, 0, 0, 0.2));
}

/* Responsive tweaks */
@media (max-width: 992px) {
.blob-image {
  width: 100%;
  margin-bottom: 40px;
}
.blob-image img {
  width: 100%;
}
}

@media (max-width: 576px) {
.blob-image img {
  width: 100%;
  clip-path: path("M50 0 L61 35 L98 35 L68 57 L79 91 L50 70 L21 91 L32 57 L2 35 L39 35 Z");
}
}

/* ===== TRIANGULAR DIAMOND IMAGE STYLE ===== */

.blob-image {
position: relative;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
overflow: visible;
transition: all 0.5s ease;
margin-bottom: 50px;
}

.blob-image img {
width: 420px;  /* 👈 Bigger size */
height: 420px;
object-fit: cover;

/* 💎 Taller, triangle-like diamond shape */
clip-path: polygon(50% 0%, 95% 50%, 50% 100%, 5% 50%);

border: 6px solid transparent;
background: linear-gradient(white, white) padding-box,
            linear-gradient(135deg, #ff4b2b, #007bff) border-box;
border-radius: 25px;
transition: all 0.6s ease;
filter: drop-shadow(0 10px 35px rgba(0, 0, 0, 0.3));
}

.blob-image img:hover {
transform: scale(1.12) rotate(4deg);
filter: brightness(1.15) drop-shadow(0 20px 50px rgba(0, 0, 0, 0.35));
}

/* RESPONSIVE */
@media (max-width: 992px) {
.blob-image img {
  width: 350px;
  height: 350px;
}
}

@media (max-width: 576px) {
.blob-image img {
  width: 260px;
  height: 260px;
}
}

/* --- SECTION STYLE --- */
.contact-modern {
background: linear-gradient(120deg, #ffffff 0%, #f4f7ff 100%);
padding: 100px 0;
position: relative;
overflow: hidden;
}

.contact-modern::before {
content: "";
position: absolute;
top: -100px;
right: -150px;
width: 400px;
height: 400px;
background: radial-gradient(circle at center, #007bff25, transparent 70%);
border-radius: 50%;
z-index: 0;
}

.contact-head {
text-align: center;
margin-bottom: 60px;
max-width: 750px;
margin-inline: auto;
position: relative;
z-index: 1;
}

.contact-head .small-title {
text-transform: uppercase;
letter-spacing: 2px;
color: #007bff;
font-weight: 600;
margin-bottom: 10px;
}

.contact-head .main-title {
font-size: 46px;
font-weight: 800;
color: #0c1b3b;
}

.contact-head .main-title span {
background: linear-gradient(45deg, #ff4b2b, #007bff);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.contact-head p {
color: #555;
font-size: 17px;
margin-top: 10px;
}

/* --- FORM STYLE --- */
.contact-form-modern {
position: relative;
z-index: 1;
}

.form-control-modern {
width: 100%;
border: none;
border-bottom: 2px solid #ccc;
background: transparent;
padding: 12px 0;
font-size: 17px;
margin-bottom: 25px;
outline: none;
transition: 0.3s ease;
color: #333;
}

.form-control-modern:focus {
border-color: #007bff;
box-shadow: none;
}

.checkbox-group {
display: flex;
flex-wrap: wrap;
gap: 15px;
font-size: 15px;
color: #444;
margin-top: 10px;
}

.checkbox-group input {
margin-right: 8px;
}

/* --- BUTTON --- */
.btn-modern {
display: inline-block;
background: linear-gradient(135deg, #ff4b2b, #007bff);
color: #fff;
border: none;
padding: 14px 45px;
border-radius: 50px;
font-weight: 600;
font-size: 16px;
cursor: pointer;
transition: all 0.4s ease;
}

.btn-modern:hover {
transform: scale(1.07);
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
.contact-head .main-title {
  font-size: 34px;
}
.btn-modern {
  width: 100%;
}
}

.footer-modern {
background: linear-gradient(135deg, #0a0f2c 0%, #1a2b5c 100%);
color: #ffffff;
padding: 80px 0 30px;
position: relative;
overflow: hidden;
}

.footer-modern::before {
content: "";
position: absolute;
top: -100px;
left: -100px;
width: 300px;
height: 300px;
background: radial-gradient(circle at center, #007bff40, transparent 70%);
border-radius: 50%;
z-index: 0;
}

.footer-modern::after {
content: "";
position: absolute;
bottom: -150px;
right: -150px;
width: 350px;
height: 350px;
background: radial-gradient(circle at center, #ff4b2b40, transparent 70%);
border-radius: 50%;
z-index: 0;
}

.footer-modern .container {
position: relative;
z-index: 2;
}

.footer-logo {
font-size: 28px;
font-weight: 700;
color: #fff;
}

.footer-logo span {
color: #00b4ff;
}

.footer-about {
margin: 15px 0;
color: #d8d8d8;
font-size: 15px;
line-height: 1.6;
}

.footer-social a {
display: inline-block;
margin-right: 12px;
color: #fff;
font-size: 18px;
transition: all 0.3s ease;
}

.footer-social a:hover {
color: #00b4ff;
transform: translateY(-3px);
}

.footer-list {
list-style: none;
padding: 0;
margin: 0;
}

.footer-list li {
margin-bottom: 10px;
color: #c9d0e0;
font-size: 15px;
}

.footer-list a {
color: #ffffff;
text-decoration: none;
transition: 0.3s;
}

.footer-list a:hover {
color: #00b4ff;
}

.footer-social-alt a {
display: inline-flex;
justify-content: center;
align-items: center;
background: #fff;
color: #0a0f2c;
width: 38px;
height: 38px;
border-radius: 50%;
margin-right: 10px;
font-size: 16px;
transition: 0.3s;
}

.footer-social-alt a:hover {
background: linear-gradient(135deg, #007bff, #00b4ff);
color: #fff;
}

.footer-bottom {
text-align: center;
margin-top: 50px;
border-top: 1px solid rgba(255,255,255,0.1);
padding-top: 20px;
}

.footer-bottom p {
margin: 0;
font-size: 14px;
color: #b4bcd1;
}

.footer-bottom span {
color: #00b4ff;
font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
.footer-modern {
  text-align: center;
}
.footer-social,
.footer-social-alt {
  justify-content: center;
}
}
.footer-copyright {
text-align: center;
margin-top: 15px;
font-size: 14px;
color: #b4bcd1;
letter-spacing: 0.5px;
border-top: 1px solid rgba(255, 255, 255, 0.1);
padding-top: 15px;
}

.footer-copyright strong {
color: #00b4ff;
font-weight: 600;
transition: color 0.3s ease;
}

.footer-copyright strong:hover {
color: #ff4b2b;
}



.about-section {
    font-family: "Poppins", sans-serif;
    color: #1c2230;
    background: #f9fafc;
    overflow: hidden;
    padding-bottom: 80px;
  }
  
  /* Hero Banner */
  .about-banner {
    position: relative;
    background: url('https://images.unsplash.com/photo-1581093588401-22dede1a35b4?auto=format&fit=crop&w=1600&q=80') center/cover;
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  
  .about-banner .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
  }
  
  .about-banner .about-title {
    position: relative;
    color: #fff;
    font-size: 56px;
    font-weight: 700;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  
  /* Section Headings */
  .section-subtitle {
    font-weight: 700;
    color: #1c2230;
    margin-bottom: 15px;
    text-transform: uppercase;
  }
  
  .about-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    padding: 0 10px;
  }
  
  /* Pillars Section */
  .about-pillars {
    margin-top: 60px;
  }
  
  .about-pillars h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1c2230;
    margin-bottom: 20px;
  }
  
  .pillars-list {
    list-style: none;
    padding: 0;
  }
  
  .pillars-list li {
    background: linear-gradient(90deg, #007bff, #00c6ff);
    color: #fff;
    margin: 8px auto;
    display: inline-block;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    transition: all 0.3s ease;
  }
  
  .pillars-list li:hover {
    transform: scale(1.05);
    background: linear-gradient(90deg, #ff4b2b, #ff416c);
  }
  
  /* Testimonials */
  .testimonials {
    text-align: center;
    margin-top: 80px;
  }
  
  .testimonials-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1c2230;
  }
  
  .testimonial-quote {
    font-style: italic;
    font-size: 17px;
    color: #333;
    max-width: 700px;
    margin: 0 auto 10px;
    line-height: 1.8;
  }
  
  .testimonial-author {
    font-weight: 600;
    color: #007bff;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .about-banner {
      height: 40vh;
    }
  
    .about-banner .about-title {
      font-size: 36px;
    }
  
    .pillars-list li {
      display: block;
      margin: 10px auto;
    }
  }
  
  /* ===== WHY CHOOSE US ===== */
.why-choose-us {
  position: relative;
  background: linear-gradient(135deg, #f9f9f9, #fafbff);
  padding: 100px 0;
  overflow: hidden;
}

.why-choose-us::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -200px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 92, 0, 0.15), transparent);
  border-radius: 50%;
  z-index: 0;
}

.why-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.why-header h2 {
  font-size: 40px;
  font-weight: 700;
  color: #0a1f44;
  margin-bottom: 10px;
}

.why-header h2 span {
  color: #ff5c00;
}

.why-header p {
  font-size: 16px;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

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

/* LEFT SIDE TEXT */
.why-text {
  flex: 1 1 45%;
}

.why-point {
  margin-bottom: 40px;
  padding-left: 55px;
  position: relative;
}

.why-point i {
  position: absolute;
  left: 0;
  top: 5px;
  font-size: 28px;
  color: #ff5c00;
}

.why-point h4 {
  font-size: 20px;
  font-weight: 600;
  color: #0a1f44;
  margin-bottom: 8px;
}

.why-point p {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
}

/* RIGHT SIDE IMAGE */
.why-image {
  flex: 1 1 45%;
  text-align: center;
  position: relative;
}

.why-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 50%;
  clip-path: polygon(50% 0%, 100% 35%, 82% 100%, 18% 100%, 0% 35%);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.5s ease;
}

.why-image img:hover {
  transform: scale(1.05) rotate(2deg);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .why-content {
    flex-direction: column;
    text-align: center;
  }
  .why-text {
    padding: 0;
  }
  .why-point {
    padding-left: 0;
  }
  .why-point i {
    position: static;
    display: block;
    margin-bottom: 10px;
  }
  .why-image img {
    max-width: 380px;
  }
}



/* ===== CLEAN TESTIMONIALS SECTION ===== */
.testimonials-clean {
  background: linear-gradient(180deg, #f4f8ff 0%, #e8f0ff 100%);
  text-align: center;
  padding: 100px 0;
  color: #1a1a1a;
  position: relative;
  overflow: hidden;
}

.testimonial-header h2 {
  font-size: 38px;
  font-weight: 700;
  color: #001b48;
  margin-bottom: 15px;
}

.testimonial-header h2 span {
  color: #ff5c00;
}

.testimonial-header p {
  color: #555;
  font-size: 16px;
  max-width: 700px;
  margin: 0 auto 70px;
  line-height: 1.8;
}

/* GRID */
.testimonial-grid {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

/* SINGLE TESTIMONIAL */
.testimonial {
  max-width: 320px;
}

.testimonial img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ff5c00;
  margin-bottom: 20px;
  transition: transform 0.4s ease;
}

.testimonial:hover img {
  transform: scale(1.1);
}

/* QUOTE */
.testimonial blockquote {
  font-style: italic;
  color: #333;
  font-size: 15px;
  line-height: 1.8;
  margin: 0 auto 20px;
  max-width: 300px;
}

/* NAME */
.testimonial h4 {
  color: #001b48;
  font-weight: 600;
  margin-bottom: 5px;
}

.testimonial span {
  font-size: 14px;
  color: #666;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .testimonial-grid {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }
}

.team-diagonal {
  background: linear-gradient(180deg, #e8f0ff 0%, #dce7ff 100%);
background: transparent;

  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.team-diagonal::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to right, #001b48, #ff5c00);
  transform: skewY(-4deg);
  z-index: 1;
}

.team-intro {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.team-intro h2 {
  font-size: 42px;
  font-weight: 700;
  color: #001b48;
}

.team-intro h2 span {
  color: #ff5c00;
}

.team-intro p {
  max-width: 700px;
  margin: 15px auto;
  color: #444;
  line-height: 1.8;
}

/* TEAM FLOW */
.team-flow {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.team-card {
  transform: rotate(-3deg);
  transition: transform 0.5s ease;
}

.team-card:nth-child(2) {
  transform: rotate(3deg);
}

.team-photo {
  width: 230px;
  height: 300px;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  position: relative;
  box-shadow: 0 25px 40px rgba(0, 27, 72, 0.25);
  overflow: hidden;
}

.team-photo .overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 27, 72, 0.85);
  color: #fff;
  text-align: center;
  padding: 25px 10px;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.4s ease;
}

.team-photo:hover .overlay {
  opacity: 1;
  transform: translateY(0);
}

.team-photo:hover {
  transform: scale(1.08);
}

.team-photo h4 {
  font-size: 18px;
  font-weight: 600;
}

.team-photo p {
  font-size: 14px;
  opacity: 0.9;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .team-flow {
    flex-direction: column;
    gap: 50px;
  }
  .team-card {
    transform: rotate(0deg);
  }
}

/* ===== FAQ SECTION ===== */
.faq-section {
  background: radial-gradient(circle at top left, #e6f0ff, #ffffff);
  padding: 100px 0;
  font-family: 'Poppins', sans-serif;
}

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

.faq-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: #001b48;
}

.faq-header h2 span {
  background: linear-gradient(90deg, #001b48, #ff5c00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq-header p {
  max-width: 600px;
  margin: 15px auto;
  color: #555;
  font-size: 16px;
}

/* FAQ ITEMS */
.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(0, 27, 72, 0.1);
  padding-bottom: 15px;
}

.faq-question {
  background: none;
  border: none;
  outline: none;
  width: 100%;
  font-size: 18px;
  font-weight: 600;
  color: #001b48;
  text-align: left;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  color: #ff5c00;
}

.faq-icon {
  font-size: 22px;
  font-weight: bold;
  color: #001b48;
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq-question.active .faq-icon {
  transform: rotate(45deg);
  color: #ff5c00;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.4s ease;
}

.faq-answer p {
  margin-top: 12px;
  color: #444;
  line-height: 1.7;
}

.faq-question.active + .faq-answer {
  max-height: 300px;
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .faq-header h2 {
    font-size: 32px;
  }
}

.whatsapp-float {
  position: fixed;
  width: 55px;
  height: 55px;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 28px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0,0,0,0.4);
  color: #fff;
}



.hero-slider {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 20, 60, 0.55);
}

/* ✅ HERO CONTENT CENTERED ABSOLUTELY */
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* ✅ perfect center */
  color: #fff;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  width: 90%;
  padding: 20px;
}

.hero-content h1 {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-content h1 span {
  color: #ffb100;
}

.hero-content p {
  font-size: 18px;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 40px;
}

/* ✅ BUTTONS CENTERED BELOW TEXT */
.button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.magic-btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  transition: 0.3s ease;
}

.magic-btn.blue {
  background: linear-gradient(45deg, #1e90ff, #0072ff);
}

.magic-btn.red {
  background: linear-gradient(45deg, #ff5c00, #ff8c00);
}

.magic-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* ✅ SLIDER BUTTONS */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: none;
  font-size: 32px;
  padding: 10px 15px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
  transition: 0.3s ease;
}

.slider-btn:hover {
  background: rgba(255, 255, 255, 0.4);
}

.slider-btn.prev {
  left: 30px;
}

.slider-btn.next {
  right: 30px;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 42px;
  }

  .hero-content p {
    font-size: 16px;
  }
}

.team-diagonal {
  padding: 100px 0;
  background: radial-gradient(circle at top left, #e6f0ff, #ffffff);
  text-align: center;
}

.team-intro h2 {
  font-size: 42px;
  font-weight: 700;
  color: #0b1d46;
}

.team-intro h2 span {
  color: #ff5c00;
}

.team-intro p {
  color: #444;
  max-width: 700px;
  margin: 10px auto 60px;
}

.team-flow {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
}

.team-card {
  flex: 1 1 30%;
  min-width: 280px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.team-card:hover {
  transform: translateY(-8px);
}

.team-photo {
  width: 80%;
  height: 380px;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.team-info {
  margin-top: 20px;
}

.team-info h4 {
  font-size: 20px;
  font-weight: 600;
  color: #0b1d46;
  margin-bottom: 5px;
}

.team-info p {
  font-size: 15px;
  color: #666;
  margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .team-card {
    flex: 1 1 45%;
  }
}

@media (max-width: 768px) {
  .team-card {
    flex: 1 1 100%;
  }
}
.hero-slider .overlay {
  background: none !important;   /* removes black transparent layer */
  opacity: 0 !important;         /* fully hide overlay */
  display: none !important;      /* overlay ko bilkul hatane ke liye */
}

.hero-slider{
  height: 85vh;
  margin-top: 90px;

}



/* ================================
   📱 MOBILE PERFECT RESPONSIVE FIX
   ================================= */
@media (max-width: 576px) {

    .slide {
        height: 100vh !important;
        width: 100%;
        background-size: contain !important;   /* no crop */
        background-repeat: no-repeat;
        background-position: center center;
        background-color: #000;   /* empty space hide */
    }

    .hero-content {
        text-align: center;
        padding-top: 20px;
    }

    .container.hero-content {
        width: 100%;
        margin: 0;
        padding: 0 15px;
    }
}

/* 📱 Tablet Fix */
@media (min-width: 577px) and (max-width: 768px) {

    .slide {
        background-size: cover;
        background-position: center;
    }
}






/* Black gap fix – force full height on mobile */
@media (max-width: 768px) {
  .slide {
      height: 100vh !important;
      min-height: 100vh !important;
      background-position: top center !important; /* 🔥 मुख्य FIX */
      margin-bottom: 0 !important;
  }

  .container.hero-content {
      padding: 0 !important;
      margin: 0 !important;
  }

  .hero-slider,
  .slider-container {
      height: 100vh !important;
  }
}


@media (max-width: 768px) {

  /* Full height fix */
  .hero-slider,
  .slider-container,
  .slide {
      height: 100vh !important;
      min-height: 100vh !important;
      overflow: hidden !important;
  }

  /* ↓↓↓ MOST IMPORTANT (Black gap हटाने वाला code) ↓↓↓ */
  .slide .container,
  .slide .row,
  .slide .col-lg-6 {
      padding: 0 !important;
      margin: 0 !important;
      height: 0 !important;
      overflow: hidden !important;
  }
}




/* Slider container */
.new-hero-slider {
  position: relative;
  width: 100%;
  height: 100vh; /* Desktop height */
  overflow: hidden;
  margin-top: 90px;
}

/* Each slide */
.new-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.new-slide.active {
  opacity: 1;
  z-index: 1;
}

/* Slide image */
.new-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* full fill without black gaps */
  display: block;
}

/* Navigation buttons */
.new-prev,
.new-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 32px;
  padding: 10px 15px;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  z-index: 10;
  border-radius: 4px;
}

.new-prev { left: 15px; }
.new-next { right: 15px; }

/* Mobile slider */
@media (max-width: 768px) {
  .new-hero-slider {
    height: 60vh; /* Fixed mobile height */
  }

  .new-slide img {
    width: 100%;
    height: 100%; /* Keep full height */
    object-fit: fill; /* Fill container without gaps */
  }

  .new-prev,
  .new-next {
    font-size: 26px;
    padding: 8px 12px;
  }
}


