/* ---------------------------------------------
Table of contents
------------------------------------------------
01. font & reset css
02. reset
03. global styles
04. header
05. banner
06. features
07. testimonials
08. contact
09. footer

--------------------------------------------- */
/* 
---------------------------------------------
font & reset css
--------------------------------------------- 
*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900");

/* 

---------------------------------------------
default CSS
--------------------------------------------- 
*/
:root {
  --primary-color: #FF6600;
  --secondary-color: #1E3888;
  --third-color: #4A4A4A;
  /* this color used in paragraph and heading  */
  --primary-bg-color: #BCDCFF;
  --secondary-bg-color: #E8F3FF;
  --third-bg-color: #FFF0E5;
  --fourth-bg-color: #FFF9F4;
  --fith-bg-color: #FFEEE3;
  --sixth-bg-color: #FFF2EA;
  --white: #fff;
  --black: #000;
  --highlight-color: linear-gradient(45deg, var(--primary-color), var(--secondary-color) 80%);
  --font-family: 'Poppins', sans-serif;
  --boder-color: #898989;
}

/* 
---------------------------------------------
reset
--------------------------------------------- 
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
div pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
figure,
header,
nav,
section,
article,
aside,
footer,
figcaption {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  color: var(--third-color)
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.clearfix {
  display: inline-block;
}

html[xmlns] .clearfix {
  display: block;
}

* html .clearfix {
  height: 1%;
}

ul,
li {
  padding: 0;
  margin: 0;
  list-style: none;
}

header,
nav,
section,
article,
aside,
footer,
hgroup {
  display: block;
}

* {
  box-sizing: border-box;
}

html,
body {
  font-family: 'Poppins', sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--third-color);
}

a {
  text-decoration: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--third-color);
  margin-top: 0rem;
  margin-bottom: 0rem;
  font-weight: 700;
}

ul {
  margin-bottom: 0rem;
}

p {
  font-size: 1rem;
  line-height: 1.95rem;
  color: var(--third-color);
}

.d-flex {
  display: flex !important;
  align-content: center;
  justify-content: center;
  align-items: center;
}

/* 
---------------------------------------------
Global Styles
--------------------------------------------- 
*/
html,
body {
  font-family: 'Poppins', sans-serif;
}

::selection {
  background: var(--secondary-color);
  color: var(--white);
}

::-moz-selection {
  background: var(--secondary-color);
  color: var(--white);
}

.section-content-mt {
  margin-top: 4rem !important;
}

.section-mt {
  margin-top: 10rem;

}

.section-heading {
  margin-bottom: 4.375rem;
  
}

.section-heading h2 {
  font-size: 2.5rem;
 
  font-weight: 700;
  text-transform: capitalize;
  margin-top: 1.25rem;

  line-height: 3.5rem;
 
}

.section-heading h2 em {
  font-style: normal;
  color: var(--third-color);
}

.section-heading h6 {
  color: var(--primary-color);
  font-size: 1rem;

  text-transform: uppercase;
  font-weight: 700;
}

.main-button a {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 500;
  height: 2.5rem;
  line-height: 2.5rem;
  padding: 0rem 1.875rem;
  border-radius: 1.5625rem;
  transition: all 0.3s;
}

.main-button a:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.explore-btn {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 0.625rem 1.25rem;
  text-decoration: none;
  border-radius: 1.5625rem;
  font-size: 1rem;
  margin-top: 1.25rem;
  display: inline-block;
}

.explore-btn-second {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 0.625rem 1.25rem;
  text-decoration: none;
  border-radius: 10px;
  font-size: 1rem;
  text-align: center;
  margin-left: 1.5625rem;
}

.explore-btn-second:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.icon-button a {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 400;
  height: 3.125rem;
  line-height: 3.125rem;
  padding: 0rem 1.875rem 0rem 0rem;
  border-radius: 1.5625rem;
  transition: all 0.3s;
}

.icon-button a i {
  background-color: var(--primary-color);
  height: 3.125rem;
  width: 3.125rem;
  text-align: center;
  border-radius: 50%;
  line-height: 3.125rem;
  display: inline-block;
  margin-right: 0.9375rem;
  margin-left: -0.0625rem;
}

.icon-button a:hover {
  color: var(--primary-color);
}

.icon-button a:hover i {
  color: var(--white);
}

.vertical-line {
  border: none;
  border-left: 0.125rem solid #898989;
  height: 1.25rem;
  margin: 0 0.9375rem;
}

.border-line-left {
  border-left: 1px solid #49505733;
}

.border-line-right {
  border-right: 1px solid #49505733;
}

.owl-theme .owl-dots .owl-dot {
  display: none !important;
}
.centered-line {
   width: 400px;
    height: 1px;
    background-color: #1E3888;
    margin: 0 auto;
    margin-top: 20px;
}
.form-control{
  font-size: 1rem;
  color: var(--third-color);
}

/* 
---------------------------------------------
Pre-loader Style
--------------------------------------------- 
*/

.js-preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.99);
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  z-index: 9999;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}

.js-preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@-webkit-keyframes dot {
  50% {
    -webkit-transform: translateX(6rem);
   
    transform: translateX(6rem);
   
  }
}

@keyframes dot {
  50% {
    -webkit-transform: translateX(6rem);
   
    transform: translateX(6rem);
  
  }
}

@-webkit-keyframes dots {
  50% {
    -webkit-transform: translateX(-1.9375rem);
  
    transform: translateX(-1.9375rem);
 
  }
}

@keyframes dots {
  50% {
    -webkit-transform: translateX(-1.9375rem);
    transform: translateX(-1.9375rem);
  }
}

.preloader-inner {
  position: relative;
  width: 8.875rem;
  height: 2.5rem;
  background: transparent;
}

.preloader-inner .dot {
  position: absolute;
  width: 1rem;
  height: 1rem;
  top: 0.75rem;
  left: 0.9375rem;
  background: var(--primary-color);
  border-radius: 50%;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-animation: dot 2.8s infinite;
  animation: dot 2.8s infinite;
}

.preloader-inner .dots {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  margin-top: 0.75rem;
  margin-left: 1.9375rem;
  -webkit-animation: dots 2.8s infinite;
  animation: dots 2.8s infinite;
}

.preloader-inner .dots span {
  display: block;
  float: left;
  width: 1rem;
  height: 1rem;
  margin-left: 1rem;
  background: var(--primary-color);
  border-radius: 50%;
}


/* 
---------------------------------------------
Header Style
--------------------------------------------- 
*/

.nav .menu-item {
  position: relative;
}

.nav .menu-link {
  text-decoration: none;
  color: var(--third-color);
  /* padding: 10px 15px; */
  transition: color 0.3s;
}

/* Underline effect */
.nav .menu-link,
.nav .main-menu-link {
  position: relative;
}

.nav .menu-link.active::after,
.nav .main-menu-link.active::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s;
  margin-top: 5px;
  position: absolute;
  left: 0;
  bottom: -5px;
}

.nav .menu-item:hover .menu-link,
.nav .menu-item .menu-link.active {
  color: var(--primary-color);
}

.nav .menu-item:hover .menu-link::after,
.nav .menu-item .menu-link.active::after {
  width: 100%;
}

header {
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.logo {
  width: 100%;
  max-width: 310px;
  margin-top: -60px;
}

/*new code end */

.sub-header {
  background-color: var(--white);
  padding: 13px 0px;
  border-bottom: 1px solid #eee;
}

.sub-header ul li {
  display: inline-block;
}

.sub-header ul.social-links {
  text-align: right;
  border-left: 2px solid #898989;
  padding: 0px 15px;
}
.sub-header ul.social-links li a {
  display: inline-block;
  width: 30px;
  height: 30px;

  /* background-color: #cdcdcd; */
  border-radius: 50%;
  text-align: center;
  line-height: 30px;
  color: var(--white);
  font-size: 14px;
  transition: all .3s;
}

.sub-header-flex {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: row;
}

.nav-menu {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-direction: row;
}

.social-links {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-direction: row;
}

.sub-header ul.info li {
  font-size: 1rem;
  padding: 0px 15px;
  font-weight: 400;
}

.sub-header ul.info li:last-child a {
  color: var(--white);
  padding: 0px 25px;
  background-color: var(--secondary-color);
  color: var(--white);
  font-size: 1rem;
  font-weight: 400;
  text-transform: none;
  border-radius: 10px;
  padding: 25px;
  ;
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
  margin-left: 0px;
}

.sub-header ul.info li:last-child:hover a {
  background-color: var(--primary-color);
}

.sub-header ul.info li a {
  color: var(--third-color);
}

.sub-header ul.info li i {
  font-size: 20px;
  color: var(--primary-color);
  margin-right: 8px;
}

.header-area {
  position: relative;
  background-color: var(--white);
  height: 150px;
  z-index: 100;
}


.background-header {
  height: 150px;
  position: fixed !important;
  top: 0 !important;
  left: 0;
  right: 0;
  background-color: var(--white);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15) !important;
}

.header-area .main-nav {
  background: transparent;
  display: flex;
}

.header-area .main-nav .logo {
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  display: inline-block;
}

.header-area .main-nav .logo h1 {
  line-height: 100px;
  font-size: 28px;
  text-transform: uppercase;
  color: var(--third-color);
  font-weight: 700;
  letter-spacing: 2px;
}

.background-header .main-nav .logo h1 {
  line-height: 80px;
}

.header-area .main-nav ul.nav {
  flex-basis: 100%;
  margin-top: 30px;
  justify-content: right;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  z-index: 999;
}

.header-area .main-nav .nav li:last-child {
  padding-right: 0px;
}

.header-area .main-nav .nav li {
  height: 100px;
  line-height: 100px;
}

.header-area .main-nav .nav li a {
  display: block;
  padding-left: 25px;
  padding-right: 25px;
  font-weight: 400;
  font-size: 1rem;
  height: 40px;
  line-height: 40px;
  text-transform: capitalize;
  color: var(--third-color);
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  border: transparent;
  letter-spacing: .25px;
}

.header-area .main-nav .nav li:last-child a {
  background-color: var(--secondary-color);
  color: var(--white);
  font-size: 1rem;
  font-weight: 400;
  text-transform: none;
  border-radius: 10px;
  padding-left: 25px;
  padding-right: 25px;
  text-align: center;
  margin-left: 25px;
}

.header-area .main-nav .nav li:last-child:hover a {
  background-color: var(--primary-color);
  color: var(--white);
}

.nav .menu-link.active::after,
.nav li:last-child .main-menu-link.active::after {
  display: none
}

.header-area .main-nav .nav li:last-child:hover a.active {
  color: var(--white);
}

.header-area .main-nav .nav li:last-child a.active {
  color: var(--white);
}

.header-area .main-nav .nav li:hover a {
  color: var(--primary-color);
}

.header-area .main-nav .nav li a.active {
  color: var(--primary-color);
}


.background-header .main-nav .nav li a.active {
  color: var(--primary-color);
}

.header-area .main-nav .menu-trigger {
  cursor: pointer;
  position: absolute;
  top: 23px;
  width: 32px;
  height: 40px;
  text-indent: -9999em;
  z-index: 99;
  right: 20px;
  display: none;
}

.background-header .main-nav .menu-trigger {
  top: 22px;
}

.background-header .main-nav ul.nav {
  margin-top: 20px;
}

.header-area .main-nav .menu-trigger span,
.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #1e1e1e;
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #1e1e1e;
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
  width: 75%;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  content: "";
}

.header-area .main-nav .menu-trigger span {
  top: 1rem;
}

.header-area .main-nav .menu-trigger span:before {
  -moz-transform-origin: 33% 100%;
  -ms-transform-origin: 33% 100%;
  -webkit-transform-origin: 33% 100%;
  transform-origin: 33% 100%;
  top: -10px;
  z-index: 10;
}

.header-area .main-nav .menu-trigger span:after {
  -moz-transform-origin: 33% 0;
  -ms-transform-origin: 33% 0;
  -webkit-transform-origin: 33% 0;
  transform-origin: 33% 0;
  top: 10px;
}

.header-area .main-nav .menu-trigger.active span,
.header-area .main-nav .menu-trigger.active span:before,
.header-area .main-nav .menu-trigger.active span:after {
  background-color: transparent;
  width: 100%;
}

