
/* ================================= */





/* ================= HERO SECTION ================= */
.hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* FULL WIDTH FIX */
.hero-section {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

/* CAROUSEL HEIGHT */
.carousel,
.carousel-inner,
.carousel-item {
  width: 100%;
  height: 95vh;
}

/* IMAGE CONTAINER */
.hero-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
    background-position: center;
    background-repeat: no-repeat
}

/* IMAGE FIT FIX (MOST IMPORTANT 🔥) */
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* keeps ratio + fills screen */
}

/* VIDEO FIX */
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #f4f6f9; /* fill empty space */
}

/* CONTROLS */
.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  background: rgba(38, 52, 137, 0.7);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.carousel-control-prev {
  left: 30px;
}

.carousel-control-next {
  right: 30px;
}



/* ================= RESPONSIVE ================= */

/* TABLET */
@media (max-width: 992px) {
  .carousel,
  .carousel-inner,
  .carousel-item {
    height: 60vh;
  }
}

/* MOBILE */
@media (max-width: 1024px) {
  .carousel,
  .carousel-inner,
  .carousel-item {
    height: 33vh;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 35px;
    height: 35px;
  }
}
/* MOBILE */
@media (max-width: 820px) {
  .carousel,
  .carousel-inner,
  .carousel-item {
    height: 32vh;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 35px;
    height: 35px;
  }
}
/* MOBILE */
@media (max-width: 768px) {
  .carousel,
  .carousel-inner,
  .carousel-item {
    height: 36vh;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 20px;
    height: 20px;
  }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
  .carousel,
  .carousel-inner,
  .carousel-item {
    height: 28vh;
  }
}
@media (max-width: 375px) {
  .carousel,
  .carousel-inner,
  .carousel-item {
    height: 37vh;
  }
}
@media (max-width: 344px) {
  .carousel,
  .carousel-inner,
  .carousel-item {
    height: 27vh;
  }
}
@media (max-width: 344px) {
  .carousel,
  .carousel-inner,
  .carousel-item {
    height: 40vh;
  }
}

.carousel-item{
    position: relative;
}

/* Very Light Overlay */
.carousel-item::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0,0,0,0.25) 0%,
        rgba(0,0,0,0.15) 35%,
        rgba(0,0,0,0.08) 70%,
        rgba(0,0,0,0) 100%
    );
    z-index: 1;
}

/* Content Position - Bottom Left */
.carousel-caption-custom{
    position: absolute;
    bottom: 9%;
    left: 5%;
    z-index: 10;
    width: 100%;
}

/* Heading */
.carousel-caption-custom h2{
    font-size: 42px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.35);
}

/* Description */
.carousel-caption-custom p{
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #fff;
    text-shadow: 1px 1px 8px rgba(0,0,0,0.30);
}

/* Button */
.hero-btn{
    display: inline-block;
    padding: 14px 32px;
    background: var(--accent-red);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: .3s;
}

.hero-btn:hover{
    background: var(--primary-blue);
    color: #fff;
}

/* Mobile */
@media (max-width:768px){

    .carousel-caption-custom{
        left: 20px;
        right: 20px;
        bottom: 30px;
        width: auto;
    }

    .carousel-caption-custom h2{
        font-size: 19px;
        margin-bottom: 10px;
    }

    .carousel-caption-custom p{
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 15px;
    }

    .hero-btn{
        padding: 10px 20px;
        font-size: 13px;
    }
}
@media (max-width:1024px){

    .carousel-caption-custom{
        left: 50px;
        bottom: 50px;
        width: auto;
    }

    .carousel-caption-custom h2{
        font-size: 24px;
        margin-bottom: 10px;
    }

    .carousel-caption-custom p{
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 15px;
    }

    .hero-btn{
        padding: 10px 20px;
        font-size: 13px;
    }
}

/*==================== New ============*/
:root {
  --primary-blue: #263489;
  --accent-red: #ec1d25;
  --text-black: #000000;
  --bg-light: #f4f6f9;
}

/* SECTION */
.clients-modern {
  background: var(--bg-light);
  padding: 0px 0;
}

/* TITLE */
.clients-modern .section-title h2 {
  font-size: 30px;
  font-weight: 800;
  color: var(--primary-blue);
  position: relative;
}

.clients-modern .section-title h2::after {
  content: "";
  width: 60px;
  height: 3px;
  background: var(--accent-red);
  display: block;
  margin: 10px auto 0;
}

