body {
  overflow-x: hidden;
}

.process-section {
  position: relative;
  padding: 70px 20px 85px;
  overflow: hidden;
  background: #f7f7f7;
}

.bg-animation {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(177, 2, 25, 0.14);
  animation: ringMove 7s ease-in-out infinite alternate;
}

.ring1 {
  width: 400px;
  height: 286px;
  left: -300px;
  top: 20px;
}

.ring2 {
  width: 330px;
  height: 330px;
  right: -170px;
  bottom: -80px;
  opacity: 0.45;
}

.blob {
  position: absolute;
  border-radius: 50%;
  background: rgba(105, 78, 78, 0.75);
  filter: blur(2px);
  animation: blobFloat 6s ease-in-out infinite alternate;
}

.blob1 {
  width: 65px;
  height: 65px;
  left: 22%;
  top: 12%;
}

.blob2 {
  width: 45px;
  height: 45px;
  right: 18%;
  top: 14%;
}

.dot {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 2px solid #b10219;
  border-radius: 50%;
  animation: dotMove 4s ease-in-out infinite;
}

.dot1 {
  left: 14%;
  top: 18%;
}

.dot2 {
  right: 11%;
  top: 34%;
}

.dot3 {
  right: 8%;
  bottom: 34%;
  opacity: 0.4;
}

@keyframes ringMove {
  from {
    transform: translateY(0) rotate(0);
  }

  to {
    transform: translateY(28px) rotate(8deg);
  }
}

@keyframes blobFloat {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-28px);
  }
}

@keyframes dotMove {
  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.35;
  }

  50% {
    transform: translateY(-18px) scale(1.25);
    opacity: 1;
  }
}

.process-wrap {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 45px;
}

.process-card {
  position: relative;
  text-align: center;
  transition: 0.4s ease;
}

.img-wrap {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto 25px;
  border: 3px solid #b10219;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
}

.img-wrap:before {
  content: "";
  position: absolute;
  left: -18px;
  top: 42px;
  width: 58px;
  height: 58px;
  background: #00264d;
  border-radius: 50%;
  z-index: 0;
  transition: 0.4s;
}

.img-wrap i {
  position: relative;
  z-index: 2;
  font-size: 68px;
  color: #b10219;
  transition: 0.4s;
}

.number {
  position: absolute;
  right: -8px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #b10219;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  z-index: 3;
  transition: 0.4s;
}

.process-card h3 {
  font-size: 20px;
  color: #00264d;
  margin-bottom: 12px;
  transition: 0.3s;
  font-weight: 600;
}

.process-card p {
  font-size: 14px;
  line-height: 1.9;
  color: #050404;
}

.process-card:not(:last-child):after {
  content: "";
  position: absolute;
  top: 86px;
  right: -58px;
  width: 90px;
  height: 12px;
  background: radial-gradient(circle, #b10219 3px, transparent 4px);
  background-size: 12px 12px;
  animation: dotsMove 1.2s linear infinite;
}

@keyframes dotsMove {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 12px 0;
  }
}

.process-card:hover {
  transform: translateY(-12px);
}

.process-card:hover .img-wrap {
  box-shadow: 0 18px 35px rgba(177, 2, 25, 0.25);
}

.process-card:hover .img-wrap:before {
  background: #b10219;
  transform: scale(1.08);
}

.process-card:hover .img-wrap i {
  transform: scale(1.15) rotate(8deg);
  color: #00264d;
}

.process-card:hover .number {
  background: #00264d;
  color: #fff;
}

.process-card:hover h3 {
  color: #b10219;
}

@media (max-width: 991px) {
  .process-wrap {
    max-width: 650px;
    grid-template-columns: repeat(2, 1fr);
    gap: 45px 30px;
  }

  .process-card:after {
    display: none;
  }
}

