
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --font-family: "Poppins", sans-serif;
  --h1-size: 36px;
  --h2-size: 32px;
  --h3-size: 28px;
  --h4-size: 24px;
  --h5-size: 20px;
  --h6-size: 16px;
}

body {
  font-family: var(--font-family);
  margin: 0;
  padding: 0;
}

/* Headings */
h1 {
  font-size: var(--h1-size);
}
h2 {
  font-size: var(--h2-size);
}
h3 {
  font-size: var(--h3-size);
}
h4 {
  font-size: var(--h4-size);
}
h5 {
  font-size: var(--h5-size);
}
h6 {
  font-size: var(--h6-size);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 10px 0;
  font-weight: 600;
}

/* === YOUR ORIGINAL STYLES (UNTOUCHED) === */
        .navbar-nav {
            margin: 0 auto;
        }
        .navbar-brand img {
            height: 50px;
        }
        .bg-white {
            background-color: #fff;
        }
        .navbar-nav .nav-item {
            margin: 0 8px;
        }
        .navbar {
            background-color: #fff;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        .navbar-nav .nav-link {
            font-weight: 500;
            color: #333;
            transition: color 0.3s;
        }
        .navbar-brand img {
            height: 80px !important;
        }
        .offcanvas-start {
            width: 250px;
        }
        .dropdown-menu.columns-3 .col {
            padding: 0 1rem;
        }
        .dropdown-item {
            white-space: normal;
        }
        .navbar-nav .nav-item.dropdown > .nav-link::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: 5px;
    display: inline-block;
}


@media (max-width: 991.98px) {
    .navbar-nav .nav-item.dropdown > .nav-link {
        position: relative;
        padding-right: 35px !important;
    }

    .navbar-nav .nav-item.dropdown > .nav-link::after {
        margin-left: 0;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
    }
}      .top-bar {
            background-color: #002e63;
            color: white;
            font-size: 14px;
            padding: 8px 25px;
            display: flex;
            justify-content: flex-end;
            flex-wrap: wrap;
            gap: 30px;
        }
        .top-bar a {
            color: white;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            font-size: 14px;
        }
        .top-bar i {
            font-size: 14px;
            margin-right: 5px;
        }
        .dropdown-menu.columns-3 {
            min-width: 500px;
            overflow: hidden;
        }
        .dropdown-menu.columns-3 .row {
            margin: 0;
        }
        .dropdown-menu.columns-3 .col {
            padding: 0 1px;
        }
        .dropdown-menu li {
            list-style: none;
        }
        .dropdown-item {
            white-space: nowrap;
        }
        @media (max-width: 767px) {
            .top-bar {
                justify-content: center !important;
                gap: 10px;
            }
            .top-bar a {
                font-size: 13px;
            }
        }

        
        /* === NEW & FINAL FIXES (ADDED BELOW) === */

        :root {
            --primary: #002e63;
        }



        

        /* Desktop: 3 Columns + Hover */
        @media (min-width: 992px) {
            .dropdown-menu.columns-3 {
                min-width: 592px;
                padding: 20px;
                border-radius: 16px;
                box-shadow: 0 15px 40px rgba(0,0,0,0.15);
                border: none;
                margin-top: 8px;
                opacity: 0;
                visibility: hidden;
                transform: translateY(10px);
                transition: all 0.3s ease;
            }
            .nav-item.dropdown:hover > .dropdown-menu.columns-3 {
                display: block;
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
            }
            .dropdown-menu.columns-3 .col {
                padding: 0 18px;
                border-right: 1px solid #eee;
            }
            .dropdown-menu.columns-3 .col:last-child {
                border-right: none;
            }
        }

        /* Mobile & Tablet: Force 1 Column (Vertical List) */
        @media (max-width: 991.98px) {
            .dropdown-menu.columns-3 {
                position: static !important;
                float: none;
                width: 100%;
                min-width: unset;
                margin: 0;
                padding: 0.5rem 1rem;
                background: transparent;
                border: none;
                box-shadow: none;
                border-radius: 0;
                transform: none !important;
                opacity: 1 !important;
                visibility: visible !important;
            }
            .dropdown-menu.columns-3 .row {
                flex-direction: column;
                margin: 0;
            }
            .dropdown-menu.columns-3 .col {
                padding: 0;
                border: none !important;
                margin-bottom: 0.5rem;
            }
            .dropdown-menu.columns-3 .dropdown-item {
                white-space: normal;
                padding: 10px 15px;
                border-radius: 10px;
                background: #f8f9fa;
                margin-bottom: 5px;
                font-size: 15px;
            }
            .dropdown-menu.columns-3 .dropdown-item:hover {
                background: var(--primary);
                color: white !important;
            }
        }

        /* Beautiful Dropdown Item Styling (All Screens) */
        .dropdown-item {
            display: flex;
            align-items: center;
            padding: 11px 16px;
            border-radius: 10px;
            transition: all 0.25s ease;
            font-weight: 500;
            color: #333;
            font-size: 15px;
            line-height: 15px;
        }
        .dropdown-item i {
            color: var(--primary);
            font-size: 18px;
            margin-right: 18px;
        }
        .dropdown-item:hover {
            background: var(--primary);
            color: white !important;
            transform: translateX(6px);
        }
        .dropdown-item:hover i {
            color: white;
        }

        /* Login Button */
        .login-box {
            background: var(--primary);
            color: white !important;
            padding: 8px 24px !important;
            border-radius: 50px;
            font-weight: 600;
        }
        .login-box:hover {
            background: #001f45;
        }

        /* Offcanvas Dropdown Arrow */
        .offcanvas .dropdown-toggle::after {
            float: right;
            margin-top: 8px;
        }

        /* Phone Badge */
        .phone-badge a {
            color: var(--primary);
            font-weight: bold;
        }




/* Mobile view adjustments */
@media (max-width: 767px) {
  .top-bar {
    justify-content: center !important; /* Center links on mobile */
    gap: 10px; /* Smaller gap on mobile */
  }
  .top-bar a {
    font-size: 13px;
  }
  .text-size {
    font-size: 13px !important;
    margin-top: 10px;
    white-space: nowrap;
  }
  .center-badge .trophy-icons {
display: none;
}
}
@media (min-width: 992px) {
  /* Only for large screens */
  
  
  .text-size {
    font-size: 15px !important;
    margin-top: 10px;
    white-space: nowrap;
  }

}
.card_box {
  border: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}
