*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins', sans-serif;
}

body{
    background:#fff;
}

/* HEADER */
.header{
    /*padding:25px 80px;*/
    
     padding:0px 80px;
}

.logo{
    /*width:308px;*/
    /*height:66px;*/
    
    
     width: 308px;
    height: 140px;
}


/* HERO SECTION */
.hero{
    position:relative;
    height:615px;
    margin:0px 0px 0px 5px;
    background:url('img/banner4.png') no-repeat center;
    background-size:cover;
    border-top-left-radius:350px;
    border-bottom-left-radius:350px;
    display:flex;
    align-items:center;
    padding-left:120px;
}

/* LEFT CONTENT */
.left-content{
    color:#fff;
    max-width:520px;
}

.top-text{
    margin-bottom:20px;
    font-weight:500;
    font-size:24px;
    line-height:30px;
}

.left-content h1{
    font-weight:700;
    font-size:58px;
    line-height:60px;
}

/* UNDERLINE IMAGE */
.underline-img{
    width:170px;   /* Adjust if needed */
    margin:20px 0;
    display:block;
}

/* BOTTOM TEXT */
.bottom-text{
    font-weight:500;
    font-size:24px;
    line-height:30px;
}

/* FORM */
.form-box {
    position: absolute;
    right: 100px;
    top: 60px;
    width: 360px;
    background: #fff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 4.85px 0px 9.71px 0px #00000014;
    border: 0.6px solid #000000;
    z-index: 10;   /* ✅ Added */
}
.form-box h3 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 32px;
    font-weight: 600;
    color: #30343F;
    font-family: 'Montserrat', sans-serif;
}

.form-box input{
    width:100%;
    padding:13px;
    margin-bottom:14px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:14px;
}
.form-box select {
    width: 100%;
    padding: 13px;
    margin-bottom: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
}
.form-box input::placeholder {
    color: #777;
    opacity: 1;
}

.form-box select {
    color: #777;
}

.form-box select:valid {
    color: #000;
}

.form-box button{
    width:100%;
    padding:14px;
    background:#1e2a44;
    color:#fff;
    border:none;
    border-radius:8px;
    font-weight:600;
    cursor:pointer;
    font-size:15px;
}

.form-box button:hover{
    background:#111827;
}

/* GIRL IMAGE OVERLAP */
.girl-wrapper{
    text-align:center;
    margin-top:-460px;
    position:relative;
    z-index:5;
    pointer-events:none;   /* ✅ Added */
}

.girl-wrapper img{
    width:606px;
    height:662px;
}

@media(max-width:1450px){
.hero{
    position:relative;
    height:500px;
    padding-left:120px;
}
   .form-box {
        position: absolute;
        right: 70px;
        top: 40px;
        width: 320px;
        background: #fff;
        padding: 20px;
        border-radius: 15px;
        box-shadow: 4.85px 0px 9.71px 0px #00000014;
        border: 0.6px solid #000000;
    }
.girl-wrapper img {
    width: 550px;
    height: 600px;
}
.form-box input {
    width: 100%;
    padding: 10px;
    margin-bottom: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
}
.girl-wrapper {
    text-align: center;
    margin-top: -385px;
    position: relative;
    z-index: 5;
}
.left-content h1 {
    font-weight: 700;
    font-size: 52px;
    line-height: 52px;
}
.top-text {
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 22px;
    line-height: 28px;
}
.bottom-text {
    font-weight: 500;
    font-size: 22px;
    line-height: 28px;
}
.form-box h3 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 26px;
    font-weight: 600;
    color: #30343F;
    font-family: 'Montserrat', sans-serif;
}
}

/* RESPONSIVE */
@media(max-width:992px){

.hero{
    flex-direction:column;
    height:auto;
    padding:60px 40px;
    border-radius:40px;
}

.form-box{
    position:relative;
    right:auto;
    top:auto;
    margin-top:30px;
    width:100%;
}

.girl-wrapper{
    margin-top:-100px;
}

.girl-wrapper img{
    width:320px;
    height:auto;
}

}