.header-area .main-nav .menu-trigger.active span:before {
  -moz-transform: translateY(6px) translateX(1px) rotate(45deg);
  -ms-transform: translateY(6px) translateX(1px) rotate(45deg);
  -webkit-transform: translateY(6px) translateX(1px) rotate(45deg);
  transform: translateY(6px) translateX(1px) rotate(45deg);
  background-color: #1e1e1e;
}

.background-header .main-nav .menu-trigger.active span:before {
  background-color: #1e1e1e;
}

.header-area .main-nav .menu-trigger.active span:after {
  -moz-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -ms-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -webkit-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  transform: translateY(-6px) translateX(1px) rotate(-45deg);
  background-color: #1e1e1e;
}

.background-header .main-nav .menu-trigger.active span:after {
  background-color: #1e1e1e;
}

.visible {
  display: inline !important;
}

.sub-header ul .mobileview-sub-header{
  display:block;
}
.header-area .main-nav .nav li .mobileview-main-header{
  display:none;
}

/* 
---------------------------------------------
Banner Section
--------------------------------------------- 
*/
/* Main banner container */
.main-banner {
  position: relative;
  height: 650px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
  padding: 0 40px;
}

/* Video background */
.video-banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Gradient overlay */
.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
  z-index: 2;
}

/* Left-side content */
.banner-content-1 {
  position: relative;
  z-index: 3;
  color: var(--white);
  max-width: 850px;
  text-align: left;
}

.banner-content-1 h1 {
  font-size: 64px;
  font-weight: bold;
  color: var(--white);
}

.banner-content-1 p {
  font-size: 28px;
  margin-top: 10px;
  color: var(--white);
  font-weight: 400;
  line-height: 2.70rem;
}

/* 
---------------------------------------------
Banner Style
--------------------------------------------- 
*/

.main-banner .item {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 220px 20% 320px 20%;
  margin-top: 0px;
}

.main-banner .item span.category {
  background-color: var(--white);
  color: var(--third-color);
  ;
  font-size: 1rem;
  font-weight: 500;
  text-transform: capitalize;
  padding: 6px 15px;
  display: inline-block;
  margin-bottom: 30px;
}

.main-banner .item span.category em {
  font-style: normal;
  color: var(--primary-color);
}

.main-banner .item h2 {
  font-size: 62px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  line-height: 72px;
  width: 50%;
  margin-bottom: 0px;
}

/* 
---------------------------------------------
Page Header Style
--------------------------------------------- 
*/
#page-header-banner .page-heading {
  background-image: url(../images/navigation-headsection-bg.svg);
  background-size: cover;
  background-position: center;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 0px;
  border-bottom-right-radius: 150px;
}

.about-page-bg {
  background-color: #FFF9F4;
}

#page-header-banner .image {
  margin-right: 40px;
  border-right: 2px solid white;
  padding-right: 20px;
}

.page-header-banner-1 .image {
  margin-left: 20px !important;
  border-left: 2px solid white !important;
  padding-left: 20px !important;
  border-right: 0px !important;
  padding-right: 0px !important;
}

#programs-we-offer .image {
  height: 100px;
  width: 80px;
}

#page-header-banner .text-content,
#programs-we-offer .text-content {
  color: var(--white);
  text-align: left;
}

#page-header-banner .text-content h1 {
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
}

#page-header-banner .text-content p {
  font-size: 16px;
  color: var(--white);
  text-align: left;
}

/* 
---------------------------------------------
Home Page  and about all pahes common part Style
--------------------------------------------- 
*/
/*programs-we-offer section */
#programs-we-offer .text-content,
#facilities .text-content,
#collaborations .text-content,
#events .text-content {
  margin-right: 50px;
  border-right: 2px solid var(--primary-color);
  padding-right: 20px;
  padding: 0px 50px;
}

#our-leader .text-content,
#our-team .text-content {
  margin-right: 50px;
  border-right: 2px solid var(--secondary-color);
  padding-right: 20px;
  padding: 0px 50px;
}

.flex-title-heding {
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;

}

#page-header-banner .flex-container,
#programs-we-offer .flex-container,
#facilities .flex-container,
#let-connect .flex-container,
#collaborations .flex-container,
#events .flex-container,
#our-leader .flex-container,
#our-team .flex-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.programs-we-offer-flex {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
}

.right-main-header {
  font-weight: 600;
  font-size: 40px;
  text-align: center;
  color: var(--third-color);

}

.right-main-para {
  text-align: center;
}

#programs-we-offer p,
#facilities p,
#collaborations p,
#events p,
#our-leader p,
#our-team p {
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: 16px;
  color: var(--third-color) !important;

}

/* 
---------------------------------------------
Home Page Style
--------------------------------------------- 
*/
.program-cards {
  display: flex;
  border-radius: 10px;
  margin: 30px;
  padding: 50px 100px;
  text-align: center;
  transition: transform 0.3s;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  align-items: center;

}

.program-cards p {
  text-align: center !important;
  margin-top: 15px;
  margin-bottom: 40px !important;
}

#facilities .program-cards {
  display: flex;
  flex-direction: column;
  align-content: center;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 40px;
}

#facilities .program-cards h5 {
  margin-top: 40px;
  font-size: 24px;
  color: var(--secondary-color);
}

.program-cards h3 {
  font-size: 32px;
  font-weight: 600;
}

.program-cards p {
  font-size: 20px;
}

.program-cards-1 {
  border: 1px solid #004E98;
  background-color: var(--white);
}

.program-cards-2 {
  border: 1px solid #FFEEE3;
  background-color: #FFEEE3;
}

.program-cards-3 {
  border: 1px solid var(--white);
  background-color: var(--white);
}

.program-cards-4 {
  border: 1px solid #004E98;
  background-color: rgb(36, 35, 35, 0.7);
  padding: 20px;
}

/*Let’s Connect?*/
.let-connect {
  background-color: var(--primary-color);
}

.let-connect p {
  text-align: center;
  color: var(--white);
  width: 90%;
  padding: 20px;
  font-size: 24px;
  line-height: 2.5rem;
}

.let-connect-pt {
  padding: 40px 0px;
}

.let-connect1 {
  background-color: var(--secondary-color);
}

.let-connect1 h4,
.let-connect1 span,
.let-connect1 a {
  color: var(--white);
  font-size: 36px;
  margin: 30px 0px;
}

.let-mt-30 {
  margin: 30px 0px;
}

.let-connect1 img {
  height: 40px;
}

/*collaborations*/
.collaborations {
  text-align: center;
  padding: 1px 0;
  background-color: #fef4ec;
}

.collaborations h2 {
  font-size: 24px;
  font-weight: bold;
  color: var(--third-color);
}

.collaborations p {
  font-size: 16px;
  color: var(--third-color);
  margin-bottom: 20px;
}

.owl-carousel {
  display: block !important;
}

.collaborations .owl-carousel .item {
  padding: 10px;
  margin: 5px;
  background: var(--white);
  border-top-right-radius: 45px;
  border-bottom-left-radius: 45px;
box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.collaborations .owl-carousel .item img {
  height: 140px;
  width: 140px;
  display: block;
  margin: 0 auto;
}

.owl-nav button.disabled {
  pointer-events: auto;
opacity: 1;
  color: var(--third-color);
  cursor: pointer;
}

.owl-carousel .owl-nav.disabled {
  display: contents !important;
}

.owl-theme .owl-dots .owl-dot span {
  margin: 0px 0px !important;
}


.owl-theme .owl-nav [class*=owl-]:hover {
  background: transparent !important;
  color: var(--white);
  text-decoration: none;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
  background: 0 0;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
  margin-top: 20px;
   margin:0px -20px 0px -20px;
}
.owl-carousel .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  border: none;
  font-size: 30px;
  color: #333; 
  z-index: 10;
   
}

.owl-carousel .owl-nav .owl-prev {
  left: -40px;
}

.owl-carousel .owl-nav .owl-next {
  right: -40px; 
}


.owl-nav button i {
  font-size: 20px;
  color: #000;
}

.owl-nav .owl-prev i,
.owl-nav .owl-next i {
  width: 50px;
  line-height: 20px;
  font-size: 25px;
  display: inline-block;
  text-align: center;
  color: var(--primary-color);
  background-color: rgba(255, 255, 255, 0.2);
  transition: all 0.3s;
  cursor: pointer;
}

.owl-nav .owl-prev i:hover,
.owl-nav .owl-next i:hover,
.owl-nav:hover {
  background-color: transparent !important;
}

.collaborations .item span.category {
  background-color: var(--white);
  color: var(--third-color);
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  padding: 6px 15px;
  display: inline-block;
  margin-bottom: 30px;
}

.collaborations .item span.category em {
  font-style: normal;
  color: #f35525;
}

.collaborations .item h2 {
  font-size: 62px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  line-height: 72px;
  width: 50%;
  margin-bottom: 0px;
}

/* event*/
.event-card {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.event-card-a {
  width: 70%;
}

#events .event-card h5 {
  font-size: 20px !important;
  color: var(--third-color);
  font-weight: 500;
  text-align: left;

}

#events .event-card p {
  font-size: 16px;
  color: var(--third-color);
  text-align: left !important;
}

.event-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.event-title {
  font-weight: bold;
  font-size: 1.1rem;
}

.event-desc {
  color: #6c757d;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

#events .event-card-a .explore-btn-second {
  margin-left: 0px !important;
  text-align: right;
  margin-top: auto;
}

#events .event-card-a .explore-btn-second a {
  display: inline-block;
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  text-decoration: none;
  font-size: 1rem;
}

.bt-event-content {
  margin-bottom: 150px !important;
}


/* 
---------------------------------------------
Mentor page Style and about page our-leader 
our leadersection style
---------------------------------------------

*/
.mentors-section,
.our-leader,
.our-team {
  background-color: var(--white);
  text-align: center;
  width: 100%;

}

#mentors h3 {
  font-size: 18px !important;
  margin-bottom: 18px;
  color: var(--third-color);
}

.our-leader .mentors-container h3,
.our-team .mentors-container h3 {
  font-size: 18px !important;
  margin-bottom: 18px;
  color: var(--third-color);
}

.our-leader .mentors-container p,
.our-team .mentors-container p,
.our-team .mentors-container h4,
.our-leader .mentors-container h4 {
  font-size: 16px;
  color: var(--third-color);
  margin-bottom: 0px;
  margin-top: 0px !important;
  text-align: center;
}

.our-team .mentors-container h4,
.our-leader .mentors-container h4 {
  font-weight: 600;
}

#mentors p {
  font-size: 16px;
  color: var(--third-color);
  margin-bottom: 30px;
  text-align: center;
}
#mentors .mentor-card {
  display: flex;
  flex-direction: column;
  align-content: center;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 40px;
  border-radius: 10px;
  margin: 20px;
  padding: 40px;
  text-align: center;
  transition: transform 0.3s;
}

.mentors-section .image-circle,
.our-leader .image-circle,
.our-team .image-circle,
#mentors .image-circle {
  width: 160px;
  height: 160px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  padding: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mentors-section .image-circle img,
.our-leader .image-circle img,
.our-team .image-circle img,
#mentors .image-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  background: var(--white);
  padding: 4px;
  clip-path: circle(50%);
}

/* 
---------------------------------------------
About Us Page Style
---------------------------------------------
*/
.about-banner-p {
  color: var(--white);
  font-size: 1rem;
  padding: 0px 50px;
}

.about-banner-p span {
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
}

.vision-mission-section .vision-mission-container {
  display: flex;
  justify-content: space-between;
}

.vision-mission-section .section {
  margin-top: 0rem !important;
  flex: 1.5;
  background: linear-gradient(145deg, #fff, #f7f7f7);
  border-bottom-left-radius: 100px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.vision-mission-section .vision {
  background: #FFF0E5;
  padding: 30px 180px;
  margin-top: -20px;
}

.vision-mission-section .mission {
  background: #FFF9F4;
  padding: 30px 180px;
  margin-left: -85px;
  margin-top: -20px;
}

.vision-mission-section .icon {
  display: block;
  width: 100px;
  height: 100px;
  margin-left: 90px;
  margin-bottom: -76px;
}

.vision-mission-section .vision-mission-container h2 {
  font-size: 40px;
  margin: 0;
  color: var(--third-color)
}

.vision-mission-section .vision-mission-container p {
  margin-top: 20px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--third-color)
}

#our-collaborations-owl-carousel .owl-item {
  overflow: hidden;
}

