@import url("https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&family=Spectral:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");

@font-face {
  font-family: "Circular";
  src: url('fonts/circular-std-medium-500.ttf');
}

@font-face {
  font-family: "Times New Roman";
  src: url('fonts/times.ttf');
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Merriweather", sans-serif;
}

body {
  min-height: 100vh;
  background-color: #f0f0f0;
  overflow-x: hidden;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

body.fade-in {
  opacity: 1;
}

body:hover > #trailer {
  opacity: 1;
}

#trailer {
  height: 20px;
  width: 20px;
  background-color: white;
  border-radius: 20px;

  position: fixed;
  left: 0px;
  top: 0px;
  z-index: 10000;

  pointer-events: none;
  opacity: 0;
  transition: opacity 500ms ease;

  display: grid;
  place-items: center;
}

#trailer:not([data-type=""]) > #trailer-icon {
  opacity: 1;
}

#trailer-icon {
  font-size: 6px;
  line-height: 4px;

  opacity: 0;
  transition: opacity 400ms ease;
}

@media (max-width: 1110px) {
  #trailer {
    display: none;
  }
}

.interactable {
  background-size: 100%;
  opacity: 0.4;

  transition: background-size 400ms ease, opacity 400ms ease;
}

.interactable:hover {
  background-size: 105%;
  opacity: 0.8;
}



/* Header Styles */
header {
  background-color: rgba(245, 245, 247, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 100px;
  z-index: 999;
  transition: 0.6s ease-in-out;
  backdrop-filter: saturate(1.8) blur(5px);
  transform: translateY(0); /* Default position */
  opacity: 1; /* Default opacity */
}

header.fade-out {
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

header.fade-in {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.4s ease, opacity 0.4s ease;
  padding: 10px 100px;
}

header.sticky {
  background-color: rgba(245, 245, 247, 0.5);
  backdrop-filter: saturate(4) blur(5px);
  padding: 10px 100px;
}

@media (max-width: 600px) {
  header {
    padding: 10px 50px;
  }

  header.sticky {
    padding: 10px 50px;
  }
}

header .brand {
  font-size: 20px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 2px;
}

header .menu {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

header .menu a {
  font-family: "Spectral";
  letter-spacing: 1px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  color: #111;
  margin: 0 30px;
  padding: 5px 5px;
  border-radius: 15px;
  transition: 0.3s;
  transition-property: color, background;
}

header .menu a:hover {
  color: #bdbdbd;
}

header .logo {
  width: 60px;
  height: auto;
}

header .btn {
  font-size: 25px;
  cursor: pointer;
  color: #fff;
  display: none;
}

/* .interactable class */
.interactable {
  transition: background-size 400ms ease, opacity 400ms ease;
}

.interactable:hover {
  background-size: 105%;
  opacity: 0.8;
}

.dropdown-content .interactable {
  opacity: 1;
}

.dropdown-content .interactable:hover {
  opacity: 0.8;
}

/* Dropdown styles */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: rgba(245, 245, 247, 0.8);
  backdrop-filter: saturate(1.8) blur(5px);
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  padding: 10px 0;
}

.dropdown-content a {
  color: #111;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-family: "Spectral";
  letter-spacing: 1px;
  font-size: 15px;
  font-weight: 600;
  transition: 0.3s;
}

.dropdown-content a:hover {
  color: #bdbdbd;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Mobile Dropdown Styles */
@media (max-width: 1120px) {
  .dropdown-content {
    display: none; /* Hide dropdown by default */
    position: static; /* Reset position for mobile */
    background-color: transparent; /* Remove background */
    box-shadow: none; /* Remove shadow */
    padding: 0; /* Remove padding */
  }

  .dropdown.active .dropdown-content {
    display: block; /* Show dropdown when active */
  }

  .dropdown-content a {
    padding: 10px 20px; /* Adjust padding for mobile */
    font-size: 18px; /* Increase font size for better touch targets */
  }
}

/* Responsive Styles */
@media (max-width: 1120px) {
  header .btn {
    display: block;
    color: #111;
  }

  header .menu.active {
    right: 0;
  }

  header .menu {
    z-index: 1000000;
    position: fixed;
    background: rgba(240, 240, 240, 0.9);
    flex-direction: column;
    min-width: 400px;
    height: 100vh;
    top: 0;
    right: -100%;
    padding: 80px 50px;
    transition-property: right;
    transition: 0.5s;
  }

  header .menu .close-btn {
    position: absolute;
    top: 0;
    left: 0;
    margin: 25px;
  }

  header .menu a {
    display: block;
    font-size: 25px;
    margin: 20px;
    padding: 0 15px;
  }
}

@media (max-width: 580px) {
  .section-main h1 {
    font-size: 50px;
    line-height: 60px;
  }
}

/*Content of the page starts */
/* Hero Section */
.hero {
  position: relative;
  top: 0;
  aspect-ratio: 16 / 9 !important;
  width: 100%;
  background-image: url("");
  background-size: cover;
}

.hero-text {
  position: relative;
  top: 35%;
  text-align: center;
  line-height: 1;
  font-size: clamp(50px, 8vw, 120px);
  font-family: "Playfair Display", serif;
  color: #3b3d8a;
  z-index: 1;
}

@media only screen and (max-width: 600px) {
  .hero-text {
    font-size: 25px !important;
  }
  .hero-sub{
    font-size: 15px !important;

  }
}

.hero-sub {
  padding-left: 5%;
  padding-right: 5%;
  position: relative;
  top: 40%;
  text-align: center;
  line-height: 1;
  font-size: clamp(25px, 2.3vw, 90px);
  font-family: "Playfair", serif;
  color: #111;
  z-index: 1;
  font-style: italic;
}

#hero-bg {
  filter: saturate(1.8);
  position: absolute;
  width: 100vw;
  height: 100vh;
  opacity: 20%;
  /*background-image: url("https://wallpapers.com/images/featured/newspaper-aesthetic-6zy4tj738voyh9fx.jpg");*/
  background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0.5) 90%,
      #f0f0f0
    ),
    url("https://wallpapers.com/images/featured/newspaper-aesthetic-6zy4tj738voyh9fx.jpg");
  z-index: -100;
}