/* CARD */
.client-card {
  background: #fff;
  border-radius: 14px;
  padding: 25px 15px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.client-card img {
  height: 70px;
  object-fit: contain;
  margin-bottom: 10px;
  transition: 0.3s;
}

.client-card span {
  display: block;
  font-weight: 600;
  color: var(--text-black);
}

/* HOVER */
.client-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.client-card:hover span {
  color: var(--primary-blue);
}

.client-card:hover img {
  transform: scale(1.1);
}

/* OWL NAV */
.clients-carousel .owl-nav {
  text-align: center;
  margin-top: 20px;
}

.clients-carousel .owl-nav button {
  background: var(--primary-blue) !important;
  color: #fff !important;
  margin: 5px;
  padding: 8px 14px !important;
  border-radius: 6px;
  border: none;
}

.clients-carousel .owl-nav button:hover {
  background: var(--accent-red) !important;
}

/* DOTS */
.clients-carousel .owl-dots {
  text-align: center;
  margin-top: 10px;
}

.clients-carousel .owl-dot span {
  width: 10px;
  height: 10px;
  background: #ccc;
  display: inline-block;
  border-radius: 50%;
  margin: 5px;
}

.clients-carousel .owl-dot.active span {
  background: var(--accent-red);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .client-card img {
    height: 50px;
  }
}


:root {
  --primary-blue: #263489;
  --accent-red: #ec1d25;
  --text-black: #000000;
  --bg-light: #f4f6f9;
}

/* SECTION */
.independence-section {
  background: var(--bg-light);
  padding: 20px 0;
}

/* CARD WRAPPER */
.independence-card {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s;
}

/* IMAGE */
.independence-img {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  border: 4px solid var(--primary-blue);
  transition: 0.3s;
}

/* HOVER EFFECT */
.independence-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.independence-card:hover .independence-img {
  border-color: var(--accent-red);
  transform: scale(1.02);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .independence-section {
    padding: 40px 15px;
  }

  .independence-img {
    border-width: 3px;
  }
}


:root {
  --primary-blue: #263489;
  --accent-red: #ec1d25;
  --text-black: #000000;
  --bg-light: #f4f6f9;
}

/* =========================
   SECTION
========================= */
.about-modern {
  background: linear-gradient(135deg, #f4f6f9, #ffffff);
  padding: 20px 0;
}

/* =========================
   TITLE
========================= */
.section-title h2 {
  font-size: 34px;
  font-weight: 800;
  color: var(--primary-blue);
  text-align: center;
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 60px;
  height: 3px;
  background: var(--accent-red);
  display: block;
  margin: 10px auto 0;
}

/* =========================
   WRAPPER (GRID)
========================= */
.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-top: 40px;
}

/* =========================
   IMAGE SECTION
========================= */
.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  transition: 0.3s;
}

.about-image img:hover {
  transform: scale(1.03);
}

/* BADGE */
.about-badge {
  position: absolute;
  bottom: -20px;
  left: 20px;
  background: var(--primary-blue);
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

/* =========================
   TEXT CONTENT
========================= */
.about-text h3 {
  color: var(--primary-blue);
  font-weight: 800;
  margin-bottom: 15px;
  font-size: 22px;
}

.about-text p {
  color: #444;
  line-height: 1.8;
  margin-bottom: 25px;
  text-align: justify;
}

/* =========================
   FEATURE GRID
========================= */
.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

/* FEATURE CARD */
.feature-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 12px 15px;
  border-radius: 10px;
  border: 1px solid #eee;
  transition: 0.3s;
  cursor: pointer;
  background: var(--primary-blue);
  color:#fff;
}

.feature-box i {
  color: var(--accent-red);
  font-size: 18px;
}

/* HOVER EFFECT */
.feature-box:hover {
  background: #fff;
  color: var(--primary-blue);
  transform: translateY(-3px);
}

.feature-box:hover i {
  color: #fff;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-text {
    text-align: center;
  }

  .about-text p {
    text-align: left;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .about-badge {
    position: static;
    margin-top: 10px;
    display: inline-block;
  }
}

/* SMALL DEVICES */
@media (max-width: 576px) {
  .section-title h2 {
    font-size: 26px;
  }

  .about-text h3 {
    font-size: 18px;
  }

  .feature-box {
    padding: 10px;
    font-size: 14px;
  }
}


:root {
  --primary-blue: #263489;
  --accent-red: #ec1d25;
  --text-black: #000000;
  --bg-light: #f4f6f9;
}

/* SECTION */
.team-modern {
  background: var(--bg-light);
  padding: 20px 0;
}

/* TITLE */
.team-modern .section-title h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-blue);
}

.team-modern .section-title h2::after {
  content: "";
  width: 60px;
  height: 3px;
  background: var(--accent-red);
  display: block;
  margin: 10px auto;
}

/* OWL FIX (equal height cards) */
.team-carousel .owl-stage {
  display: flex;
}

/* CARD */
.member-card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  height: 100%;
  min-height: 340px;
}

/* ✅ IMAGE FIX (OVAL PERFECT) */
.member-card img {
  width: 160px;
  height: auto;
  object-fit: cover;
  object-position: top;
  border-radius: 80px / 45px; /* 🔥 oval shape */
  border: 4px solid var(--primary-blue);
  margin: 0 auto 15px;
  transition: 0.3s;
}

/* TEXT */
.member-card h4 {
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 5px;
}

.member-card span {
  display: block;
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
}

.member-card p {
  font-size: 14px;
  color: #444;
}

/* SOCIAL ICONS */
.member-card .social {
  margin-top: auto;
  padding-top: 15px;
}

.member-card .social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 6px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #eef1f7;
  color: var(--primary-blue);
  transition: 0.3s;
  font-size: 14px;
}

.member-card .social a:hover {
  background: var(--accent-red);
  color: #fff;
  transform: translateY(-2px);
}

/* HOVER */
.member-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

.member-card:hover img {
  border-color: var(--accent-red);
  transform: scale(1.05);
}

/* OWL NAV */
.team-carousel .owl-nav {
  text-align: center;
  margin-top: 25px;
}

.team-carousel .owl-nav button {
  background: var(--primary-blue) !important;
  color: #fff !important;
  padding: 8px 14px !important;
  margin: 5px;
  border-radius: 6px;
}

.team-carousel .owl-nav button:hover {
  background: var(--accent-red) !important;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .member-card {
    padding: 20px;
  }

  .member-card img {
    width: 140px;
    height: 372px;
  }
}






