@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");
@font-face {
  font-family: "Grotesque";
  src: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/397014/BrandonGrotesque-Regular.eot"),
    url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/397014/BrandonGrotesque-Regular.ttf"),
    url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/397014/BrandonGrotesque-Regular.woff");
  font-weight: normal;
}
@font-face {
  font-family: "Grotesque Black";
  src: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/397014/BrandonGrotesque-Black.eot"),
    url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/397014/BrandonGrotesque-Black.ttf"),
    url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/397014/BrandonGrotesque-Black.woff");
  font-weight: bold;
}

/* navbar font  */
@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&display=swap");

/* you can do gradient b/c from here */
* {
  margin: 0;
  padding: 0px;
  box-sizing: border-box;
  font-family: "Monospace", sans-serif;
  scroll-behavior: smooth;
  /* background-image: gradient(to bottom right, #213962, #385b91); */
}

/* new navbar starts here  */

/* nav-bar STYLING STARTS */
.nav-bar {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100px;
  justify-content: space-between;
  padding: 20px 80px;
  background: linear-gradient(to right, #008080, #004242);
  color: white;
  position: fixed;
  z-index: 1000;
  box-shadow: 0 0 30px 0 rgba(115, 128, 157, 0.7);

}
.logo-container{
  display: flex;
  align-items: center;
}

/* LOGO */
.logo-title {
  text-transform: uppercase;
  font-family: "Cinzel", sans-serif;
  font-size: 24px;
  font-weight: 600;
  background: linear-gradient(#fff, #ff8b17, #da6d00);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-text{
  width: 77%;
}
.logo-slogan {
  font-size: 12px;
}

.logo-img{
  width: 20%;
  margin-right: 3%;
}

.logo-img img {
  width: 100%;
}

.navbar-links a {
  text-decoration: none;
  color: white;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
 
}

.navbar-links a:hover, .active {
  color: #ff8b17;

}


/* nav-bar MENU */
.navbar-menu {
  display: flex;
  gap: 1em;
  font-size: 18px;
}

.navbar-menu ul {
 
  transition: 0.3s ease;
}
.navbar-menu li {
  list-style-type: none;
 
}
.navbar-menu a {
  text-decoration: none;
  padding: 5px 14px;
}



input[type="checkbox"] {
  display: none;
}

/* HAMBURGER MENU */
.hamburger {
  display: none;
  font-size: 28px;
  user-select: none;
}

/* APPLYING MEDIA QUERIES */
@media (max-width: 1150px) {
  .navbar-menu {
    gap: 0;
  }
  .logo-img {
    width: 20%;
    /* margin-right: 8px; */
  }
  .navbar-menu li {
    padding: 3px 5px;
    /* transition: 0.3s ease; */
  }

}

@media (max-width: 1200px) {

  .logo-title {
    font-size: 22px;
    font-weight: 700;
  }

}
@media (max-width: 1150px) {

  .logo-title {
    font-size: 20px;
  }

}

@media (max-width: 1100px) {

  .nav-bar {
    padding: 20px 50px;
  }

}
@media (max-width: 1050px) {


}
@media (max-width: 1010px) {
  .navbar-menu {
    display: none;
    position: absolute;
    background: linear-gradient(to right, #008080, #004242);
    margin-top: 20px;
    right: 0;
    left: 0;
    text-align: center;
    padding: 16px 0;

  }

  .navbar-menu li:hover {
    display: inline-block;
    background-color: #4c9e9e;
    transition: 0.3s ease;
  }

  .navbar-menu li {
    padding: 10px 30px;
  }
  .navbar-menu li:not(:first-child){
    margin-top: 12px;
  }

  input[type="checkbox"]:checked~.navbar-menu {
    display: block;
  }

  .hamburger {
    display: block;
  }
}

@media (max-width: 600px) {
  .logo-img{
    width: 35%;
    visibility: visible;
  }
  .logo-text{
    width: 100%;
  }

  /* method 01 */
  /* remove title and slogan and show only logo */
  .logo-title , .logo-slogan{
    opacity: 0;
    visibility: hidden;
  }

  /* method: 02 */
  /* remove logo and show title and slogan */
  /* .logo-img{
    width: 0;
    visibility: hidden;
    margin-right: 0;
  } */

}

@media (max-width: 550px) {
  .logo-title , .logo-slogan{
    opacity: 0;
    visibility: hidden;
  }
}

@media (max-width: 450px) {
  .logo-img{
    width: 55%;
    visibility: visible;
  }
}


/* nav-bar ends here */


/* Navbar ends here */


/* 
home section strt */

.collage-image-div{

  width: 100%;

}

.collage-img{
  margin-top: 100px;;
  width: 100%;
  background-size: cover;
  height: 80vh;
  background-position: center;

}

.home_heading {
  color: #037a76;
  padding-bottom: 10px;
  text-transform: uppercase;
  position: relative;
  font-size: 36px;
  text-align: center;
 
}
.home_heading:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  padding-top: 15px;
  transform: translateX(-50%);
  width: 0%;
  height: auto;
  border-bottom: 3px solid #004242;
  transition: all 0.3s linear;
}

.home_heading:hover:after {
  width: 8%;
}

/* home section end */

/* 
testimonial page strt */

.hero {
  font-family: 'Grotesque Black', sans-serif;
  color: #037a76;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.review-box {
  width: 90%;
  max-width: 700px;
  height: 300px;
  border-radius: 10px;
  box-shadow: -10px 10px 40px rgb(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
  margin: 10px;
}
h1::after {
  
  position: absolute;
  top: 100%;
  left: 50%;
  padding-top: 20px;
  transform: translateX(-50%);
  width: 0%;
  height: auto;
  border-bottom: 3px solid;
  transition: all 0.3s linear;
} 

h1:hover::after {
  width: 150px;
  color: #004242;

}

.card {
  height: 300px;
  padding: 40px;
  line-height: 22px;
  box-sizing: border-box;
  background:white
}

.profile {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
.profile img {
  width: 70px;
  border-radius: 80px;
  margin-right: 20px;
}
.profile h3 {
  font-size: 20px;
  color: #004242;
  margin-bottom: 8px;
}

#slide {
  width: 100%;
  padding-right: 60px;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
}

.sidebar {
  width: 60px;
  height: 100%;
  pad: 15px 0;
  box-sizing: border-box;
  background: #004242;
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.sidebar img {
  margin-top: 15px;
  margin-bottom: 15px;
  width: 25px;
  height: 25px;
  background: white;
  border-radius: 50%;
  cursor: pointer;
}

.card::before {
  content: "";
  width: 110px;
  height: 110px;
  border-bottom-right-radius: 100%;
  position: absolute;
  background: #004242;
  top: 0;
  left: 0;
  z-index: -1;
}
/* testimonial page end */

/* Event-slide-section start */

/* Customize the carousel control button styles */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  font-size: 24px; /* Control button size */
  background-color: #333; /* Control button background color */
  border: none; /* Remove button borders */
}

/* Change the color of the active indicator */
.carousel-indicators .active {
  background-color: #007bff; /* Active indicator color */
}


/* 
.HeroSection {
  background: #eeee;
  min-height: 70vh !important;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  padding-top: 100px;
}

.Hero-btn {
  display: flex;
  min-width: 160px;
  color: white;
  border-radius: 0px !important;
  font-size: 14px !important;
  font-weight: 500;
  -webkit-transition-duration: 5s !important;
  transition-duration: 2s !important;
  background: #0cb0e4;
}
.Hero-btn:hover {
  background-color: rgba(266, 266, 266, 0.5) !important;
  border: 1px solid #0cb0e4 !important;
  color: #0cb0e4 !important;
}

#carousel .carousel-item {
  height: 100vh;
  width: 100%;
  min-height: 500px;
  background-repeat: no-repeat scroll;
  background-size: cover;
  background-position: center;
}
#carousel .carousel-inner .carousel-item {
  transition: -webkit-transition 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
#carousel .carousel-item .caption {
  background: rgba(266, 266, 266, 0.7);
  padding: 40px;
  animation-duration: 1s;
  animation-delay: 1s;
}
#carousel .caption h2 {
  text-transform: uppercase;
  font-size: 28px;
  font-family: "Grotesque Black";
  animation-duration: 1s;
  animation-delay: 1s;
}
#carousel .caption h2 span {
  font-size: 28px;
  font-family: "Grotesque Black";
}
#carousel .caption p {
  animation-duration: 1s;
  animation-delay: 1.2s;
}
#carousel .caption a {
  animation-duration: 1s;
  animation-delay: 1.4s;
}
.animated .fadeInRight {
  color: gray !important;
  font-size: 14px !important;
  font-weight: 400 !important;
} */

/* Event-slide-section end */
 /* event section start */
.event_heading {
  font-family: "Grotesque black", sans-serif;
  font-weight: 500;
  letter-spacing: 1px;
  color: #037a76;
  text-transform: uppercase;
  position: relative;
  font-size: 40px;
}

.event_heading:hover:after {
  width: 10%;
}
 /* event section end */

/* about-us section start */
.aboutUs_heading {
  color: #037a76;
  padding-top: 100px;
  padding-bottom: 10px;
  text-transform: uppercase;
  position: relative;
  font-size: 36px;
  font-family: "Grotesque black", sans-serif;
}

.aboutUs_heading:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  padding-top: 15px;
  transform: translateX(-50%);
  width: 0%;
  height: auto;
  border-bottom: 3px solid #004242;
  transition: all 0.3s linear;
}

.aboutUs_heading:hover:after {
  width: 8%;
}

/* about-us section end */

/* contact-us page start   */
.contact-us {
  border-top: 2px solid white;
  height: auto;
  margin-top: 0 !important;
  color: white !important;
}

.contact-us .container-fluid {
  /* background-color: #004242; */
  /* opacity: 0.9; */
  height: 400px;
  background-image: linear-gradient(to right, #008080, #004242);
}

.container .contactUs-Heading h3 {
  padding-top: 150px !important ;
  font-family: "Grotesque black", sans-serif;
  font-weight: 500;
  letter-spacing: 1px;
  color: white;
  text-transform: uppercase;
  position: relative;
  font-size: 36px;
}
.contactUs-Heading h3:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  padding-top: 20px;
  transform: translateX(-50%);
  width: 0%;
  height: auto;
  border-bottom: 3px solid;
  transition: all 0.3s linear;
}
.contactUs-Heading h3:hover:after {
  width: 9%;
}
.contactUs-Heading p {
  font-family: "Poppins", sans-serif !important;
  font-size: 14px;
  color: white;
  padding: 30px 50px;
}
.contact-us .card {
  margin-top: -60px;
  margin-bottom: 30px;
}
.contact-us .col-lg-5 h4 {
  font-family: "Grotesque Black", sans-serif;
  margin-top: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #037a76;
}
.contact-us .card .card-body p {
  margin-top: 10px;
  font-size: 14px;
  color: gray;
}
.contact-us .card {
  height: auto;
}
.contact-us .card-head {
  color: white;
  text-transform: uppercase;
  text-align: center;
  background-color: #004242;
  border-radius: 5px;
  margin-top: -40px;
  box-shadow: -1px 9px 27px -8px #004242;
}
.contact-us .card-head h4 {
  margin-bottom: 0 !important;
}
.effect-1 {
  border: 0;
  outline: none;
  width: 100%;
  padding: 7px 0;
  border-bottom: 1px solid #ccc;
}
.effect-1 ~ .focus-border {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #008080;
  transition: 0.4s;
}
.effect-1:focus ~ .focus-border {
  width: 100%;
  transition: 0.4s;
  left: 0;
}

.contact-us .container .col-lg-5 .card-body {
  box-shadow: -1px 9px 27px -8px #004242;
  min-height: 437px !important;
}
.contact-us .container .col-lg-7 .card-body {
  box-shadow: -1px 9px 27px -8px #004242;
  min-height: 437px !important;
}
@media (max-width: 400px) {
  .contact-us .card {
    margin-top: 10px;
  }
  .contact-us {
    height: auto !important ;
  }
  .contact-us .container-fluid {
    height: 30% !important;
  }

  .contact-us .container .col-lg-5 .card-body {
    height: auto !important;
  }
  .contact-us .container .col-lg-5 .card {
    margin-bottom: 30px;
  }
}
/* contact-us page end   */
/* 



/* foooter section */


footer{
  width: 100%;
  background-image: linear-gradient(to right, #008080, #004242);
  position: relative;
}
.footerContainer{
 width: 100%;
 margin: auto 0;
 padding: 20px  ;
}
.logo-part{
    text-align: center;
   margin-right:6px;
 /* border-right: 1px solid white; */
}

.logo-footer {
 width: 200px;
}

.footer-p {
  font-family: "Cinzel" , serif;
font-size: 12px;
text-align: center;
margin-top: -60px;
color: white;

} 
/* .footer-p span{
color: rgb(229, 226, 221);
font-size: 20px;
} */

.socialIcons{
 display: flex;
 justify-content: center;
}

.socialIcons a{
 text-decoration: none;
 padding: 12px;
 background-color: white;
 margin: 10px;
 border-radius: 50%;
}
.socialIcons a i{
 font-size: 30px;
 color: #004242;
 opacity: 0.9;
}
.socialIcons a:hover{
 background-color: #ff8b17;
 transition: 0.5s;

}
.socialIcons a:hover i{
 color: white;
 transition: 0.5s;
}

.footerNav{
 margin: 30px 0;
}

.footerNav ul{
 display: flex;
 justify-content: center;
 list-style: none;

}
.footerNav ul li a{
color: white;
margin: 20px;
text-decoration: none;
font-size: 15px;
opacity: 0.7;
transition: 0.5s;
}
.footerNav ul li a:hover{
 opacity: 2;
 color: #da6d00;
}


@media(max-width: 1200px){
  .navbar .container{
    height: 100px;
    margin-top: 0;
  }
  .navbar-brand img {
    width: 120px;
  }
  
  .Brand {
    font-size: 15px;

  }
  .slogon{
   font-size: 12px;
  }
}




@media(max-width: 700px){

  .navbar-brand img {
    width: 100px;
  }
  
  .Brand {
    font-size: 15px;

  }
  .slogon{
   font-size: 12px;
  }
 .footerNav ul{
     flex-direction: column;
 }
 .footerNav ul li{
     width: 100%;
     text-align: center;
     margin: 10px;
 }
 .socialIcons a{
     flex-direction: row-reverse;
     margin-left: 2px;
 }
 .logo-part{
     width: 100%;
     margin: 10px;
     
 }

}











