* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
  }
  
  body {
    background: #f9f9f9;
    color: #fff;
  }
  
 
  .logo {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
  }
  
  nav a {
    color: #fff;
    margin: 0 15px;
    text-decoration: none;
    font-weight: 500;
  }
  
  .btn-contact {
    background-color: #f9b233;
    color: #000;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
  }
  
  .hero {
    background: none;
    position: relative;
    padding: 60px 20px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('1.jpg') no-repeat center center/cover;
    opacity: 0.6;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    color: white;
    position: relative;
    max-width: 600px;
    z-index: 2;
}
  
  .hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
  }
  
  .hero p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
  }
  
  .hero-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
  }
  
  .btn-quote {
    background-color: #f9b233;
    color: #000;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
  }
  
  .phone {
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .phone img {
    vertical-align: middle;
  }



.experience-scroller::-webkit-scrollbar {
  display: none;
}

@media (max-width: 900px) {
}

@keyframes fadeSlideIn {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.certified-text,
.certified-image {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}

.certified-section.animate-in .certified-text,
.certified-section.animate-in .certified-image {
  animation: fadeSlideIn 0.9s cubic-bezier(0.4,0,0.2,1) forwards;
}

.certified-section.animate-in .certified-image {
  animation-delay: 0.2s;
}

.certified-section {
    padding: 60px 20px;
    background-color: #fff;
    color: #1f3b56;
  }
  
  .certified-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    max-width: 1200px;
    margin: auto;
  }
  
  .certified-text {
    flex: 1 1 50%;
  }
  
  .section-subtitle {
    display: inline-block;
    position: relative;
    color: #ff4d29;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    padding-left: 18px;
  }
  .section-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 3px;
    background: #ff4d29;
    border-radius: 2px;
  }
  
  .certified-text h2 {
    font-size: 36px;
    margin: 10px 0 20px;
  }
  
  .certified-text p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #333;
  }
  
  .service-lists {
    display: flex;
    gap: 40px;
  }
  
  .service-lists ul {
    list-style: none;
    padding: 0;
  }
  
  .service-lists li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #1f3b56;
    font-weight: 500;
  }
  
  .certified-image {
    flex: 1 1 45%;
  }
  
  .certified-image img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }
  .card-img-top {
    height: 220px;
    object-fit: cover;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
  }
  
  .card {
    border-radius: 18px;
    border: 1px solid #e6e6e6;
    box-shadow: 0 4px 24px rgba(31, 59, 86, 0.08);
    background: #fff;
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s cubic-bezier(0.4,0,0.2,1), background 0.3s;
    overflow: hidden;
    position: relative;
  }
  
  .card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 12px 32px rgba(31, 59, 86, 0.16);
    background: linear-gradient(135deg, #e3f0ff 0%, #f7fbff 100%);
  }
  
  .card-title {
    font-weight: 700;
    font-size: 1.35rem;
    color: #1f3b56;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
  }
  
  .card-text {
    color: #3a4a5d;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 0;
  }
  
  .card-img-top {
    height: 220px;
    object-fit: cover;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    transition: filter 0.3s;
  }
  
  .card:hover .card-img-top {
    filter: brightness(0.95) saturate(1.1);
  }

@keyframes card-animate-in {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.card-animate-in {
  animation: card-animate-in 0.8s cubic-bezier(0.4,0,0.2,1) both;
}
.video-section {
    background-color: #f5faff;
  }
  
  .section-subtitle {
    color: #f4c741;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
  }
  
  .video-wrapper {
    position: relative;
    border-radius: 20px 0 0 20px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
  }
  
  .video-wrapper img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 123, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    text-decoration: none;
    transition: background 0.3s ease;
  }
  
  .play-button:hover {
    background: #0056b3;
  }

.video-wrapper video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 380px;
  max-height: 480px;
  object-fit: cover;
  border-radius: 20px 0 0 20px;
}
@media (min-width: 992px) {
  .video-info-card {
    border-radius: 0 20px 20px 0;
    margin-top: 60px;
    min-height: 350px;
    box-shadow: 0 6px 32px rgba(31,59,86,0.10);
  }
  .video-wrapper video {
    min-height: 420px;
    max-height: 520px;
  }
}
@media (max-width: 991.98px) {
  .video-section .row {
    --bs-gutter-x: 1.5rem;
  }
  .video-wrapper, .video-wrapper video, .video-info-card {
    border-radius: 20px;
    margin-top: 0;
  }
  .video-info-card {
    margin-top: 2rem;
    min-height: unset;
  }
  .video-wrapper video {
    min-height: 220px;
    max-height: 320px;
  }
}