.schools-section{
    background:#f5f5f5;
    position:relative;
    overflow:hidden;
    padding:20px 0 117px;
}

/* =========================
   WRAPPER
========================= */

.schools-wrapper{
    position:relative;
    max-width:1400px;
    margin:auto;
    min-height:950px;
}

/* =========================
   TOP LINE
========================= */

.top-line{
    text-align:center;
    color:#8e97b5;
    font-size:26px;
    margin-bottom:20px;
    font-weight:400;
    letter-spacing:1px;
}

/* =========================
   MAIN TITLE
========================= */

.main-title{
    position:relative;
    z-index:2;

    /* MOVE FULL TITLE */
    left:0;
    top:0;

    text-align:center;
}

/* TITLE */

.main-title h2{
    font-size:clamp(90px, 10vw, 170px);
    font-weight:500;
    color:#243b78;
    margin:0;
    line-height:1;
}

/* EACH WORD */

.main-title h2 span{
    display:block;
    position:relative;
}

/* =========================
   WORD 1
========================= */

.word-1{

    /* GAP BELOW */
    margin-bottom:40px;

    /* MOVE LEFT / RIGHT */
    left:74px;

    /* MOVE TOP / BOTTOM */
    top:0;

    /* LETTER GAP */
    letter-spacing:4px;
}

/* =========================
   WORD 2
========================= */

.word-2{

    margin-bottom:60px;

    left:-155px;

    top:0;

    letter-spacing:8px;
}

/* =========================
   WORD 3
========================= */

.word-3{

    margin-bottom:60px;

    left:-60px;

    top:0;

    letter-spacing:5px;
}
.word-4{

    margin-bottom:60px;

    left:-60px;

    top:0;

    letter-spacing:5px;
}

.word-5{

    margin-bottom:60px;

    left:0px;

    top:0;

    letter-spacing:5px;
}
.word-6{

    margin-bottom:0;

    left:-60px;

    top:0;

    letter-spacing:5px;
}


/* =========================
   CARD
========================= */

.school-card{
    position:absolute;
	z-index:999;
	cursor:pointer;
    width:180px;
    height:240px;
    border-radius:22px;
    overflow:hidden;
    display:block;
    box-shadow:0 10px 30px rgba(0,0,0,0.15);
    transition:0.4s ease;
}

.school-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.4s ease;
}

.school-overlay{
    position:absolute;
	pointer-events:none;
    inset:0;

    background:linear-gradient(
        to top,
        rgba(18,30,73,0.95),
        rgba(18,30,73,0.1)
    );
}

.school-card h5{
    position:absolute;
    bottom:18px;
    left:18px;
    color:#fff;
    font-size:18px;
    line-height:1.2;
    margin:0;
    font-weight:700;
    z-index:2;
}

/* HOVER */

.school-card:hover{
    transform:translateY(-10px);
}

.school-card:hover img{
    transform:scale(1.08);
}

/* =========================
   CARD POSITIONS
========================= */

/* LEFT TOP */

.medicine-card{
   top: -20px;
    left: 180px;
}

/* RIGHT TOP */

.dentistry-card{
    top: 25px;
    right: 60px;
}

/* CENTER RIGHT */

.homeopathy-card{
    top:200px;
    right:377px;
}

/* LEFT BOTTOM */

.paramedical-card{
  top: 248px;
    left: 100px;
}

/* RIGHT BOTTOM */

.physiotherapy-card{
    bottom:492px;
    right:59px;
}
.pharmacy-card{
    bottom:365px!important;
    right:308px;
}
.nursing-card{
     top: 248px;
    left: 100px;
}
.engineering-card{
        bottom: -61px;
    left: 180px;
}
.pgstudies-card{
   bottom: 365px !important;
    left: 156px;
}

.schooling-card{
    bottom: -56px;
    right: 244px;
    
    
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .schools-section{
        padding:20px 15px 80px;
    }

    /* =========================
       WRAPPER
    ========================= */

    .schools-wrapper{

        min-height:auto;

        display:flex;
        flex-wrap:wrap;

        justify-content:center;

        gap:15px;

        padding-top:20px;
    }

    /* =========================
       TITLE
    ========================= */

    .main-title{

        width:100%;

        text-align:center;

        margin-bottom:30px;

        left:0;
        top:0;
    }

    .main-title h2{

        font-size:48px;

        line-height:1.1;
    }

    /* RESET WORD POSITION */

    .word-1,
    .word-2,
    .word-3,
    .word-4,
    .word-5,
    .word-6{

        left:0;
        top:0;

        margin-bottom:10px;

        letter-spacing:1px;
    }

    /* =========================
       CARDS
    ========================= */

    .school-card{

        position:relative !important;

        top:auto !important;
        left:auto !important;
        right:auto !important;
        bottom:auto !important;

        width:calc(50% - 10px);

        max-width:160px;

        height:210px;

        margin:0;
    }

    .school-card h5{

        font-size:15px;

        left:12px;
        bottom:12px;
    }

}
/* =========================
   IPAD PRO / TABLET
========================= */