/* Hero text animation */
.hero-text {
  opacity: 0;
  transform: translateY(20px); /* Start 20px below its final position */
  transition: opacity 1s ease-in-out, transform 0.8s ease-in-out;
}

.hero-text.fade-up {
  opacity: 1;
  transform: translateY(0); /* Move to its final position */
}

/* Sub hero text animation */
.hero-sub {
  opacity: 0;
  transform: translateY(20px); /* Start 20px below its final position */
  transition: opacity 1s ease-in-out, transform 0.8s ease-in-out;
}

.hero-sub.fade-up {
  opacity: 1;
  transform: translateY(0); /* Move to its final position */
}

/* About us section */
.about {
  height: auto;
  width: auto;
}

.about .sub {
  height: 200px;
  width: 20%;
}

.scrolla {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 1;
  font-family: "HaasGbold", sans-serif;
  font-size: 300px;
  white-space: nowrap;
  opacity: 5%;
  letter-spacing: 0px;
  text-transform: uppercase;
  overflow-x: hidden;
}

.about-head,
h3 {
  font-family: "Playfair Display", serif;
  font-size: clamp(50px, 4vw, 100px);
  color: #364189;
  padding-left: 50px;
  padding-top: 50px;
}

.abtext-container {
  padding-top: 110px;
  width: 70%;
}

.about-text {
  line-height: 2;
  font-family:'Times New Roman', serif;
  font-weight: 500;
  font-size: 25px;
  color: #111;
  padding-left: 50px;
  padding-top: 50px;
  padding-bottom: 70px;
}

.about {
  opacity: 0;
  transform: translateY(30px); /* Start 20px below its final position */
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}

.about.fade-up {
  opacity: 1;
  transform: translateY(0); /* Move to its final position */
}