#our-collaborations-owl-carousel .mentor-card {
  text-align: center;
  padding: 10px;
}

#our-collaborations-owl-carousel .image-circle img {
  max-width: 100%;
  border-radius: 50%;
}

.director-message-container {
  margin: 20px auto;
  background-color: var(--white);
  color: var(--white);
  padding: 20px;
  border-radius: 8px;
  width: 100%;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.title {
  font-size: 24px;
  color: #007bff;
  text-align: left;
  margin-bottom: 20px;
}

.message-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.image-section {
  flex: 1;
  min-width: 150px;
}

.director-image {
  width: 100%;
  display: flex;
  max-width: 400px;
  object-fit: cover;
  align-content: center;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
}


.message-section {
  flex: 2;
  padding-left: 10px;
}

.quote {
  font-size: 16px;
  color: var(--third-color);
  line-height: 1.6;
  margin: 0;
  position: relative;
}

#director-msg .quote {
  font-size: 16px;
  color: var(--third-color);
  line-height: 1.6;
  margin: 0;
  position: relative;
  text-align: center;
  padding: 100px 100px 100px 15px;
}

#director-msg .director-message-container {
  margin: 20px auto;
  background-color: var(--white);
  color: var(--white);
  padding: 70px;
  border-radius: 8px;
  width: 100%;
  box-shadow: none;
}

#director-msg .message-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  justify-content: center;
  align-content: center;
}

#director-msg .image-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.quote-icon {
  vertical-align: top;
  width: 30px;
  height: 30px;
}

.start-quote {
  margin-right: 10px;
}

.end-quote {
  margin-left: 10px;
}

.director-info {
  margin-top: 20px;
}

.director-name {
  font-size: 18px;
  font-weight: bold;
text-align:center;
  color: var(--third-color);
}

.designation {
  font-size: 14px;
  color: var(--third-color);
text-align:center;
}

/* 
---------------------------------------------
Startup Page Style
---------------------------------------------

*/
#startup-section .d-flex-data {
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: stretch;
}

#startup-section .startup-card {
  display: flex;
  align-items: center;
  margin-bottom: 10%;
  width: 80%;
  padding: 30px 20px;
  cursor: pointer;
  background: var(--white);
  justify-content: center;
  border-radius: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex-direction: column;
  border: 1px solid #A8A8A8;

}

#startup-section .startup-card:hover {
  transform: translateY(-10px);
}

#startup-section.startup-card img {
  width: 40%;
  height: auto;
  margin-right: 15px;
  padding: 5px;
}

#startup-section .startup-card .startup-description {
  margin: 0;
  margin-left: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.startup-description1 {
  margin-left: 0px !important;
  margin-top: 0px !important;

}

#startup-section .startup-card .startup-sub-title {
  font-size: 16px !important;
  text-align: center;
  display: flex;
  align-items: center;

}

.startup-image {
  text-align: center;
  margin-bottom: 10px;
}

.center-image {
  width: 100px;
  height: auto;
  display: inline-block;
}

.startup-sub-title .location-icon {
  width: 15px;
  height: 15px;
  margin-right: 8px;
  display: inline-block;
}

#startup-section .startup-card .startup-title {
  font-size: 18px !important;
  text-align: center;
}

#startup-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.popup-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup-content {
  background-color: var(--white);
  padding: 60px;
  border-radius: 10px;
  text-align: center;
  width: 80%;
  max-width: 1000px;
  position: relative;
}

.image-circle {
  width: 160px;
  height: 160px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  padding: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup-image {
  max-width: 100%;
  height: auto;
  margin-bottom: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  background: var(--white);
  padding: 4px;
  clip-path: circle(50%);
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
  cursor: pointer;
  color: var(--third-color);
}

.popup-container .social-icons {
  display: flex;
  gap: 15px;
  justify-content: center;
  /* margin-top: 15px; */
  align-items: center;
  align-content: center;
}

#popup-title {
  padding: 20px;
}



/* 
---------------------------------------------
Facilities Page Style
---------------------------------------------
*/
/* Base Styles */
#facilities-section .facilities .startup-card-mt {
  margin-top: 0px !important;
}

#facilities-section .facilities .startup-card {
  position: relative;
  height: 400px;
  width: 650px;
  background: transparent no-repeat center center / cover;
  /* Ensures image covers the card */
  box-shadow: none;
  overflow: hidden;
  cursor: pointer;
  /* margin-left: 80px; */
  margin-top: 100px;
  padding: 0px;
}

#facilities-section .facilities-img-even {
  border-top-left-radius: 90px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 90px;
  border-bottom-left-radius: 0px;
}

#facilities-section .facilities-img-odd {
  border-top-right-radius: 90px;
  border-bottom-left-radius: 90px;
  border-top-left-radius: 0px;
  border-bottom-right-radius: 0px;
}

#facilities-section .d-flex-data {
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
}

.startup-overlay {
  position: absolute;
  height: 80px;
  width: 100%;
  bottom: 0;
  overflow: hidden;
  padding: 10px;
  color: var(--white);
  background-color: rgba(30, 56, 136, 0.8);
  /* Light overlay with #1e3888 */
  transition: height 0.4s ease-in-out, background-color 0.4s ease-in-out;
}

.startup-card:hover .startup-overlay {
  height: 400px;
  bottom: 0;
  padding: 30px;
  background-color: rgba(30, 56, 136, 0.8);
  /* Light overlay with #1e3888 */
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  flex-direction: column;

}

.startup-card:hover .description-text {
  visibility: visible;
  opacity: 1;
}

.startup-card-h2 {
  margin: 10px 0 5px;
  font-size: 2rem;
  text-align: center;
  color: var(--white);
}

.description-text {
  font-size: 1rem;
  padding: 10px;
  visibility: hidden;
  opacity: 0;
  /* font-weight: 700; */
  text-align: center;
  color: var(--white);
  transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
}

/* .row {
  display: flex;
  justify-content: space-between;
} */
/* 
---------------------------------------------
What We Do Page Style
---------------------------------------------
*/
.what-we-do-bg {
  background-color: #FFF0E5;
}

.what-we-do-tb {
  padding-top: 50px;
  padding-bottom: 50px;
}

/* 
---------------------------------------------
Event Style
--------------------------------------------- 
*/
.transparent-div {
  background-color: rgba(36, 35, 35, 0.5); /* Adjust the alpha value (0.5) for transparency */
  color: white; /* Optional: Set text color for readability */
  padding: 20px;
  border-radius: 5px; /* Optional: Adds rounded corners */
}
/*arabh event style*/

/* Banner Section */
.event-arambh-banner {
  position: relative;
  width: 100%;
  height: 125vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: flex-start;

}
.event-text-p {
    text-indent: 1px;
    text-align: justify;
}
.program-page-section #program .tab-content{
  padding: 0px !important;
}
/* YouTube iframe Video */
#arambh-event-section .iframe-container {
  position: absolute;
  /* top: -50px; */
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

#arambh-event-section .iframe-container iframe {
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  z-index: -1;
}

/* Overlay Content */
#arambh-event-section .content {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 0rem 2rem;
  width: 100%;
  max-width: 1500px;
  margin: 0px 80px;
  z-index: 0;
  align-content: center;

}

#arambh-event-section .text-side {
  flex: 0.8;
  background-color: rgb(36, 35, 35, 0.7);
  padding: 60px;
  border-radius: 10px;
  margin-right: 8rem;
  display: flex;
  margin-top: 80px;
  justify-content: flex-start;
  align-items: flex-start;

  flex-direction: column;
}

#arambh-event-section .text-side h2 {
  font-size: 2.75rem;
  margin-bottom: 1rem;
  color: var(--white);
}

#arambh-event-section .text-side h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--white);
}


#arambh-event-section .text-side p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--white);
}

#arambh-event-section .image-side {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 1rem;
  background-color: rgb(36, 35, 35, 0.4);
  /* padding: 20px; */
  border-radius: 10px;
  margin-top: 0px;
}

#arambh-event-section .image-side img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
}

/* Wave Design */
#arambh-event-section .wave img {
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: auto;
}

#arambh-event-details h2 {
  font-size: 2rem;
}

#arambh-event-details h4 {
  font-size: 1.5rem;
  color: var(--secondary-color);
  padding-top: 20px;
}

#arambh-card-section .custom-card h3 {
  font-size: 2rem;
  padding-bottom: 20px;

}

#arambh-card-section .custom-card {
  padding: 30px;
    display: flex;
    width: 400px;
    height: 300px;
    flex-direction: column;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: stretch;
}


#arambh-season-prizes {
  padding: 100px;
  background-image: url(../images/events/arambh-season-1/arambh-season-prizes-bg.svg);
  background-size: cover;
  /* background-position: center; */
}

#arambh-season-prizes h3 {
  font-size: 32px;
  color: var(--secondary-color);
}

#arambh-season-prizes .custom-btn.active {
  color: var(--white);
  padding: 0px 25px;
  background-color: var(--secondary-color);
  color: var(--white);
  font-size: 1rem;
  font-weight: 400;
  text-transform: none;
  border-radius: 10px;
  padding: 25px;
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
  margin-left: 0px;
}

#arambh-season-prizes .custom-btn {
  color: var(--white);
  padding: 0px 25px;
  border: 1px solid var(--secondary-color);
  color: var(--third-color);
  font-size: 1rem;
  font-weight: 400;
  text-transform: none;
  border-radius: 10px;
  padding: 25px;
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
  margin-left: 0px;
}


#arambh-testimonial .testimonial-heading {
  font-size: 32px;
}

#arambh-participate-section h2 {
  font-size: 32px;

}

.participants-section {
  padding: 70px 70px 70px 30px;
}

#arambh-participate-section .participate-container {
  border-radius: 10px;
  padding: 100px 100px;
  display: inline-block;
  margin: 30px;
}

#arambh-participate-section .explore-btn-second {
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

#arambh-participate-section .explore-btn-second:hover {
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.program-image {
  max-width: 100%;
  height: auto;
  margin-top: 15px;
}

.section-with-background-1,
.section-with-background-2 {
  position: relative;
  overflow: hidden;
}

.section-with-background-1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;

}

.section-with-background-2::before {
  background: var(--third-bg-color);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;

  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  z-index: -1;

}

.section-with-background-2::after {
  content: "";
  position: absolute;
  top: 0;
  left: 60%;
  width: 40%;
  height: 100%;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  z-index: -1;

}

.section-with-background-1::after {
  content: "";
  position: absolute;
  top: 0;
  left: 60%;
  width: 40%;
  height: 100%;
  background: var(--secondary-bg-color);
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  z-index: 0;
}

.bg-color-orange {
  background: var(--primary-color);
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  margin-right: 76px;
  padding: 30px 250px;
  margin-top: -20px;
}

.first-prize {
  height: 339px !important;
  background-color: var(--secondary-color) !important;
  z-index: 3;
  /* First prize on top */
}

.second-prize,
.third-prize {
  z-index: 2;
  color: var(--white);
}

#prize-icons .top-img {
  position: relative;
  top: -95px;
  left: 35%;
  transform: translateX(-50%);
  z-index: 1;
  border: none !important;
  box-shadow: none !important;
}

#prize-icons {
  display: flex;
  justify-content: center;
  gap: 40px;
  width: 100%;
  margin-top: 120px;
}

.custom-btn.active {
  color: var(--white) !important;
  --bs-btn-hover-bg: var(--secondary-color) !important;
  --bs-btn-active-bg: var(--secondary-color) !important;
  background-color: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
}

.prize-title {
  top: -128px;
  position: relative;
  color: black;
  font-size: 24px;
  margin-top: 10px;
}

.prize-amount {
  top: -124px;
  position: relative;
  color: var(--secondary-color);
  font-size: 36px;
  font-weight: bold;
}

.prize-section .prize-box.first-prize .prize-title,
.prize-section .prize-box.first-prize .prize-amount {
  color: var(--white);
}