@media (min-width:992px) and (max-width:1200px){

    .schools-section{
        padding:20px 20px 100px;
    }

    .schools-wrapper{
        min-height:1100px;
    }

    /* =========================
       TITLE
    ========================= */

    .main-title h2{

        font-size:85px;

        line-height:1.05;
    }

    /* WORD POSITIONS */

    .word-1{
        left:20px;
        margin-bottom:56px;
    }

    .word-2{
        left:-60px;
        margin-bottom:56px;
    }

    .word-3{
        left: -27px;
        margin-bottom:56px;
    }

    .word-4{
        left:40px;
        margin-bottom:56px;
    }

    .word-5{
        left:0;
        margin-bottom:56px;
    }

    .word-6{
               left: -16px;
    }

    /* =========================
       CARD SIZE
    ========================= */

    .school-card{

        width:175px;
        height:200px;

        border-radius:18px;
    }

    .school-card h5{

        font-size:14px;

        left:10px;
        bottom:10px;
    }

    /* =========================
       CARD POSITIONS
    ========================= */

    .medicine-card{
        top: 3px;
        left: 130px;
    }

    .dentistry-card{
        top: 60px;
        right: 38px;
    }

    .homeopathy-card{
        top: 145px;
        right: 252px;
    }

    .paramedical-card{
		top: 224px;
        left: 42px;
    }

    .physiotherapy-card{
        top:300px;
        right:40px;
    }

    .pharmacy-card{
		top: 435px;
        left: 220px;
    }

    .nursing-card{
       top: 224px;
        left: 42px;
    }

    .engineering-card{
       bottom: 170px;
        right: 54px;
    }

    .pgstudies-card{
		bottom: 365px !important;
        left: 152px;
    }

    .schooling-card{
		bottom: -55px;
        right: 187px;
    }

}




/* =========================
   SECTION
========================= */

.mnr-matters-section{

  

    position:relative;

    padding:20px 0;

    overflow:visible;
}

/* =========================
   HEADING
========================= */

.matters-heading{

    text-align:center;

    max-width:950px;

    margin:0 auto 140px;

    position:relative;

    z-index:20;
}

.matters-heading h2{

    font-size:clamp(52px,6vw,96px);

    line-height:1.05;

    color:var(--primary-blue);

    font-weight:500;

    margin-bottom:30px;
}

.matters-heading p{

    font-size:24px;

    line-height:1.8;

    color:#59627c;

    /8max-width:850px;*/

    margin:auto;
}

/* =========================
   STICKY WRAPPER
========================= */

.matters-sticky-wrapper{

    position:relative;
}

/* =========================
   ROW
========================= */

.matters-row{

    position:sticky;

    top:100px;

    min-height:85vh;

    display:flex;

    align-items:center;

    justify-content:center;

    transition:0.8s ease;

    opacity:0;

    transform:translateY(120px) scale(0.92);

    z-index:1;
}

/* ACTIVE */

.matters-row.active{

    opacity:1;

    transform:translateY(0) scale(1);

    z-index:10;
}

/* OLD CARD */

.matters-row.hide{

    opacity:0.12;

    transform:translateY(-80px) scale(0.94);

    filter:blur(5px);
}

/* =========================
   CARD
========================= */

.matters-card{

    width:100%;

    display:flex;

    align-items:center;

    justify-content:center;

    position:relative;
}

/* =========================
   IMAGE
========================= */

.matters-image{

    width:58%;

    position:relative;

    z-index:2;
}

.matters-image img{
	

    width:100%;

    height:490px;

    object-fit:cover;

    border-radius:35px;
	
	

    display:block;

    box-shadow:0 25px 70px rgba(0,0,0,0.12);
}

/* =========================
   CONTENT
========================= */

.matters-content{
	
    display:flex;
    flex-direction:column;
    justify-content:center;
    min-height:490px;

    width:42%;

    background:var(--primary-blue);

    color:#fff;

    padding:55px 50px;

    border-radius:35px;

    position:relative;

     margin-left:-90px;
	 
	

    z-index:5;

    box-shadow:0 25px 70px rgba(0,0,0,0.16);
}

/* =========================
   ICON
========================= */

.icon-shape{

    position:absolute;

    width:100px;

    height:100px;

    background:var(--accent-red);

    opacity:0.08;

    top:30px;

    right:30px;

    border-radius:25px;

    transform:rotate(45deg);
}

/* =========================
   TITLE
========================= */

.matters-content h3{

    font-size:52px;

    line-height:1.1;

     margin-bottom:20px;

    font-weight:500;
}

/* =========================
   DESCRIPTION
========================= */

.matters-content p{

    font-size:18px;

    line-height:1.7;

    color:rgba(255,255,255,0.84);

    margin-bottom:30px;
}

/* =========================
   BUTTON
========================= */

.matters-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:15px 34px;

    background:#fff;

    color:var(--primary-blue);

    border-radius:60px;

    text-decoration:none;

    
    font-size:16px;

    font-weight:600;

    transition:0.4s ease;
}

.matters-btn:hover{

    background:var(--accent-red);

    color:#fff;

    transform:translateY(-5px);
}

/* =========================
   LARGE LAPTOP
========================= */

@media(max-width:1400px){

    .matters-image img{

        height:490px;
    }

    .matters-content{

        padding:70px 55px;
    }

    .matters-content h3{

        font-size:54px;
    }

}

/* =========================
   TABLET / IPAD
========================= */

@media(max-width:1199px){

    .mnr-matters-section{

        padding:20px 20px;
    }

    .matters-heading{

        margin-bottom:100px;
    }

    .matters-heading h2{

        font-size:60px;
    }

    .matters-heading p{

        font-size:20px;
    }

    .matters-row{

        top:80px;
    }

    .matters-image{

        width:55%;
    }

    .matters-image img{

        height:520px;
    }

    .matters-content{

        width:45%;

        padding:50px 40px;

        margin-left:-80px;
    }

    .matters-content h3{

        font-size:44px;
    }

    .matters-content p{

        font-size:18px;

        line-height:1.7;
    }

}