.card_box:hover {
  transform: translateY(-5px);
}
.card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 575.98px) {
  .card-container .col-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
.text-size {
  font-size: 18px;
  color: #000;
}
.card-flip {
  perspective: 1000px;
  height: 200px; /* Fixed height for consistent flipping */
  position: relative;
}
.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border: none;
}
.card-flip:hover .card-inner {
  transform: rotateY(180deg);
}
.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  border-radius: 0.375rem; /* Bootstrap's default border-radius */
}
.card-front {
  background: white;
}
.card-back {
  background: #bc6e01;
  color: white;
  transform: rotateY(180deg);
}
.card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #002e63;
}
.text-size {
  font-size: 18px;
  margin: 0;
}
.back-content {
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 575.98px) {
  .card-container .col-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
.why-choose-box {
  background-color: #f8f9fa;
  padding: 30px;
  margin: 20px 0;
  border-radius: 10px;
}
.text-section-bold {
  font-weight: 900;
  color: black;
}
.text-bolds h2 {
  font-weight: 900;
}
.text-bolds h5 {
  font-weight: 900;
  font-size: 18px;
}
.icon-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  text-align: center;
}
.icon-item {
  flex: 1 1 100%;
  margin: 10px;
}
.icon-item img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .icon-item {
    flex: 1 1 45%;
  }

}
@media (min-width: 992px) {
  .icon-item {
    flex: 1 1 20%;
  }
}

