
    *{
      margin:0;
      padding:0;
      box-sizing:border-box;
    }

    body{
      font-family:'Poppins', sans-serif;
      overflow-x:hidden;
    }

    :root{
      --blue:#063b8f;
      --yellow:#d90d0f;
      --white:#fff;
    }

    /* =========================
       NAVBAR
    ========================== */

    .main-navbar{
      position:fixed;
      top:0;
      left:0;
      width:100%;
      z-index:999;
      padding:18px 0;
      transition:.4s ease;
    }

    .main-navbar.sticky{
      background:rgba(4, 32, 76, 0.95);
      backdrop-filter:blur(12px);
      box-shadow:0 10px 30px rgba(0,0,0,0.15);
      padding:12px 0;
    }

    /* LOGO */

    .navbar-brand{
      display:flex;
      align-items:center;
      gap:14px;
    }

    .navbar-brand img{
      width:62px;
      height:62px;
      object-fit:contain;
      border-radius:50%;
      background:#fff;
      padding:3px;
    }

    .brand-text{
      line-height:1.1;
    }

    .brand-text h3{
      color:#fff;
      font-size:26px;
      font-weight:800;
      margin:0;
    }

    .brand-text span{
      color:#d7e5ff;
      font-size:11px;
      letter-spacing:2px;
      font-weight:500;
    }

    /* MENU */

    .navbar-nav .nav-link{
      color:#fff;
      font-size:16px;
      font-weight:500;
      margin:0 14px;
      position:relative;
      transition:.3s;
    }

    .navbar-nav .nav-link:hover{
      color:var(--yellow);
    }

    .navbar-nav .nav-link::after{
      content:'';
      position:absolute;
      left:0;
      bottom:-6px;
      width:0%;
      height:2px;
      background:var(--yellow);
      transition:.4s;
    }

    .navbar-nav .nav-link:hover::after{
      width:100%;
    }

    .dropdown-icon{
      font-size:12px;
      margin-left:5px;
    }

    /* RIGHT SIDE */

    .right-nav{
      display:flex;
      align-items:center;
      gap:22px;
    }

    .nav-icon{
      color:#fff;
      font-size:18px;
      cursor:pointer;
      transition:.3s;
    }

    .nav-icon:hover{
      color:var(--yellow);
    }

    .divider{
      width:1px;
      height:20px;
      background:rgba(255,255,255,0.4);
    }

    .apply-btn{
      background:var(--yellow);
      color:#000;
      text-decoration:none;
      padding:14px 32px;
      border-radius:50px;
      font-weight:600;
      transition:.4s;
      display:flex;
      align-items:center;
      gap:10px;
    }

    .apply-btn:hover{
      transform:translateY(-3px);
      background:#fff;
    }

    /* =========================
       HERO SECTION
    ========================== */

    .hero-section{
      width:100%;
      height:100vh;
      position:relative;
      overflow:hidden;
      background:#000;
    }

    /* BG IMAGE */

    .hero-bg{
      position:absolute;
      inset:0;
      width:100%;
      height:100%;
      object-fit:fill;
    }

    /* BLUE OVERLAY */

    .hero-overlay{
      position:absolute;
      inset:0;
      background:linear-gradient(
      to bottom,
      rgba(4, 60, 138, 0.486),
      rgba(4, 60, 138, 0.78),
      rgba(0,0,0,0.35)
      );
      z-index:1;
    }

    /* HUGE BLUR TEXT */

    .bg-text{
      position:absolute;
      top:90px;
      left:50%;
      transform:translateX(-50%);
      font-size:240px;
      font-weight:800;
      color:rgba(253, 254, 254, 0.288);
      letter-spacing:10px;
      z-index:2;
      user-select:none;
      filter:blur(2px);
      white-space:nowrap;
    }

    /* CONTENT */

    .hero-content{
      position:absolute;
      bottom:90px;
      left:90px;
      z-index:3;
      color:#fff;
      max-width:650px;
    }

    .welcome-text{
      display:flex;
      align-items:center;
      gap:10px;
      font-weight:600;
      margin-bottom:18px;
    }

    .welcome-text i{
      color:#fff;
    }

    .hero-content h1{
        font-family: Bitter, sans-serif;
font-size: 64px;
font-weight: 600;
line-height: 72px;
word-spacing: 0px;
      margin-bottom:25px;
    }

    /* PLAY BUTTON */

    .tour-box{
      position:absolute;
      right:90px;
      bottom:100px;
      z-index:3;
      text-align:center;
      color:#fff;
    }

    .play-btn{
      width:95px;
      height:95px;
      border-radius:50%;
      border:2px solid rgba(255,255,255,0.6);
      display:flex;
      align-items:center;
      justify-content:center;
      margin:auto auto 20px;
      backdrop-filter:blur(5px);
      cursor:pointer;
      transition:.4s;
      /* visibility: hidden; */
    }

    .play-btn:hover{
      transform:scale(1.08);
      background:rgba(255,255,255,0.15);
    }

    .play-btn i{
      font-size:28px;
      margin-left:5px;
    }

    .tour-box h4{
      font-weight:700;
      font-size:34px;
    }

    /* MOBILE */

    .navbar-toggler{
      border:none;
      box-shadow:none !important;
    }

    .navbar-toggler i{
      color:#fff;
      font-size:30px;
    }

    @media(max-width:1200px){

      .bg-text{
        font-size:170px;
      }

      .hero-content h1{
        font-size:58px;
      }

    }

    @media(max-width:991px){

      .main-navbar{
        background:rgba(4, 32, 76, 0.96);
      }

      .navbar-collapse{
        background:#04204c;
        margin-top:20px;
        padding:25px;
        border-radius:18px;
      }

      .navbar-nav{
        margin-bottom:20px;
      }

      .navbar-nav .nav-link{
        margin:12px 0;
      }

      .right-nav{
        flex-direction:column;
        align-items:flex-start;
      }

      .divider{
        display:none;
      }

      .bg-text{
        font-size:110px;
        top:160px;
      }

      .hero-content{
        left:25px;
        bottom:50px;
        max-width:90%;
      }

      .hero-content h1{
        font-size:42px;
      }

      .tour-box{
        right:20px;
        bottom:40px;
      }

      .play-btn{
        width:75px;
        height:75px;
      }

      .tour-box h4{
        font-size:20px;
      }

    }

    @media(max-width:576px){

      .navbar-brand img{
        width:52px;
        height:52px;
      }

      .brand-text h3{
        font-size:20px;
      }

      .bg-text{
        font-size:72px;
        top:190px;
      }

      .hero-content h1{
        font-size:34px;
      }

      .welcome-text{
        font-size:14px;
      }

    }




  /* =========================
     SECTION
  ========================== */

  .academics-section{
    position:relative;
    padding:120px 0;
    background:#f8f7f3;
    overflow:hidden;
  }

  /* SHAPES */

  .shape{
    position:absolute;
    opacity:.12;
    z-index:1;
  }

  .shape-left{
    width:45px;
    top:90px;
    left:80px;
  }

  .shape-right{
    width:100px;
    right:90px;
    top:300px;
  }

  /* TITLE */

  .section-title{
    margin-bottom:70px;
    position:relative;
    z-index:2;
  }

  .mini-title{
    color:#0B3AAE;
    font-size:15px;
    font-weight:600;
    margin-bottom:18px;
    line-height: 28px;
    text-align: center;
word-spacing: 0px;
    font-family: Inter, sans-serif



  }

  .mini-title i{
    margin-right:7px;
  }

  .section-title h2{
  
    color:#001b4e;
    margin:0;
    font-family: Bitter, sans-serif;
font-size: 48px;;
font-weight: 600;
line-height: 57.6px;
text-align: center;
word-spacing: 0px;
  }

  /* =========================
     PROGRAM CARDS
  ========================== */

  .program-row{
    margin-bottom:90px;
    position:relative;
    z-index:2;

  }

  .program-card{
    background:#fff;
    border-radius:18px;
    padding:35px 30px;
    position:relative;
    overflow:visible;
    transition:.4s;
    min-height:210px;
    z-index: -1;
    box-shadow:0 10px 30px rgba(0,0,0,0.04);
        /* border: 2px solid red; */
        display: flex;
        justify-content: space-between;
        gap: 20px;
  }

  .program-card:hover{
    transform:translateY(-10px);
  }

  .program-card::before{
    content:'';
    position:absolute;
    left:-15px;
    bottom:15px;
    width:80px;
    height:80px;
    z-index: -3;
    background:repeating-linear-gradient(
      45deg,
      #f3efe7,
      #f3efe7 8px,
      transparent 8px,
      transparent 16px
    );
    opacity:.8;
  }

  .program-icon{
    width:55px;
    height:55px;
    border-radius:14px;
    background:#f5f7ff;
    display:flex;
    align-items:center;
    justify-content:center;
    /* margin-bottom:20px; */
  }

  .program-icon i{
    font-size:30px;
    color:#001b4e;
  }

  .program-content h4{
  font-family: Bitter, sans-serif;
font-size: 24px;
font-weight: 600;
line-height: 33.6px;
word-spacing: 0px;
    color:#001b4e;
    /* margin-bottom:5px; */
  }

  .program-content p{
    color:#5f6573;
 font-family: Inter, sans-serif;
font-size: 13px;
line-height: 22px;
word-spacing: 0px;
  }

  .card-arrow{
    width:42px;
    height:42px;
    background:#d90d0f;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    bottom:-20px;
    font-size:14px;
    transition:.4s;
      z-index: 2878787;
  }

  .program-card:hover .card-arrow{
    background:#0B3AAE;
    color:#fff;
  
  }

  /* =========================
     ABOUT ROW
  ========================== */

  .about-row{
    position:relative;
    z-index:2;
  }

  /* IMAGES */

  .about-images{
    position:relative;
  }

  .about-img{
    width:100%;
    border-radius:28px;
    object-fit:fill;
    border:5px solid #fff;
    box-shadow:0 15px 35px rgba(0,0,0,0.08);
  }

  .top-img{
    height:260px;
    margin-bottom:20px;
  }

  .bottom-img{
    height:260px;
  }

  /* CONTENT */

  .about-content h2{
    font-family: Bitter, sans-serif;
font-size: 48px;
font-weight: 600;
line-height: 57.6px;;
word-spacing: 0px;
    /* font-size:64px; */
    /* line-height:1.1; */
    /* font-weight:800; */
    color:#001b4e;
    margin-bottom:25px;
  }

  .about-content p{
    font-size:16px;
    color:#666;
    line-height:1.9;
    margin-bottom:35px;
  }

  /* FEATURES */

  .feature-wrapper{
    display:flex;
    align-items:center;
    gap:35px;
    flex-wrap:wrap;
    margin-bottom:35px;
  }

  .features-list{
    flex:1;
  }

  .feature-item{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:18px;
    color:#001b4e;
    font-weight:500;
  }

  .feature-item i{
    color:#0B3AAE;
  }

  /* AWARD BOX */

  .award-box{
    background:#063b8f;
    color:#fff;
    padding:28px;
    border-radius:18px;
    display:flex;
    align-items:flex-start;
    gap:18px;
    max-width:330px;
  }

  .award-icon{
    font-size:42px;
    color:#d90d0f;
  }

  .award-box h4{
    font-size:30px;
    margin-bottom:8px;
    font-weight:700;
  }

  .award-box p{
    color:#dfe7ff;
    margin:0;
    line-height:1.7;
    font-size:14px;
  }

  /* BUTTON */

  .about-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#fff;
    color:#001b4e;
    padding:16px 30px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.4s;
    box-shadow:0 10px 25px rgba(0,0,0,0.06);
  }

  .about-btn:hover{
    background:#0B3AAE;
    color:#fff;
    transform:translateY(-4px);
  }

  /* =========================
     RESPONSIVE
  ========================== */

  @media(max-width:1200px){

    .section-title h2{
      font-size:46px;
    }

    .about-content h2{
      font-size:48px;
    }

  }

  @media(max-width:991px){

    .academics-section{
      padding:90px 0;
    }

    .program-row{
      margin-bottom:70px;
    }

    .about-images{
      margin-bottom:50px;
    }

    .about-content h2{
      font-size:42px;
    }

  }

  @media(max-width:768px){

    .section-title h2{
      font-size:38px;
    }

    .about-content h2{
      font-size:34px;
    }

    .program-content h4{
      font-size:24px;
    }

  }

  @media(max-width:576px){

    .section-title{
      margin-bottom:50px;
    }

    .section-title h2{
      font-size:30px;
    }

    .about-content h2{
      font-size:28px;
    }

    .top-img,
    .bottom-img{
      height:220px;
    }

    .award-box{
      max-width:100%;
    }

  }


  /* =========================
     SECTION 3
  ========================== */

  .inside-school-section{
    position:relative;
    background:#053b74;
    padding:110px 0;
    overflow:hidden;
    /* border-radius:18px; */
  }

  /* SHAPES */

  .left-shape{
    position:absolute;
    width:90px;
    height:150px;
    background:rgba(255,255,255,0.04);
    border-radius:0 0 100px 0;
    left:0;
    top:40px;
  }

  .right-shape{
    position:absolute;
    width:80px;
    right:40px;
    bottom:30px;
    opacity:.15;
  }

  /* =========================
     TITLE
  ========================== */

  .inside-title{
    margin-bottom:35px;
  }

  .inside-title span{
    color:#fff;
    font-size:14px;
    font-weight:600;
    display:block;
    margin-bottom:15px;
  }

  .inside-title h2{
    font-family: Bitter, sans-serif;
font-size: 48px;
font-weight: 600;
line-height: 57.6px;
word-spacing: 0px;
    color:#fff;

    margin:0;
  }

  /* =========================
     ADMISSION CARD
  ========================== */

  .admission-card{
    background:#001f5a;
    border-radius:18px;
    padding:35px 10px;
    margin-bottom:30px;
  }

  .admission-top{
    display:flex;
    position: absolute;
    top: 0;
    right: 0;
    justify-content:space-between;
    align-items:center;
    /* margin-bottom:25px; */
    /* border: 2px solid red ; */
  }

  .admission-logo{
    width:60px;
    height:60px;
    border-radius:50%;
    border:2px dashed rgba(255,255,255,0.5);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:35px;
  }

  .student-group{
    display:flex;
  }

  .student-group img{
    width:42px;
    height:42px;
    border-radius:50%;
    border:2px solid #fff;
    object-fit:fill;
    margin-left:-12px;
  }

  .admission-card h4{
    font-family: Inter, sans-serif;
font-size: 16px;
line-height: 28px;
word-spacing: 0px;
    color:#fff;
    /* border: 2px solid red; */
    margin-bottom:25px;
      position: relative;
    top: -10px;
    right: 0;
  }

  .apply-btn2{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#d90d0f;
    color:#000;
    padding:14px 28px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.4s;
    margin-top: 40px;
  }

  .apply-btn2:hover{
    background:#fff;
    transform:translateY(-4px);
  }

  /* =========================
     NOTICE BOARD
  ========================== */

  .notice-board{
    background:#fff;
    border-radius:18px;
    padding:30px;
  }

  .notice-board h3{
    color:#001b4e;
    font-size:34px;
    font-weight:700;
    margin-bottom:25px;
    display:flex;
    align-items:center;
    gap:10px;
  }

  .notice-board h3 span{
    width:10px;
    height:10px;
    background:#d90d0f;
    border-radius:50%;
  }

  .notice-item{
    border-bottom:1px solid #e7e7e7;
    padding-bottom:20px;
    margin-bottom:20px;
  }

  .notice-item h4{
    color:#001b4e;
    font-size:18px;
    line-height:1.6;
    font-weight:600;
    margin-bottom:12px;
  }

  .notice-date{
    color:#666;
    font-size:14px;
    margin-bottom:10px;
  }

  .notice-file{
    color:#777;
    font-size:13px;
  }

  /* =========================
     TABS
  ========================== */

  .inside-tabs{
    display:flex;
    gap:35px;
    margin-bottom:40px;
    flex-wrap:wrap;
  }

  .inside-tabs button{
    background:none;
    border:none;
    color:#fff;
    font-size:18px;
    font-weight:600;
    padding-bottom:14px;
    border-bottom:2px solid rgba(255,255,255,0.15);
    transition:.4s;
  }

  .inside-tabs button i{
    margin-right:8px;
  }

  .inside-tabs .active-tab{
    color:#d90d0f;
    border-color:#d90d0f;
  }

  /* =========================
     GRID
  ========================== */

  .inside-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
  }

  .inside-card{
    position:relative;
    border-radius:18px;
    overflow:hidden;
    height:260px;
    cursor:pointer;
  }

  .inside-card img{
    width:100%;
    height:100%;
    object-fit:fill;
    transition:.6s;
  }

  .inside-card:hover img{
    transform:scale(1.08);
  }

  .inside-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
      to top,
      rgba(0,0,0,0.75),
      rgba(0,0,0,0.1)
    );
  }

  .inside-card h3{
    position:absolute;
    left:25px;
    bottom:20px;
    color:#fff;
font-family: Bitter, sans-serif;
font-size: 22px;
font-weight: 600;
line-height: 30.8px;
word-spacing: 0px;
    z-index:2;
    margin:0;
  }

  /* =========================
     RESPONSIVE
  ========================== */

  @media(max-width:1200px){

    .inside-title h2{
      font-size:46px;
    }

    .inside-card h3{
      font-size:24px;
    }

  }

  @media(max-width:991px){

    .inside-school-section{
      padding:80px 0;
    }

    .inside-title{
      margin-bottom:30px;
    }

    .notice-board{
      margin-bottom:50px;
    }

    .inside-grid{
      margin-top:20px;
    }

  }

  @media(max-width:768px){

    .inside-grid{
      grid-template-columns:1fr;
    }

    .inside-title h2{
      font-size:38px;
    }

  }

  @media(max-width:576px){

    .inside-tabs{
      gap:18px;
    }

    .inside-tabs button{
      font-size:15px;
    }

    .inside-card{
      height:230px;
    }

    .inside-card h3{
      font-size:22px;
    }

    .inside-title h2{
      font-size:30px;
    }

  }




  
  /* =========================
     SECTION
  ========================== */

  .latest-events-section{
    position:relative;
    padding:110px 0;
    background:#f7f6f2;
    overflow:hidden;
  }

  /* SMALL CIRCLE */

  .event-shape-circle{
    position:absolute;
    top:20px;
    left:20px;
    width:42px;
    height:42px;
    border:1px solid rgba(0,0,0,0.15);
    border-radius:50%;
  }

  /* =========================
     HEADER
  ========================== */

  .events-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    margin-bottom:60px;
    gap:20px;
    flex-wrap:wrap;
  }

  .rs-theme-settings-area{
    display: none;
  }

  .section-heading span{
    display:inline-block;
    color:#001b4e;
    font-size:14px;
    font-weight:600;
    margin-bottom:18px;
  }

  .section-heading span i{
    margin-right:7px;
  }

  .section-heading h2{
    font-family: Bitter, sans-serif;
font-size: 48px;
font-weight: 600;
line-height: 57.6px;
word-spacing: 0px;
    color:#001b4e;
    margin:0;
  }

  /* BUTTON */

  .view-events-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    background:#fff;
    color:#001b4e;
    text-decoration:none;
    padding:18px 34px;
    border-radius:50px;
    font-weight:600;
    transition:.4s;
    box-shadow:0 10px 25px rgba(0,0,0,0.05);
  }

  .view-events-btn:hover{
    background:#0B3AAE;
    color:#fff;
    transform:translateY(-4px);
  }

  /* =========================
     EVENT CARD
  ========================== */

  .event-card{
    position:relative;
    background:#fff;
    border-radius:18px;
    padding:18px;
    display:flex;
    align-items:center;
    gap:20px;
    overflow:hidden;
    transition:.4s;
    min-height:180px;
  }

  .event-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,0.08);
  }

  /* IMAGE */

  .event-image{
    width:230px;
    min-width:230px;
    height:145px;
    border-radius:14px;
    overflow:hidden;
  }

  .event-image img{
    width:100%;
    height:100%;
    object-fit:fill;
    transition:.6s;
  }

  .event-card:hover img{
    transform:scale(1.08);
  }

  /* CONTENT */

  .event-content{
    flex:1;
    position:relative;
    z-index:2;
  }

  /* META */

  .event-meta{
    display:flex;
    align-items:center;
    gap:18px;
    flex-wrap:wrap;
    margin-bottom:18px;
  }

  .event-meta span{
    color:#666;
    font-size:14px;
    display:flex;
    align-items:center;
    gap:7px;
  }

  /* TITLE */

  .event-content h3{
    font-family: Bitter, sans-serif;
font-size: 22px;
font-weight: 600;
line-height: 30.8px;
word-spacing: 0px;
    color:#222;
    margin-bottom:20px;
  }

  /* LOCATION */

  .event-location{
    color:#666;
    font-size:15px;
    display:flex;
    align-items:center;
    gap:8px;
  }

  /* STRIPES */

  .event-stripes{
    position:absolute;
    right:-10px;
    bottom:12px;
    width:70px;
    height:70px;
    opacity:.6;
    background:repeating-linear-gradient(
      45deg,
      #efebe3,
      #efebe3 8px,
      transparent 8px,
      transparent 16px
    );
  }

  /* =========================
     RESPONSIVE
  ========================== */

  @media(max-width:1200px){

    .section-heading h2{
      font-size:48px;
    }

    .event-content h3{
      font-size:28px;
    }

  }

  @media(max-width:991px){

    .latest-events-section{
      padding:90px 0;
    }

    .events-header{
      margin-bottom:45px;
    }

  }

  @media(max-width:768px){

    .event-card{
      flex-direction:column;
      align-items:flex-start;
    }

    .event-image{
      width:100%;
      min-width:100%;
      height:230px;
    }

    .section-heading h2{
      font-size:38px;
    }

  }

  @media(max-width:576px){

    .latest-events-section{
      padding:70px 0;
    }

    .section-heading h2{
      font-size:30px;
    }

    .event-content h3{
      font-size:24px;
    }

    .event-meta{
      gap:10px;
    }

    .view-events-btn{
      width:100%;
      justify-content:center;
    }

  }

    /* =========================
     SECTION
  ========================== */

  .founder-video-section{
    position:relative;
    padding-top:40px;
    padding-bottom: 80px;
    overflow:hidden;
  }

  /* BACKGROUND */

  .founder-bg{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    height:440px;
    background:
    url('')
    center center/cover no-repeat;
    /* border: 2px solid red; */
  }

  /* OVERLAY */

  .founder-overlay{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    height:400px;
    background:rgba(0,0,0,0.45);
  }

  /* =========================
     MAIN BOX
  ========================== */

  .founder-box{
    position:relative;
    z-index:2;
    background:#063b74;
    border-radius:24px;
    padding:22px;
    overflow:hidden;
    /* border: 2px solid red; */
  }

  /* =========================
     IMAGE
  ========================== */

  .founder-image-wrapper{
    position:relative;
    border-radius:22px;
    overflow:hidden;
    height:330px;
  }

  .founder-image{
    width:100%;
    height:100%;
    object-fit:fill;
  }

  /* PLAY BUTTON */

  .video-play-btn{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:110px;
    height:110px;
    border-radius:50%;
    background:rgba(255,255,255,0.9);
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    transition:.4s;
    visibility: hidden;
  }

  .video-play-btn:hover{
    transform:translate(-50%,-50%) scale(1.08);
  }

  .video-play-btn i{
    color:#444;
    font-size:38px;
    margin-left:5px;
  }

  /* =========================
     CONTENT
  ========================== */

  .founder-content{
    padding:25px 35px;
    color:#fff;
  }

  /* QUOTE */

  .founder-quote{
    font-family: Inter, sans-serif;
font-size: 20px;
font-style: italic;
font-weight: 500;
line-height: 34px;
word-spacing: 0px;
   
    color:#e6edf8;
    /* font-style:italic; */
    margin-bottom:70px;
    /* font-weight:400; */
  }

  /* BOTTOM */

  .founder-bottom{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    flex-wrap:wrap;
  }

  /* INFO */

  .founder-info h3{
    font-size:43px;
    font-weight:700;
    margin-bottom:10px;
    color:#fff;
  }

  .founder-info span{
    color:#d6e6ff;
    font-size:18px;
    font-weight:500;
  }

  /* SIGNATURE */

  .signature-text{
    font-size:44px;
    color:rgba(255,255,255,0.7);
    font-family:cursive;
    white-space:nowrap;
  }

  /* BUTTON */

  .read-more-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    background:#d90d0f;
    color:#000;
    text-decoration:none;
    padding:18px 38px;
    border-radius:60px;
    font-size:20px;
    font-weight:600;
    transition:.4s;
  }

  .read-more-btn:hover{
    background:#fff;
    transform:translateY(-4px);
  }

  /* =========================
     RESPONSIVE
  ========================== */

  @media(max-width:1400px){

    .founder-info h3{
      font-size:38px;
    }

    .founder-quote{
      font-size:22px;
    }

  }

  @media(max-width:991px){

    .founder-video-section{
      padding-top:0;
    }

    .founder-box{
      padding:18px;
    }

    .founder-image-wrapper{
      height:320px;
      margin-bottom:30px;
    }

    .founder-content{
      padding:10px;
    }

    .founder-quote{
      margin-bottom:40px;
    }

  }

  @media(max-width:768px){

    .founder-info h3{
      font-size:30px;
    }

    .founder-quote{
      font-size:19px;
      line-height:1.8;
    }

    .signature-text{
      font-size:32px;
    }

  }

  @media(max-width:576px){

    .founder-box{
      border-radius:18px;
    }

    .founder-image-wrapper{
      height:260px;
      border-radius:18px;
    }

    .video-play-btn{
      width:85px;
      height:85px;
    }

    .video-play-btn i{
      font-size:28px;
    }

    .founder-quote{
      font-size:17px;
      margin-bottom:30px;
    }

    .founder-info h3{
      font-size:24px;
    }

    .founder-info span{
      font-size:16px;
    }

    .signature-text{
      font-size:26px;
    }

    .read-more-btn{
      width:100%;
      justify-content:center;
      padding:16px 25px;
      font-size:18px;
    }

  }


    /* =========================
     SECTION
  ========================== */

  .campus-life-section{
    padding:110px 0;
    background:#f7f6f2;
    overflow:hidden;
    position:relative;
  }

  /* =========================
     TOP AREA
  ========================== */

  .campus-top{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:60px;
    margin-bottom:70px;
    flex-wrap:wrap;
  }

  /* LEFT */

  .campus-heading{
    flex:1;
    min-width:300px;
  }

  .campus-heading span{
    display:inline-block;
    color:#001b4e;
    font-size:14px;
    font-weight:600;
    margin-bottom:18px;
  }

  .campus-heading span i{
    margin-right:7px;
  }

  .campus-heading h2{
    font-family: Bitter, sans-serif;
font-size: 48px;
font-weight: 600;
line-height: 57.6px;
word-spacing: 0px;
    /* font-size:72px; */
    /* line-height:1.08; */
    color:#001b4e;
    /* font-weight:800; */
    margin:0;
    max-width:800px;
  }

  /* RIGHT */

  .campus-description{
    width:420px;
    position:relative;
    padding-left:22px;
    margin-top:25px;
  }

  .campus-description::before{
    content:'';
    position:absolute;
    left:0;
    top:6px;
    width:3px;
    height:80px;
    background:#d90d0f;
  }

  .campus-description p{
    font-family: Inter, sans-serif;
font-size: 16px;
line-height: 28px;
word-spacing: 0px;
    color:#666;
    /* font-size:18px; */
    /* line-height:1.9; */
    margin:0;
  }

  /* =========================
     SLIDER
  ========================== */

  .campus-slider{
    overflow:visible;
  }

  .campus-slider .swiper-slide{
    width:420px;
  }

  /* CARD */

  .campus-card{
    position:relative;
    border-radius:60px;
    overflow:hidden;
    height:340px;
    background:#fff;
    padding:6px;
    /* border: 2px solid red; */
  }

  .campus-card img{
    width:100%;
    height:100%;
    object-fit:fill;
    border-radius:50px;
    transition:1s;
  }

  .campus-card:hover img{
    transform:scale(1.08);
  }

  /* =========================
     RESPONSIVE
  ========================== */

  @media(max-width:1400px){

    .campus-heading h2{
      font-size:58px;
    }

  }

  @media(max-width:1200px){

    .campus-heading h2{
      font-size:48px;
    }

    .campus-slider .swiper-slide{
      width:360px;
    }

    .campus-card{
      height:270px;
    }

  }

  @media(max-width:991px){

    .campus-life-section{
      padding:90px 0;
    }

    .campus-top{
      gap:30px;
      margin-bottom:50px;
    }

    .campus-description{
      width:100%;
      margin-top:0;
    }

  }

  @media(max-width:768px){

    .campus-heading h2{
      font-size:38px;
    }

    .campus-slider .swiper-slide{
      width:300px;
    }

    .campus-card{
      height:250px;
      border-radius:40px;
    }

    .campus-card img{
      border-radius:32px;
    }

  }

  @media(max-width:576px){

    .campus-life-section{
      padding:70px 0;
    }

    .campus-heading h2{
      font-size:30px;
    }

    .campus-description p{
      font-size:16px;
    }

    .campus-slider .swiper-slide{
      width:260px;
    }

    .campus-card{
      height:230px;
      border-radius:30px;
      padding:8px;
    }

    .campus-card img{
      border-radius:24px;
    }

  }

  
  /* =========================
     SECTION
  ========================== */

  .teachers-section{
    padding:110px 0;
    background:#f7f6f2;
    overflow:hidden;
  }

  /* =========================
     TOP AREA
  ========================== */

  .teachers-top{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:20px;
    flex-wrap:wrap;
    margin-bottom:60px;
  }

  /* LEFT */

  .teachers-heading span{
    display:inline-block;
    color:#001b4e;
    font-size:14px;
    font-weight:600;
    margin-bottom:18px;
  }

  .teachers-heading span i{
    margin-right:7px;
  }

  .teachers-heading h2{
    font-family: Bitter, sans-serif;
font-size: 48px;
font-weight: 600;
line-height: 57.6px;
word-spacing: 0px;
    /* font-size:72px; */
    /* line-height:1.1; */
    color:#001b4e;
    /* font-weight:800; */
    margin:0;
  }

  /* BUTTON */

  .teachers-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    background:#fff;
    color:#001b4e;
    text-decoration:none;
    padding:20px 38px;
    border-radius:60px;
    font-size:18px;
    font-weight:600;
    transition:.4s;
    box-shadow:0 10px 25px rgba(0,0,0,0.04);
  }

  .teachers-btn:hover{
    background:#0B3AAE;
    color:#fff;
    /* transform:translateY(-4px); */
  }

  /* =========================
     SLIDER
  ========================== */

  .teachersSlider{
    padding-bottom:70px;
  }

  /* CARD */

  .teacher-card{
    background:#ffffff27;
    border-radius:20px;
    padding:35px 35px 40px;
    text-align:center;
    transition:.4s;
    border:1px solid rgba(0, 0, 0, 0.603);
  }

  .teacher-card:hover{
    /* transform:translateY(-10px); */
    box-shadow:0 20px 40px rgba(0,0,0,0.08);
  }

  /* IMAGE WRAPPER */

  .teacher-image-wrapper{
    position:relative;
    width:100%;
    max-width:240px;
    height:240px;
    margin:0 auto 35px;
    border-radius:50%;
    overflow:hidden;
  }

  .teacher-image-wrapper img{
    width:100%;
    height:100%;
    object-fit:fill;
    transition:1s;
  }

  .teacher-card:hover img{
    transform:scale(1.08);
  }

  /* =========================
     SHARE
  ========================== */

  .teacher-share{
    position:absolute;
    left:50%;
    bottom:-18px;
    transform:translateX(-50%);
    display:flex;
    flex-direction:column;
    align-items:center;
  }

  /* SOCIALS */

  .teacher-socials{
    display:flex;
    flex-direction:column;
    gap:12px;
    margin-bottom:14px;
    opacity:0;
    visibility:hidden;
    transform:translateY(20px);
    transition:.4s;
  }

  .teacher-card:hover .teacher-socials{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
  }

  .teacher-socials a{
    width:50px;
    height:50px;
    border-radius:50%;
    background:#fff;
    color:#111;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    box-shadow:0 10px 20px rgba(0,0,0,0.08);
    transition:.4s;
  }

  .teacher-socials a:hover{
    background:#0B3AAE;
    color:#fff;
  }

  /* MAIN BUTTON */

  .share-toggle{
    width:54px;
    height:54px;
    border:none;
    border-radius:50%;
    background:#d90d0f;
    color:#000;
    font-size:18px;
    transition:.4s;
  }

  .teacher-card:hover .share-toggle{
    transform:rotate(180deg);
  }

  /* CONTENT */

  .teacher-content h3{
    font-family: Bitter, sans-serif;
font-size: 22px;
font-weight: 600;;
letter-spacing: 0.22px;
line-height: 30.8px;
text-align: center;
word-spacing: 0px;
    /* font-size:42px; */
    color:#111;
    /* font-weight:700; */
    margin-bottom:12px;
  }

  .teacher-content p{
    color:#666;
    font-size:18px;
    margin:0;
  }

  /* =========================
     PAGINATION
  ========================== */

  .teachersSlider .swiper-pagination{
    bottom:0;
  }

  .teachersSlider .swiper-pagination-bullet{
    width:12px;
    height:12px;
    background:#d90d0f;
    opacity:1;
  }

  .teachersSlider .swiper-pagination-bullet-active{
    background:#0B3AAE;
    width:28px;
    border-radius:20px;
  }

  /* =========================
     RESPONSIVE
  ========================== */

  @media(max-width:1400px){

    .teachers-heading h2{
      font-size:58px;
    }

    .teacher-content h3{
      font-size:34px;
    }

  }

  @media(max-width:1200px){

    .teachers-heading h2{
      font-size:48px;
    }

    .teacher-image-wrapper{
      height:280px;
      max-width:280px;
    }

  }

  @media(max-width:991px){

    .teachers-section{
      padding:90px 0;
    }

    .teachers-top{
      margin-bottom:45px;
    }

  }

  @media(max-width:768px){

    .teachers-heading h2{
      font-size:38px;
    }

    .teacher-content h3{
      font-size:28px;
    }

  }

  @media(max-width:576px){

    .teachers-section{
      padding:70px 0;
    }

    .teachers-heading h2{
      font-size:30px;
    }

    .teachers-btn{
      width:100%;
      justify-content:center;
      padding:18px 20px;
    }

    .teacher-card{
      padding:25px 20px 35px;
    }

    .teacher-image-wrapper{
      max-width:240px;
      height:240px;
    }

    .teacher-content h3{
      font-size:24px;
    }

    .teacher-content p{
      font-size:16px;
    }

  }
  
    /* =========================
     SECTION
  ========================== */

  .admission-section{
    position:relative;
    padding:120px 0;
    background:#f7f6f2;
    overflow:hidden;
  }

  /* SMALL CIRCLE */

  .admission-circle{
    position:absolute;
    top:40px;
    left:40px;
    width:42px;
    height:42px;
    border-radius:50%;
    border:1px solid rgba(0,0,0,0.15);
  }

  /* =========================
     TOP CONTENT
  ========================== */

  .admission-top{
    position:relative;
    z-index:5;
    /* padding-left:320px; */
    margin-bottom:-80px;
  }

  /* HEADING */

  .admission-heading span{
    display:inline-block;
    color:#001b4e;
    font-size:14px;
    font-weight:600;
    margin-bottom:18px;
  }

  .admission-heading span i{
    margin-right:7px;
  }

  .admission-heading h2{
    font-family: Bitter, sans-serif;
font-size: 48px;
font-weight: 600;
line-height: 57.6px;
word-spacing: 0px;
   
    color:#001b4e;
    /* font-weight:800; */
    /* margin-bottom:28px; */
  }

  .admission-heading p{
    font-family: Inter, sans-serif;
font-size: 16px;
line-height: 28px;
word-spacing: 0px;
   
    color:#555;
    max-width:500px;
    margin:0;
  }

  /* =========================
     WRAPPER
  ========================== */

  .admission-wrapper{
    position:relative;
    top: 120px;
    min-height:580px;
    border-radius:18px;
    overflow:visible;
  }

  /* BG */

  .admission-bg{
    position:absolute;
    inset:0;
  }

  .admission-bg img{
    width:100%;
    height:100%;
    object-fit:fill;
    border-radius:18px;
  }

  /* OVERLAY */

  .admission-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.15);
    border-radius:18px;
  }

  /* =========================
     STUDENT IMAGE
  ========================== */

  .graduate-image{
    position:absolute;
    left:120px;
    bottom:0;
    z-index:10;
  }

  .graduate-image img{
    width:500px;
    max-width:100%;
  }

  /* =========================
     FORM BOX
  ========================== */

  .admission-form-box{
    position:absolute;
    top:-185px;
    right:70px;
    width:560px;
    background:#053b74e4;
    border-radius:0 0 18px 18px;
    padding:40px;
    z-index:20;
    border-radius: 20px;
  }

  /* TOP LINE */

  .form-top-line{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:#d90d0f;
    border-radius: 20px;
  }

  /* TITLE */

  .admission-form-box h3{
    color:#fff;
    font-size:44px;
    font-weight:700;
    margin-bottom:35px;
  }

  /* =========================
     FORM INPUTS
  ========================== */

  .form-group-custom input,
  .form-group-custom textarea{
    width:100%;
    background:#042f5c;
    border:none;
    outline:none;
    border-radius:8px;
    padding:20px 20px;
    color:#fff;
    font-size:16px;
  }

  .form-group-custom input::placeholder,
  .form-group-custom textarea::placeholder{
    color:#7ea2c6;
  }

  /* TEXTAREA */

  .form-group-custom textarea{
    height:150px;
    resize:none;
  }

  /* DATE */

  .date-box input{
    color:#fff;
  }

  /* =========================
     BUTTON
  ========================== */

  .submit-btn{
    width:100%;
    border:none;
    background:#d90d0f;
    color:#000;
    font-size:18px;
    font-weight:600;
    padding:18px;
    border-radius:8px;
    transition:.4s;
  }

  .submit-btn:hover{
    background:#fff;
    transform:translateY(-4px);
  }

  /* =========================
     RESPONSIVE
  ========================== */

  @media(max-width:1400px){

    .admission-heading h2{
      font-size:58px;
    }

  }

  @media(max-width:1200px){

    .graduate-image img{
      width:420px;
    }

    .admission-form-box{
      width:500px;
      right:30px;
    }

  }

  @media(max-width:991px){

    .admission-section{
      padding:90px 0;
    }

    .admission-top{
      padding-left:0;
      margin-bottom:40px;
    }

    .admission-heading h2{
      font-size:46px;
    }

    .admission-wrapper{
      min-height:auto;
      padding-bottom:40px;
    }

    .graduate-image{
      position:relative;
      left:auto;
      bottom:auto;
      text-align:center;
      margin-top:50px;
    }

    .graduate-image img{
      width:320px;
    }

    .admission-form-box{
      position:relative;
      top:auto;
      right:auto;
      width:100%;
      margin-top:30px;
      border-radius:18px;
    }

  }

  @media(max-width:768px){

    .admission-heading h2{
      font-size:38px;
    }

    .admission-heading p{
      font-size:17px;
    }

  }

  @media(max-width:576px){

    .admission-section{
      padding:70px 0;
    }

    .admission-heading h2{
      font-size:30px;
    }

    .admission-form-box{
      padding:25px;
    }

    .admission-form-box h3{
      font-size:30px;
    }

    .graduate-image img{
      width:260px;
    }

  }

    /* =========================
     SECTION
  ========================== */

  .blog-news-section{
    position:relative;
    padding:70px 0;
    background:#f7f6f2;
    overflow:hidden;
  }

  /* SMALL CIRCLE */

  .blog-circle{
    position:absolute;
    top:35px;
    left:35px;
    width:48px;
    height:48px;
    border-radius:50%;
    border:1px solid rgba(0,0,0,0.15);
  }

  /* =========================
     TOP AREA
  ========================== */

  .blog-top{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:20px;
    flex-wrap:wrap;
    margin-bottom:40px;
  }

  /* LEFT */

  .blog-heading span{
    display:inline-block;
    color:#001b4e;
    font-size:14px;
    font-weight:600;
    margin-bottom:13px;
  }

  .blog-heading span i{
    margin-right:7px;
  }

  .blog-heading h2{
    font-family: Bitter, sans-serif;
font-size: 48px;
font-weight: 600;
line-height: 57.6px;
word-spacing: 0px;
    /* font-size:72px;
    line-height:1.08; */
    color:#001b4e;
    /* font-weight:800; */
    margin:0;
  }

  /* BUTTON */

  .blog-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    background:#fff;
    color:#001b4e;
    text-decoration:none;
    padding:20px 38px;
    border-radius:60px;
    font-size:18px;
    font-weight:600;
    transition:.4s;
    box-shadow:0 10px 25px rgba(0,0,0,0.04);
  }

  .blog-btn:hover{
    background:#0B3AAE;
    color:#fff;
    transform:translateY(-4px);
  }

  /* =========================
     BLOG CARD
  ========================== */

  .blog-card{
    position:relative;
    background:#fff;
    border-radius:20px;
    padding:14px;
    display:flex;
    align-items:center;
    gap:32px;
    overflow:hidden;
    min-height:275px;
    transition:.4s;
  }

  .blog-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,0.08);
  }

  /* IMAGE */

  .blog-image{
    width:260px;
    min-width:260px;
    height:180px;
    border-radius:16px;
    overflow:hidden;
  }

  .blog-image img{
    width:100%;
    height:100%;
    object-fit:fill;
    transition:1s;
  }

  .blog-card:hover img{
    transform:scale(1.08);
  }

  /* CONTENT */

  .blog-content{
    flex:1;
    position:relative;
    z-index:2;
  }

  /* META */

  .blog-meta{
    display:flex;
    align-items:center;
    gap:22px;
    flex-wrap:wrap;
    margin-bottom:25px;
  }

  .blog-meta span{
    color:#333;
    font-size:15px;
    display:flex;
    align-items:center;
    gap:8px;
  }

  /* TITLE */

  .blog-content h3{
    font-family: Bitter, sans-serif;
font-size: 22px;
font-weight: 600;
line-height: 30.8px;
word-spacing: 0px;
    /* font-size:32px;
    line-height:1.4; */
    color:#111;
    /* font-weight:700; */
    margin-bottom:35px;
  }

  /* AUTHOR */

  .blog-author{
    display:flex;
    align-items:center;
    gap:14px;
  }

  .blog-author img{
    width:42px;
    height:42px;
    border-radius:50%;
    object-fit:fill;
  }

  .blog-author span{
    color:#333;
    font-size:16px;
    font-weight:500;
  }

  /* STRIPES */

  .blog-stripes{
    position:absolute;
    right:-10px;
    bottom:20px;
    width:75px;
    height:75px;
    opacity:.6;
    background:repeating-linear-gradient(
      45deg,
      #efebe3,
      #efebe3 8px,
      transparent 8px,
      transparent 16px
    );
  }

  /* =========================
     RESPONSIVE
  ========================== */

  @media(max-width:1400px){

    .blog-heading h2{
      font-size:58px;
    }

    .blog-content h3{
      font-size:28px;
    }

  }

  @media(max-width:1200px){

    .blog-card{
      gap:20px;
    }

    .blog-image{
      width:220px;
      min-width:220px;
    }

  }

  @media(max-width:991px){

    .blog-news-section{
      padding:90px 0;
    }

    .blog-heading h2{
      font-size:46px;
    }

  }

  @media(max-width:768px){

    .blog-card{
      flex-direction:column;
      align-items:flex-start;
    }

    .blog-image{
      width:100%;
      min-width:100%;
      height:260px;
    }

    .blog-heading h2{
      font-size:38px;
    }

  }

  @media(max-width:576px){

    .blog-news-section{
      padding:70px 0;
    }

    .blog-heading h2{
      font-size:30px;
    }

    .blog-btn{
      width:100%;
      justify-content:center;
      padding:18px 25px;
    }

    .blog-content h3{
      font-size:24px;
    }

    .blog-meta{
      gap:12px;
    }

  }


  
  .cta-section{
    position:relative;
    min-height:420px;
    overflow:hidden;
    display:flex;
    align-items:center;
  }

  /* =========================
     BACKGROUND
  ========================== */

  .cta-bg{
    position:absolute;
    inset:0;
  }

  .cta-bg img{
    width:100%;
    height:100%;
    object-fit:fill;
  }

  /* DARK OVERLAY */

  .cta-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.35);
    z-index:1;
  }

  /* LEFT BLUE GRADIENT */

  .cta-gradient{
    position:absolute;
    left:0;
    top:0;
    width:65%;
    height:100%;
    z-index:2;

    background:linear-gradient(
      to right,
      rgba(5, 59, 116, 0.95),
      rgba(5, 59, 116, 0.85),
      rgba(5, 59, 116, 0.55),
      transparent
    );
  }

  /* SMALL CIRCLE */

  .cta-circle{
    position:absolute;
    top:-20px;
    left:-20px;
    width:48px;
    height:48px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,0.25);
    z-index:3;
  }

  /* =========================
     CONTENT
  ========================== */

  .cta-content{
    position:relative;
    z-index:5;
    max-width:760px;
    padding:90px 0;
  }

  /* SMALL TITLE */

  .cta-content span{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:#d90d0f;
    font-size:16px;
    font-weight:600;
    margin-bottom:22px;
  }

  /* TITLE */

  .cta-content h2{
    font-family: Bitter, sans-serif;
font-size: 48px;
font-weight: 600;;
line-height: 57.6px;;
word-spacing: 0px;
    color:#fff;
    /* font-weight:800; */
    margin-bottom:32px;
  }

  /* PARAGRAPH */

  .cta-content p{
    font-family: Inter, sans-serif;
font-size: 16px;
line-height: 28px;
word-spacing: 0px;
    color:rgba(255,255,255,0.82);
  
    max-width:760px;
    margin-bottom:40px;
  }

  /* BUTTON */

  .cta-btn{
    display:inline-flex;
    align-items:center;
    gap:14px;
    background:#d90d0f;
    color:#000;
    text-decoration:none;
    padding:22px 42px;
    border-radius:60px;
    font-size:20px;
    font-weight:600;
    transition:.4s;
  }

  .cta-btn:hover{
    background:#fff;
    color:#000;
    transform:translateY(-5px);
  }

  /* =========================
     RESPONSIVE
  ========================== */

  @media(max-width:1400px){

    .cta-content h2{
      font-size:62px;
    }

  }

  @media(max-width:1200px){

    .cta-content h2{
      font-size:52px;
    }

    .cta-content p{
      font-size:19px;
    }

  }

  @media(max-width:991px){

    .cta-section{
      min-height:auto;
    }

    .cta-gradient{
      width:100%;
      background:linear-gradient(
        to right,
        rgba(5, 59, 116, 0.95),
        rgba(5, 59, 116, 0.82)
      );
    }

    .cta-content{
      padding:80px 0;
    }

  }

  @media(max-width:768px){

    .cta-content h2{
      font-size:42px;
    }

    .cta-content p{
      font-size:17px;
      line-height:1.8;
    }

  }

  @media(max-width:576px){

    .cta-content{
      padding:70px 0;
    }

    .cta-content h2{
      font-size:32px;
    }

    .cta-content p{
      font-size:15px;
    }

    .cta-btn{
      width:100%;
      justify-content:center;
      padding:18px 20px;
      font-size:17px;
    }

  }

    /* =========================
     FOOTER
  ========================== */

  .school-footer{
    background:#032f5b;
    position:relative;
    overflow:hidden;
  }

  /* TOP AREA */

  .footer-top{
    padding:100px 0 70px;
    position:relative;
    z-index:2;
  }

  /* BACKGROUND SHAPE */

  .school-footer::before{
    content:'';
    position:absolute;
    top:-120px;
    right:-120px;
    width:400px;
    height:400px;
    border-radius:50%;
    background:rgba(255,255,255,0.03);
  }

  .school-footer::after{
    content:'';
    position:absolute;
    bottom:-150px;
    left:-150px;
    width:450px;
    height:450px;
    border-radius:50%;
    background:rgba(255,255,255,0.03);
  }

  /* =========================
     LOGO AREA
  ========================== */

  .footer-logo-area{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:30px;
  }

  .footer-logo{
    width:85px;
    height:85px;
    object-fit:contain;
    background:#fff;
    border-radius:50%;
    padding:10px;
  }

  .footer-mini-text{
    display:block;
    color:#b9d4ef;
    font-size:12px;
    letter-spacing:2px;
    margin-bottom:6px;
  }

  .footer-logo-area h2{
    color:#fff;
    font-size:52px;
    font-weight:800;
    margin:0;
  }

  /* TEXT */

  .footer-about p{
    color:#c7d8ea;
    font-size:17px;
    line-height:1.9;
    margin-bottom:35px;
  }

  /* =========================
     CONTACT
  ========================== */

  .footer-contact{
    display:flex;
    flex-direction:column;
    gap:20px;
  }

  .footer-contact-item{
    display:flex;
    align-items:flex-start;
    gap:15px;
  }

  .footer-contact-icon{
    width:50px;
    height:50px;
    border-radius:12px;
    background:#0b467f;
    color:#d90d0f;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    flex-shrink:0;
  }

  .footer-contact-item span{
    display:block;
    color:#9dbad8;
    font-size:14px;
    margin-bottom:4px;
  }

  .footer-contact-item a{
    color:#fff;
    text-decoration:none;
    font-size:18px;
    font-weight:600;
    transition:.4s;
  }

  .footer-contact-item a:hover{
    color:#d90d0f;
  }

  /* =========================
     LINKS
  ========================== */

  .footer-links h3,
  .footer-newsletter h3{
    color:#fff;
    font-size:28px;
    font-weight:700;
    margin-bottom:35px;
    position:relative;
    padding-bottom:14px;
  }

  .footer-links h3::after,
  .footer-newsletter h3::after{
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    width:70px;
    height:3px;
    background:#d90d0f;
    border-radius:20px;
  }

  /* UL */

  .footer-links ul{
    list-style:none;
    padding:0;
    margin:0;
  }

  .footer-links ul li{
    margin-bottom:18px;
  }

  .footer-links ul li a{
    color:#d8e6f3;
    text-decoration:none;
    font-size:17px;
    transition:.4s;
    display:inline-block;
  }

  .footer-links ul li a:hover{
    color:#d90d0f;
    transform:translateX(6px);
  }

  /* =========================
     NEWSLETTER
  ========================== */

  .footer-newsletter p{
    color:#c7d8ea;
    line-height:1.8;
    margin-bottom:28px;
  }

  /* FORM */

  .newsletter-form{
    position:relative;
    margin-bottom:30px;
  }

  .newsletter-form input{
    width:100%;
    height:65px;
    border:none;
    outline:none;
    background:#0b467f;
    border-radius:12px;
    padding:0 70px 0 22px;
    color:#fff;
    font-size:16px;
  }

  .newsletter-form input::placeholder{
    color:#aac4de;
  }

  .newsletter-form button{
    position:absolute;
    top:7px;
    right:7px;
    width:52px;
    height:52px;
    border:none;
    border-radius:10px;
    background:#d90d0f;
    color:#000;
    font-size:18px;
    transition:.4s;
  }

  .newsletter-form button:hover{
    background:#fff;
    transform:rotate(10deg);
  }

  /* =========================
     SOCIAL
  ========================== */

  .footer-social{
    display:flex;
    gap:14px;
  }

  .footer-social a{
    width:48px;
    height:48px;
    border-radius:12px;
    background:#0b467f;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    transition:.4s;
    font-size:18px;
  }

  .footer-social a:hover{
    background:#d90d0f;
    color:#000;
    transform:translateY(-5px);
  }

  /* =========================
     BOTTOM
  ========================== */

  .footer-bottom{
    border-top:1px solid rgba(255,255,255,0.08);
    padding:25px 0;
    position:relative;
    z-index:2;
  }

  .footer-bottom-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
  }

  .footer-bottom p{
    color:#d8e6f3;
    margin:0;
    font-size:15px;
  }

  /* LINKS */

  .footer-bottom-links{
    display:flex;
    align-items:center;
    gap:30px;
    flex-wrap:wrap;
  }

  .footer-bottom-links a{
    color:#d8e6f3;
    text-decoration:none;
    font-size:15px;
    transition:.4s;
  }

  .footer-bottom-links a:hover{
    color:#d90d0f;
  }

  /* =========================
     RESPONSIVE
  ========================== */

  @media(max-width:1200px){

    .footer-top{
      padding:80px 0 60px;
    }

  }

  @media(max-width:991px){

    .footer-top{
      padding:70px 0 50px;
    }

  }

  @media(max-width:768px){

    .footer-logo-area h2{
      font-size:38px;
    }

    .footer-links h3,
    .footer-newsletter h3{
      font-size:24px;
    }

  }

  @media(max-width:576px){

    .footer-top{
      padding:60px 0 40px;
    }

    .footer-logo-area{
      align-items:flex-start;
    }

    .footer-logo{
      width:70px;
      height:70px;
    }

    .footer-logo-area h2{
      font-size:30px;
    }

    .footer-bottom-wrapper{
      justify-content:center;
      text-align:center;
    }

    .footer-bottom-links{
      justify-content:center;
    }

  }