/* =========================
   MOBILE
========================= */

@media(max-width:991px){

    .mnr-matters-section{

        padding:20px 20px;
    }

    .matters-heading{

        margin-bottom:60px;
    }

    .matters-heading h2{

        font-size:42px;
    }

    .matters-heading p{

        font-size:18px;

        line-height:1.7;
    }

    /* REMOVE STICKY */

    .matters-row{

        position:relative;

        top:auto;

        min-height:auto;

        opacity:1 !important;

        transform:none !important;

        filter:none !important;

        margin-bottom:80px;

        display:block;
    }

    .matters-card{

        flex-direction:column;
    }

    .matters-image,
    .matters-content{

        width:100%;
    }

    .matters-image img{

        height:auto;

        border-radius:25px 25px 0 0;
    }

    .matters-content{

        margin-left:0;

        padding:40px 30px;

        border-radius:0 0 25px 25px;
    }

    .matters-content h3{

        font-size:36px;
    }

    .matters-content p{

        font-size:17px;

        line-height:1.7;
    }

    .matters-btn{

        width:100%;
    }

}

/* =========================
   IPAD PRO FIX
========================= */

@media only screen 
and (min-width:992px) 
and (max-width:1200px){

    .mnr-matters-section{

        padding:20px 20px;
    }

    /* REMOVE HUGE GAP */

    .matters-row{

        min-height:70vh;

        top:40px;

        padding:20px 0;
    }

    /* CARD */

    .matters-card{

        align-items:center;
    }

    /* IMAGE */

    .matters-image img{

        height:420px;
    }

    /* CONTENT */

    .matters-content{

        padding:40px 35px;

        margin-left:-60px;
    }

    /* TITLE */

    .matters-content h3{

        font-size:36px;

        margin-bottom:20px;
    }

    /* TEXT */

    .matters-content p{

        font-size:16px;

        line-height:1.6;

        margin-bottom:25px;
    }

    /* BUTTON */

    .matters-btn{

        padding:14px 28px;

        font-size:15px;
    }

}







.latest-news-section{

    background:#f4f6f9;

    padding:120px 0;
}

/* =========================
   HEADING
========================= */

.news-heading{

    text-align:center;

    max-width:900px;

    margin:0 auto 70px;
}

.news-heading h2{

    font-size:clamp(42px,5vw,72px);

    color:#263489;

    margin-bottom:20px;

    font-weight:600;
}

.news-heading p{

    font-size:20px;

    line-height:1.8;

    color:#5d6785;
}

/* =========================
   CARD
========================= */

.event-item{

    display:block;

    background:#fff;

    border-radius:24px;

    padding:30px;

    text-decoration:none;

    color:#000;

    box-shadow:0 10px 40px rgba(0,0,0,0.08);

    transition:0.4s ease;

    height:100%;
}

.event-item:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 60px rgba(0,0,0,0.12);
}

/* =========================
   TITLE
========================= */

.event-item .title{

    display:flex;

    align-items:center;

    gap:20px;

    margin-bottom:25px;
}

/* DATE */

.event-item .date{

    width:90px;

    height:110px;

    background:#263489;

    border-radius:20px;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    color:#fff;

    flex-shrink:0;
}

.event-item .date strong{

    font-size:34px;

    line-height:1;

    font-weight:700;
}

.event-item .date span{

    font-size:16px;

    text-transform:uppercase;
}

.event-item .date .year{

    font-size:18px;

    margin-top:5px;
}

/* TITLE */

.event-title h4{

    font-size:19px;

    line-height:1.4;

    color:#263489;

    margin:0;
}

/* DESCRIPTION */

.event-item p{

    font-size:17px;

    line-height:1.8;

    color:#5f6782;

    margin-bottom:25px;
}

/* TIME & ADDRESS */

.event-item time,
.event-item address{

    display:block;

    font-size:16px;

    color:#263489;

    font-weight:600;

    margin-bottom:12px;
}

/* BUTTON */

.news-btn-wrap{

    margin-top:50px;
}

.view-more-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:18px 40px;

    background:#263489;

    color:#fff;

    border-radius:60px;

    text-decoration:none;

    font-size:18px;

    font-weight:600;

    transition:0.4s ease;
}

.view-more-btn:hover{

    background:#ec1d25;

    color:#fff;
}

/* =========================
   EQUAL HEIGHT CARDS
========================= */

/* OWL STAGE */

.latest-news-slider .owl-stage{

    display:flex;
}

/* ITEM */

.latest-news-slider .item{

    display:flex;

    height:100%;
}

/* CARD */

.latest-news-slider .event-item{

    display:flex;

    flex-direction:column;

    width:100%;

    height:100%;
}

/* PUSH CONTENT */

.latest-news-slider .event-item p{

    flex-grow:1;
}

/* =========================
   MOBILE
========================= */

@media(max-width:991px){

    .latest-news-section{

        padding:20px 20px;
    }

    .event-item{

        padding:25px;
    }

    .event-item .title{

        flex-direction:column;

        align-items:flex-start;
    }

    .event-title h4{

        font-size:22px;
    }

}






/* =========================
   SECTION
========================= */
.placement-section {
  padding: 20px 0;
  overflow: hidden;
  position: relative;
}