@media (max-width:768px){

/* HEADER */
.header{
    padding: 10px 0px;
}

.logo{
    width:220px;
    height:auto;
}

/* HERO SECTION */
.hero{
    position:relative;
    background:#D11919;     /* Red background */
    background-image:none;  /* Remove banner image */
    height:auto;
    margin:0;
    border-radius:0;        /* Remove radius */
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    padding: 60px 10px;
    text-align:center;
}

/* LEFT CONTENT */
.left-content{
    max-width:100%;
    color:#fff;
}

.top-text{
   font-size: 22px;
        line-height: 28px;
        margin-bottom: 20px;
}

.left-content h1{
    font-size:48px;
    line-height:52px;
}

.underline-img{
    width:150px;
    margin:20px auto;
}

.bottom-text{
    font-size: 22px;
        line-height: 28px;
}

/* FORM */
.form-box{
    position:relative;
    width:100%;
    max-width:520px;
    margin:40px auto 0;
    padding:30px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.form-box h3{
    font-size:26px;
    margin-bottom:25px;
}

.form-box input{
    padding:14px;
    font-size:14px;
}

.form-box button{
    padding:14px;
    font-size:15px;
}

/* HIDE GIRL IMAGE */
.girl-wrapper{
    display:none;
}

}








/*partner css*/




/* =======================
   SECTION
======================= */
.partner-section{
    padding:30px 80px 70px;
    text-align:center;
}

.partner-section h2 {
    color: #1F2A44;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 35px;
    line-height: 40px;
    letter-spacing: 0px;
}

.title-underline {
    width: 120px;
    margin: 15px auto 50px;
    display: block;
    height: 15px;
    opacity: 1;
}

/* =======================
   SLIDER WRAPPER
======================= */
.slider{
    width:100%;
    overflow:hidden; /* important - cut prevent */
}

/* =======================
   SLIDE TRACK
======================= */
.slide-track{
    display:flex;
    gap:20px; /* gap between logos */
    transition:transform 0.6s ease;
}

/* =======================
   LOGO CARD
======================= */
.logo-card{
    flex:0 0 calc((100% - 80px) / 5);
    /* 4 gaps Ã— 20px = 80px */

    height:90px;
    padding:15px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#fff;
    border-radius:10px;
    border:1px solid #e6e6e6;
    box-shadow:0 4px 12px rgba(0,0,0,0.05);
}


.logo-card img{
    width:200px;
    height:90px;
    object-fit:contain;
    transition: transform 0.3s ease;
}

.logo-card:hover img{
    transform: scale(1.1);
}



@media(max-width:1450px){
.logo-card {
    padding: 10px;
}
.partner-section h2 {
    font-size: 32px;
    line-height: 40px;
}

}
/* =======================
   RESPONSIVE
======================= */

@media(max-width:992px){
    .logo-card{
        flex:0 0 calc((100% - 40px) / 3);
    }
}

@media (max-width:768px){

.partner-section{
    padding:50px 30px;
}

.partner-section h2{
    font-size:26px;
    line-height:32px;
}

.title-underline{
    width:90px;
    margin:15px auto 35px;
}

/* ðŸ”¥ Only 1 logo visible */
.logo-card{
    flex:0 0 100%;
    height:90px;
    padding:15px;
}

.logo-card img{
    width:180px;
    height:80px;
    object-fit:contain;
}

}





 /*explore section css*/
 
/* SECTION */
.explore-section{
  /*padding:60px 0px;*/
  background:#FDFAEA;  
  border-radius:85px;
}

/* CONTAINER */
.explore-container{
  padding:80px 90px;
  margin:0 auto;
}

/* HEADING */
.explore-container h2 {
  color: #1F2A44;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 35px;
  line-height: 40px;
  text-align: center;
}

.underline {
  width: 140px;
  margin: 15px auto 50px;
  display: block;
  height: 15px;
}

/* TABS */
.tabs{
  text-align:center;
  margin-bottom:70px;
  margin-top: 40px;
}

.tab {
  display: inline-block;
  background: #1F2A44;
  color: #fff;
  padding: 10px 5px;
  border-radius: 8px;
  margin: 0 6px;
  position: relative;
  width: 200px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  text-align:center;
  cursor:pointer;
  transition:0.3s;
}

.tab.active{
  background:#D01919;
  padding: 15px 5px;
}

.tab.active::after{
  content:"";
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  bottom:-40px;
  width:40px;
  height:40px;
  background:url('img/active-btn-icon.png') no-repeat center;
  background-size:contain;
}

/* ACCREDITATION */
.accreditation-row {
  display: flex;
  justify-content: center;
  text-align: center;
  margin-bottom: 50px;
  gap: 80px;
}

.badge{
  flex:0 0 220px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 10px;
}

/*.badge:hover{*/
/*  transform: translateY(-8px);*/
/*  box-shadow: 0 12px 25px rgba(0,0,0,0.12);*/
/*   padding: 10px;*/
/*}*/

.badge img {
  /*width: 200px;*/
  /*height: auto;*/
  
  width: 220px;
    height: 180px;
  transition: transform 0.3s ease;
}

.badge:hover img{
  transform: scale(1.05);
  /*padding: 10px;*/
}

.badge p {
  margin-top: 5px;
  color: #171515;
  max-width: 210px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
}

/* BOTTOM SECTION */
.bottom-content{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:70px;
  margin-top:40px;
}

.left-image{
  flex:0 0 500px;
}

.girl{
  width:500px;
  height:auto;
}

.right-content{
  flex:1;
}

.description {
  color: #222324;
  margin-bottom: 60px;
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  line-height: 28px;
}

/* FEATURES GRID */
.feature-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:28px 40px;
  max-width:750px;
}