.prize-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.prize-box {
  position: relative;
  width: 309px;
  height: 278px;
  background-color: var(--primary-bg-color);
  background-size: cover;
  background-position: center;
  border-radius: 90px;
  overflow: visible;
}

.custom-margin-left {
  margin-left: -58px;
}

.custom-margin-right {
  margin-right: -58px;
}


.custom-card {
  width: 364px;
  height: 245px;
  background: var(--third-bg-color);
  border-radius: 10px;
  opacity: 1;
  margin: auto;
}


.images {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.top-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.vertical-line-l {
  border: none;
  border-left: 0.125rem solid #898989;
  height: 2.25rem;
  margin: 0 0.9375rem;
}

.content-section {
  position: relative;
  z-index: 1;
  color: white;
  padding-top: 20px;
}

/* ---------------------------- */
#arambh-participate-section .text-end img {
  display: inline-block !important;
  text-align: right;
  margin-left: auto;
  margin-right: 0;
}


.right-border {
  border-right: 2px solid #000;
  padding-right: 10px;
  height: 20%;
}

#arambh-img {
  display: flex;
  position: relative;
  align-content: center;
  justify-content: center;
  align-items: center;
}

#arambh-img .bottom-img-3 {
  position: relative;
  bottom: 432px;
  left: 67%;
  transform: translateX(-50%);
  z-index: 2;
}

#program .top-img {
  top: -35px;
  left: 25%;
}

#program .bottom-img {
  bottom: -78px;
  left: 85%;
  transform: translateX(-50%);
  z-index: 2;
  height: 256px !important;
  width: 364px !important;
}

.event-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 50px 0;
  border-radius: 10px;
  height: 560px;
  width: 100%;
  display: flex;
  align-items: flex-end;
}

#arambh-img .img-2 {
  vertical-align: top !important;
}

.event-section h1 {
  color: var(--white);

}

#arambh-p span {
  color: var(--white);
}

#arambh .explore-btn-second {
  display: flex;
  flex-direction: column;
  margin-left: 0 !important;
}

.tags-container {
  width: 392px;
  height: 305px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: flex-start;
  overflow: hidden;
  background-color: var(--white);
}
.event-card-section .custom-card {
  width: 400px;
  padding: 30px;
  height: 350px;
}

.event-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 50px 0;
  border-radius: 10px;
}

.event-section h1 {
  color: var(--white);

}

#arambh .explore-btn-second {
  display: flex;
  flex-direction: column;
  margin-left: 0 !important;
}

.tags-container {
  width: 392px;
  height: 305px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: flex-start;
  overflow: hidden;
  background-color: var(--white);
}

.btn-tag {
  display: inline-block;
  margin: 5px 5px 0 0;
  padding: 8px 12px;
  font-size: 14px;
  border-radius: 10px;
  background-color: #D2D7E7;
  color: var(--third-color);
}

.event-item {
  border-radius: 10px;
  padding: 35px 30px;
  display: inline-block;
  min-width: 360px;
}

.event-description {
  max-height: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.read-more.show {
  display: inline;
}

.event-description.full-text {
  white-space: normal;
  max-height: none;
}

/*Event*/
.event-carousel {
  text-align: center;
  padding: 50px 0;

}

.event-carousel h2 {
  font-size: 24px;
  font-weight: bold;
  color: var(--third-color);
}

.event-carousel p {
  font-size: 16px;
  color: var(--third-color);
  margin-bottom: 20px;
}

.event-carousel .owl-carousel .item {
  padding: 10px;
  margin: 5px;
  background: var(--white);
  /* border-radius: 10px; */
  border-top-right-radius: 45px;
  border-bottom-left-radius: 45px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.event-carousel .owl-carousel {
  display: block;
}

.event-carousel .owl-carousel .item img {
  height: 140px;
  width: 140px;
  display: block;
  margin: 0 auto;
}

#event-carousel {
  padding: 50px;
  text-align: center;
  width: 100%;
  margin: 30px;

}

.event-carousel-1 .owl-carousel .item img {
  height: 340px;
  width: 160px;
  display: block;
  margin: 0 auto;
}

.events-page-content-section .event-content-2,
.events-page-content-section .event-content-1 {
  display: flex;
  flex-direction: column;
  /* align-items: flex-start; */
}

.events-page-content-section .event-content-2 a,
.events-page-content-section .event-content-1 a {
  margin: 0px;
}

.events-page-content-section .event-content-1 p,
.events-page-content-section .event-content-2 p {
  padding: 30px 0px;
}

.events-page-content-section .event-content-2 .btn-container,
.events-page-content-section .event-content-1 .btn-container {
  margin-top: auto;
  text-align: left;
}

.events-page-content-section .program-flex-2 .tab-img {
  display: flex;
  justify-content: flex-end;
}


/* 
---------------------------------------------
Contact Style
--------------------------------------------- 
*/
.icon {
  filter: brightness(0) saturate(100%) invert(19%) sepia(92%) saturate(2008%) hue-rotate(187deg) brightness(86%) contrast(96%);
  transition: filter 0.3s ease;
}

#contact-card .program-cards-1-c:hover img.icon {
  filter: brightness(0) invert(1);
  /* New property to change icon to white */
}

.contact-carousel h2 {
  font-size: 24px;
  font-weight: bold;
  color: var(--third-color);
}

.contact-carousel p {
  font-size: 16px;
  color: var(--third-color);
  margin-bottom: 20px;
}

.contact-carousel .owl-carousel .item {
  padding: 10px;
  margin: 5px;
  background: var(--white);
  /* border-radius: 10px; */
  border-top-right-radius: 45px;
  border-bottom-left-radius: 45px;
  box-shadow: none;
  min-width: 120px;
}

.contact-carousel .owl-carousel {
  display: block;
}

.contact-carousel .owl-carousel .item img {
  height: 192px;
  width: 161px;
  display: block;
  margin: 0 auto;
}

#contact-carousel {
  padding: 50px;
  /* border-radius: 10px; */
  /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
  text-align: center;
  width: 100%;
  margin: 0px 30px;

}

.contact-carousel-1 .owl-carousel .item img {
  height: 340px;
  width: 160px;
  display: block;
  margin: 0 auto;
}

.contact {
  background-image: url(../images/contact-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 100px 0px 250px 0px;
  position: relative;
}

.contact .section-heading h2 {
  color: var(--white);
}

.contact-content {
  margin-top: -240px;
  position: relative;
  z-index: 1;
}

.contact-content #map {
  border-radius: 10px;
  margin-bottom: 60px;
}

.contact-content .item {
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
  padding: 35px 30px;
  background-color: var(--white);
}

.contact-content .phone {
  margin-right: 15px;
}

.contact-content .email {
  margin-left: 15px;
}

.contact-content .item img {
  float: left;
  margin-right: 25px;
  vertical-align: middle;
}

.contact-content .item h6 {
  font-size: 20px;
  font-weight: 600;
  vertical-align: middle;
}

.contact-content .item h6 span {
  font-size: 15px;
  color: var(--third-color);
  font-weight: 400;
}

.contact-content #contact-form {
  margin-left: 30px;
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
  padding: 35px 30px;
  background-color: var(--white);
}

.contact-content #contact-form label {
  font-size: 15px;
  color: var(--third-color);
  margin-bottom: 15px;
}

.contact-content #contact-form input {
  width: 100%;
  height: 44px;
  border-radius: 22px;
  background-color: #f6f6f6;
  border: none;
  margin-bottom: 30px;
  font-size: 14px;
  padding: 0px 15px;
}

.contact-content #contact-form textarea {
  width: 100%;
  height: 150px;
  max-height: 180px;
  border-radius: 22px;
  background-color: #f6f6f6;
  border: none;
  margin-bottom: 40px;
  font-size: 14px;
  padding: 15px 15px;
}

.contact-content #contact-form button {
  background-color: #1e1e1e;
  height: 44px;
  border-radius: 22px;
  padding: 0px 20px;
  color: var(--white);
  border: none;
  font-size: 15px;
  font-weight: 500;
  transition: all .5s;
}

.contact-content #contact-form button:hover {
  background-color: #f35525;
}

.event-carousel {
  text-align: center;
  padding: 50px 0;

}

.event-carousel h2 {
  font-size: 24px;
  font-weight: bold;
  color: var(--third-color);
}

.event-carousel p {
  font-size: 16px;
  color: var(--third-color);
  margin-bottom: 20px;
}

.event-carousel .owl-carousel .item {
  padding: 10px;
  margin: 5px;
  background: var(--white);
  /* border-radius: 10px; */
  border-top-right-radius: 45px;
  border-bottom-left-radius: 45px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.event-carousel .owl-carousel {
  display: block;
}

.event-carousel .owl-carousel .item img {
  height: 140px;
  width: 140px;
  display: block;
  margin: 0 auto;
}

#event-carousel {
  padding: 50px;
  text-align: center;
  width: 100%;
  margin: 30px;

}

.event-carousel-1 .owl-carousel .item img {
  height: 340px;
  width: 160px;
  display: block;
  margin: 0 auto;
}
#arambh-testimonial .program-flex{
    justify-content: center;
    align-items: center;
    align-content: center;
}

/* 
---------------------------------------------
program Style
--------------------------------------------- 
*/
#program .tab-img {
  display: flex;
  justify-content: center;
}

.program-flex,
.program-flex-2,
.program-flex-1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;

}

.program-flex-3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: start;
  align-content: start;
  padding-top: 10px;

}

.program-flex h2,
.program-flex-2 h2,
.program-flex-1 h2,
.program-flex h3,
.program-flex-2 h3,
.program-flex-1 h3 {
  font-size: 34px;
}

.program-mt {
  margin-top: 200px;
}

.program-padding {
  padding: 10px 70px 40px 70px;
}

.program-padding-2 {
  padding: 10px 70px 40px 10px;
}

.program-padding-1 {
  padding: 10px 10px 40px 70px;
}

#contact-card .program-cards-c {
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 78, 152, 0.3);
  margin: 20px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
  height: 234px;
}

/* Styling for program-cards-1-c */
#contact-card .program-cards-1-c {
  /* border: 1px solid #004E98;
  background-color: #1E3888; */
  /* border: 1px solid #FFEEE3; */
  background-color: #BCDCFF;
}

/* Styling for program-cards-2-c */
#contact-card .program-cards-2-c {
  border: 1px solid #FFEEE3;
  background-color: #BCDCFF;
}

/* Hover effect for both cards */
#contact-card .program-cards-c:hover {
  transform: translateY(-10px);
  /* Card lift effect */
  box-shadow: 0px 10px 20px rgba(0, 78, 152, 0.3);
  /* Larger shadow on hover */
}

/* Hover effect for the 1st card (program-cards-1-c) */
#contact-card .program-cards-1-c:hover {
  background-color: #1E3888;
  /* Darker blue on hover */
}



/* Styling for headings */
.program-cards-c h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

/* Styling for paragraphs */
.program-cards-c p {
  font-size: 16px;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.program-cards-c a {
  font-size: 16px;
  color: var(--secondary-color);
  margin-bottom: 20px;
}


/* Text color for program-cards-2-c */
#contact-card .program-cards-2-c h3 {
  color: var(--contact-p-color);
}

#contact-card .program-cards-2-c p {
  color: var(--contact-p-color);
}

/* Icon styling */
.program-cards-c img.icon {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
}

/* Optional: Hover effect on text for program-cards-1-c */
#contact-card .program-cards-1-c:hover h3,
#contact-card .program-cards-1-c:hover p,
#contact-card .program-cards-1-c:hover a {
  color: var(--white);
  /* Keep text color white when hovered */
}

/* Optional: Hover effect on text for program-cards-2-c */
#contact-card .program-cards-2-c:hover h3,
#contact-card .program-cards-2-c:hover p,
#contact-card .program-cards-2-c:hover a {
  color: var(--secondary-color);
  /* Change text color to blue when hovered */
}


#headingOne .accordion-button:focus {
  box-shadow: none !important;
}

#headingOne .accordion-button:not(.collapsed) {
  background-color: var(--white);
}

#program .nav-tabs {
  display: flex;
  width: 100%;
}