.heading-simple {
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
  text-align: center;
  font-size: 27px;
  color: black;
  margin-top: 20px !important;
}
.heading-simple + .heading-line {
  width: 120px;
  height: 4px;
  background: linear-gradient(to right, #21272c, #07a64b);
  margin: 0.25rem auto 1.25rem;
  border-radius: 2px;
}
.cards-section {
      padding: 60px 15px;
    }

    .custom-card {
      border: 1px solid #e6e9ee;
      border-radius: 16px;
      padding: 40px 25px;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      background: #ffffff;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      box-shadow: 0 10px 30px rgba(10, 20, 50, 0.06);
      min-height: 340px;
    }

  
    .icon-circle {
  width: 90px;
  height: 90px;
  min-width: 90px;
  min-height: 90px;
  max-width: 90px;
  max-height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #0b2546;
  background: #f4f6fa;
  margin-bottom: 24px;
  flex-shrink: 0;   /* prevents shrinking */
}

    .card-title-custom {
      font-size: 18px;
      font-weight: 800;
      margin-bottom: 18px;
      color: #0b2546;
      margin-top: 17px;
      line-height: 27px;
    }

    .card-text-custom {
      font-size: 15px;
      color: #556074;
      line-height: 1.7;
      margin-top: 8px;
    }

/* Responsive tweaks */
@media (max-width: 575.98px) {
  .icon-circle {
    width: 64px;
    height: 64px;
    font-size: 24px;
    margin-bottom: 12px;
  }
  .custom-card {
    padding: 20px;
    border-radius: 10px;
  }
}

.review-section {
  padding: 60px 15px;
  background-color: black;
  overflow: hidden; /* Ensures content respects the rounded border */
}

.review-quote {
  font-size: 1.2rem;
  line-height: 1.5;
}

.review-quote a {
  color: #fff;
  text-decoration: underline;
}

.center-badge {
  text-align: center;
  position: relative;
}

.center-badge .trophy-icons {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: #f4f6fa; /* Gold color for trophies */
  z-index: 1;
}

.center-badge .trophy-left {
  left: -20px;
}

.center-badge .trophy-right {
  right: -20px;
}

.center-badge .stars {
  color: #FFD700;
  font-size: 1.5rem;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.center-badge h5 {
  font-size: 1rem;
  margin: 5px 0;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 2;
}

.center-badge h4 {
  position: relative;
  z-index: 2;
}

.google-review {
  text-align: center;
}

.google-review img {
  width: 50px;
  margin-bottom: 10px;
}

.google-review .stars {
  color: #FFD700;
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.google-review p {
  margin: 0;
}

@media(max-width: 767px){
  .review-section .col-md-4 {
    margin-bottom: 30px;
  }
  
  .center-badge .trophy-icons {
    font-size: 1.5rem;
  }
  
  .center-badge .trophy-left {
    left: -10px;
  }
  
  .center-badge .trophy-right {
    right: -10px;
  }
  .custom-heading{
    font-size: 18px;
  }
  .text-section-bold{
    font-size: 23px;
  }
  .text-font-less{
        font-size: 13px;
    padding: 0px 33px;
}
.heading-simple{
  font-size: 20px;
}
.text-bolds h2{
  font-size: 20px;
}
.text-bolds h5{
  font-size: 13px;
}
.icon-item img{
  width: 40px;
  height: 40px;
}
.text-font-less{
  font-size: 13px;
}
.card-text-custom{
  font-size: 13px;
}
.card-title-custom {
  font-size: 17px;
}
.review-quote{
  font-size: 15px;
}

.review-maps{
  font-size: 15px;
}
.center-badge .stars{
  font-size: 15px;
}
.center-badge h5{
  font-size: 15px;
}
.center-badge h4{
  font-size: 15px;
}
.google-review .stars{
  font-size: 15px;
}
.my-heading{
  font-size: 20px !important;
}
.my-paragraph{
  font-size: 13px !important;
}
.my-section h2{
  font-size: 17px;
}
#text-font-size{
  font-size: 20px;
}
.name{
  font-size: 14px !important;
}
.profession{
  font-size: 14px !important;
}
.testimonial-text{
  font-size: 14px !important;
}
.faq-container h1{
  font-size: 20px;
}
.faq-container span{
  font-size: 14px;
}
.faq-body p {
font-size: 13px;
}
}

.my-section {
  padding: 50px 20px;
  text-align: center;
}

.my-heading {
  font-size: 27px;
    font-weight: 800;
  letter-spacing: 0.5px;
  color: black; /* custom color */
  margin-bottom: 15px;
  position: relative;
}

.my-heading::after {
  content: "";
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, #21272c, #07a64b);
  display: block;
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

.my-paragraph {
  font-size: 1.1rem;
  color: #555;
  max-width: 1200px;
  margin: 0 auto;
  line-height: 1.6;
}

.partner-logo {
            width: 100%;
            height: 100px; /* Smaller height for compact look */
            object-fit: contain; /* Keeps logo aspect ratio */
            border: 1px solid #dee2e6;
            border-radius: 6px; /* Slightly smaller border radius */
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .partner-item {
            padding: 8px; /* Reduced padding for smaller overall size */
        }


   .testimonial-section {
            padding: 60px 0;
            background: linear-gradient(135deg, #ffffff, #f0f4f8);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        .testimonial-card {
            background-color: #fff;
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            transition: box-shadow 0.3s ease;
            min-height: 400px; /* Initial min-height for consistency */
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .testimonial-card:hover {
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        .profile-img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 20px;
            border: 4px solid #007bff;
            box-shadow: 0 4px 8px rgba(0, 123, 255, 0.2);
        }
        .name {
            font-size: 1.2rem;
            font-weight: bold;
            margin-bottom: 5px;
            color: #333;
        }
        .profession {
            font-size: 1rem;
            color: #6c757d;
            margin-bottom: 15px;
        }
        .testimonial-text {
            font-style: italic;
            color: #555;
            margin-bottom: 20px;
            flex-grow: 1;
        }
        .rating {
            color: #ffc107;
            font-size: 1.2rem;
        }
        .quote-icon {
            font-size: 2rem;
            color: #002e63;
            margin-bottom: 15px;
        }
        .swiper-pagination-bullet {
            background-color: #6c757d;
            opacity: 1;
        }
        .swiper-pagination-bullet-active {
            background-color: #002e63 !important;
        }
        .swiper-button-next, .swiper-button-prev {
            color: #fff;
            background-color: #002e63;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
            transition: background-color 0.3s ease, transform 0.3s ease;
        }
        .swiper-button-next:hover, .swiper-button-prev:hover {
            background-color: #002e63;
            transform: scale(1.1);
        }
        .swiper-button-next:after, .swiper-button-prev:after {
            font-size: 20px;
        }
.custom-swiper-container {
            width: 100%;
            padding: 40px 0;
            max-width: 1200px;
            margin: 0 auto;
        }

        .custom-swiper-slide {
            display: flex;
            justify-content: center;
        }

        .custom-card {
            width: 280px;
            height: 220px;
            background: linear-gradient(145deg, #ffffff, #e6e6e6);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            position: relative;
            overflow: hidden;
        }

        .custom-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(0, 123, 255, 0.1), rgba(40, 167, 69, 0.1));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

   

        .custom-card:hover::before {
            opacity: 1;
        }

        .video-icon {
            font-size: 60px;
            color: #002e63;
            z-index: 1;
            transition: transform 0.3s ease;
        }

   
        /* Custom Swiper Navigation and Pagination */
        .custom-swiper-pagination {
            bottom: 10px;
        }

        .custom-swiper-pagination-bullet {
            background: #fff;
            opacity: 0.5;
            width: 12px;
            height: 12px;
        }

        .custom-swiper-pagination-bullet-active {
            opacity: 1;
            background: #002e63;
        }

        .custom-swiper-next,
        .custom-swiper-prev {
            color: #002e63;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 50%;
            width: 50px;
            height: 50px;
            margin-top: -25px;
        }

        .custom-swiper-next:hover,
        .custom-swiper-prev:hover {
            background: #002e63;
            color: #fff;
        }

        /* Modal Styling */
        .modal-content {
            border-radius: 20px;
            border: none;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        .modal-header {
            background: #002e63;
            color: #fff;
            border-radius: 20px 20px 0 0;
        }

        .modal-title {
            font-weight: bold;
        }

        .modal-body {
            padding: 30px;
        }

        .modal-video-iframe {
            width: 100%;
            height: 450px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .custom-card {
                width: 250px;
                height: 200px;
            }
            .video-icon {
                font-size: 50px;
            }
            .modal-video-iframe {
                height: 300px;
            }
        }

        .faq-container {
            margin: 0 auto;
        }
        .faq-card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            margin-bottom: 20px;
            background: white;
            transition: all 0.3s ease;
        }
        .faq-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        .faq-header {
            background: #002e63;
            color: white;
            padding: 20px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1.1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }
        .faq-header:hover {
            background: #002e63;
            color: white;
        }
        .faq-body {
            background: #f8f9fa;
            padding: 0;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }
        .faq-body.show {
            max-height: 200px; /* Adjust based on content */
            padding: 20px;
        }
        .faq-body p {
            margin: 0;
            color: #555;
            line-height: 1.6;
        }
        .faq-icon {
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }
        .faq-header.open .faq-icon {
            transform: rotate(180deg);
        }

        .accordion-button::after {
         display: none;
}

.footer-container {
    background-color: #edf2fa;
    border-radius: 8px;
    padding: 20px;
}
.footer-logo {
    font-size: 24px;
    font-weight: bold;
    color: #6f42c1;
    margin-bottom: 10px;
}
.footer-description {
    color: #495057;
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.4;
}
.social-icons {
    display: flex;
    gap: 10px;
}
.social-icons a {
    width: 30px;
    height: 30px;
    color: #002e63;
    border: 1px solid #002e63;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
}
.footer-section h5 {
    color: #002e63;
    font-size: 18px;
    margin-bottom: 15px;
    border-bottom: 2px solid #002e63;
    padding-bottom: 5px;
}
.footer-section ul {
    list-style: none;
    padding: 0;
}
.footer-section ul li {
    margin-bottom: 8px;
}
.footer-section ul li a {
    color: #002e63;
    text-decoration: none;
    font-size: 14px;
}
.footer-section ul li a:hover {
    text-decoration: underline;
}
.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 13px;
    color: #495057;
}
.contact-item i {
    background-color: #002e63;
    padding: 8px;
    border-radius: 10px;
    color: white; 
    margin-right: 10px;
    box-shadow: 0 0 10px rgba(10, 31, 53, 0.5); 
}
.address-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 14px;
    color: #495057;
}
.address-item i {
    background-color: #002e63;
    padding: 8px;
    border-radius: 10px;
    color: white; 
    margin-right: 10px;
    box-shadow: 0 0 10px  rgba(10, 31, 53, 0.5);  
}
.fa-angle-right{
       color: #002e63;
}

@media (max-width: 767px) {
  .footer-container {
    margin-top: 24px;    
    padding-top: 24px;   
  }
  .footer-section h5 {
    margin-bottom: 15px;
    margin-top: 36px;
}
.social-icons {
    margin-top: 35px;
}
   .para-lead {
        padding: 1px 10px !important;
        text-align: justify;
    }

  
}
@media (min-width: 767px) and (max-width: 1024px) {
  .footer-container {
    margin-top: 32px;
    padding-top: 20px;
  }
   .login-container {
         position: absolute !important;
        top: 55vh !important;
        left: 5px !important;
    }
    .para-lead {
        padding: 1px 10px !important;
        text-align: justify;
    }
                        
}




    .para-lead {
      font-size: 13px;
      line-height: 1.7;
      color: #334155;
      margin-bottom: 0.75rem;
        padding: 14px 34px;
      max-width: 100%;
    }

       @media (min-width: 768px) {
      .para-title { font-size: 1.25rem; }
    }

 
  @media (max-width: 575.98px) {
    .site-footer .footer-links a {
      display: inline-block;
      margin: 0.25rem 0;
    }
  }

    .site-footer {
      background-color: #002e63; 
      color: #fff;
      padding: 15px 0;
    }

    .site-footer a {
      color: #fff;
      text-decoration: none;
      font-weight: 500;
    }

    .site-footer a:hover {
      text-decoration: underline;
    }

    
    .footer-links a:not(:last-child)::after {
      content: "|";
      margin: 0 10px;
      color: #fff;
      opacity: 0.7;
    }


     #backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: none;
    z-index: 999;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #002e63;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  }

  #backToTop:hover {
    transform: scale(1.3) rotate(15deg);
    background: #002e63;
    box-shadow: 0 15px 25px rgba(0,0,0,0.5);
  }

  /* Drop Water Animation */
  @keyframes dropWater {
    0% {
      transform: translateY(-150px) scale(0.4);
      opacity: 0;
    }
    50% {
      transform: translateY(20px) scale(1.1);
      opacity: 1;
    }
    70% {
      transform: translateY(-10px) scale(0.95);
    }
    85% {
      transform: translateY(5px) scale(1.02);
    }
    100% {
      transform: translateY(0) scale(1);
    }
  }

  #backToTop.show {
    display: flex;
    animation: dropWater 0.7s ease forwards;
  }
.footer-logo {
  display: block;
  margin: 0 auto 15px; 
  max-width: 200px;    
  height: auto;      
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.05); 
  opacity: 0.9;           
}


/* Full-width hero section */
.hero {
min-height: 25vh; /* adjust as needed */
display: flex;
align-items: center;
justify-content: center;
color: #fff;
position: relative;
background-color: #e7f0fb;
    margin: 21px 171px;
}


/* Soft translucent card inside the hero */
.hero .content-card {
backdrop-filter: blur(6px);
-webkit-backdrop-filter: blur(6px);
padding: 1.25rem;
border-radius: 12px;
width: 100%;
color: #21272c;
}


.hero h3 {
font-size: 30px;
line-height: 1.05;
margin-bottom: 0.6rem;
}


.hero p.lead {
color: black;
font-size: 1.05rem;
margin-bottom: 0;
}


/* small decorative underline */



/* Responsive tweaks */
@media (max-width: 767px) {
.hero {margin: 20px;  }
.hero .content-card { padding: 8px; }

}



        @media only screen and (min-width: 768px) and (max-width: 1024px) {
          .hero {
    margin: 21px 20px;
}
.content-section h1 {
    font-size: 1.5rem !important;
}
.content-section ul li {
    font-size: 16px !important;
}
.content-section {
           padding: 61px 24px !important;

}
               .info-box {
      padding: 20px !important; 
      margin: 20px !important;
    }
.flex-container {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    padding: 0rem !important;
    align-items: stretch !important;
}
        }

     /* Section styling */
    .cards-section {
      padding: 20px 12px;
    }

    /* Section heading */
    .section-heading {
      text-align: center;
      margin-bottom: 40px;
      font-weight: 700;
      color: #1e293b;
      font-size: 1.9rem;
      position: relative;
    }

   

    /* Card look */
    .feature-card {
      border: 0;
      border-radius: 14px;
      padding: 28px 20px;
      box-shadow: 0 6px 20px rgba(30, 40, 60, .06);
      background: #ffffff;
      transition: transform .25s ease, box-shadow .25s ease;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .feature-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 18px 40px rgba(30, 40, 60, .12);
    }

    /* Round icon circle */
    .icon-circle {
      width: 84px;
      height: 84px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
      background: linear-gradient(135deg, rgba(99,102,241,.12), rgba(16,185,129,.06));
      border: 1px solid rgba(99,102,241,.08);
      font-size: 28px;
      color: #002e63;
    }

    /* Heading and paragraph */
    .feature-title {
      font-size: 1.125rem;
      font-weight: 600;
      margin-bottom: 8px;
      color: #0f172a;
    }

    .feature-desc {
      color: #475569;
      font-size: .95rem;
      line-height: 1.5;
    }

    /* Equal-height columns */
    .card-col {
      display: flex;
    }

    /* Mobile responsive */
    @media (max-width: 575.98px) {
      .icon-circle { width: 64px; height: 64px; font-size: 22px; margin-bottom: 14px; }
      .feature-card { padding: 20px; border-radius: 10px; }
    }

    /* Links styling */
    .feature-link {
      text-decoration: none;
      color: #002e63;
      font-weight: 500;
      transition: color .2s ease;
    }

    .feature-link:hover {
      color: #002e63;
    }

      .content-section {
            padding: 50px 0;
        }
        .content-section h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            font-weight: 800;
        }
        .content-section ul {
            list-style-type: none;
            padding-left: 0;
            margin-bottom: 30px;
        }
        .content-section ul li {
            font-size: 1.2rem;
            margin-bottom: 10px;
            font-weight: 600;
        }
        .content-section ul li::before {
            content: "\f058"; /* FontAwesome circle-check icon */
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            color: #002e63;
            margin-right: 10px;
        }
        .btn-custom {
            background-color: #002e63;
            color: white;
            padding: 10px 20px;
            font-size: 1.1rem;
            font-weight: 900;

        }
        .btn-custom:hover {
            background-color: #b57222;
            font-weight: 700;
            color: white;


        }
        .content-image {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
        }
        @media (max-width: 767.98px) {
            .content-section {
                text-align: center;
            }
            .content-section ul {
                      padding: 7px 30px;
    }
    .content-section ul li {
        text-align: left;
        font-size: 14px;
}
            .content-image {
    max-width: 88% !important;
}
.content-section h1 {
    font-size: 35px !important;
    margin-top: 30px;
}
            }

           
    .image-frame {
      border: 1px solid #28a745;   
      border-radius: 5px;         
      padding: 5px;               
      background-color: #f9f9f9;    
    }

    .image-frame img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 12px;          
    }