.feature{
  display:flex;
  align-items:center;
  gap:14px;
}

.feature img {
  width: 60px;
  height: 60px;
  background: #1F2A44;
  padding: 10px;
  border-radius: 8px;
}
.feature img:hover {
    background: #d01919;
}

.feature span {
  color: #212121;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  text-align: left;
  text-transform: capitalize;
}
@media (max-width:1450px){
    .explore-container h2 {
  font-size: 32px;
  line-height: 40px;
}
    .tab {
    display: inline-block;
    background: #1F2A44;
    color: #fff;
    padding: 10px 5px;
    border-radius: 8px;
    margin: 0 6px;
    position: relative;
    width: 160px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
}
   .accreditation-row {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-bottom: 50px;
    gap: 50px;
} 
.description {
    color: #222324;
    margin-bottom: 60px;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    line-height: 26px;
}
    
.feature-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:28px 10px;

}
.feature span {
    font-size: 16px;
    line-height: 18px;
}



}

@media (max-width:1320px){
.feature-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:28px 10px;

}
}
@media (max-width:1250px){
    .tab {
    display: inline-block;
    background: #1F2A44;
    color: #fff;
    padding: 10px 5px;
    border-radius: 8px;
    margin: 0 6px;
    position: relative;
    width: 150px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
}
   .accreditation-row {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-bottom: 50px;
    gap: 50px;
} 
.description {
    color: #222324;
    margin-bottom: 60px;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    line-height: 24px;
}
    
.feature-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:28px 10px;
  max-width:750px;
}

.badge{
  flex:0 0 200px;
}


}



/* =================================================
   RESPONSIVE (Design Same, Just Adjustments)
================================================= */

/* Tablet */
@media (max-width:1024px){

  .explore-container{
    padding:60px 40px;
  }

  .bottom-content{
    flex-direction:column;
    text-align:center;
  }

  .left-image{
    flex:unset;
  }

  .girl{
    width:400px;
  }

  .feature-grid{
    grid-template-columns:repeat(2, 1fr);
    margin:0 auto;
    gap:28px 10px;
  }

  .accreditation-row{
    flex-wrap:wrap;
    gap:40px;
  }
}

/* Mobile */
/* Mobile */
@media (max-width:768px){

  .explore-section{
    border-radius:30px;
  }

  .explore-container{
    padding:40px 20px;
  }

  .explore-container h2{
    font-size:24px;
    line-height:30px;
  }

  /* 2 buttons per row */
  .tabs{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:10px;
  }

  .tab{
    width:48%;
    font-size:16px;
    margin:0;
    margin-top:30px;
    padding:12px 5px; /* same padding for all */
  }

  /* âœ… FIX â€” active button ki extra padding remove */
  .tab.active{
    padding:12px 5px;
  }

  .girl{
    width:280px;
  }

  .description{
    font-size:16px;
    line-height:24px;
  }

  .feature-grid {
        grid-template-columns: repeat(2, 1fr);
        margin: 0 auto;
        gap: 10px;
    }
    .feature span {
  color: #212121;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  text-align: left;
}
.bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 40px;
}
}


/*.accreditation-row {*/
/*  display: flex;*/
/*  justify-content: flex-start;*/
/*  gap: 80px;*/
/*  overflow-x: hidden;*/
/*  flex-wrap: nowrap;*/
/*  width: 1120px;  */
/*  margin: auto;*/
/*  scroll-behavior: smooth;*/
/*}*/

/*.badge {*/
/*  flex: 0 0 220px;*/
/*  text-align: center;*/
/*}*/