/* =========================
   WRAPPER
========================= */
.placement-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* =========================
   LEFT CONTENT
========================= */
.placement-content {
  max-width: 520px;
}

.placement-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: rgba(236, 29, 37, 0.1);
  color: var(--accent-red);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 28px;
  letter-spacing: 0.5px;
}

.placement-content h2 {
  font-size: 68px;
  line-height: 1.05;
  color: var(--primary-blue);
  margin-bottom: 30px;
  font-weight: 700;
}

.placement-content p {
  font-size: 18px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 35px;
}

/* =========================
   BUTTON
========================= */
.placement-btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 42px;
  border-radius: 50px;
  text-decoration: none;
  background: linear-gradient(
    135deg,
    var(--accent-red),
    #c3131a
  );
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.4s ease;
}

.placement-btn a:hover {
  background: linear-gradient(
    135deg,
    var(--primary-blue),
    #1b276d
  );
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(38, 52, 137, 0.2);
}

/* =========================
   RIGHT STATS
========================= */
.placement-stats {
  display: flex;
  gap: 22px;
  position: relative;
}

.stats-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* =========================
   CARDS
========================= */
.placement-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 38px 32px;
  transition: all 0.45s ease;
  isolation: isolate;
}

.placement-card:hover {
  transform: translateY(-10px);
}

/* =========================
   CARD HEIGHTS
========================= */
.large-card {
  min-height: 340px;
}

.small-card {
  min-height: 220px;
}

.tall-card {
  min-height: 340px;
}

/* =========================
   CARD CONTENT
========================= */
.card-content {
  position: relative;
  z-index: 3;
}

/* =========================
   HOVER OVERLAY
========================= */
.placement-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.06),
    rgba(255,255,255,0)
  );
  z-index: 1;
}

/* =========================
   ICON
========================= */
.stat-icon {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: all 0.4s ease;
  position: relative;
}

.stat-icon::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,0.2);
}

.stat-icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  transition: 0.4s ease;
}

/* HOVER EFFECT */
.placement-card:hover .stat-icon {
  transform: translateY(-5px) rotate(5deg);
}

.placement-card:hover .stat-icon img {
  transform: scale(1.08);
}

/* =========================
   DARK CARD ICONS
========================= */
.red-card .stat-icon,
.blue-card .stat-icon {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(4px);
}

/* =========================
   LIGHT CARD ICONS
========================= */
.light-card .stat-icon,
.light-blue-card .stat-icon {
  background: rgba(38, 52, 137, 0.08);
  border: 1px solid rgba(38, 52, 137, 0.1);
}

.light-card .stat-icon::after,
.light-blue-card .stat-icon::after {
  border: 1px dashed rgba(38, 52, 137, 0.2);
}

/* LIGHT CARD IMAGE FIX */
.light-card .stat-icon img,
.light-blue-card .stat-icon img {
  filter: brightness(0) saturate(100%)
          invert(18%) sepia(18%)
          saturate(1915%) hue-rotate(210deg)
          brightness(95%) contrast(96%);
}

/* =========================
   NUMBERS
========================= */
.placement-card h3 {
  font-size: 56px;
  line-height: 1;
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -1px;
}

/* =========================
   TEXT
========================= */
.placement-card p {
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
}

/* =========================
   CARD COLORS
========================= */
.red-card {
  background: linear-gradient(
    135deg,
    #e11c32,
    #b41122
  );
  color: #ffffff;
  box-shadow: 0 20px 35px rgba(225, 28, 50, 0.2);
}

.blue-card {
  background: linear-gradient(
    135deg,
    #263489,
    #1a255f
  );
  color: #ffffff;
  box-shadow: 0 20px 35px rgba(38, 52, 137, 0.2);
}

.light-card {
  background: #f9eded;
  color: var(--primary-blue);
  box-shadow: 0 18px 30px rgba(0,0,0,0.04);
}

.light-blue-card {
  background: #e9eef7;
  color: var(--primary-blue);
  box-shadow: 0 18px 30px rgba(0,0,0,0.04);
}

/* =========================
   CENTER LOGO
========================= */
.center-logo {
  position: absolute;
  top: 53%;
  left: 47%;
  transform: translate(-50%, -50%);
  z-index: 30;
}

/* CIRCLE */
.center-logo-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 8px solid #f4f4f4;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  animation: pulseLogo 3s infinite ease-in-out;
  position: relative;
}

.center-logo-circle::before {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 2px dashed rgba(236, 29, 37, 0.25);
}

/* LOGO IMAGE */
.center-logo-circle img {
 width: 125px;
height: 100px;
  object-fit: contain;
}

/* =========================
   ANIMATION
========================= */
@keyframes pulseLogo {

  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }

  100% {
    transform: scale(1);
  }

}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1199px) {

  .placement-content h2 {
    font-size: 58px;
  }

}

@media (max-width: 991px) {

  .placement-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .placement-content {
    max-width: 100%;
  }

}

@media (max-width: 767px) {

  .placement-stats {
    flex-direction: column;
  }

  .center-logo {
    display: none;
  }

  .placement-content h2 {
    font-size: 48px;
  }

  .placement-card h3 {
    font-size: 42px;
  }

  .placement-card {
    min-height: auto;
  }

}