.video-section {
  padding: 60px 0;
  background-color: #f5f5f5; /* Full-width background color */
}
.video-section .heading {
  font-size: 2rem;
  font-weight: 700;
}
.video-section .paragraph {
  margin: 20px 0;
  font-size: 1.1rem;
  color: #555;
}
.video-section .btn-custom {
  margin-right: 15px;
}
.video-section .video-thumbnail {
  position: relative;
  display: inline-block;
  cursor: pointer;
}
.video-section .video-thumbnail img {
  max-width: 100%;
  border-radius: 10px;
  transition: transform 0.3s;
}
.video-section .video-thumbnail:hover img {
  transform: scale(1.05);
}
.video-section .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  color: #fff;
  pointer-events: none;
  opacity: 0.8;
}
.video-section .video-thumbnail:hover .play-icon {
  opacity: 1;
}
 .flex-container {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      padding: 2rem;
      background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
      border-radius: 15px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
      align-items: stretch; /* Ensure both sections stretch to equal height */
    }

    .left-items {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 20px;
      min-width: 300px;
    }

    .left-item {
      display: flex;
      align-items: center;
      gap: 15px;
      background: #ffffff;
      padding: 20px;
      border-radius: 12px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .left-item::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      width: 6px;
      height: 100%;
      background: #002e63;
      border-radius: 12px 0 0 12px;
    }

    .left-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    }

    .left-item img {
      width: 60px;
      height: 60px;
      object-fit: cover;
    }

  

    .left-item h5 {
      font-size: 1.25rem;
      font-weight: 600;
      color: #1a1a1a;
      margin-bottom: 0.5rem;
    }

    .left-item p {
      font-size: 0.95rem;
      color: #555;
      margin: 0;
      line-height: 1.5;
    }

    .right-image {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      min-width: 300px;
    }

    .right-image img {
      max-width: 100%;
      height: 100%;
      border-radius: 15px;
    }

 

    @media (max-width: 767px) {
      .flex-container {
        flex-direction: column;
        padding: 1.5rem;
      }

      .right-image {
        margin-top: 30px;
      }

      .left-item {
        padding: 15px;
      }
    }