@media (max-width: 830px) {
  .abtext-container {
    width: 90%;
  }
  .about-text {
    font-size: 15px;
  }
}

/* Meet the team section 
.meet {
  width: auto;
  height: auto;
}

.team-container {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
  width: 100%;
  height: auto;
  padding: auto;
  margin-top: 50px;
  margin-bottom: 50px;
}

.member {
  color: #f5f5f5;
  background-color: #0b2f52;
  box-shadow: 0px 0px 20px #444;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 20px;
  text-align: center;
  padding: 30px;
  margin: 20px;
  transition: padding 0.8s ease;
}

.member:hover {
  padding: 35px;
}

.img {
  border-radius: 50%;
  height: 200px;
  width: 200px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.jiy {
  background-image: url("jiyana.jpeg");
}

.kab {
  background-image: url("kabeer.jpeg");
}

.nak {
  background-image: url("nakshatra.jpeg");
}

.sha {
  background-image: url("shaurya.png");
}

.member h4 {
  font-size: 26px;
  padding-top: 20px;
}

.member h5 {
  font-size: 16px;
  padding-top: 20px;
}

.team-head {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}

.team-head.fade-up {
  opacity: 1;
  transform: translateY(0);
}

.member {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-in-out,
    transform 0.8s ease-in-out padding 0.8s ease;
}

.member.fade-up {
  opacity: 1;
  transform: translateY(0);
}
*/
/* join section */

@import url("https://fonts.googleapis.com/css?family=Cardo:400i|Rubik:400,700&display=swap");

:root {
  --d: 700ms;
  --e: cubic-bezier(0.19, 1, 0.22, 1);
  --font-sans: "Rubik", sans-serif;
  --font-serif: "Cardo", serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  display: grid;
  place-items: center;
}

.page-content {
  display: grid;
  grid-gap: 5rem;
  padding: 5rem;
  max-width: 90%;
  margin: 0 auto;
  font-family: var(--font-sans);
}

@media (min-width: 600px) {
  .page-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 800px) {
  .page-content {
    grid-template-columns: repeat(4, 1fr);
  }
}

.card {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 1rem;
  width: 100%;
  min-width: 200px !important;
  height: 350px !important;
  text-align: center;
  color: whitesmoke;
  background-color: whitesmoke;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1), 0 2px 2px rgba(0, 0, 0, 0.1),
    0 4px 4px rgba(0, 0, 0, 0.1), 0 8px 8px rgba(0, 0, 0, 0.1),
    0 16px 16px rgba(0, 0, 0, 0.1);
}

@media (min-width: 600px) {
  .card {
    height: 350px;
  }
}

.card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 110%;
  background-size: cover;
  background-position: 0 0;
  transition: transform calc(var(--d) * 1.5) var(--e);
  pointer-events: none;
}

.card:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200%;
  pointer-events: none;
  background-image: linear-gradient(
    to bottom,
    hsla(0, 0%, 0%, 0) 0%,
    hsla(0, 0%, 0%, 0.009) 11.7%,
    hsla(0, 0%, 0%, 0.034) 22.1%,
    hsla(0, 0%, 0%, 0.072) 31.2%,
    hsla(0, 0%, 0%, 0.123) 39.4%,
    hsla(0, 0%, 0%, 0.182) 46.6%,
    hsla(0, 0%, 0%, 0.249) 53.1%,
    hsla(0, 0%, 0%, 0.32) 58.9%,
    hsla(0, 0%, 0%, 0.394) 64.3%,
    hsla(0, 0%, 0%, 0.468) 69.3%,
    hsla(0, 0%, 0%, 0.54) 74.1%,
    hsla(0, 0%, 0%, 0.607) 78.8%,
    hsla(0, 0%, 0%, 0.668) 83.6%,
    hsla(0, 0%, 0%, 0.721) 88.7%,
    hsla(0, 0%, 0%, 0.762) 94.1%,
    hsla(0, 0%, 0%, 0.79) 100%
  );
  transform: translateY(-50%);
  transition: transform calc(var(--d) * 2) var(--e);
}