#program .nav-tabs .nav-item {
  flex: 1;
  text-align: center;
  font-size: 20px;
}

#program .nav-tabs .nav-link {
  width: 100%;
  border: none;
  color: var(--third-color);
  border-bottom: 2px solid transparent;
  padding: 15px 0;
  transition: color 0.3s, border-bottom 0.3s;
}

#program .nav-tabs .nav-link.active {
  color: var(--primary-color);
  border-bottom: 4px solid #FF6600;
}

#program .tab-content {
  border: none;
  border-top: none;
  padding: 20px;
}

#program .custom-box {
  position: relative;
  width: 412px;
  height: 290px;
/*   background-color: #FF6600;
  background-size: cover;
  background-position: center; */
  border-radius: 60px;
  overflow: visible;
}

#program .images {
  position: relative;
  width: 100%;
  height: 100%;
}

#program .images img {
  position: absolute;
  object-fit: cover;
  width: 270px;
  height: 190px;
  border: 3px solid var(--white);
}

/* Top image - half inside, half outside */
#program .top-img {
  top: -35px;
  left: 25%;
  transform: translateX(-50%);
  z-index: 1;
}

/* Bottom image - half inside, half outside */
/* #program  .bottom-img {
  bottom: -30px;
  left: 75%;
transform: translateX(-50%); 
  z-index: 2; 
} */
/* Top image - half inside, half outside */
.top-img {
  top: -85px;
  /* Moves the image 50px above the container */
  left: 10%;
  /* Centers the image horizontally */
  transform: translateX(-50%);
  /* Centers the image */
  z-index: 1;
  /* Ensures the top image is above the bottom one */
  border: 5px solid var(--white) !important;
  /* White border */
  border-radius: 40px 0 0px 0;
  /* Top-left and bottom-left rounded, others sharp */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  /* Add shadow */
}

/* Bottom image - half inside, half outside */
.bottom-img {
  bottom: -75px;
  /* Moves the image 50px below the container */
  left: 85%;
  /* Centers the image horizontally */
  transform: translateX(-50%);
  /* Centers the image */
  z-index: 2;
  /* Ensures the bottom image is below the top one */
  border: 5px solid var(--white) !important;
  /* White border */
  border-radius: 0px 0 40px 0;
  /* Top-left and bottom-left rounded, others sharp */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  /* Add shadow */
}

/* Top image - half inside, half outside */
.top-img-2 {
  top: -100px;
  left: 15%;
  transform: translateX(-50%);
  z-index: 2;
  border: 5px solid var(--white) !important;
  border-radius: 40px 0 0px 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  height: 272px !important;
  width: 387px !important;
}

/* Bottom image - half inside, half outside */
.bottom-img-2 {
  bottom: -30px;
  /* Moves the image 50px below the container */
  left: 77%;
  /* Centers the image horizontally */
  transform: translateX(-50%);
  /* Centers the image */
  z-index: 1;
  /* Ensures the bottom image is below the top one */
  border: 5px solid var(--white) !important;
  /* White border */
  border-radius: 0px 0 40px 0;
  /* Top-left and bottom-left rounded, others sharp */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  /* Add shadow */
}

/* Default styles for larger screens remain unchanged */
/* Styles for small screens */
@media (max-width: 768px) {

  #program .custom-box {
    position: relative;
/*     width: 150px;
    height: 130px; */
  }

  /* Top image - small screen adjustments */
  .top-img,
  .top-img-2 {
    top: -50px;
    /* Adjust the top position for smaller screens */
    left: 15%;
    /* Center horizontally on smaller screens */
    transform: translateX(-50%);
    /* Center the image */
    border-radius: 20px 20px 0 0;
    /* Slightly adjust border radius */
    width: 80%;
    /* Reduce image size */
    height: auto;
    /* Maintain aspect ratio */
  }

  /* Bottom image - small screen adjustments */
  .bottom-img,
  .bottom-img-2 {
    bottom: -40px;
    /* Adjust the bottom position */
    left: 90%;
    /* Center horizontally on smaller screens */
    transform: translateX(-50%);
    /* Center the image */
    border-radius: 0 0 20px 20px;
    /* Slightly adjust border radius */
    width: 80%;
    /* Reduce image size */
    height: auto;
    /* Maintain aspect ratio */
  }


  #program .images img {
    position: absolute;
    object-fit: cover;
    width: 150px;
    height: 115px;
  }

  #program .top-img {
    top: -35px;
    left: 25%;
  }

  #program .bottom-img {
    bottom: -30px;
    left: 75%;
    transform: translateX(-50%);
    z-index: 2;
  }

  /* .event-item{
  padding: 6px 12px;
  min-width: 230px;
} */
  #event-carousel {
    padding: 0px;
  }
}
#program-testimonial-owl-carousel{
margin-left: 40px;
}

/* 
---------------------------------------------
Contact Page Style
--------------------------------------------- 
*/

.contact-page #map {
  margin-top: 100px;
}

.contact-page .section-heading {
  margin-bottom: 40px;
  margin-right: 280px;
}

.contact-page p {
  margin-bottom: 0px;
}

.contact-page .item {
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
  padding: 35px 30px;
  background-color: var(--white);
  display: inline-block;
  min-width: 360px;
}

.contact-page .phone {
  margin-bottom: 30px;
}

.contact-page .item img {
  float: left;
  margin-right: 25px;
  vertical-align: middle;
}

.contact-page .item h6 {
  font-size: 20px;
  font-weight: 600;
  vertical-align: middle;
}

.contact-page .item h6 span {
  font-size: 15px;
  color: #aaaaaa;
  font-weight: 400;
}

.contact-page #contact-form {
  margin-left: 30px;
  border-radius: 10px;
  box-shadow: none;
  padding: 0px 30px;
  background-color: transparent;
}

.contact-page #contact-form label {
  font-size: 15px;
  color: #3a3a3a;
  margin-bottom: 15px;
}

.contact-page #contact-form input {
  width: 100%;
  height: 44px;
  border-radius: 5px;
  border: 1px solid #ccc;

  margin-bottom: 30px;
  font-size: 14px;
  padding: 0px 15px;
}

.contact-page #contact-form textarea {
  width: 100%;
  height: 150px;
  max-height: 180px;
  border-radius: 5px;
  border: 1px solid #ccc;
  margin-bottom: 40px;
  font-size: 14px;
  padding: 15px 15px;
}

.contact-page #contact-form select {
  width: 100%;
  height: 45px;
  /* Adjusted for better height */
  max-height: 180px;
  border-radius: 5px;
  background-color: #f6f6f6;
  border: 1px solid #ccc;
  /* Add a border for definition */
  margin-bottom: 20px;
  /* Slightly reduced margin for better spacing */
  font-size: 14px;
  padding: 10px 15px;
  /* Reduced padding for better alignment */
  box-sizing: border-box;
  /* Ensures padding doesn't affect width */
  outline: none;
  /* Removes default focus outline */
  transition: border-color 0.3s ease;
  /* Smooth transition on focus */
}

.contact-page #contact-form select:focus {
  border-color: #007bff;
  /* Border color on focus */
  background-color: #e9f2ff;
  /* Light blue background on focus */
}


.contact-page #contact-form button {
  background: transparent;
  padding: 0px 20px;
  color: var(--white);
  border: none;
  font-size: 16px;
  font-weight: 500;
  transition: all .5s;
}

/* .contact-page #contact-form button:hover {
  background-color: var(--primary-color);
} */


#contact-form .explore-btn-second {
  margin-left: 0;
}

/*
---------------------------------------------
Footer Style
--------------------------------------------- 
*/

footer.footer-no-gap {
  margin-top: 0px;
}

footer {
  /* margin-top: 150px; */
  /* background-color: #1e1e1e; */
  min-height: 100px;
}

.footer-copyright p {
  text-align: center;
  color: var(--secondary-color);
  font-size: 1rem;
  font-weight: 700;
  margin-top: 10px;
}

footer p {
  /* text-align: center;
  line-height: 60px; */
  color: var(--secondary-color);
  font-size: 1rem;
  /* font-weight: 700; */
}

footer .contact-item a {
  /* text-align: center;
  line-height: 60px; */
  color: var(--secondary-color);
  font-size: 1rem;
  /* font-weight: 700; */
}

footer p a {
  color: var(--white);
  transition: all .3s;
  position: relative;
  z-index: 3;
}

footer p a:hover {
  opacity: 0.75;
}

footer .footer-bottom {
  background-color: var(--secondary-bg-color);
  padding: 25px;
}

.footer-menu a {
  color: var(--secondary-color);
  font-size: 1rem;
  font-weight: 400;
}

.footer-menu a:hover {
  color: var(--secondary-color);
}

.footer-top {
  background-color: var(--primary-bg-color);
  padding: 30px 0;
}

/* .footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;

  margin: auto;
} */
.footer-logo {
  /* background-color: #17407d; */
  color: var(--white);
  /* padding: 20px; */
  /* border-radius: 8px; */
  width: 100%;
  max-width: 310px;
  text-align: center;
  margin-top: -60px;
}

.footer-logo h2 {
  margin: 0;
  font-size: 28px;
}

.footer-links {
  flex: 1;
  /* margin: 10px; */
}

.footer-links h3 {
  margin-bottom: 10px;
  font-size: 20px;
  color: var(--secondary-color);
  font-weight: 700;
  border-bottom: 1px solid #1e388852;
  width: 50%;
  padding-bottom: 15px;
}

.footer-contact h3 {
  border-bottom: 1px solid #1e388852;
  width: 50%;
  margin-bottom: 10px;
  padding-bottom: 15px;
}

.footer-links a {
  display: block;
  color: var(--secondary-color);
  text-decoration: none;
  margin-bottom: 15px;
}

.footer-contact {
  margin: 10px;
  flex: 1;
}

/* .footer-contact p {
  margin: 5px 0;
} */

.social-icons {
  display: flex;
  gap: 25px;
  margin-left: 20px;
  margin-top: 20px;
}

.social-icons a {
  color: #17407d;
  font-size: 24px;
  text-decoration: none;
}

.footer-contact-address p,
.footer-contact-address span {
  line-height: 20px;
  text-align: left;
  color: var(--secondary-color);
  font-size: 1rem;
  margin-bottom: 15px;
  /* font-weight: 700; */
}

.footer-contact-address img {
  width: 20px;
  margin-right: 10px;
}

.footer-contact-address span {
  margin-top: 15px;
}

.footer-contact {
  /* background-color: #e7f3ff; */
  /* padding: 20px; */
  border-radius: 10px;
  font-family: Arial, sans-serif;
  color: #333;
}

.footer-contact h3 {
  font-size: 20px;
  color: #1a1a73;
  margin-bottom: 10px;
}

/* .footer-contact hr {
  border: 0;
  border-top: 1px solid #1a1a73;
  margin-bottom: 15px;
} */

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.contact-item img {
  width: 24px;
  height: 24px;
}

.contact-info {
  color: #1a1a73;
}

.university-name {
  font-weight: 600;
  text-decoration: none;
  color: #1a1a73;
  font-size: 16px;
  margin-bottom: 16px;
}

.contact-info p {
  /* margin: 0; */
  line-height: 1.5;
  font-size: 16px;
}

/* p {
  margin: 0;
  font-size: 16px;
  color: var(--third-color);
} */


/* 
---------------------------------------------
Responsive Style
--------------------------------------------- 
*/
@media (max-width: 1200px) {
  .header-area .main-nav .nav li {
    padding-left: 5px;
    padding-right: 5px;
  }

}

body {
  overflow-x: hidden;
}

/* mobile device */
@media (min-width: 320px) and (max-width: 480px) {

  p,
  a {
    font-size: 1rem !important;
  }

  .main-banner {
    padding: 0 10px;
  }

  .sub-header ul.info li {
    padding: 0px 5px;

  }
	#contact-carousel{
    margin: 0px !important;
  }
  .social-links {
    display: none !important;
  }
  .sub-header ul.info li {
    padding: 0px 5px !important;
}

.header-area .main-nav ul.nav {
  margin-top: 0px;
  padding: 20px;
}
#contact-card .program-cards-c{
height: auto;
}
 /* 
---------------------------------------------
Event Page
--------------------------------------------- 
*/
#arambh-card-section .custom-card {
  padding: 40px;
  width: 260px;
  height: 300px;
}

}