@media (max-width: 991px) {
  
    .back-content{
          font-size: 11px !important;
    margin: -9px !important;
}


    
}

.social-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  transition: all 0.3s ease;
  text-decoration: none;
}

/* Individual Platform Colors */
.fb-btn {
  background-color: #1877f2;
}

.insta-btn {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, 
              #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.x-btn {
  background-color: #000;
}

.linkedin-btn {
  background-color: #0077b5;
}

/* Hover Effect */
.social-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.phone-badge {
  font-weight: 600;
  transition: transform .08s ease;
}
.phone-badge:hover { transform: translateY(-2px); }
.icon-bg { color: #002e63; } /* circle color */
.phone-number { color: #0b1a2b; letter-spacing: 0.2px; }
.phone-badge a:hover .phone-number { text-decoration: none; }

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 15px 0;
    margin: 0;
}

.marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: marquee-scroll 35s linear infinite;
}

.marquee-track img {
    width: 120px;        /* sabka same width */
    height: 80px;        /* sabka same height */
    object-fit: contain; /* image cut nahi hogi */
    margin: 0 15px;
    background: #fff;   /* optional (transparent logos ke liye) */
}

/* Continuous no-gap scroll */
@keyframes marquee-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Pause on hover */
.marquee-wrapper:hover .marquee-track {
    animation-play-state: paused;
}