/* Images from Unsplash */
.card:nth-child(1):before {
  background-image: url("nakshatra.jfif");
  background-position: center;
}
.card:nth-child(2):before {
  background-image: url("jiyana.jfif");
  background-position: center;
}
.card:nth-child(3):before {
  background-image: url("naisha.jfif");
  background-position: center;
}
.card:nth-child(4):before {
  background-image: url("arav.jpg");
  background-position: center;
}

.content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 1rem;
  transition: transform var(--d) var(--e);
  z-index: 1;
}

.content > * + * {
  margin-top: 1rem;
}

.title {
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.copy {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-style: italic;
  line-height: 1.35;
}

@media (hover: hover) and (min-width: 600px) {
  .card:after {
    transform: translateY(0);
  }

  .content {
    transform: translateY(calc(100% - 4.5rem));
  }

  .content > *:not(.title) {
    opacity: 0;
    transform: translateY(1rem);
    transition: transform var(--d) var(--e), opacity var(--d) var(--e);
  }

  .card:hover,
  .card:focus-within {
    align-items: center;
  }

  .card:hover:before,
  .card:focus-within:before {
    transform: translateY(-4%);
  }

  .card:hover:after,
  .card:focus-within:after {
    transform: translateY(-50%);
  }

  .card:hover .content,
  .card:focus-within .content {
    transform: translateY(0);
  }

  .card:hover .content > *:not(.title),
  .card:focus-within .content > *:not(.title) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: calc(var(--d) / 8);
  }

  .card:focus-within:before,
  .card:focus-within:after,
  .card:focus-within .content,
  .card:focus-within .content > *:not(.title) {
    transition-duration: 0s;
  }
}

.joinus {
  height: calc(100vh + 100px);
}

.join-text {
  text-align: center;
  line-height: 1.5;
  font-family: "Times New Roman", serif;
  font-weight: 400;
  font-size: 20px;
  color: #111;
  padding-top: 200px;
  height: 170px;
}

@media (max-width: 830px) {
  .join-text {
    padding-right: 10px;
    padding-left: 20px;
    font-size: 15px;
  }
}