@media (max-width: 575px) {

  .placement-section {
    padding: 20px 0;
  }

  .placement-content h2 {
    font-size: 40px;
  }

  .placement-content p {
    font-size: 16px;
    line-height: 1.8;
  }

  .placement-card {
    padding: 30px 24px;
  }

  .stat-icon {
    width: 70px;
    height: 70px;
  }

  .stat-icon img {
    width: 32px;
    height: 32px;
  }

}
/* =========================
   SECTION
========================= */
.placement-section {
  padding: 20px 0;
  overflow: hidden;
  position: relative;
}

/* =========================
   WRAPPER
========================= */
.placement-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* =========================
   LEFT CONTENT
========================= */
.placement-content {
  max-width: 520px;
}

.placement-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: rgba(236, 29, 37, 0.1);
  color: var(--accent-red);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 28px;
  letter-spacing: 0.5px;
}

.placement-content h2 {
  font-size: 68px;
  line-height: 1.05;
  color: var(--primary-blue);
  margin-bottom: 30px;
  font-weight: 700;
}

.placement-content p {
  font-size: 18px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 35px;
}

/* =========================
   BUTTON
========================= */
.placement-btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 42px;
  border-radius: 50px;
  text-decoration: none;
  background: linear-gradient(
    135deg,
    var(--accent-red),
    #c3131a
  );
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.4s ease;
}

.placement-btn a:hover {
  background: linear-gradient(
    135deg,
    var(--primary-blue),
    #1b276d
  );
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(38, 52, 137, 0.2);
}

/* =========================
   RIGHT STATS
========================= */
.placement-stats {
  display: flex;
  gap: 22px;
  position: relative;
}

.stats-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* =========================
   CARDS
========================= */
.placement-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 38px 32px;
  transition: all 0.45s ease;
  isolation: isolate;
   flex:1;
    min-height:280px;
}

.placement-card:hover {
  transform: translateY(-10px);
}

/* =========================
   CARD HEIGHTS
========================= */
/*.large-card {
  min-height: 340px;
}

.small-card {
  min-height: 220px;
}

.tall-card {
  min-height: 340px;
}*/

.large-card,
.small-card,
.tall-card{
    min-height:300px; /* choose any height you prefer */
}

/* =========================
   CARD CONTENT
========================= */
.card-content {
  position: relative;
  z-index: 3;
}

/* =========================
   HOVER OVERLAY
========================= */
.placement-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.06),
    rgba(255,255,255,0)
  );
  z-index: 1;
}

/* =========================
   ICON
========================= */
.stat-icon {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: all 0.4s ease;
  position: relative;
}

.stat-icon::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,0.2);
}

.stat-icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  transition: 0.4s ease;
}

/* HOVER EFFECT */
.placement-card:hover .stat-icon {
  transform: translateY(-5px) rotate(5deg);
}

.placement-card:hover .stat-icon img {
  transform: scale(1.08);
}

/* =========================
   DARK CARD ICONS
========================= */
.red-card .stat-icon,
.blue-card .stat-icon {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(4px);
}

/* =========================
   LIGHT CARD ICONS
========================= */
.light-card .stat-icon,
.light-blue-card .stat-icon {
  background: rgba(38, 52, 137, 0.08);
  border: 1px solid rgba(38, 52, 137, 0.1);
}

.light-card .stat-icon::after,
.light-blue-card .stat-icon::after {
  border: 1px dashed rgba(38, 52, 137, 0.2);
}

/* LIGHT CARD IMAGE FIX */
.light-card .stat-icon img,
.light-blue-card .stat-icon img {
  filter: brightness(0) saturate(100%)
          invert(18%) sepia(18%)
          saturate(1915%) hue-rotate(210deg)
          brightness(95%) contrast(96%);
}

/* =========================
   NUMBERS
========================= */
.placement-card h3 {
  font-size: 56px;
  line-height: 1;
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -1px;
}

/* =========================
   TEXT
========================= */
.placement-card p {
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
}

/* =========================
   CARD COLORS
========================= */
.red-card {
  background: linear-gradient(
    135deg,
    #e11c32,
    #b41122
  );
  color: #ffffff;
  box-shadow: 0 20px 35px rgba(225, 28, 50, 0.2);
}

.blue-card {
  background: linear-gradient(
    135deg,
    #263489,
    #1a255f
  );
  color: #ffffff;
  box-shadow: 0 20px 35px rgba(38, 52, 137, 0.2);
}

.light-card {
  background: #f9eded;
  color: var(--primary-blue);
  box-shadow: 0 18px 30px rgba(0,0,0,0.04);
}

.light-blue-card {
  background: #e9eef7;
  color: var(--primary-blue);
  box-shadow: 0 18px 30px rgba(0,0,0,0.04);
}

/* =========================
   CENTER LOGO
========================= */
.center-logo {
  position: absolute;
  top: 53%;
  left: 47%;
  transform: translate(-50%, -50%);
  z-index: 30;
}

/* CIRCLE */
.center-logo-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 8px solid #f4f4f4;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  animation: pulseLogo 3s infinite ease-in-out;
  position: relative;
}

.center-logo-circle::before {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 2px dashed rgba(236, 29, 37, 0.25);
}

/* LOGO IMAGE */
.center-logo-circle img {
 width: 125px;
height: 100px;
  object-fit: contain;
}

/* =========================
   ANIMATION
========================= */
@keyframes pulseLogo {

  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }

  100% {
    transform: scale(1);
  }

}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1199px) {

  .placement-content h2 {
    font-size: 58px;
  }

}

@media (max-width: 991px) {

  .placement-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .placement-content {
    max-width: 100%;
  }

}