/* Responsive */
@media (max-width:768px) {
     .marquee-track img {
        width: 90px;
        height: 60px;
        margin: 0 10px;
    }
}

        .section-title {
      font-size: 23px;
      font-weight: 700;
      color: #000;
      margin-top: 1.5rem;
      position: relative;
      text-transform: capitalize;
      text-align: center;
    }
    .lead{
      font-size: 15px;
      text-align: center;
    }


   


        .glow-btn {
      background-color: #002e63;
      color: #fff;
      border: none;
      padding: 12px 35px;
      border-radius: 10px;
      font-size: 17px;
      font-weight: 600;
      letter-spacing: 0.5px;
      transition: all 0.3s ease-in-out;
      box-shadow: 0 0 0 rgba(102, 16, 242, 0);
    }

    .glow-btn:hover {
      background-color: #d0994e;
      color: white;
    }


  @media (min-width: 992px) {
      .col-lg-1five {
        flex: 0 0 auto;
        width: 20%;
      }
    }

    .modern-card-5 {
      background: #ffffff;
      border-radius: 20px;
      padding: 30px 15px;
      text-align: center;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
    }

    .icon-circle-5 {
      width: 70px;
      height: 70px;
      background: #f0f0f0;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 15px auto;
      transition: all 0.3s ease;
    }

    .icon-circle-5 i {
      color: #002e63;
      font-size: 28px;
      z-index: 1;
    }

    .modern-card-5 h5 {
      font-size: 17px;
      font-weight: 600;
      color: #333;
      margin-top: 10px;
      transition: color 0.4s ease;
    }

    .modern-card-5:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .modern-card-5:hover .icon-circle-5 {
      transform: scale(1.1);
    }

 

    .awesome-card-grid .card {
      background: #fff;
      border-radius: 20px;
      text-align: center;
      padding: 30px 20px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .awesome-card-grid .icon-circle {
      width: 70px;
      height: 70px;
      background: #f0f0f0;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      margin: 0 auto 15px auto;
      font-size: 28px;
      color: #002e63;
      transition: background 0.3s, color 0.3s;
    }
  
    .awesome-card-grid .card h5 {
      font-weight: 600;
      margin-top: 10px;
      font-size: 1.1rem;
      color: #333;
    }


        .info-box {
      border: 2px solid #002e63;
      border-radius: 12px;
      padding: 20px;
      max-width: 130vh;
      margin: 20px auto;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }
    .info-box-header {
      background-color: #002e63;
      color: #fff;
      padding: 10px 15px;
      border-radius: 8px;
      font-size: 1.3rem;
      text-align: center;
      margin-bottom: 15px;
    }
    .info-box ul {
      list-style: none;
      padding-left: 0;
    }
    .info-box ul li {
      padding: 8px 0;
      border-bottom: 1px solid #eee;
      display: flex;
      align-items: center;
    }
    .info-box ul li i {
      color: #002e63;
      margin-right: 10px;
    }
 
        .service-list {
            list-style: none;
            padding: 0;
        }
        .service-list li {
            padding: 8px 0;
            font-size: 1rem;
        }
        .service-list i {
            color: #28a745;
            margin-right: 10px;
        }
        .service-section {
            margin-bottom: 20px;
        }
        .service-section h3 {
            font-size: 1.3rem;
            font-weight: 600;
            color: #495057;
            margin-bottom: 10px;
        }
.info-section-7 {
  background: #002e63;
  color: white;
  padding: 80px 0;
}

.info-section-7 h2 {
  font-weight: 700;
  margin-bottom: 10px;
}

.info-section-7 h6 {
  font-weight: 500;
  margin-bottom: 25px;
}

.info-section-7 ul {
  list-style: none;
  padding: 0;
}

.info-section-7 ul li {
  font-size: 15px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.info-section-7 ul li i {
  color: #ffdd57;
  margin-right: 10px;
  font-size: 20px;
}

.info-section-7 img {
  max-width: 100%;
  height: auto;
}
   .img-bleed {
      width: 100%;
      overflow: hidden;
    }

    .img-bleed img {
      width: 100%;
      display: block;
    }

    @media (max-width: 767.98px) {
      .img-bleed img { height: 40vh; }
      
    .about-img-2 img {
      width: 80% !important;
         height: auto !important;
        display: flex;
        margin-left: auto;
        margin-right: auto;
    }
    }



    .terms-container {
             margin: 60px auto;padding: 40px; background-color: #ffffff; }
        .terms-header { text-align: center; margin-bottom: 50px; padding-bottom: 25px; border-bottom: 3px solid #002e63; }
        .terms-header h1 { font-size: 20px; color: #1a3c6d; font-weight: 700; margin: 0; }
        .terms-header p { font-size: 1.1rem; color: #6c757d; margin-top: 10px; }
        .terms-section { margin-bottom: 35px; padding: 25px; border-left: 5px solid #002e63; background-color: #f8fbff; border-radius: 10px; transition: all 0.3s ease; }
        .terms-section:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0, 46, 99, 0.15); }
        .terms-section h2 { font-size: 20px; color: #1a3c6d; font-weight: 600; margin-bottom: 18px; display: flex; align-items: center; }
        .terms-section h2 i { margin-right: 12px; color: #002e63; font-size: 1.5rem; }
        .terms-section p, .terms-section li { font-size: 15px; color: #333; line-height: 1.8; }
        .terms-section strong { color: #002e63; }
        .terms-section ul { padding-left: 20px; }
        .terms-section ul li { margin-bottom: 12px; position: relative; }
        .terms-section ul li::before { content: '\f058'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: #002e63; position: absolute; left: -25px; top: 3px; }
        @media (max-width: 768px) {
            .terms-container { margin: 20px; padding: 20px; }
            .terms-header h1 { font-size: 20px; }
            .terms-section h2 { font-size: 18px; }
            .terms-header p{
              font-size: 15px !important;
            }
        }
        .btn-back {
            display: block;
            width: fit-content;
            margin: 40px auto 0;
            padding: 12px 30px;
            font-size: 1.1rem;
            font-weight: 500;
            border-radius: 25px;
            background-color: #002e63;
            border: none;
            transition: background-color 0.3s ease, transform 0.2s ease;
        }
        .btn-back:hover {
            background-color: #002e63;
            transform: scale(1.05);
        }
        .btn-back i {
            margin-right: 8px;
        }
        @media (max-width: 576px) {
            .terms-container {
                margin: 20px;
                padding: 25px;
            }
           
            .terms-section {
                padding: 15px;
            }
            .terms-section h2 {
                font-size: 18px;
            }
            .terms-section p {
              font-size: 15px;
            }
            .terms-section ul li{
              font-size: 15px;
            }
            .terms-section h2 i {
                font-size: 1.2rem;
            }
            .btn-back {
                padding: 10px 20px;
                font-size: 1rem;
            }
        }


              .privacy-container {
            padding: 40px;
        }
        .privacy-header {
            text-align: center;
            margin-bottom: 50px;
            padding-bottom: 25px;
            border-bottom: 3px solid #002e63;
        }
        .privacy-header h1 {
            font-size: 32px;
            color: #1a3c6d;
            font-weight: 700;
            margin-bottom: 10px;
        }
        .privacy-header p {
            font-size: 1.1rem;
            color: #444;
            line-height: 1.6;
        }
        .privacy-section {
            margin-bottom: 35px;
            padding: 25px;
            border-left: 5px solid #002e63;
            background-color: #f8fbff;
            border-radius: 10px;
            transition: all 0.3s ease;
        }
        .privacy-section:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 46, 99, 0.15);
        }
        .privacy-section h2 {
            font-size: 20px;
            color: #1a3c6d;
            font-weight: 600;
            margin-bottom: 18px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .privacy-section h2 i {
            color: #002e63;
            font-size: 1.5rem;
        }
        .privacy-section p, .privacy-section ul, .privacy-section ol {
            font-size: 15px;
            color: #2c3e50;
            line-height: 1.8;
        }
        .privacy-section ul, .privacy-section ol {
            padding-left: 30px;
            margin: 15px 0;
        }
        .privacy-section ul li, .privacy-section ol li {
            margin-bottom: 10px;
        }
        .privacy-section ul li::before {
            content: '\f058';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: #002e63;
            margin-right: 10px;
        }
      
        @media (max-width: 768px) {
            .privacy-container {
                margin: 20px 15px;
                padding: 20px;
            }
            .privacy-header h1 {
                font-size: 25px;
            }
        }
        .btn-back {
            display: block;
            width: fit-content;
            margin: 40px auto 0;
            padding: 12px 30px;
            font-size: 1.1rem;
            font-weight: 500;
            border-radius: 25px;
            background-color: #002e63;
            border: none;
            transition: background-color 0.3s ease, transform 0.2s ease;
        }
        .btn-back:hover {
            background-color: #002e63;
            transform: scale(1.05);
        }
        .btn-back i {
            margin-right: 8px;
        }
        @media (max-width: 576px) {
            .privacy-container {
                margin: 20px;
                padding: 25px;
            }
            
            .privacy-section {
                padding: 15px;
            }
            .privacy-section h2 {
                font-size: 18px;
            }
            .privacy-section h2 i {
                font-size: 1.2rem;
            }
            .btn-back {
                padding: 10px 20px;
                font-size: 1rem;
            }
        }


        .refund-container {
            padding: 40px;
        }
        .refund-header {
            text-align: center;
            margin-bottom: 50px;
            padding-bottom: 20px;
            border-bottom: 3px solid #002e63;
        }
        .refund-header h1 {
            font-size: 26px;
            color: #1a3c6d;
            font-weight: 700;
            margin: 0;
        }
        .refund-header p {
            font-size: 15px;
            color: #6c757d;
            margin-top: 10px;
        }
        .refund-section {
            margin-bottom: 35px;
            padding: 25px;
            border-left: 5px solid #002e63;
            background-color: #f8fbff;
            border-radius: 10px;
            transition: all 0.3s ease;
        }
        .refund-section:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 46, 99, 0.15);
        }
        .refund-section h2 {
            font-size: 18px;
            color: #002e63;
            font-weight: 700;
            margin-bottom: 18px;
            display: flex;
            align-items: center;
        }
        .refund-section h2 i {
            margin-right: 12px;
            color: #002e63;
            font-size: 15px;
        }
        .refund-section p, .refund-section ul {
            font-size: 15px;
            color: #2d3748;
            line-height: 1.8;
            margin: 10px 0;
        }
        .refund-section ul {
            padding-left: 10px;
        }
        .refund-section ul li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 20px;
        }
        .refund-section ul li::before {
            content: '\f058';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: #002e63;
            position: absolute;
            left: 0;
            top: 4px;
        }
        .address-box {
            background: #e7f1ff;
            padding: 20px;
            text-align: center;
            border-radius: 2px dashed #002e63;
            border-radius: 10px;
            font-size: 15.5px;
            color: #002e63;
            margin-bottom: 40px;
        }
        .btn-back {
            display: block;
            width: fit-content;
            margin: 40px auto 0;
            padding: 12px 30px;
            font-size: 15px;
            font-weight: 500;
            border-radius: 25px;
            background-color: #002e63;
            border: none;
            transition: background-color 0.3s ease, transform 0.2s ease;
        }
        .btn-back:hover {
            background-color: #002e63;
            transform: scale(1.05);
        }
        .btn-back i {
            margin-right: 8px;
        }
        @media (max-width: 576px) {
            .refund-container {
                margin: 20px;
                padding: 25px;
            }
            .refund-header h1 {
                font-size: 25px;
            }
            .refund-section {
                padding: 15px;
            }
            .refund-section h2 {
                font-size: 15px;
            }
            .refund-section h2 i {
                font-size: 1.2rem;
            }
            .btn-back {
                padding: 10px 20px;
                font-size: 1rem;
            }
        }
.about-team-section-2 {
  padding: 80px 0;
  background-color: #f9fafc;
}

.about-img-2 img {
  width: 85%;
  height: auto;
}

.about-content-2 h2 {
  font-weight: 700;
  color: #003366;
  margin-bottom: 20px;
}

.about-content-2 p {
  color: #555;
  line-height: 1.8;
}

.about-feature-2 {
  display: flex;
  align-items: flex-start;
  margin-top: 35px;
}

.about-feature-2 .about-icon-2 {
  font-size: 36px;
  color: #003366;
  margin-right: 20px;
  flex-shrink: 0;
}

.about-feature-2 h5 {
  font-weight: 600;
  color: #003366;
  margin-bottom: 10px;
}

.about-feature-2 p {
  margin: 0;
  color: #555;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  .about-feature-2 {
    flex-direction: row;
    text-align: left;
  }
  .about-img-2 img {
    width: 100%;
  }
  .about-content-2 {
    text-align: center;
  }
  .about-feature-2 {
    justify-content: center;
    text-align: left;
  }
}
.bg-icon-section-4 {
  background-image: url('../images/logo/about-service-banner.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 120px 0;
  position: relative;
}

.bg-icon-section-4::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.icon-flex-wrapper-4 {
  position: relative;
  z-index: 1;
}

.single-icon-card-4 {
  background: rgba(255, 255, 255, 0.15);
  padding: 40px 20px;
  border-radius: 15px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.single-icon-card-4:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.25);
}

.single-icon-card-4 i {
  font-size: 45px;
  margin-bottom: 15px;
  color: #ffcc00;
}

.single-icon-card-4 h5 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  .bg-icon-section-4 {
    padding: 80px 20px;
  }
  .single-icon-card-4 {
    width: 100%;
  }
       .login-container {
         position: absolute !important;
        top: 64vh !important;
        left: 5px !important;
    }
}

        .service-highlight-section {
      padding: 80px 20px;
      background: url('https://via.placeholder.com/1920x1080?text=Service+Background') no-repeat center center/cover;
      position: relative;
      color: #fff;
      overflow: hidden;
    }
    .service-highlight-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: #003366;
      z-index: 1;
    }
    .service-highlight-section .container {
      position: relative;
      z-index: 2;
    }
    .service-highlight-section h2 {
      text-align: center;
      margin-bottom: 60px;
      font-weight: 700;
      font-size: 2.5rem;
      color: #fff;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    }
    .service-box {
      background: rgba(255, 255, 255, 0.95);
      padding: 25px;
      margin-bottom: 20px;
      border-radius: 15px;
      display: flex;
      align-items: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .service-box:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }
    .service-box .service-icon {
      font-size: 50px;
      color: #003366;
      margin-right: 20px;
    }
    .service-box h5 {
      font-weight: 600;
      margin-bottom: 10px;
      color: #003366;
    }
    .service-box p {
      margin: 0;
      color: #444;
    }
    .service-images img {
      width: 100%;
      margin-bottom: 20px;
      border-radius: 15px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
    }
    @media (max-width: 768px) {
      .service-box {
        flex-direction: row;
        align-items: flex-start;
      }
      .service-images img {
        margin-bottom: 15px;
      }
      .service-highlight-section {
        padding: 60px 15px;
      }
      .service-highlight-section h2 {
        font-size: 2rem;
      }
    }

        .login-container {
      position: absolute;
      top: 30px;
      right: 20px;
    }

    .login-box {
      background-color: #003366;
      color: white;
      padding: 10px 20px;
      border-radius: 8px;
      display: inline-flex;
      align-items: center;
      text-decoration: none;
      font-weight: 500;
      transition: background-color 0.3s, transform 0.2s;
    }

    .login-box i {
      margin-right: 8px;
      font-size: 1.1rem;
    }

    .login-box:hover {
      background-color: #003366;
      transform: scale(1.05);
      color: white;
      text-decoration: none;
    }

    .btn-legal{
      color: #fff !important;
      background-color: #003366;
      font-size: 15px !important;
    }

     .btn-legal:hover{
      color: #fff !important;
      background-color: #ffcc00;
      font-size: 15px !important;
    }



    .whatsapp-float {
      position: fixed;
      left: 20px;           
      bottom: 25px;         
      z-index: 9999;
      animation: floatBounce 3s infinite ease-in-out;
    }

    .whatsapp-btn {
      width: 60px;
      height: 60px;
      background-color: #25D366;
      color: white;
      border-radius: 50%;
      text-align: center;
      font-size: 32px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .whatsapp-btn:hover {
      transform: scale(1.15);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    }

    .whatsapp-btn i {
      animation: pulse 2s infinite;
    }

    /* Pulse Animation */
    @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.2); }
      100% { transform: scale(1); }
    }

    /* Floating Bounce Animation */
    @keyframes floatBounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-15px); }
    }

    /* Optional: Small tooltip on hover */
    .whatsapp-btn::after {
      content: "Chat on WhatsApp";
      position: absolute;
      right: -130px;
      top: 50%;
      transform: translateY(-50%);
      background: #128C7E;
      color: white;
      padding: 8px 12px;
      border-radius: 6px;
      font-size: 14px;
      white-space: nowrap;
      opacity: 0;
      visibility: hidden;
      transition: all 0.4s ease;
    }

    .whatsapp-btn::before {
      content: "";
      position: absolute;
      right: -20px;
      top: 50%;
      transform: translateY(-50%);
      border: 8px solid transparent;
      border-left-color: #128C7E;
      opacity: 0;
      transition: all 0.4s ease;
    }

    .whatsapp-btn:hover::after,
    .whatsapp-btn:hover::before {
      opacity: 1;
      visibility: visible;
      right: 70px;
    }

    @media (max-width: 767px) {
      .whatsapp-float {
        left: 15px;
        bottom: 20px;
      }
      .whatsapp-btn {
        width: 55px;
        height: 55px;
        font-size: 28px;
      }
      .offcanvas-body {
            overflow-y: auto;
        }
     

    }

     .contact-wrapper{
      max-width: 900px;
      margin:52px auto;
    }

    .contact-card{
      background: #ffffff;
      border-radius: 18px;
      padding: 35px;
      box-shadow: 0 10px 35px rgba(0,0,0,0.15);
      position: relative;
      overflow: hidden;
    }

    .contact-card::before{
      content: "";
      position: absolute;
      width: 180px;
      height: 180px;
          background: rgb(12 14 16 / 21%);
      top: -40px;
      right: -40px;
      border-radius: 50%;
    }

    .contact-header{
      text-align: center;
      margin-bottom: 30px;
    }

    .contact-header h3{
      font-size: 30px;
      font-weight: 700;
      color: #333;
    }

    .input-group-text{
      background: #f1f4ff;
      border: none;
      border-radius: 10px 0 0 10px;
      font-size: 18px;
      color: #003366;
    }

    .form-control, .form-select{
      border-radius: 0 10px 10px 0;
      padding: 12px;
      border: 1px solid #e0e0e0;
    }

    textarea.form-control{
      border-radius: 10px;
    }

    .btn-submit{
      width: 100%;
      background: #003366;
      color: #fff;
      font-size: 18px;
      font-weight: 600;
      padding: 12px;
      border-radius: 12px;
      box-shadow: 0 5px 18px rgba(4, 24, 47, 0.4);
      transition: 0.3s;
      border: none;
    }

    .btn-submit:hover{
      background: #003366;
      transform: translateY(-2px);
    }

       .map-container{
      background:#fff;
      padding:20px;
      border-radius:12px;
      box-shadow:0 4px 10px rgba(0,0,0,0.1);
      margin:auto;
      width: 100%;
    }
    iframe{
      width:100%;
      height:350px;
      border:0;
      border-radius:8px;
    }
    

    /* 768px se 1024px ke liye media query */