/* button */
button {
  padding-top:100px;
  --border: 5px; /* the border width */
  --slant: 0.2em; /* control the slanted corners */
  --color: #111; /* the color */

  font-size: clamp(10px, 2.5vw, 20px);
  padding: 0.4em 1.2em;
  border: none;
  cursor: pointer;
  font-family: "Playfair Display", serif;
  color: #111;
  background: linear-gradient(to bottom left, var(--color) 50%, #0000 50.1%) top
      right,
    linear-gradient(to top right, var(--color) 50%, #0000 50.1%) bottom left;
  background-size: calc(var(--slant) + 1.3 * var(--border))
    calc(var(--slant) + 1.3 * var(--border));
  background-repeat: no-repeat;
  box-shadow: 0 0 0 200px inset var(--s, #0000),
    0 0 0 var(--border) inset var(--color);
  clip-path: polygon(
    0 0,
    calc(100% - var(--slant)) 0,
    100% var(--slant),
    100% 100%,
    var(--slant) 100%,
    0 calc(100% - var(--slant))
  );
  transition: color var(--t, 0.3s), background-size 0.3s;
}
button:focus-visible {
  outline-offset: calc(-1 * var(--border));
  outline: var(--border) solid #000c;
  clip-path: none;
  background-size: 0 0;
}
button:hover,
button:active {
  background-size: 100% 100%;
  color: #fff;
  --t: 0.2s 0.1s;
}
button:active {
  --s: #0005;
  transition: none;
}

button {
  margin: 10px;
}

.button {
  position: relative;
  top: 250px;
  display: flex;
  justify-content: center;
}

.joinus .join-text,
.joinus .join-container,
.joinus .button,
.joinus .lower {
  opacity: 0;
  transform: translateY(20px); /* Start 20px below its final position */
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}

.joinus .join-text.fade-up,
.joinus .join-container.fade-up,
.joinus .button.fade-up,
.joinus .lower {
  opacity: 1;
  transform: translateY(0);
}



.container {
	position: absolute;
	left: 0;
	top: 800px;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.tabs {
	display: flex;
	position: relative;
	background-color: #fff;
	box-shadow: 0 0 1px 0 rgba(24, 94, 224, 0.15), 0 6px 12px 0 rgba(24, 94, 224, 0.15);
	padding: 0.75rem;
	border-radius: 99px; /* pill effect */
}

.tabs * {
	z-index: 2;
}

input[type="radio"] {
	display: none;
}

.tab {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 54px;
	width: 200px;
	font-size: 1.25rem;
	font-family: "Times New Roman", serif;
  font-weight: 400;
	border-radius: 99px; /* pill effect */
	cursor: pointer;
	transition: color 0.15s ease-in;
}

.notification {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	margin-left: 0.75rem;
	border-radius: 50%;
	background-color: #e6eef9;
	transition: 0.15s ease-in;
  font-family: "Circular", sans-serif;
  font-weight: 400;
}

input[type="radio"]:checked + label {
	color: var(--primary-color);
}

input[type="radio"]:checked + label > .notification {
	background-color: #185ee0;
	color: #fff;
}

input[id="radio-1"]:checked ~ .glider {
	transform: translateX(0);
}

input[id="radio-2"]:checked ~ .glider {
	transform: translateX(100%);
}

input[id="radio-3"]:checked ~ .glider {
	transform: translateX(200%);
}

input[id="radio-4"]:checked ~ .glider {
	transform: translateX(300%);
}

input[id="radio-5"]:checked ~ .glider {
	transform: translateX(400%);
}

input[id="radio-6"]:checked ~ .glider {
	transform: translateX(500%);
}

.glider {
	position: absolute;
	display: flex;
	height: 54px;
	width: 200px;
	background-color: #e6eef9;
	z-index: 1;
	border-radius: 99px; /* pill effect */
	transition: 0.25s ease-out;
}

@media (max-width: 700px) {
	.tabs {
		transform: scale(0.6);
	}
}

/* Tab content styles */
.tab-content-container {
  position: relative;
  top: 40px;
  width: 100%;
  height: 150px;
  overflow: hidden;
  margin-bottom: 30px;
}

.tab-content-slider {
  display: flex;
  position: absolute;
  width: 600%; /* 100% for each of the 3 tabs */
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.tab-content {
  width: 16.666%; /* Each tab takes up 1/3 of the slider */
  padding: 0 20px;
  text-align: center;
}

.tab-content h4 {
  font-size: 50px;
}

.tab-content p {
  font-family: "Times New Roman", serif;
  font-weight: 400;
}

/* Direct selectors for the radio buttons */
#radio-1:checked ~ .tab-content-container .tab-content-slider {
  transform: translateX(0);
}

#radio-2:checked ~ .tab-content-container .tab-content-slider {
  transform: translateX(-16.666%);
}

#radio-3:checked ~ .tab-content-container .tab-content-slider {
  transform: translateX(-33.333%);
}

#radio-4:checked ~ .tab-content-container .tab-content-slider {
  transform: translateX(-50%);
}

#radio-5:checked ~ .tab-content-container .tab-content-slider {
  transform: translateX(-66.666%);
}

#radio-6:checked ~ .tab-content-container .tab-content-slider {
  transform: translateX(-83.333%);
}

/* hr animations */
hr {
  border: none;
  height: 1px;
  background-color: #333;
  width: 0;
  margin: 40px auto;
  transition: width 0.8s ease-in-out;
}

hr.expand {
  width: 100%;
}

/* contact */

.contact {
  width: 100%;
  padding: 0px 50px;
  padding-bottom: 30px;
}

h3 {
  font-family: "Playfair Display", serif;
  font-size: clamp(50px, 4vw, 100px);
  color: #364189;
  padding-left: 0px;
  padding-top: 0px;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.icons {
  font-size: 50px;
  color: #364189;
}

.icons i {
  padding: 0px 20px;
  cursor: pointer;
}