@media (max-width: 767px) {

  .placement-stats {
    flex-direction: column;
  }

  .center-logo {
    display: none;
  }

  .placement-content h2 {
    font-size: 48px;
  }

  .placement-card h3 {
    font-size: 42px;
  }

  .placement-card {
    min-height: auto;
  }

}

@media (max-width: 575px) {

  .placement-section {
    padding: 20px 0;
  }

  .placement-content h2 {
    font-size: 40px;
  }

  .placement-content p {
    font-size: 16px;
    line-height: 1.8;
  }

  .placement-card {
    padding: 30px 24px;
  }

  .stat-icon {
    width: 70px;
    height: 70px;
  }

  .stat-icon img {
    width: 32px;
    height: 32px;
  }

}




:root {
  --primary-blue: #263489;
  --accent-red: #ec1d25;
  --text-black: #000000;
  --bg-light: #f4f6f9;
}

/* =========================
   SECTION
========================= */
.mnr-company-section {
  padding: 20px 0;
  overflow: hidden;
  position: relative;
}

/* =========================
   TOP AREA
========================= */
.company-top-area {
  background: linear-gradient(
    135deg,
    #dd1e33,
    #bb1223
  );
  border-radius: 40px;
  padding: 70px 70px 180px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  position: relative;
  overflow: hidden;
}

/* TOP SHAPE */
.company-top-area::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  top: -220px;
  left: -120px;
}

/* TAG */
.mnr-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 50px;
  background: rgba(255,255,255,0.12);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

/* TITLE */
.company-top-left h2 {
  font-size: 60px;
  line-height: 1.08;
  color: #ffffff;
  margin: 0;
  font-weight: 700;
}

/* TEXT */
.company-top-right {
  display: flex;
  align-items: center;
}

.company-top-right p {
  color: rgba(255,255,255,0.92);
  font-size: 17px;
  line-height: 1.9;
  margin: 0;
}

/* =========================
   SHOWCASE AREA
========================= */
.company-showcase-area {
  width: 88%;
  margin: -120px auto 0;
  display: flex;
  align-items: stretch;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  z-index: 10;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

/* =========================
   LEFT PANEL
========================= */
.showcase-left-panel {
  width: 300px;
  background: linear-gradient(
    180deg,
    #e41e34,
    #bc1224
  );
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

/* TRIANGLES */
.triangle {
  position: absolute;
  background: rgba(255,255,255,0.08);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.triangle-1 {
  width: 120px;
  height: 120px;
  top: 20px;
  left: 20px;
}

.triangle-2 {
  width: 90px;
  height: 90px;
  bottom: 30px;
  right: 30px;
}

/* LEFT CONTENT */
.left-panel-content {
  position: relative;
  z-index: 2;
}

.left-panel-content h3 {
  color: #ffffff;
  font-size: 48px;
  line-height: 1;
  font-weight: 800;
  margin-bottom: 30px;
}

/* YELLOW LINE */
.yellow-line {
  width: 110px;
  height: 6px;
  border-radius: 10px;
  background: #f7cb14;
  display: block;
}

/* =========================
   RIGHT PANEL
========================= */
.showcase-right-panel {
  flex: 1;
  background: linear-gradient(
    135deg,
    var(--primary-blue),
    #1b255f
  );
  padding: 40px 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* RIGHT SHAPE */
.showcase-right-panel::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  top: -220px;
  right: -180px;
}

/* =========================
   SLIDER
========================= */
.logo-slider-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 3;
}

/* TRACK */
.logo-slider-track {
  display: flex;
  align-items: center;
  gap: 22px;
  width: max-content;
  animation: logoSlide 22s linear infinite;
}

/* ANIMATION */
@keyframes logoSlide {

  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }

}

/* =========================
   LOGO CARD
========================= */
.company-logo-box {
  width: 170px;
  height: 110px;
  border-radius: 20px;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 22px;
  flex-shrink: 0;
  transition: 0.4s ease;
}

/* HOVER */
.company-logo-box:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.15);
}

/* IMAGE */
.company-logo-box img {
  max-width: 100%;
  max-height: 50px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;

  /* REMOVE THIS */
  filter: none;
}
.small-heading{
	color:#fff;
}
/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1199px) {

  .company-top-left h2 {
    font-size: 50px;
  }

  .left-panel-content h3 {
    font-size: 40px;
  }

}

@media (max-width: 991px) {

  .company-top-area {
    grid-template-columns: 1fr;
    padding: 60px 40px 160px;
  }

  .company-showcase-area {
    width: 95%;
    flex-direction: column;
  }

  .showcase-left-panel {
    width: 100%;
  }

}

@media (max-width: 767px) {

  .company-top-left h2 {
    font-size: 40px;
  }

  .showcase-left-panel {
    padding: 45px 30px;
  }

  .left-panel-content h3 {
    font-size: 32px;
  }

  .company-logo-box {
    width: 140px;
    height: 95px;
  }

  .company-logo-box img {
    max-height: 40px;
  }

}

@media (max-width: 575px) {

  .mnr-company-section {
    padding: 70px 0;
  }

  .company-top-area {
    padding: 50px 25px 140px;
    border-radius: 28px;
  }

  .company-top-left h2 {
    font-size: 34px;
  }

  .company-top-right p {
    font-size: 15px;
  }

  .left-panel-content h3 {
    font-size: 26px;
  }

  .showcase-right-panel {
    padding: 30px 0;
  }

}