@media (max-width: 575px) {
  .process-section {
    padding: 50px 15px 60px;
  }

  .ring1 {
    width: 320px;
    height: 320px;
    left: -220px;
  }

  .ring2 {
    width: 240px;
    height: 240px;
    right: -160px;
  }

  .process-wrap {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .img-wrap {
    width: 150px;
    height: 150px;
  }

  .img-wrap i {
    font-size: 55px;
  }

  .number {
    width: 50px;
    height: 50px;
    font-size: 19px;
  }

  .process-card p {
    font-size: 13px;
    max-width: 300px;
    margin: auto;
  }
}

/* Certificate Section */
.cert-section {
  padding: 80px 5%;
  max-width: 1320px;
  margin: 0 auto;
}

.cert-row-one {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 35px;
}

.cert-row-two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.cert-box {
  overflow: hidden;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
}

.cert-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.cert-box img {
  width: 100%;
  height: 100%;
  display: block;
  transition: 0.5s;
}

.cert-box:hover img {
  transform: scale(1.05);
}

.vertical {
  height: 500px;
}

.horizontal {
  height: 300px;
}

@media (max-width: 1200px) {
  .cert-row-one {
    grid-template-columns: repeat(2, 1fr);
  }

  .vertical {
    height: 450px;
  }
}

@media (max-width: 768px) {
  .cert-row-two {
    grid-template-columns: 1fr;
  }

  .vertical {
    height: 400px;
  }

  .horizontal {
    height: 240px;
  }

  .cert-heading h2 {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .cert-row-one {
    grid-template-columns: 1fr;
  }

  .vertical {
    height: 350px;
  }

  .horizontal {
    height: 220px;
  }

  .cert-heading h2 {
    font-size: 28px;
  }

  .cert-section {
    padding: 60px 20px;
  }
}

/* footer */
.mmw-footer {
  position: relative;
  background:
    linear-gradient(rgba(3, 40, 77, 0.92), rgba(3, 40, 77, 0.92)),
    url("../img/banner/bg-footer.jpg");
  background-size: cover;
  background-position: center;
  padding: 90px 0 0;
  overflow: hidden;
  color: #fff;
}

.mmw-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr;
  gap: 45px;
  position: relative;
  z-index: 2;
}

.mmw-footer-logo {
  max-width: 210px;
  margin-bottom: 20px;
}

.mmw-footer p,
.mmw-footer li,
.mmw-footer a {
  color: #d8e6f3;
  font-size: 15px;
  line-height: 28px;
  text-decoration: none;
}

.mmw-footer h4 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 25px;
  position: relative;
  font-weight: 700;
}

.mmw-footer h4::after {
  content: "";
  width: 55px;
  height: 3px;
  background: #d61f26;
  position: absolute;
  left: 0;
  bottom: -10px;
}

.mmw-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mmw-footer li {
  margin-bottom: 10px;
}

.mmw-footer li i {
  color: #d61f26;
  margin-right: 10px;
}

.mmw-footer a:hover {
  color: #d61f26;
}

.mmw-social {
  display: flex;
  gap: 14px;
  margin-top: 25px;
}

.mmw-social a {
  width: 42px;
  height: 42px;
  background: #d61f26;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mmw-social a:hover {
  transform: translateY(-6px) rotate(360deg);
  background: #fff;
  color: #03284d;
}

.mmw-footer-links {
  text-align: center;
  margin-top: 55px;
  position: relative;
  z-index: 2;
}

.mmw-footer-links a,
.mmw-footer-links span {
  color: #fff;
  margin: 0 6px;
  font-weight: 600;
}

.mmw-footer-bottom {
  background: #021d38;
  padding: 18px 15px;
  margin-top: 45px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.mmw-footer-bottom p {
  margin: 0;
  color: #fff;
}

.mmw-shape {
  position: absolute;
  width: 360px;
  height: 360px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  animation: floatShape 6s ease-in-out infinite;
}

.mmw-shape-left {
  left: -140px;
  top: -90px;
}

.mmw-shape-right {
  right: -140px;
  bottom: 30px;
}

@keyframes floatShape {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-22px);
  }
}

@media (max-width: 1199px) {
  .mmw-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .mmw-footer {
    padding-top: 60px;
  }

  .mmw-footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .mmw-footer-links {
    text-align: justify;
  }

  .mmw-footer-links {
    line-height: 32px;
  }
}

/* mission and vision */
.mmw-offer-v3 {
  padding: 45px 30px 90px;
  background: #f8fbff;
  position: relative;
  overflow: hidden;
}

.mmw-offer-v3 .container {
  position: relative;
  z-index: 5;
}

/* Top Right Corner Shape */
.mmw-offer-v3-corner {
  position: absolute;
  right: 0;
  top: 0;
  width: 230px;
  height: 230px;
  background: #e8e8ff;
  border-bottom-left-radius: 100%;
  z-index: 1;
  animation: mmwCornerPulse 5s ease-in-out infinite;
}