@media (min-width: 320px) and (max-width: 600px) {

  p,
  a {
    font-size: 1rem !important;
  }

  .main-banner {
    padding: 0 10px;
  }
#contact-carousel{
    margin: 0px !important;
  }
  .social-links {
    display: none !important;
  }
  .sub-header ul.info li {
    padding: 0px 5px !important;
}

.header-area .main-nav ul.nav {
  margin-top: 0px;
  padding: 20px;
}
 /* 
---------------------------------------------
Event Page
--------------------------------------------- 
*/
#arambh-card-section .custom-card {
  padding: 40px;
  width: 340px !important;
  height: 300px;
}
#arambh-card-section .custom-card h3 {
  font-size: 1.5rem;
}

}

@media (min-width: 576px) and (max-width: 767px) {

  p,
  a {
    font-size: 1rem !important;
  }

  .main-banner {
    padding: 0 10px;
  }
#contact-carousel{
    margin: 0px !important;
  }
  .social-links {
    display: none !important;
  }
  .sub-header ul.info li {
    padding: 0px 5px !important;
}

.header-area .main-nav ul.nav {
  margin-top: 0px;
  padding: 20px;
}
 /* 
---------------------------------------------
Event Page
--------------------------------------------- 
*/
#arambh-card-section .custom-card {
  padding: 40px;
  width: 260px;
  height: 300px;
}

}

@media (min-width: 600px) and (max-width: 767px) {

  p,
  a {
    font-size: 1rem !important;
  }

  .main-banner {
    padding: 0 10px;
  }
   /* 
---------------------------------------------
Event Page
--------------------------------------------- 
*/
#arambh-card-section .custom-card {
  padding: 40px;
  width: 260px;
  height: 300px;
}
}

@media (max-width: 375px) and (max-height: 668px) {

  p,
  a {
    font-size: 1rem !important;
  }
   /* 
---------------------------------------------
Event Page
--------------------------------------------- 
*/
#arambh-card-section .custom-card {
  padding: 40px;
  width: 260px;
  height: 300px;
}
}

@media (max-width: 767px) {

  /* 
---------------------------------------------
 Header Section
--------------------------------------------- 
*/
  p,
  a {
    font-size: 1rem !important;
  }

  .section-mt {
    margin-top: 3rem;
  }

  .header-area .main-nav .nav li a,
  .sub-header ul.info li a {
    font-size: 1rem !important;
  }


  .container,
  .fluid-container {
    width: 90% !important;
    max-width: 1600px !important;
  }

  .background-header .main-nav,
  .header-area .main-nav {
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
    border-radius: 0px 0px 25px 25px;
    width: 100%;
  }

  .background-header .main-nav .nav,
  .header-area .main-nav .nav {
    background-color: var(--white);
  }

  .background-header .main-nav .nav li a,
  .header-area .main-nav .nav li a {
    line-height: 50px;
    height: 50px;
    font-weight: 400;
    color: #1e1e1e;
    background-color: var(--white);
    border-radius: 0px 0px 25px 25px;
  }

  .background-header .main-nav .nav li,
  .header-area .main-nav .nav li {
    /* border-top: 1px solid #ddd; */
    background-color: #f1f0fe;
    height: 50px;
    border-radius: 0px 0px 25px 25px;
  }

  .header-area .main-nav .nav {
    height: auto;
    flex-basis: 100%;
  }

  .header-area .main-nav .logo {
    position: absolute;
    left: 30px;
    top: 0px;
    background-color: transparent;
    color: var(--white);
    padding: 20px;
    border-radius: 8px;
    width: 100%;
    /* max-width: 235px; */
    /* text-align: center; */
    margin-top: -30px;
    box-shadow: none;
  }

  .background-header .main-nav .logo {
    top: 0px;
  }

  .background-header .main-nav .border-button {
    top: 0px !important;
  }

  .header-area .main-nav .border-button {
    position: absolute;
    top: 15px;
    right: 70px;
  }

  .header-area.header-sticky .nav li a:hover,
  .header-area.header-sticky .nav li a.active {
    color: var(--primary-color) !important;
    opacity: 1;
  }
  .sub-header ul.info li:last-child a:hover,
  .sub-header ul.info li:last-child a:active,
  .header-area.header-sticky .nav li:last-child a:hover,
  .header-area.header-sticky .nav li:last-child a.active 
   {
    color: var(--white) !important;
  }

  .header-area.header-sticky .nav li.search-icon a {
    width: 100%;
  }

  .sub-header ul.info li:last-child a {
    color: var(--white);
    padding: 0px 25px;
    background-color: var(--secondary-color);
    font-size: 1rem;
    font-weight: 400;
    text-transform: none;
    border-radius: 10px;
    padding: 9px;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
    margin-left: 0px;
  }

  .sub-header ul.info li a {
    color: var(--third-color);
    font-size: 1rem !important;
    padding: 10px 0px;
  }

  .header-area {
    padding: 0px 0px;
    height: 80px;
    box-shadow: none;
    text-align: center;
  }

  .header-area .container {
    padding: 0px;
    margin: 0px;
    /* width: 100%; */
  }

  .header-area .logo {
    margin-left: 0px;
  }

  .header-area .menu-trigger {
    display: block !important;
  }

  .header-area .main-nav {
    overflow: hidden;
    margin-left: 20px;
  }

  .header-area .main-nav .nav {
    float: none;
    width: 100%;
    display: none;
    -webkit-transition: all 0s ease 0s;
    -moz-transition: all 0s ease 0s;
    -o-transition: all 0s ease 0s;
    transition: all 0s ease 0s;
    margin-left: 0px;
  }
  .header-area .main-nav {
    background: #fff;
  }

  .header-area .main-nav ul.nav {
    margin-top: 0px;
    padding: 20px;
  }

  .header-area .nav-menu {
    margin-top: 130px !important;
    margin-bottom: 30px;
  }

  .header-area .main-nav .nav li:first-child {
    border-top: 1px solid #eee;
  }

  .header-area .background-header .nav-menu {
    margin-top: 160px !important;
  }

  .background-header .main-nav .menu-trigger {
    top: 40px;
    right: 40px;
  }

  .nav-menu {
    display: flex !important;
    margin-top: 100px !important;
    margin-bottom: 30px;
  }

  .sub-header {
    border-bottom: none;
    padding: 20px 0px;
    border-radius: 10px;
    border-bottom: 2px solid #eee;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);

  }

  .sub-header-flex {
    justify-content: center;

  }

  .sub-header ul.info li:last-child {
    border-right: none;
  }

  .header-area .main-nav .nav li {
    width: 100%;
    background: var(--white);
    padding-left: 0px !important;
    padding-right: 0px !important;
  }

  .startup-card {
    margin-left: 10px;
  }

  .header-area .main-nav .logo h1 {
    line-height: 80px !important;
  }

  /* .header-area .main-nav .nav li:last-child {
    display: none !important;
  } */

  .social-links {
    display: none !important;
  }

  /*Banner Section*/
  .main-banner {
    height: 750px !important;
  }

  .banner-content-1 h1 {
    font-size: 50px;
  }

  .social-icons {
    gap: 7px;
  }

  .footer-logo {

    margin-top: 0px;
  }

  .footer-links a,
  .contact-info p,
  footer .contact-item a,
  .footer-menu a,
  .footer-copyright p {
    font-size: 1rem !important;
  }
.footer-mobile-logo{
  display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.sub-header ul .mobileview-sub-header{
  display:none;
}
.header-area .main-nav .nav li .mobileview-main-header{
  display:block;
}

  /* 
---------------------------------------------
Home Page
--------------------------------------------- 
*/
  #programs-we-offer .text-content,
  #facilities .text-content,
  #collaborations .text-content,
  #events .text-content {
    margin-right: 0px;
    border-right: 0px;
    padding-right: 0px;
    width: 100% !important;
    padding: 0px 0px;
  }

  .banner-content-1 p {
    font-size: 1rem !important;
  }

  .flex-title-heding {
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    flex-direction: column-reverse;
  }
  .flex-title-heding-1{
    flex-direction: column!important;
  }

  #programs-we-offer p,
  #facilities p,
  #collaborations p,
  #events p,
  #our-leader p,
  #our-team p {
    font-size: 1rem !important;
  }

  .explore-btn-second {
    font-size: 1rem !important;
  }

  .right-main-para {
    text-align: center;
  }

  .right-main-header {
    text-align: center;
    margin-top: 20px;
  }

  .event-card {
    width: 100%;
  }

  #programs-we-offer .flex-container,
  #let-connect .flex-container,
  #collaborations .flex-container,
  #our-leader .flex-container,
  #our-team .flex-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column-reverse;
  }

  #facilities .flex-container,
  #events .flex-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  #page-header-banner .flex-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

  }


  .let-connect p {
    width: 100%;
    font-size: 1rem !important;
  }

  .let-connect1 h4,
  .let-connect1 span,
  .let-connect1 a {
    text-align: center;
  }

  .let-mt-30 {
    text-align: center;
    margin: 10px 0px 20px 0px;
  }

  .let-connect1 h4,
  .let-connect1 span,
  .let-connect1 a {
    color: var(--white);
    font-size: 36px;
    margin: 20px 10px 20px 10px;
  }

  .footer-links {
    margin: 10px;
    margin-top: 40px;
  }