/* Existing CSS (जो तुमने दी थी) */
.pay-icon-item {
    flex: 0 0 auto;
}

.secure-payments-wrapper {
    background-color: #edf2fa;
    margin-top: -65px;
    padding: 40px 20px;
}

/* Left side */
.left-secure-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.small-left-img {
       height: 55px;
    width: 55px;
    object-fit: contain;
    padding: 4px;
    border-radius: 6px;
}

/* Right side */
.secure-payment-title {
    margin-bottom: 10px;
    font-size: 15px;
}

.pay-icon-item {
    flex: 0 0 auto;
}

.pay-logo {
    height: 55px !important;
    width: 55px !important;
    object-fit: contain;
    transition: all 0.3s;
}

.pay-logo:hover {
    transform: scale(1.1);
}

/* Mobile Responsive */
@media (max-width: 576px) {
    .left-secure-title {
        text-align: center;
    }

    .left-small-icons {
        justify-content: center;
    }

    .secure-payment-title {
        text-align: center;
        margin-top: 15px;
    }

    .pay-logo {
        height: 30px !important;
        width: 30px !important;
    }
}

.old-price {
            font-size: 1rem;
            color: #fff;
            text-decoration: line-through;
            margin-right: 8px;
            font-weight: 500;
        }


             .section-box {
            padding: 30px;
            border-radius: 10px;
        }

        .section-title {
            font-size: 32px;
            font-weight: bold;
            text-align: center;
            margin-bottom: 20px;
        }

        .section-para {
            font-size: 16px;
            line-height: 1.9;
            text-align: center;
            max-width: 900px;
            margin: 0 auto 30px auto;
            color: #555;
        }

        .marquee-box {
            overflow: hidden;
            white-space: nowrap;
            position: relative;
        }

        .marquee-images {
            display: inline-block;
            animation: scroll-images 20s linear infinite;
        }

        .marquee-images img {
            height: 100px;
            width: auto;
            margin: 0 15px;
            border-radius: 10px;
        }

        @keyframes scroll-images {
            from { transform: translateX(100%); }
            to { transform: translateX(-100%); }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .marquee-images img {
                height: 80px;
            }
        }