@media (max-width: 768px) {
  .accreditation-row {
  /*  width: 100% !important;*/
    /*justify-content: center; */
  /*  padding: 0 20px;*/
  /*  box-sizing: border-box;*/
  /*}*/

  /*.badge {*/
  /*  flex: 0 0 220px;*/
  /*  width: 220px;*/
  /*}*/
}





/*programs section css*/

.programs-section {
  padding: 0 0 80px;
  text-align: center;
  overflow-x: hidden;
}

/* Title */
.section-title {
  letter-spacing: 0px;
  color: #1F2A44;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 35px;
  line-height: 40px;
}

/* Wrapper */
.programs-wrapper {
  position: relative;
  margin: 70px auto;
  width: 1220px; /* desktop exact 3 cards */
}

/* Viewport */
.programs-viewport {
  overflow: hidden;
  width: 100%;
}

/* Track */
.programs-cards {
  display: flex;
  gap: 40px;
  transition: transform 0.6s ease;
}

/* Card */
.program-card {
  background: #fff;
  width: 380px;
  flex: 0 0 380px;
  padding: 50px 35px;
  border-radius: 22px;
  border: 1px solid #eee;
  text-align: left;
}
.program-card:hover {
    /*background: #fdfaea;*/
    border: 1px solid #000;
}

/* Heading */
.program-card h3 {
  margin-bottom: 10px;
  color: #D01919;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 36px;
  text-align: center;
}
.program-card h3 span {
  font-weight: 800;
  font-size: 40px;
}

/* Duration */
.duration {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 35px;
  justify-content: center;
}
.duration img { width: 22px; }
.duration p { font-family: 'Poppins', sans-serif; font-size: 16px; }

/* Eligibility */
.eligibility p { font-family: 'Poppins', sans-serif; font-size: 14px; }
p.p_txt { font-weight: 500; font-size: 15px; }

/* Arrows */
.arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}
.arrow-left { left: -70px; border: 1px solid #001C54; color: #001C54; background: #fff; }
.arrow-right { right: -70px; background: #D01919; color: #fff; }

@media (max-width: 1450px){ 
.section-title {
  
  font-size: 32px;
  line-height: 40px;
}}

/* ---------------- Responsive ---------------- */

/* Medium screens <= 1400px */
@media (max-width: 1400px){ 
    .programs-wrapper{ width: 1100px; } 
    
    .program-card {
    background: #fff;
    width: 340px;
    flex: 0 0 340px;
    padding: 50px 35px;
    border-radius: 22px;
    border: 1px solid #eee;
    text-align: left;
}

}

/* Tablet <= 1200px */
@media (max-width: 1200px){
  .programs-wrapper{ width: 760px; }
  .arrow-left{ left: -50px; }
  .arrow-right{ right: -50px; }
}

/* Small Tablet <= 992px */
@media (max-width: 992px){
  .program-card{ width: 360px; flex: 0 0 360px; }
  .programs-wrapper{ width: 100%; max-width: 720px; }
  .arrow-left{ left: -40px; }
  .arrow-right{ right: -40px; }
}

/* Mobile <= 768px */
@media (max-width: 768px){

  .programs-wrapper{
    width: 100%;
    padding: 0 50px;   /* 🔥 Arrow ke liye space */
    box-sizing: border-box;
  }


h2.section-title {
    font-size: 24px;
    line-height: 30px;
}
.program-card h3 span {
    font-weight: 800;
    font-size: 30px;
}
.eligibility p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    text-align: center;
}
  .programs-viewport{
    position: relative;
  }

  .programs-cards{
    gap: 0 !important;
  }

  .program-card{
    flex: 0 0 100%;
    width: 100%;
    padding: 40px 20px;
  }

  /* Arrow styling */
  .arrow{
    width: 38px;
    height: 38px;
    font-size: 26px;
    top: 50%;
    transform: translateY(-50%);
  }

  .arrow-left{
    left: 10px;
  }

  .arrow-right{
    right: 10px;
  }

}


/*.badge.badge_js img {*/
/*    width: 120px;*/
/*    height: 100px;*/
/*}*/





.mySlider{
  background:#e9e2d3;
  padding:40px 0;
}

.rank-box{
  text-align:center;
}

.rank-box img{
  width:120px;
  margin-bottom:15px;
}

.rank-box p{
  font-size:16px;
  color:#333;
  max-width:220px;
  margin:auto;
}




/*about css*/




.about-section {
 
  padding: 80px 0;
}

.about-section .container {
  width: 80%;
  margin: auto;
}

.about-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LEFT SIDE */
.about-left {
  width: 55%;
}

.about-section h2 {
    color: #1F2A44;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-style: unset;
    font-size: 35px;
    line-height: 40px;
    letter-spacing: 0px;
}

.about-section .underline {
  margin: 12px 0 25px;
  width: 120px;
}

.about-left p {
    color: #222324;
    margin-bottom: 35px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 25px;
    line-height: 30px;
    letter-spacing: 0px;
}

/* STAT BOXES */
.stats-boxes {
  display: flex;
  gap: 20px;
}

.stat {
    padding: 10px;
    text-align: center;
    width: 225px;
    opacity: 1;
    border-radius: 13px;
}

.stat h3 {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 35px;
    line-height: 40px;
    letter-spacing: 0px;
    text-align: center;
}

.stat span {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0px;
}

.dark {
    background: #1F2A44;
    color: #fff;
}
.dark:hover {
    background: #d01919;
}

.red {
   background: #1F2A44;
  color: #fff;
}
.red:hover {
    background: #d01919;
}

/* RIGHT SIDE */
.about-right {
  width: 40%;
  text-align: right;
}

.about-right img {
  max-width: 100%;
  height: auto;
}
@media (max-width: 1450px) {
.about-section h2 {
    font-size: 32px;
    line-height: 40px;
    letter-spacing: 0px;
}
.about-left p {
    font-size: 22px;
    line-height: 26px;
    letter-spacing: 0px;
}

}
@media (max-width: 768px) {

  .about-section {
    padding: 50px 10px;
  }

  .about-section .container {
    width: 100%;
  }

  .about-wrapper {
    flex-direction: column;
    text-align: center;
  }

  /* LEFT SIDE */
  .about-left {
    width: 100%;
  }

      .about-section h2 {
        font-size: 24px;
        line-height: 30px;
        text-align: center;
    }

  .about-section .underline {
    margin: 10px auto 20px;
  }

  .about-left p {
    font-size: 16px;
    line-height: 24px;
  }

  /* STAT BOXES */
  .stats-boxes {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .stat {
    width: 45%;
        padding: 10px 8px;
  }

  .stat h3 {
    font-size: 24px;
    line-height: 28px;
  }

  .stat span {
    font-size: 14px;
  }

  /* RIGHT SIDE */
  .about-right {
    width: 100%;
    margin-top: 40px;
    text-align: center;
  }

  .about-right img {
    width: 80%;
  }
}



/*presence section css*/

.presence-section {
    padding: 0px 0px 80px;
}

.presence-section .container {
  width: 80%;
  margin: auto;
  text-align: center;
}

.presence-img {
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
    .presence-section {
    padding: 0px 10px 30px;
}
.presence-section .container {
  width: 100%;
  margin: auto;
  text-align: center;
}

    
}



/*footer css*/


.main-footer {
  width: 100%;
  /*height: 50px;*/
  background-color: #1F2A44;
  padding: 16px 20px;
    font-family: 'Poppins', sans-serif;
}
.footer-inner {
    width: 90%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-left {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
}
.footer-right a {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    text-decoration: none;
}




/*Privacy-Policy CSS*/


section.hero.privacy_hero {
    justify-content: center;
}
h2.privacy_title {
    font-size: 40px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}


.privacy-policy {
    position: relative;
}

.hero-overlay.privacy-policy {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg.privacy-policy {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.privacy-policy div, div.privacy-policy {
    color: #000;
    font-size: 48px;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    text-align: center;
}



section.privacy-section-unique .container {
    width: 100%;
    max-width: 100%;
    padding: 5rem 10rem 2.5rem;

}
section.privacy-section-unique p {
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: 30px;
    color: #212529;
    margin: 0.5rem 0rem;
}
section.privacy-section-unique h1.title {
    font-size: 25px;
    color: #212529;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}
section.privacy-section-unique a {
    color: blue;
}
.privacy-bullets {
margin-left: 25px;
list-style-type: disc;
}
.privacy-bullets li {
    margin-bottom: 10px;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: 30px;
    color: #212529;
    margin-left: 10px;
}



@media (max-width: 1450px) {
    section.privacy-section-unique .container {
        padding: 4rem 3rem 2rem;
    }
}


@media (max-width: 768px) {
    section.privacy-section-unique .container {
        padding: 2.5rem 1.5rem 2rem;
    }
    .world_class{display:none;}
}

@media (max-width: 480px) {
    section.privacy-section-unique .container {
        padding: 2rem 1rem ;
    }
}