.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
  margin: 0px 30px 0px 30px;
}

  /* 
---------------------------------------------
Common Banner Section
--------------------------------------------- 
*/


  #page-header-banner .banner-content {
    margin-top: 120px !important;
  }

  #page-header-banner .page-heading {
    margin-top: 30px;
  }

  #page-header-banner .page-heading {
    border-bottom-right-radius: 0px;
  }

  .vision-mission-section .vision-mission-container {
    display: flex;
    justify-content: center;
    /* padding: 20px; */
    /* margin-top: -150px; */
    flex-direction: column;
    align-content: center;
    align-items: center;
  }

  .vision-mission-section .vision,
  .vision-mission-section .mission {
    padding: 30px 30px;
    margin-top: -20px;
  }

  .vision-mission-section .section {
    border-bottom-left-radius: 0px;

  }

  .vision-mission-section .mission {
    margin-left: 0px;
  }

  .vision-mission-section .vision-mission-container h2 {
    text-align: center;
  }

  #page-header-banner .text-content p {
    text-align: center;
    font-size: 1rem !important;
  }

  #page-header-banner .text-content h1 {
    text-align: center;
    margin: 10px 0px;
  }

  #page-header-banner .image {
    margin-right: 0px;
    border-right: 0px;
    padding-right: 0px;
  }

  .about-page-bg .page-heading {
    height: 600px !important;
  }

  /* 
---------------------------------------------
About US  Page
--------------------------------------------- 
*/
  #our-leader .text-content,
  #our-team .text-content {
    margin-right: 0px;
    border-right: none;
    padding-right: 0px;
    margin: 20px;
    width: 100%;
  }

  .mentors-section,
  .our-leader,
  .our-team {
    background-color: var(--white);
    /* padding: 50px; */
    /* text-align: center; */
    width: 100%;
    margin: 0px;
  }

  .title {
    font-size: 24px;
    color: #007bff;
    text-align: center;
    margin-bottom: 20px;
  }

  .vision-mission-section {
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;

  }

  .vision-mission-section .section {
    margin-top: 3rem !important;
  }

  #our-leader .text-content,
  #our-team .text-content {
    padding: 0px 0px;
  }

  #director-msg .director-message-container {
    padding: 20px;
  }

  #director-msg .quote {
    text-align: left;
    padding: 10px 0px 10px 0px !important;
  }

  .vision-mission-section .vision-mission-container p {
    padding: 0px 0px 0px 0px !important;
  }

  .vision-mission-section .vision,
  .vision-mission-section .mission {
    padding: 30px 30px !important;
  }
  .about-banner-p {
    color: var(--white);
    font-size: 1rem !important;
    padding: 0px 0px;
}
.mentor-card{
  margin-bottom: 60px;

}
#director-msg .message-card {
  flex-direction: column;
}

  /* 
---------------------------------------------
Mentors Page
--------------------------------------------- 
*/
  #mentors .mentor-card {
    margin: 0px;
    padding: 20px;
  }

  #mentors h3 {
    font-size: 18px !important;
  }

  #mentors p {
    font-size: 1rem !important;
  }

  /* 
---------------------------------------------
What WE Do Page
--------------------------------------------- 
*/
  .program-padding-2 {
    padding: 10px 10px 10px 10px;
  }

  .what-we-do-page .program-flex-2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-direction: column-reverse;
  }

  .what-we-do-page .program-flex-1 {
    flex-direction: column;
  }

  .what-we-do-page .program-padding-1,
  .what-we-do-page .program-padding-2 {
    padding: 10px 10px 10px 10px !important;
    
  }
  .what-we-do-page .program-flex-1 .tab-img,
  .what-we-do-page .program-flex-2 .tab-img {
  margin-bottom: 40px;
  }
  /* 
---------------------------------------------
Facilities Page
--------------------------------------------- 
*/
  #facilities-section .facilities .startup-card {
    position: relative;
    height: 500px;
    width: 650px;
    margin-left: 0px;
  }

  #facilities-section .facilities .startup-card-mt {
    margin-top: 100px !important;
  }

  #facilities-section .startup-card-h2 {
    margin: 10px 0 5px;
    font-size: 1.5rem;
  }

  .startup-card:hover .startup-overlay {
    height: 400px;
  }

  /* 
---------------------------------------------
Startups Page
--------------------------------------------- 
*/
  #startup-section .startup-card .startup-description {
    margin: 20px;
    margin-left: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-content: center;

  }

  #startup-section .border-line-right {
    border-right: none;
  }

  #startup-section .startup-card .startup-title {
    font-size: 18px !important;
    text-align: center;
  }

  #startup-section .startup-card .startup-sub-title {
    font-size: 16px !important;
    text-align: center;
  }

  #startup-section .startup-card {
    display: flex;
    align-items: center;
    margin-left: 0px;
    width: 100%;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    padding: 30px 33px;
  }


  .border-line-right {
    border-right: none;
  }

  .popup-content {
    background-color: var(--white);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    width: 90%;
    max-width: 985px;
    position: relative;
  }


  /* 
---------------------------------------------
Programs Page
--------------------------------------------- 
*/

  .program-mt {
    margin-top: 100px;
  }

  .program-flex-2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-direction: column-reverse;
  }

  .program-padding {
    padding: 10px 10px 40px 10px!important;
  }
  .contact-page .program-padding-1 {
    padding: 10px 10px 40px 10px!important;
  }

  .event-item {
    padding: 21px 0px;
    min-width: 290px;
  }
  .program-image {
    margin-top: 10px; /* Adjust top margin for mobile */
  }
  #program .tab-content {
    padding: 0px;
}
#program .tab-img {
  display: flex;
  justify-content: center;
  margin-top: 90px;
  margin-bottom: 30px;
}

  /* 
---------------------------------------------
Events Page
--------------------------------------------- 
*/
  .events-page-content-section .program-flex-2 .tab-img,
  .events-page-content-section .program-flex .tab-img {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
  }

  .events-page-content-section .event-content-2,
  .events-page-content-section .event-content-1 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-content: flex-start;
    justify-content: flex-start;
  }

  #arambh-card-section .custom-card {
    padding: 40px;
    width: 300px;
    height: 450px !important;
  }

  .bg-color-orange {
    background: var(--primary-color);
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    margin-right: 0px;
    padding: 20px 10px;
    margin-top: 50px !important;
  }

  #arambh-season-prizes {
    padding: 120px 0px 0px 20px !important;
  }

  #prize-icons {
    display: flex;
    justify-content: center;
    gap: 135px;
    width: 90%;
    margin-top: 100px;
    flex-direction: column;
    align-content: center;
    align-items: center;
  }

  #prize-icons .top-img {
    position: relative;
    top: -90px;
    left: 40%;
  }

  .section-with-background-1::before,
  .section-with-background-1::after {
    background: var(--secondary-bg-color);
    width: 100%;
    height: 100%;
    z-index: -1;

  }

  .section-with-background-2::before {
    width: 100%;
  }

  #arambh-testimonial .program-flex,
  #arambh-participate-section .program-flex {
    padding: 10px;

  }

  #arambh-season-prizes .custom-margin-right,
  #arambh-season-prizes .custom-margin-left {
    margin-left: 0px;
    margin-right: 0px;
  }

  .participants-section {
    padding: 30px 10px 10px 10px;
  }

  #arambh-participate-section .participate-container {
    border-radius: 10px;
    padding: 30px 10px;
  }

  #arambh-testimonial .testimonial-heading {
    margin-top: 30px;
    text-align: center !important;
  }
  .event-arambh-banner {
    position: relative;
    width: 100%;
    height: 190vh;
  }
#arambh-event-section .content {
  align-items: flex-start;
  margin: 100px 20px !important;
  flex-direction: column;
  padding: 0rem 0rem;
}
#arambh-event-section .image-side {
  margin-top: 30px !important;
  margin-left: 0rem;
}
#arambh-event-section .text-side {
  flex: 1;
  padding: 60px 20px;
  margin-right: 0rem;
  flex-direction: column;
}
.centered-line {
    width: 180px;
}
#program-testimonial-owl-carousel {
    margin-left: 0px;
}
#arambh-card-section .custom-card h3 {
  font-size: 1.5rem;
}
#arambh-event-details h4 {
  font-size: 1.3rem;
}
#arambh-participate-section h2 {
  font-size:2rem;
  text-align: center !important;
}

  /* 
---------------------------------------------
Contact UsPage
--------------------------------------------- 
*/


}

/*Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) and (max-width: 1023px) {

  /* 
---------------------------------------------
Header Section
--------------------------------------------- 
*/
  .header-area .nav {
    display: none;
  }

  .header-area .menu-trigger {
    display: block !important;
    top: 50px !important;
    right: 50px !important;
  }

  .background-header .main-nav .nav,
  .header-area .main-nav .nav {
    background-color: var(--white);
  }

  .header-area .main-nav .nav li {
    padding-left: 30px;
    padding-right: 30px;
  }

  .header-area .main-nav .nav li {
    height: 50px;
    margin: 0px 30px 0px 30px;
    line-height: 100px;
    text-align: left;
  }

  /* .background-header .main-nav, .header-area .main-nav {
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
  border-radius: 0px 0px 25px 25px;
  width: 100%;
} */

  .header-area {
    position: relative;
    background-color: var(--white);
    height: 240px;
  }

  .background-header {
    height: 240px !important;
  }

  .logo {
    background-color: transparent;
    color: var(--white);
    padding: 10px 0 0 0;
    border-radius: 8px;
    width: 100%;
    max-width: 300px;
    /* text-align: center; */
    margin-top: -10px;
    box-shadow: none;
  }

  .header-area .main-nav ul.nav {
    margin-top: 40px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
    border-radius: 0px 0px 25px 25px;
    width: 100%;

  }

  .footer-links {
    margin: 10px;
    margin-top: 40px;
  }
  .sub-header ul .mobileview-sub-header {
    display: contents;
}

  /* 
---------------------------------------------
Home  Page
--------------------------------------------- 
*/
  #programs-we-offer .text-content,
  #facilities .text-content,
  #collaborations .text-content,
  #events .text-content {
    margin-right: 20px;
    border-right: 2px solid var(--primary-color);
    padding-right: 20px;
    /* width: 70%; */
  }

  .right-main-para {
    text-align: center;
  }

  .right-main-header {
    text-align: center;
  }

  .event-card {
    height: 100%;
    width: 100%;
  }

  /* #our-leader .text-content,
  #our-team .text-content {
    width: 45%;
  } */

  .what-we-do-page .timeline-item .timeline-content {
    padding: 30px;
    /* margin-top: -100px; */
  }

  #facilities .program-cards {
    margin: 0px;
  }

  .program-cards {
    padding: 20px;
  }

  .let-connect1 h4,
  .let-connect1 span,
  .let-connect1 a {
    text-align: center;
  }

  .let-mt-30 {
    margin: 30px 0px;
    text-align: center;
  }


  /* 
---------------------------------------------
Common Banner Section
--------------------------------------------- 
*/
  .section-mt {
    margin-top: 5rem;
  }

  #page-header-banner .page-heading {
    margin-top: 30px;
  }

  /* 
---------------------------------------------
About US  Page
--------------------------------------------- 
*/
  .vision-mission-section .vision-mission-container {
    display: flex;
    justify-content: space-between;
    padding: 0px;
    margin-top: 0px;
    flex-direction: column;
  }

  #events p,
  #our-leader p,
  #our-team p {
    text-align: center;
  }

  .vision-mission-section .vision {
    background: #FFF0E5;
    padding: 100px 100px;
    margin-top: -20px;
  }

  .vision-mission-section .section {
    border-bottom-left-radius: 0px;
  }

  .about-page-bg {
    background-color: #FFF0E5;
  }

  .mentors-section,
  .our-leader,
  .our-team {
    background-color: var(--white);
    padding: 0px;
    text-align: center;
    width: 100%;
    margin: 30px 0px;
  }
  #director-msg .quote {
    padding: 100px 10px 100px 10px;
  }

  /* 
---------------------------------------------
Mentors Page
--------------------------------------------- 
*/
  /* 
---------------------------------------------
What WE Do Page
--------------------------------------------- 
*/
  /* 
---------------------------------------------
What WE Do Page
--------------------------------------------- 
*/
  /* 
---------------------------------------------
Facilities Page
--------------------------------------------- 
*/
  /* #facilities-section .facilities .startup-card {
  position: relative;
  height: 500px;
  width: 650px;
  margin-left: 0px;
} */
  #facilities-section .facilities .startup-card-mt {
    margin-top: 100px !important;
  }

  /* 
---------------------------------------------
Startups Page
--------------------------------------------- 
*/
  .program-padding-2 {
    padding: 20px 40px 20px 40px;
  }

  .program-padding-1 {
    padding: 20px 40px 20px 40px;
  }

  #startup-section .startup-card {
    display: flex;
    align-items: center;
    margin-bottom: 10%;
    margin-left: 40px;
    width: 80%;
    padding: 20px 20px;
    cursor: pointer;
    background: var(--white);
    box-shadow: 0 2px 5px rgba(0, 78, 152, 0.3);
    justify-content: center;
    border-radius: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-direction: column;
    align-content: center;
  }

  #startup-section .startup-card .startup-description {
    margin: 30px 0px;
    margin-left: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-content: center;
  }

  /* 
  ---------------------------------------------
  Programs Page
  --------------------------------------------- 
  */
  .program-flex-2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-direction: column-reverse;
  }

  #program .images img {
    width: 270px;
    height: 190px;
  }
  #program .custom-box {
    width: 412px;
    height: 290px;
  }
  #program .tab-img {
    margin-top: 90px;
}

  /* 
---------------------------------------------
Events Page
--------------------------------------------- 
*/
  .events-page-content-section .program-flex-2 .tab-img,
  .events-page-content-section .program-flex-1 .tab-img,
  .events-page-content-section .program-flex .tab-img {
    display: flex;
    justify-content: center;
  }

  .events-page-content-section .event-content-2,
  .events-page-content-section .event-content-1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    justify-content: center;
  }

  #arambh-card-section .custom-card {
    padding: 40px;
    width: 300px;
    height: 500px;
  }

  .bg-color-orange {
    background: var(--primary-color);
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    margin-right: 0px;
    padding: 20px 60px;
    margin-top: -105px;
  }

  #arambh-season-prizes {
    padding: 120px 20px 170px 20px;
  }

  #prize-icons {
    display: flex;
    justify-content: center;
    gap: 135px;
    width: 100%;
    margin-top: 90px;
  }

  #prize-icons .top-img {
    position: relative;
    top: -90px;
    left: 40%;
  }

  .section-with-background-1::before,
  .section-with-background-1::after {
    background: var(--secondary-bg-color);
    width: 100%;
    height: 100%;
    z-index: -1;

  }

  .section-with-background-2::before {
    width: 100%;
  }

  #arambh-testimonial .program-flex,
  #arambh-participate-section .program-flex {
    padding: 30px;

  }
  #arambh-event-section .content {
    padding: 0rem 2rem;
    margin: 10px 30px;
    flex-direction: column;
}
#arambh-event-section .text-side {
  flex:1;
  padding: 60px;
  margin-right: 0rem;
  flex-direction: column;
}
.event-arambh-banner {
  position: relative;
  width: 100%;
  height: 155vh;
}
#arambh-event-section .image-side img {
  width: 660px;
  height: auto;
  border-radius: 10px;
}
#arambh-event-section .image-side {
  margin-left: 0rem;
}
#program-testimonial-owl-carousel {
  margin-left: 0px;
}
.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
  margin: 0px 30px 0px 30px;
}

  /* 
---------------------------------------------
Contact UsPage
--------------------------------------------- 
*/

}