.video-info-card {
  background: #1f3b56;
  color: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 32px rgba(31,59,86,0.10);
  padding: 3.5rem 2.5rem;
  margin-left: 0;
  margin-right: 0;
  height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.video-info-card ul {
  padding-left: 0;
  margin-bottom: 2rem;
}
.video-info-card li {
  font-size: 1.08rem;
  font-weight: 500;
  color: #e3f0ff;
  letter-spacing: 0.2px;
}
.video-info-card .btn-quote {
  background: #f9b233;
  color: #1f3b56;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(31,59,86,0.10);
  transition: background 0.2s, color 0.2s;
}
.video-info-card .btn-quote:hover {
  background: #fff;
  color: #1f3b56;
}
@media (min-width: 1200px) {
  .video-info-card {
    min-height: 540px;
    padding: 4rem 3rem;
  }
}
@media (max-width: 991.98px) {
  .video-info-card {
    margin-top: 2rem;
    padding: 1.5rem 1rem;
    min-height: unset;
  }
}
  
@keyframes fadeSlideInVideoSection {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.video-section .video-wrapper,
.video-section .video-info-card {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.video-section.video-section-animate-in .video-wrapper {
  animation: fadeSlideInVideoSection 0.9s cubic-bezier(0.4,0,0.2,1) forwards;
}
.video-section.video-section-animate-in .video-info-card {
  animation: fadeSlideInVideoSection 0.9s cubic-bezier(0.4,0,0.2,1) 0.2s forwards;
}
.process-section {
    background: #fff;
  }
  
  .step-box {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    transition: background 0.3s ease;
  }
  
  .step-box:hover {
    background-color: #e6f2ff;
  }
  
  .step-box.active {
   
    color:  #6c757d;
  }
  
  .step-box.active h5,
  .step-box.active p {
    color: #fff;
  }
  
  .step-number {
    font-size: 32px;
    font-weight: 700;
    margin-right: 20px;
    color: #6c757d;
    min-width: 50px;
  }
  
  .step-box.active .step-number {
    color: #fff;
  }
  
  .step-box h5 {
    font-weight: 800;
    margin-bottom: 8px;
  }
  
  .step-box p {
    margin: 0;
    color: #555;
  }
  
@keyframes fadeSlideInProcess {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.process-section [data-animate],
.process-section .step-box {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.process-section.process-section-animate-in [data-animate] {
  animation: fadeSlideInProcess 0.9s cubic-bezier(0.4,0,0.2,1) forwards;
}
.process-section.process-section-animate-in .step-box {
  animation: fadeSlideInProcess 0.9s cubic-bezier(0.4,0,0.2,1) forwards;
}
.process-section.process-section-animate-in .step-box:nth-child(2) {
  animation-delay: 0.15s;
}
.process-section.process-section-animate-in .step-box:nth-child(3) {
  animation-delay: 0.3s;
}
.process-section.process-section-animate-in .step-box:nth-child(4) {
  animation-delay: 0.45s;
}

@keyframes fadeSlideInServices {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.services-section .card {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.services-section.services-section-animate-in .card {
  animation: fadeSlideInServices 0.9s cubic-bezier(0.4,0,0.2,1) forwards;
}
.services-section.services-section-animate-in .card:nth-child(2) {
  animation-delay: 0.15s;
}
.services-section.services-section-animate-in .card:nth-child(3) {
  animation-delay: 0.3s;
}
.services-section.services-section-animate-in .card:nth-child(4) {
  animation-delay: 0.45s;
}
.services-section.services-section-animate-in .card:nth-child(5) {
  animation-delay: 0.6s;
}
.services-section.services-section-animate-in .card:nth-child(6) {
  animation-delay: 0.75s;
}
.scrolling-gallery {
    background-color: #f9f9f9;
  }
  
  .gallery-wrapper {
    overflow: hidden;
    position: relative;
  }
  
  .gallery-track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: scrollGallery 20s linear infinite;
  }
  
  .gallery-track img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
  }
  
  .gallery-track img:hover {
    transform: scale(1.05);
  }
  
  @keyframes scrollGallery {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
   
.quote-section {
  position: relative;
  background: #224b6e;
  color: #fff;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
}
.quote-section-bg {
  position: absolute;
  inset: 0;
  background: url('12.jpg') center center/cover no-repeat, linear-gradient(120deg, #224b6e 60%, #f4c741 100%);
  opacity: 0.45;
  z-index: 1;
  filter: blur(2px);
}
.quote-section-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(34,75,110,0.85) 60%, rgba(244,199,65,0.25) 100%);
  z-index: 2;
  pointer-events: none;
}
.quote-section > .container {
  position: relative;
  z-index: 3;
}
.quote-section .col-lg-6:first-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 340px;
}
.quote-section .small {
  color: #fff;
  opacity: 0.85;
  letter-spacing: 1.5px;
}
.quote-section h2 {
  color: #fff;
  font-weight: 800;
  font-size: 2.1rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.quote-section .btn-light {
  background: #fff;
  color: #222;
  font-weight: 700;
  border-radius: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  border: none;
  padding: 0.75rem 2.5rem;
  transition: background 0.2s, color 0.2s;
}
.quote-section .btn-light:hover {
  background: #f4c741;
  color: #3b2bb89e;
}
.quote-form, .quote-thankyou {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(31,59,86,0.18);
  border: 1.5px solid #e6e6e6;
  padding: 1.5rem 1rem;
  min-width: 280px;
  max-width: 400px;
  margin: 0 auto;
  position: relative;
}
.quote-form h4 {
  color: #222;
  font-weight: 700;
  margin-bottom: 2rem;
  padding-left: 18px;
  position: relative;
}
.quote-form h4::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 32px;
  background: linear-gradient(180deg, #224b6e 0%, #f4c741 100%);
  border-radius: 4px;
}
.quote-form .form-control,
.quote-form .form-select {
  border-radius: 6px;
  background: #f7f7f7;
  border: 1px solid #e6e6e6;
  font-size: 1rem;
  padding: 1.1rem 1rem 0.5rem 1rem;
  transition: border 0.2s;
  box-shadow: none;
  position: relative;
}
.quote-form .form-control:focus,
.quote-form .form-select:focus {
  border-color: #224b6e;
  background: #fff;
  outline: none;
}
.quote-form .form-group {
  position: relative;
  margin-bottom: 0.5rem;
}
.quote-form .form-label {
  position: absolute;
  top: 0.7rem;
  left: 1rem;
  font-size: 0.95rem;
  color: #888;
  pointer-events: none;
  transition: 0.2s;
  background: transparent;
}
.quote-form .form-control:focus + .form-label,
.quote-form .form-control:not(:placeholder-shown) + .form-label,
.quote-form .form-select:focus + .form-label,
.quote-form .form-select:not([value=""]) + .form-label {
  top: -0.7rem;
  left: 0.8rem;
  font-size: 0.8rem;
  color: #224b6e;
  background: #fff;
  padding: 0 0.25rem;
}
.quote-form .row.g-3 {
  row-gap: 0.5rem;
}
.quote-form .form-check {
  margin-bottom: 0.5rem;
}
.quote-form textarea.form-control {
  min-height: 80px;
}
.quote-form .btn-dark {
  background: linear-gradient(90deg, #224b6e 0%, #f4c741 100%);
  color: #fff;
  border-radius: 6px;
  font-weight: 700;
  padding: 0.85rem 0;
  font-size: 1.1rem;
  letter-spacing: 1px;
  box-shadow: 0 2px 12px rgba(34,75,110,0.10);
  border: none;
  transition: background 0.2s, color 0.2s;
}
.quote-form .btn-dark:hover {
  background: linear-gradient(90deg, #f4c741 0%, #224b6e 100%);
  color: #222;
}
.quote-form .trust-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
  font-size: 0.98rem;
  color: #224b6e;
  font-weight: 600;
  gap: 0.5rem;
}
.quote-form .trust-badge i {
  color: #f4c741;
  font-size: 1.3em;
}
@media (max-width: 991.98px) {
  .quote-section {
    padding: 2.5rem 0;
    min-height: unset;
  }
  .quote-form, .quote-thankyou {
    padding: 1rem 0.5rem;
    min-width: unset;
    max-width: 100%;
  }
  .quote-section .col-lg-6:first-child {
    min-height: unset;
    margin-bottom: 2rem;
  }
}
  
@keyframes fadeSlideInQuoteSection {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.quote-section .col-lg-6 {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.quote-section.quote-section-animate-in .col-lg-6:first-child {
  animation: fadeSlideInQuoteSection 0.9s cubic-bezier(0.4,0,0.2,1) forwards;
}
.quote-section.quote-section-animate-in .col-lg-6:last-child {
  animation: fadeSlideInQuoteSection 0.9s cubic-bezier(0.4,0,0.2,1) 0.2s forwards;
}
  
.footer {
  background: #1f3b56;
  color: #fff;
  font-size: 1rem;
  border-top: 1px solid #224b6e;
}
.footer-link {
  color: #fff;
  text-decoration: none;
  opacity: 0.85;
  transition: color 0.2s, opacity 0.2s;
  font-weight: 500;
}
.footer-link:hover {
  color: #f4c741;
  opacity: 1;
  text-decoration: underline;
}
.footer-copy {
  font-size: 0.98rem;
  opacity: 0.85;
}
@media (max-width: 767.98px) {
  .footer {
    text-align: center;
  }
  .footer-nav {
    flex-direction: column;
    gap: 0.5rem;
  }
}

.navbar-brand {
  padding-left: 2rem;
}
@media (min-width: 992px) {
  .navbar-brand {
    padding-left: 4rem;
  }
}

.testimonials-section {
  background: #f8fafc;
}

.testimonials-wrapper {
  overflow-x: hidden;
  position: relative;
  padding-bottom: 8px;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: scrollTestimonials 30s linear infinite;
}
@keyframes scrollTestimonials {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.testimonial-card {
  background: linear-gradient(120deg, #1f3b56 60%, #3a6ea5 100%);
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(31,59,86,0.08);
  padding: 2rem 1.5rem;
  min-width: 320px;
  max-width: 340px;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0.97;
}

.testimonial-text {
  font-size: 1.08rem;
  color: #fff;
  margin-bottom: 1.2rem;
  font-style: italic;
}

.testimonial-author {
  font-weight: 600;
  color: #f4c741;
  font-size: 1rem;
  text-align: right;
}
  