.blog-section {
    padding: 80px 0;
    background: #f8f9fa;
  }

  .blog-card {
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
  }

  .blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.2);
  }

  .blog-img {
    height: 280px;
    width: 350px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
  }

  .blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }

  .blog-card:hover .blog-img img {
    transform: scale(1.15);
  }

  .blog-content {
    padding: 30px;
    flex-grow: 1;
  }

  .blog-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(45deg,#ff512f,#f09819);
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
  }

  .like-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255,255,255,0.9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    cursor: pointer;
  }

  .inner-thumb-img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
    margin-right: 15px;
  }

  .blog-title {
    font-size: 22px;
    margin: 15px 0;
    line-height: 1.4;
  }

  .blog-desc {
    color: #666;
    margin-bottom: 20px;
  }

  .blog-btn {
    color: #ff512f;
    font-weight: 600;
    text-decoration: none;
  }

  .blog-btn:hover {
    color: #e03e1a;
  }

  .widget-title {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #ff512f;
    display: inline-block;
  }

  .sidebar-search .form-control {
    border-radius: 30px 0 0 30px;
    padding: 12px 20px;
  }

  .sidebar-search .btn {
    border-radius: 0 30px 30px 0;
    padding: 12px 20px;
  }

  @media (max-width: 767px) {
    .blog-img {
      width: 100%;
      height: 250px;
    }
    .blog-content {
      padding: 20px;
    }
  }