@media (max-width: 992px) {

  /* .sub-header {
    display: none;
  } */

  .header-area .main-nav .logo h1 {
    line-height: 100px;
  }

  .background-header .main-nav .logo h1 {
    line-height: 80px;
  }

  .header-area .main-nav .nav li a {
    padding-left: 3px;
    padding-right: 3px;
  }

  .header-area .main-nav .nav li:last-child a {
    padding-right: 15px;
  }

  .main-banner .item h2 {
    width: 100%;
  }

  .contact-content .phone {
    margin-right: 0px;
    margin-bottom: 20px;
  }

  .contact-content .email {
    margin-left: 0px;
    margin-bottom: 45px;
  }

  .contact-content #contact-form {
    margin-left: 0px;
  }


  .contact-page .section-heading {
    margin-right: 0px !important;
  }

  .contact-page #contact-form {
    margin-left: 0px;
    margin-top: 60px;
  }
}

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

  /* 
  ---------------------------------------------
  Header Section
  --------------------------------------------- 
  */
  .logo {
    background-color: transparent;
    color: var(--white);
    /* padding: 21px; */
    border-radius: 8px;
    /* width: 21%; */
    max-width: 279px;
    /* text-align: center; */
    margin-top: -50px;
    box-shadow: none;
  }

  .header-area .main-nav .nav li a {
    display: block;
    padding-left: 0px;
    padding-right: 8px;
    font-weight: 400;
    font-size: 1rem;
    height: 40px;
    line-height: 40px;
    text-transform: capitalize;
    color: var(--third-color);
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    border: transparent;
    letter-spacing: .25px;
  }

  /*footer*/

  .social-icons {
    gap: 7px;
  }

  /* 
  ---------------------------------------------
  Home  Page
  --------------------------------------------- 
  */
  /* #programs-we-offer .text-content,
  #facilities .text-content,
  #collaborations .text-content,
  #events .text-content {
    width: 50%;
  } */

  /* 
  ---------------------------------------------
  About US  Page
  --------------------------------------------- 
  */
  /* 
  ---------------------------------------------
  Mentors Page
  --------------------------------------------- 
  */
  /* 
  ---------------------------------------------
  What WE Do Page
  --------------------------------------------- 
  */
  /* 
  ---------------------------------------------
  What WE Do Page
  --------------------------------------------- 
  */
  /* 
  ---------------------------------------------
  Facilities Page
  --------------------------------------------- 
  */

  /* 
  ---------------------------------------------
  Startups Page
  --------------------------------------------- 
  */
  #startup-section .startup-card {
    display: flex;
    align-items: center;
    margin-bottom: 20%;
    margin-left: 10px;
    flex-direction: column;
  }

  #startup-section .startup-card .startup-description {
    margin: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* margin-left: 20px; */
  }

  /* 
  ---------------------------------------------
  Programs Page
  --------------------------------------------- 
  */
  .program-padding-2,
  .program-padding-1 {
    padding: 10px 30px 0px 30px;
  }

  /* 
  ---------------------------------------------
  Events Page
  --------------------------------------------- 
  */

  /* 
  ---------------------------------------------
  Contact UsPage
  --------------------------------------------- 
  */
}


/*Extra large devices */
@media (max-width: 1024px) and (max-height: 600px) {
  .container {
    width: 95%;

    /* Adjust as needed */
  }

  .header-area .main-nav ul.nav {
    flex-basis: 140%;
  }

  .logo {
    width: 100%;
    max-width: 200px;
  }

  .sub-header ul.info li {
    padding: 0px 15px;

  }

  .social-links {
    display: block;
  }

  /* #programs-we-offer .text-content, #facilities .text-content, #collaborations .text-content, #events .text-content {
    width: 60% !important;
} */
  .event-card {
    width: 100%;
  }

}

@media (max-width: 1200px) {
  .best-deal .info-table ul li span {
    float: none;
    width: 100%;
  }

  .contact-page .section-heading {
    margin-right: 100px;
  }

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1320px;
  }

}

@media (max-width: 1440px) and (max-height: 900px) {

  p,
  a {
    font-size: 0.875rem;
  }

  p {
    line-height: 1.6rem !important;
  }

  .section-mt {
    margin-top: 5rem;
  }

  /* 
  ---------------------------------------------
  Header Section
  --------------------------------------------- 
  */
  .container {
    width: 100%;
    /* Adjust the size based on your design */
    margin: 0 auto;
    /* Center the container */

  }

  .header-area .main-nav ul.nav {
    flex-basis: 140%;
    margin-top: 5px;
  }

  .logo {
    width: 100%;
    max-width: 280px;
  }

  .social-links {
    display: block;
  }

  .header-area {
    height: 120px;
  }

  .header-area .main-nav .nav li a {
    display: block;
    padding-left: 15px;
    padding-right: 15px;
  }

  .header-area .main-nav .nav li {
    height: 40px;
    line-height: 100px;
    padding-left: 0px;
    padding-right: 0px;
  }
  

  /* .sub-header {
  padding: 5px 0px;
} */
  .nav .menu-link.active::after,
  .nav .main-menu-link.active::after {
    margin-top: 0px;
    bottom: 0px;
  }

  .background-header {
    height: 120px;
  }

  .header-area .main-nav .nav li a,
  .sub-header ul.info li a {
    font-size: 0.875rem;
  }
  .sub-header ul.info li:last-child a,
  .header-area .main-nav .nav li:last-child a{
    font-size: 0.875rem;
  }

  /*
-------------------------------------------
footer

----------------------------------------*/
  .footer-logo {
    max-width: 280px;
  }

  .social-icons {
    display: flex;
    gap: 20px;
    /* justify-content: center; */
    margin-top: 15px;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row;
    margin-left: 20px;
  }

  /* 
  ---------------------------------------------
  Home  Page
  --------------------------------------------- 
  */

  .main-banner {
    position: relative;
    height: 500px;
  }

  .banner-content-1 h1 {
    font-size: 44px;
  }

  .banner-content-1 p {
    font-size: 0.875rem;
  }

  .banner-content-1 {
    max-width: 600px;
  }

  #page-header-banner .text-content p,
  #programs-we-offer p,
  #facilities p,
  #collaborations p,
  #events p,
  #our-leader p,
  #our-team p,
  .footer-links a,
  .contact-info p,
  footer .contact-item a,
  .footer-menu a,
  .footer-copyright p,
  .explore-btn {

    font-size: 0.875rem;
  }

  .program-cards h3 {
    font-size: 22px;
  }

  .program-cards {
    padding: 50px 30px;
  }

  .explore-btn-second {
    font-size: 0.875rem;
  }

  .let-connect p {
    font-size: 1.25rem;
  }

  .right-main-header {
    font-size: 2rem;
  }

  .text-img .explore-btn-second {
    margin-left: 0rem;
  }

  #facilities .program-cards h5 {
    font-size: 20px;
  }

  .let-connect1 h4,
  .let-connect1 span,
  .let-connect1 a {
    font-size: 32px;
  }

  #events .event-card h5 {
    font-size: 18px;
  }

  /* 
  ---------------------------------------------
  About US  Page
  --------------------------------------------- 
  */
  .vision-mission-section .vision {
    padding: 30px 80px;
  }

  .vision-mission-section .mission {
    padding: 30px 80px;
  }

  .about-banner-p {
    font-size: 0.875rem;
  }

  .vision-mission-section .vision-mission-container p {
    padding: 0px 50px 0px 0px;
  }

  .our-leader .mentors-container h3,
  .our-team .mentors-container h3 {
    font-size: 0.875rem;
  }

  .our-leader .mentors-container p,
  .our-team .mentors-container p,
  .our-team .mentors-container h4,
  .our-leader .mentors-container h4,
  .about-banner-p span,
  .vision-mission-section .vision-mission-container p {

    font-size: 0.875rem;
  }

  #director-msg .quote {
    font-size: 0.875rem;
  }

  #page-header-banner .text-content h1 {
    font-size: 44px;
  }

  .vision-mission-section .vision-mission-container h2 {
    font-size: 32px;
  }

  .director-name {
    font-size: 0.875rem;
  }

  #director-msg .director-message-container {
    padding: 20px;
  }

  #director-msg .quote {
    padding: 0px 100px 100px 15px;
  }

  .program-flex h2,
  .program-flex-2 h2,
  .program-flex-1 h2,
  .program-flex h3,
  .program-flex-2 h3,
  .program-flex-1 h3 {
    font-size: 24px;
  }

  /* 
  ---------------------------------------------
  Mentors Page
  --------------------------------------------- 
  */
  #mentors h3 {
    font-size: 0.875rem;
  }

  #mentors p {
    font-size: 0.875rem;
  }

  /* 
  ---------------------------------------------
  What WE Do Page
  --------------------------------------------- 
  */
  .events-page-content-section .event-content-1 p,
  .events-page-content-section .event-content-2 p {
    font-size: 0.875rem;

  }

  /* 
  ---------------------------------------------
  Facilities Page
  --------------------------------------------- 
  */
  #facilities-section .facilities .startup-card {
    position: relative;
    height: 400px;
    width: 450px;
  }

  .description-text {
    font-size: 0.875rem;
  }

  /* 
  ---------------------------------------------
  Startups Page
  --------------------------------------------- 
  */


  #popup-subtitle {
    font-size: 0.875rem;
  }

  #startup-section .startup-card .startup-sub-title {
    font-size: 0.875rem;
  }

  #startup-section .startup-card .startup-title {
    font-size: 1rem;
  }

  /* 
  ---------------------------------------------
  Programs Page
  --------------------------------------------- 
  */

  .program-padding-2,
  .program-padding-1 {
    padding: 10px 30px 0px 30px;
  }

  .contact-page p {
    font-size: 0.875rem;
  }
  #program .bottom-img {
    bottom: -35px;
    left: 75%;
    transform: translateX(-50%);
    z-index: 2;
    height: 230px !important;
    width: 300px !important;
}
#program .top-img-2 {
  top: -30px;
  left: 20%;
  transform: translateX(-50%);
  z-index: 2;
  border: 5px solid var(--white) !important;
  border-radius: 40px 0 0px 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  height: 230px !important;
  width: 300px !important;
}
.contact-page .program-padding {
  padding: 10px 100px 40px 0px;
}
.contact-page .program-padding-1 {
  padding: 10px 0px 40px 100px;
}
.contact-page  ul, 
.contact-page li,
.contact-page strong,
.contact-page p{
  font-size: 0.875rem;
}
.director-message-container p{
  font-size: 0.875rem;

}
  /* 
  ---------------------------------------------
  Events Page
  --------------------------------------------- 
  */
  #arambh-event-section .content {
    align-items: flex-start;
    margin: 0px 80px;
  }

  #arambh-event-section .image-side {
    margin-top: 0px;
  }

  #arambh-event-section .image-side img {
    max-width: 400px;
  }

  #arambh-event-section .text-side h2 {
    font-size: 2rem;
  }

  #arambh-event-section .text-side p {
    font-size: 0.875rem;
  }

  #arambh-card-section .custom-card {
    padding: 40px;
    width: 300px;
    height: 400px;
  }

  .bg-color-orange {
    margin-top: -90px;
  }

  #arambh-season-prizes {
    padding: 70px 70px 150px 70px;
  }


  /* 
  ---------------------------------------------
  Contact UsPage
  --------------------------------------------- 
  */

}


@media (min-width: 1920px) {
  .container {
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1600px !important;
  }
}