/* Top Right Dots */
.mmw-offer-v3::after {
  content: "";
  position: absolute;
  right: 35px;
  top: 40px;
  width: 140px;
  height: 140px;
  background-image: radial-gradient(#b10219 2px, transparent 2px);
  background-size: 14px 14px;
  opacity: 0.75;
  z-index: 2;
  animation: mmwDotsTop 5s ease-in-out infinite;
}

/* Left Bottom Dots */
.mmw-offer-v3::before {
  content: "";
  position: absolute;
  left: 35px;
  bottom: 35px;
  width: 170px;
  height: 170px;
  background-image: radial-gradient(#b10219 2px, transparent 2px);
  background-size: 14px 14px;
  opacity: 0.65;
  z-index: 1;
  animation: mmwDotsBottom 6s ease-in-out infinite;
}

.mmw-offer-v3-wrap {
  display: grid;
  grid-template-columns: 42% 58%;
  align-items: center;
  gap: 55px;
}

.mmw-offer-v3-left {
  min-height: 560px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mmw-offer-v3-bgbox {
  position: absolute;
  width: 340px;
  height: 520px;
  background: #e5e8ff;
  left: 40px;
  top: 15px;
  animation: mmwBgFloat 6s ease-in-out infinite;
}
.mmw-offer-v3-img {
    width: 430px;
    height: 430px;
    overflow: hidden;
    background: #b10219;
    position: relative;
    z-index: 2;
    border-radius: 15px; /* Optional */
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
   
}

.mmw-offer-v3-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;   /* Image poori dikhegi */
    transform: none;       /* Rotation remove */
    display: block;
}
.mmw-offer-v3-right h2 {
  font-size: 44px;
  font-weight: 800;
  color: #111;
  margin: 0 0 12px;
}

.mmw-offer-v3-right p {
  font-size: 17px;
  line-height: 28px;
  color: #080707;
  margin: 0 0 28px;
}

.mmw-offer-v3-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.mmw-offer-v3-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  padding: 16px;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border-left: 5px solid #b10219;
  transition: 0.4s ease;
  animation: mmwCardUp 0.8s ease forwards;
}

.mmw-offer-v3-item img {
  width: 72px;
  height: 72px;
  min-width: 72px;
  border-radius: 50%;
  object-fit: contain;
  background: #f4f8fb;
  padding: 10px;
  transition: 0.4s ease;
}

.mmw-offer-v3-item h4 {
  font-size: 17px;
  line-height: 24px;
  font-weight: 700;
  color: #222;
  margin: 0;
}

.mmw-offer-v3-item:hover {
  transform: translateY(-6px);
  background: #b10219;
}

.mmw-offer-v3-item:hover h4 {
  color: #fff;
}

.mmw-offer-v3-item:hover img {
  background: #fff;
  transform: scale(1.08);
}

/* Animations */
@keyframes mmwDotsTop {
  0%,
  100% {
    transform: translate(0, 0);
    opacity: 0.55;
  }

  50% {
    transform: translate(-15px, 18px);
    opacity: 1;
  }
}

@keyframes mmwDotsBottom {
  0%,
  100% {
    transform: translate(0, 0);
    opacity: 0.45;
  }

  50% {
    transform: translate(18px, -15px);
    opacity: 1;
  }
}

@keyframes mmwCornerPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.06);
    opacity: 0.8;
  }
}

@keyframes mmwBgFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes mmwImageFloat {
  0%,
  100% {
    transform: rotate(45deg) translateY(0);
  }

  50% {
    transform: rotate(45deg) translateY(-10px);
  }
}

@keyframes mmwCardUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Tablet Responsive */
@media (max-width: 991px) {
  .mmw-offer-v3 {
    padding: 75px 0;
  }

  .mmw-offer-v3-wrap {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .mmw-offer-v3-left {
    min-height: 460px;
  }

  .mmw-offer-v3-bgbox {
    left: 50%;
    transform: translateX(-50%);
    width: 260px;
    height: 410px;
    top: 10px;
  }

  .mmw-offer-v3-img {
    width: 340px;
    height: 340px;
  }

  .mmw-offer-v3-right h2 {
    font-size: 38px;
  }
}

/* Mobile Responsive */
@media (max-width: 575px) {
  .mmw-offer-v3 {
    padding: 60px 0;
  }

  .mmw-offer-v3-corner {
    width: 130px;
    height: 130px;
  }

  .mmw-offer-v3::after {
    width: 85px;
    height: 85px;
    right: 18px;
    top: 25px;
    background-size: 11px 11px;
  }

  .mmw-offer-v3::before {
    width: 110px;
    height: 110px;
    left: 15px;
    bottom: 15px;
    background-size: 11px 11px;
  }

  .mmw-offer-v3-left {
    min-height: 320px;
  }

  .mmw-offer-v3-bgbox {
    width: 180px;
    height: 310px;
  }

  .mmw-offer-v3-img {
    width: 260px;
    height: 260px;
  }

  .mmw-offer-v3-right h2 {
    font-size: 30px;
    line-height: 38px;
  }

  .mmw-offer-v3-right p {
    font-size: 15px;
    line-height: 25px;
  }

  .mmw-offer-v3-list {
    grid-template-columns: 1fr;
  }

  .mmw-offer-v3-item {
    padding: 14px;
  }

  .mmw-offer-v3-item img {
    width: 62px;
    height: 62px;
    min-width: 62px;
  }

  .mmw-offer-v3-item h4 {
    font-size: 16px;
    line-height: 23px;
  }
}

/* mission and vision */
.mmw-vmv{
  padding:80px 20px;
  background:url("assets/img/your-bg-image.jpg") center/cover no-repeat;
  position:relative;
}

.mmw-vmv:before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(255,255,255,.78);
}

.mmw-vmv-wrap{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:35px;
  position:relative;
  z-index:1;
}

.mmw-vmv-card{
 background: #fff;
    min-height: 559px;
    padding: 10px 48px 0;
    text-align: center;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .25);
    position: relative;
    overflow: hidden;
}

.mmw-icon{
  font-size:82px;
  color:#1f4f9b;
  margin-bottom:25px;
}

.mmw-vmv-card h3{
  font-size:36px;
  font-weight:800;
  color:#000;
  text-transform:uppercase;
  margin-bottom:22px;
}

.mmw-vmv-card h3:after{
  content:"";
  display:block;
  width:100%;
  height:4px;
  background:#ed1c24;
  margin:22px auto 12px;
}

.mmw-vmv-card p{
  font-size:15px;
  line-height:1.6;
  color:#222;
  margin-bottom:12px;
}

.mmw-card-bottom{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:88px;
  background:#1f4f9b;
  color:#fff;
  font-size:32px;
  font-weight:800;
  display:flex;
  align-items:center;
  justify-content:center;
  letter-spacing:1px;
}

.mmw-card-bottom:before{
  content:"";
  position:absolute;
  top:-36px;
  left:0;
  width:100%;
  height:45px;
  background:#ed1c24;
  clip-path:polygon(0 100%,100% 0,100% 100%,0 100%);
}

.mmw-card-bottom:after{
  content:"";
  position:absolute;
  top:-30px;
  left:0;
  width:100%;
  height:40px;
  background:#1f4f9b;
  clip-path:polygon(0 100%,100% 0,100% 100%,0 100%);
}

/* Responsive */
@media(max-width:991px){
  .mmw-vmv-wrap{
    grid-template-columns:1fr;
    max-width:560px;
  }

  .mmw-vmv-card{
    min-height:520px;
  }
}

@media(max-width:575px){
  .mmw-vmv{
    padding:50px 15px;
  }

  .mmw-vmv-card{
    padding:38px 22px 0;
  }

  .mmw-icon{
    font-size:65px;
  }

  .mmw-vmv-card h3{
    font-size:28px;
  }

  .mmw-vmv-card p{
    font-size:14px;
  }

  .mmw-card-bottom{
    height:105px;
    font-size:26px;
  }
}

/* Branches */
.mmw-branches-section {
  padding: 70px 0 45px;
  background: #f8f9fc;
}

.mmw-branches-heading {
  text-align: center;
  margin-bottom: 30px;
}

.mmw-branches-heading span {
  color: #b10219;
  font-weight: 700;
  text-transform: uppercase;
}

.mmw-branches-heading h2 {
  font-size: 36px;
  margin: 8px 0;
  font-weight: 800;
  color: #111;
}

.mmw-branches-heading p {
  max-width: 760px;
  line-height: 24px;
  margin: auto;
  color: #050404;
}

.mmw-branches-row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.mmw-branch-col {
  flex: 0 0 calc(25% - 12px);
  max-width: calc(25% - 12px);
}

.mmw-branch-card {
  height: 100%;
  padding: 18px 15px;
  text-align: center;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
}

.branch-icon {
  width: 55px;
  height: 55px;
  font-size: 20px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: #b10219;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mmw-branch-card h3 {
  font-size: 20px;
  margin-bottom: 5px;
  color: #00264d;
  font-weight: 800;
}

.mmw-branch-card h5 {
  font-size: 15px;
  line-height: 22px;
  min-height: 44px;
  margin-bottom: 8px;
  color: #111;
  font-weight: 700;
}

.mmw-branch-card p {
  font-size: 13px;
  line-height: 22px;
  min-height: 88px;
  margin-bottom: 15px;
  color: #050404;
}

.mmw-branch-card a {
  display: inline-block;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 6px;
  background: #b10219;
  color: #fff;
}

.mmw-branch-card a:hover {
  background: #00264d;
  color: #fff;
}

.mmw-map-preview {
  margin-top: 30px;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
}

.mmw-map-preview img {
  display: block;
  width: 100%;
  max-height: 430px;
  object-fit: cover;
}

.mmw-map-section iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

@media(max-width:991px) {
  .mmw-branch-col {
    flex: 0 0 calc(50% - 8px);
    max-width: calc(50% - 8px);
  }
}

@media(max-width:576px) {
  .mmw-branches-section {
    padding: 45px 0 35px;
  }

  .mmw-branches-heading h2 {
    font-size: 28px;
  }

  .mmw-branch-col {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .mmw-branch-card h5,
  .mmw-branch-card p {
    min-height: auto;
  }

  .mmw-map-section iframe {
    height: 280px;
  }
}
