/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --first-color: hsl(275, 35%, 41%);
  --golde-color:hsl(46, 53%, 53%) ;
  --title-color: hsl(230, 75%, 15%);
  --text-color: hsl(230, 12%, 40%);
  --body-color: hsla(0, 8%, 83%, 0.877);
  --container-color: hsl(230, 100%, 97%);
  --border-color: hsl(240, 3%, 6%);
  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Syne", sans-serif;
  --h2-font-size: 1.25rem;
  --normal-font-size: .938rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;

  /*========== z index ==========*/
  --z-fixed: 100;
  --z-modal: 1000;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1023px) {
  :root {
    --h2-font-size: 1.5rem;
    --normal-font-size: 1rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body,
input,
button {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

body {
  background-image: url(../img/clouds.png);
  color: var(--text-color);
}
input,
button {
  border: none;
  outline: none;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1120px;
  margin-inline: 1.5rem;
}

.main {
  position: relative;
  height: 100vh;
}

.main__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -1;
}

.search,
.login {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: var(--z-modal);
  background-color: hsla(230, 75%, 15%, .1);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px); /* For safari */
  padding: 8rem 1.5rem 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s;
}

.search__close,
.login__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 1.5rem;
  color: var(--title-color);
  cursor: pointer;
}

/*=============== HEADER & NAV ===============*/
.header {
  top: 0;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    left: 0;
    right: 0;
    z-index: 100000;
    padding: 0%;
    margin: 0%;
  background-color: var(--body-color);
  background-image: url('../img/another\ cloud.png'); 
  background-size: cover; 
  background-position: center; 
  z-index: var(--z-fixed);
}

.nav {
  margin-top:-50px;
  padding: 2rem 5%;
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
    height: 100%;
    max-width: 1250px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: auto;
}

.nav__logo {
  width: 85px;
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
  transition: color .4s;
}

.header .nav__menu .nav__list .nav__item .nav__link {
  color: var(--border-color);
    text-decoration: none;
    font-size: 18px;
    padding: 1px 1px;
    border-radius: 99px;
    transition: background 0.3s;
}

.header .nav__menu .nav__list .nav__item .nav__link.active {
  background-color: var(--first-color); 
  color: #D2E2FB;
}

.header .nav__menu .nav__list .nav__item .nav__link:not(.active):hover {
  background-color: var(--first-color); 
 
}

@media (max-width: 1024px) {
  .nav__logo {
    width: 60px; 
  }
}

@media (max-width: 768px) {
  .nav {
      padding: 0rem 2%;
    }
  .nav__logo {
    width: 70px; 
  }
}

@media (max-width: 480px) {
  .nav {
      padding: 0rem 2%;
    }
  .nav__logo {
    width: 60px; 
  }
}
.nav__actions {
  display: flex;
  align-items: center;
  column-gap: 1rem;
}

.nav__search, 
.nav__login, 
.nav__toggle, 
.nav__close {
  font-size: 1.45rem;
  color: var(--title-color);
  cursor: pointer;
  transition: color .4s;
}

:is(.nav__logo, .nav__search, .nav__login, .nav__toggle, .nav__link):hover {
  color: var(--first-color);
}

@media screen and (max-width: 1023px) {
  .nav__menu {
    position: fixed;
    top: -100%;
    left: 0;
    background-color: var(--body-color);
    box-shadow: 0 8px 16px hsla(230, 75%, 32%, .15);
    width: 100%;
    padding-block: 1.5rem 2rem;
    transition: top .4s;
  }
}


.nav__list {
  display: flex;
  flex-direction: column;
  row-gap: 2.5rem;
  text-align: center;
}

.nav__link {
  font-size: large;
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
  transition: color .4s;
}

.nav__close {
  position: absolute;
  top: 1.15rem;
  right: 1.5rem;
}

/* Show menu */
.show-menu {
  top: 0;
}

/*=============== SEARCH ===============*/
.search {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.search__input {
  font-size: 1rem;
  background-color: var(--container-color, );
  color: var(--text-color, #333);
  border: 5px solid #ddd;
  border-radius: 2.5rem;
  padding: 0.75rem;
}

.search__input::placeholder {
  color: var(--text-color, #999);
}

/* Show search */
.show-search {
  opacity: 1;
  pointer-events: initial;
}
/*=============== LOGIN ===============*/
.login__form, 
.login__group {
  display: grid;
}

.login__form {
  background-color: var(--container-color);
  padding: 2rem 1.5rem 2.5rem;
  box-shadow: 0 8px 32px hsla(230, 75%, 15%, .2);
  border-radius: 1rem;
  row-gap: 1.25rem;
  text-align: center;
  transform: translateY(-1rem);
  transition: transform .4s;
}

.login__title {
  font-size: var(--h2-font-size);
  color: var(--title-color);
}

.login__group {
  row-gap: 1rem;
}

.login__label {
  display: block;
  text-align: initial;
  color: var(--title-color);
  font-weight: var(--font-medium);
  margin-bottom: .25rem;
}

.login__input {
  width: 100%;
  background-color: var(--container-color);
  border: 2px solid var(--border-color);
  padding: 1rem;
  border-radius: .5rem;
  color: var(--text-color);
}

.login__input::placeholder {
  color: var(--text-color);
}

.login__signup {
  margin-bottom: .5rem;
}

.login__signup a {
  color: var(--first-color);
}

.login__forgot {
  display: inline-block;
  color: var(--first-color);
  margin-bottom: 1.25rem;
}

.login__button {
  display: inline-block;
  background-color: var(--first-color);
  width: 100%;
  color: #fff;
  font-weight: var(--font-semi-bold);
  padding: 1rem;
  border-radius: .5rem;
  cursor: pointer;
  transition: box-shadow .4s;
}

.login__button:hover {
  box-shadow: 0 4px 24px hsla(230, 75%, 40%, .4);
}

/* Show login */
.show-login {
  opacity: 1;
  pointer-events: initial;
}

.show-login .login__form {
  transform: translateY(0);
}

/*=============== BREAKPOINTS ===============*/
/* For medium devices */
@media screen and (min-width: 576px) {
  .search,
  .login {
    padding-top: 10rem;
  }

  .search__form {
    max-width: 450px;
    margin-inline: auto;
  }

  .search__close,
  .login__close {
    width: max-content;
    top: 5rem;
    left: 0;
    right: 0;
    margin-inline: auto;
    font-size: 2rem;
  }

  .login__form {
    max-width: 400px;
    margin-inline: auto;
  }
}

/* For large devices */
@media screen and (min-width: 1023px) {
  .nav {
    height: calc(var(--header-height) + 2rem);
    column-gap: 3rem;
  }
  .nav__close, 
  .nav__toggle {
    display: none;
  }
  .nav__menu {
    margin-left: auto;
  }
  .nav__list {
    flex-direction: row;
    column-gap: 3rem;
  }

  .login__form {
    padding: 3rem 2rem 3.5rem;
  }
}

@media screen and (min-width: 1150px) {
  .container {
    margin-inline: auto;
  }
}
/*=============== HOME ===============*/
.home {
  display: flex;

  background: linear-gradient(to top, #D2E2FB 0%, #86a8db);
  position: relative;
  overflow: hidden;
}

.home img {
  position: absolute;
  bottom: 0;
  width: 100%;
  pointer-events: none;
}

.home .title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--mainafterclr);
  font-size: 80px;
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
}

.about {
  padding: 50px;
  background: var(--mainclr);
  color: var(--mainafterclr);
  position: relative;
  z-index: 100;
}

.about h1 {
  font-size: 1vw;
}

/* Add this to your CSS file */
.parallax {
  /* The image used */
  background-image: url('your-image-url.jpg');

  /* Set a specific height */
  height: 500px;

  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
/* sub-header effect */
.sub-header {
  height: 20vw;
  width: 100%;
  background-image: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)),
    url(../img/front\ main.jpg);
  background-position: center;
  background-size: cover;
  text-align: center;
  color: #fff;
}

/*=============== CONTACT ===============*/
.contact-bg {
  width: 100%;
  height: 32vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8)), url(../img/front\ main.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.contact-bg h3 {
  font-size: 1.3rem;
  font-weight: 400;
}

.contact-bg h2 {
  font-size: 3rem;
  text-transform: uppercase;
  padding: 0.4rem 0;
  letter-spacing: 4px;
}

.line div {
  margin: 0 0.2rem;
}

.line div:nth-child(1),
.line div:nth-child(3) {
  height: 3px;
  width: 70px;
  background:var(--first-color);
  border-radius: 5px;
}

.line {
  display: flex;
  align-items: center;
}

.line div:nth-child(2) {
  width: 10px;
  height: 10px;
  background: var(--golde-color);
  border-radius: 50%;
}

.text {
  font-weight: 300;
  opacity: 0.9;
}

.contact-bg .text {
  margin: 1.6rem 0;
}

.contact-bg {
  padding-bottom: 0;
}

.page-link {
  transition: background-color 0.3s;
}

.contact-bg {
  padding-bottom: 0;
}

.page-link {
  transition: background-color 0.3s;
}

.page-link:hover {
  background-color: var(--golde-color);
}

.contact-bg {
  padding-bottom: 0;
}

.page-link {
  transition: background-color 0.3s;
  font-size: 1rem;
  /* Increased font size */
}

.page-link:hover,
.contact-active {
  background-color: var(--golde-color);
}

@media (max-width: 640px) {
  .page-link {
    font-size: 0.875rem;
    /* Slightly larger font size for small screens */
  }
}
.contact-body {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1rem;
}

.contact-info span {
  display: block;
}
.contact-body h1 {
  text-align: center; 
  margin-top: 5vh;
  margin-bottom: 5vh; 

}

.contact-info span .fas {
  font-size: 5rem;
  padding-bottom: 0.9rem;
  color:var(--golde-color);
}
.contact-info div {
    margin: 0.8rem 0;
    padding: 1rem;
    display: flex;
    flex-direction: column; 
    align-items: center; 
    margin-bottom: 15px; 
}

.contact-info .bank-logo {
   padding-bottom: 0.9rem;
  width: 100px;
  height: auto;
}
.contact-info div span:nth-child(2) {
  font-weight: 500;
  font-size: 1.1rem;
}

.contact-info .text {
  padding-top: 0.4rem;
}

.contact-form {
    margin: 2vw;
  padding: 2rem 0;
  border-top: 1px solid #c7c7c7;
}

.contact-form form {
  padding-bottom: 1rem;
}

.form-control {
  width: 100%;
  border: 1.5px solid #c7c7c7;
  border-radius: 5px;
  padding: 0.7rem;
  margin: 0.6rem 0;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  outline: 0;
}

.form-control:focus {
  box-shadow: 0 0 6px -3px rgba(48, 48, 48, 1);
}

.contact-form form div {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 0.6rem;
}

.send-btn {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  color: #fff;
  background:var(--first-color);
  border: none;
  border-radius: 5px;
  padding: 0.7rem 1.5rem;
  cursor: pointer;
  transition: all 0.4s ease;
}

.send-btn:hover {

  background-color: var(--golde-color);
}

.contact-form>div img {
  text-align: right;
  width: 60%;
}

.contact-form>div {
  margin: 0 auto;
  text-align: center;
}


.social-links {
  display: flex;
  justify-content: center;
}

.social-links a {
  text-decoration: none;
  width: 40px;
  height: 40px;
  color:var(--first-color);
  border: 2px solid var(--first-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.4rem;
  transition: all 0.4s ease;
}

.social-links a:hover {
  color:var(--golde-color);
  border-color: var(--golde-color);
}

.contact-img{
  padding-left: 100px;
}

.map iframe {
  margin: 1%;
    width: 99vw; /* This will make the width stretch to cover the viewport width */
    height: 450px; /* This will keep the height fixed at 450px */
    object-fit: cover; /* This will ensure the map covers the given dimension */
    border: 0; /* Removes the border */
}

@media screen and (min-width: 768px) {
  .contact-bg .text {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
  }

  .contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 992px) {
  .contact-bg .text {
    width: 50%;
  }

  .contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }
}

@media screen and (min-width: 1200px) {
  .contact-info {
    grid-template-columns: repeat(4, 1fr);
  }
}



/**********************Botton**********************/

.btn {
  padding: 0.75rem 1.5rem;
  outline: none;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  color: var(--border-color);
  background-color: var(--first-color);
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  background-color: var(--golde-color);
}
.section__subheader {
  margin-bottom: 0.5rem;
  /* position: relative; */
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--first-color);
  font-size: 20px;
}

.section__subheader::after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translate(1rem, -50%);
  height: 2px;
  width: 8rem;
  background-color: var(--first-color);
}

/**********************CLOCK**********************/

.clock-body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: -150vh;
  z-index: 9999;
  margin-top: -60px;
}

.clock {
  height: 150px;
  width: 1100px;
  padding: 40px;
  background: linear-gradient(hsl(275, 35%, 41%), hsl(46, 53%, 53%));
  box-shadow: 10px 10px 50px #808080;
  border-radius: 8px;
}

.clock .display {
  padding: 40px 10px 10px;
  border-radius: 6px;
  background-color: #ffffff;
  box-shadow: 0 1px 1px rgba(255, 0, 0, 0.08) inset,
    0 1px 1px var(--golde-color);
  position: relative;
}

.clock .display .weekdays {
  font-size: 20px;
  font-weight: 600;
  width: 100%;
  position: absolute;
  top: 10px;
  left: 0;
  text-align: center;
  font-family: 'Text Me One', sans-serif;
}

.weekdays span {
  color: var(--first-color);
  padding: 0 10px;
  opacity: 0.2;
}

.weekdays span.active {
  opacity: 1;
}

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

.timeDisplay .time {
  font-size: 80px;
  display: flex;
  justify-content: center;
  letter-spacing: 3px;
  font-family: 'Digital-7 Mono', sans-serif;
}

.timeDisplay .format {
  font-size: 30px;
  margin-top: 32px;
  margin-left: 10px;
  font-family: 'Text Me One', sans-serif;
}

.time .dot {
  animation: blinker 1s linear infinite;
}

@keyframes blinker {
  25% {
    opacity: 0;
  }
}

@media (max-width :768px) { 

.clock { 
    width :100% ; 
    padding :15px ; 
    height: 100px;
    width: 800px;
} 

.clock-body { 
    min-height:auto ; 
} 
.clock .display .weekdays {
  font-size: 18px;
}
.clock .display { 
    padding :15px ; 
} 
.timeDisplay{
  margin-top: 30px;
  margin-bottom: 0px;
}
.timeDisplay .format{
  font-size: 20px;
}
.time span{ 
  font-size :50px; 
} 
}


@media (max-width :480px) {

.clock {
    width: 100%;
    padding: 15px;
    height: 90px;
    width: 800px;
  }

  .clock-body {
    min-height: auto;
  }

  .clock .display .weekdays {
    font-size: 15px;
  }

  .clock .display {
    padding: 12px;
  }

  .timeDisplay {
    margin-top: 20px;
    margin-bottom: 0px;
  }

  .timeDisplay .format {
    font-size: 15px;
  }

  .time span {
    font-size: 40px;
  }
}

/**********************LIST MEMBERS**********************/

.Relation-section {
  height: 75vh;
  width: 100%;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.Relation-section .Relation-title {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.Relation-section .Relation-title h2 {
  position: relative;
  /* border-left: 5px solid #eb8714; */
  font-size: 3rem;
  color: #000000;
  padding: 0 12px;
}

.Relation-section .Relation-title h2:before {
  content: " ";
  position: absolute;
  height: 0;
  width: 5px;
  top: 0;
  left: 0;
  background: var(--mainclr);
  animation: down 3s forwards;
}

@keyframes down {
  0% {
    height: 0;
  }

  100% {
    height: 100%;
  }
}

.Relation-section .Relation-title .Relation-arrows button {
  background: var(--first-color);
  color: #fff;
  margin: 0px 5px;
  border: 0;
  border-radius: 50px;
}

.Relation-section .Relation-title .Relation-arrows button:hover i {
  background-color: var(--golde-color);
  color: #000000;
}

.Relation-section .Relation-title .Relation-arrows button:hover {
  color: #fff;
}

.Relation-section .Relation-title .Relation-arrows button i {
  padding: 10px 30px;
  color: var(--mainclr);
  font-size: 1.rem;
  border: 1px solid #fff;
  border-radius: 12px;
}

.team-members {
  margin: 0%;
  padding: 0%;
}

/* section team members  */
.Relation-section .team-members {
  height: 520px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.Relation-section .team-members .member-card1 {
  position: relative;
  max-height: 350px;
  max-width: 300px;
  border-radius: 26px;
  margin: 0 12px;
  overflow: hidden;
  transition: 0.7s;
}

/* card icons  */
.member-card1 .Relation-icons {
  position: absolute;
  display: none;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
  top: 20%;
  left: 10%;
  transition: 1s;

}

.member-card1 .Relation-icons i {
  padding: 6px 0;
  margin: 4px 0;
  color: var(--secclr);
  font-size: 1.1rem;
  transform: rotate(-60deg);
  transition: all 1s;

}

/* card icons end */
.member-card1:hover .Relation-icons {
  display: flex;
}

.member-card1:hover .Relation-icons i {
  transform: rotate(0deg);
  transition: all 1s;
  font-size: 30px;
}

.Relation-icons i:hover {
  color: var(--third);
}

.member-card1 img {
  height: 100%;
  width: 100%;
  border-radius: 26px;
  transition: all 1s ease;
}

/* content start  */
.member-card1 .Relation-content {
  position: absolute;
  z-index: 1;
  top: 72%;
  left: 10%;
}

.member-card1 .Relation-content {
  color: #fff;
  margin: 5px 0;
}

.Relation-content h3 {
  font-size: 18px;
  color: #333;
}

.Relation-content h2 {
  font-size: 20px;
  color: #000000;

}

.Relation-section .team-members .member-card1 .content h3 {
  color: #817878;
  font-weight: 300;

}

.Relation-section .team-members .member-card1:hover img {
  transform: scale(1.1);
}

/* cdn  */

.slick-slider {
  position: relative;

  display: block;
  box-sizing: border-box;

  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;

  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;

  display: block;
  overflow: hidden;

  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;

  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;

  content: '';
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;

  height: 100%;
  min-height: 1px;
}

[dir='rtl'] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;

  height: auto;

  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Responsive styles */
@media only screen and (max-width: 768px) {
  .Relation-section {
    height: auto;
    /* Adjust height for smaller screens */
    padding: 10px;
    /* Add padding for better spacing */
  }

  .Relation-section .Relation-title h2 {
    font-size: 1.5rem;
    /* Smaller font size for titles */
  }

  .Relation-section .team-members {
    height: 320px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .team-members {
    margin: 0%;
    padding: 0%;
  }

  .Relation-section .team-members .member-card1 {
    max-height: 280px;
    /* Adjust card size */
    max-width: 240px;
  }

  .member-card1 .Relation-content h3,
  .member-card1 .Relation-content h2 {
    font-size: 12px;
    /* Smaller font size for content */
  }
}

@media only screen and (max-width: 480px) {
  .Relation-section .Relation-title h2 {
    font-size: 1.1rem;
    /* Even smaller font size for very small screens */
  }

  .Relation-section .team-members .member-card1 {

    max-height: 250px;
    /* Further adjust card size */
    max-width: 200px;
  }

  .Relation-section .team-members {
    height: 220px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .member-card1 .Relation-content h3,
  .member-card1 .Relation-content h2 {
    font-size: 14px;
    /* Adjust font size for content */
  }
}

/***************** Added border-radius ***************/

footer {
  background: var(--footer-bg-color);
  color: var(--footer-text-color);
  border-radius: 10px;
}

footer article {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 50px 40px;
  margin: -99px 20px 20px;
  border-radius: 10px;
  background: linear-gradient(90deg, #773ecb, #2663ff);
}

footer article h2 {
  font-weight: bold 400;
  color: rgba(0, 0, 0, 0.7);
}

footer section {
  padding: 0 40px;
}

.footer-top {
  padding-top: 30px;
  margin-bottom: 48px;
}

.footer-top img {
  display: block;
  height: 70px;
  margin: 0 0 10px;
}

.footer-top ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6vh;
  grid-template-columns: repeat(4, 2fr);
}

/* For screens smaller than 600px */
@media (max-width: 600px) {
  footer article {
    flex-direction: row;
    min-height: 140px;
    margin: -70px 20px 20px;
    padding: 30px 50px 30px;
  }

  footer article button {
    width: auto;
    padding: 0 20px 0 24px;
  }

  .footer-top ul {
    grid-template-columns: repeat(2, 1fr);
    padding-right: 0;
  }

  /* Smaller font size for footer links */
  .footer-top ul li a {
    font-size: 13px;
  }

  .footer-top h3 {
    font-size: 14px;
    /* Adjusted font size for small screens */
  }
}

/* For screens smaller than 480px */
@media (max-width: 480px) {
  footer article button {
    width: 70%;
  }

  .footer-top ul {
    padding-right: 10%;
  }

  .footer-top ul li a {
    font-size: 11px;
    /* Even smaller font size for very small screens */
  }

  .footer-top h3 {
    font-size: 12px;
    /* Adjusted font size for headings */
  }

  .footer-bottom p {
    font-size: 9px;
    /* Smaller text for footer bottom */
  }

  /* Adjust space between icons in footer */
  .footer-bottom .space-x-4 {
    margin-top: 1rem;
  }

  .footer-bottom a {
    font-size: 10px;
    /* Adjust link size */
  }
}

/* For screens smaller than 360px */
@media (max-width: 360px) {
  footer article button {
    width: 60%;
  }

  .footer-top ul li a {
    font-size: 10px;
    /* Smaller font size for smaller screens */
  }

  .footer-top h3 {
    font-size: 11px;
    /* Smaller heading font size */
  }

  .footer-bottom p {
    font-size: 9px;
    /* Even smaller text for tiny screens */
  }

  .footer-bottom .space-x-4 {
    margin-top: 1rem;
  }

  .footer-bottom a {
    font-size: 8px;
    /* Adjusting link size for smaller screens */
  }
}

/* For screens smaller than 240px */
@media (max-width: 240px) {
  footer article button {
    width: 50%;
  }

  .footer-top ul li a {
    font-size: 9px;
    /* Very small font size for tiny screens */
  }

  .footer-top h3 {
    font-size: 10px;
    /* Further reduced heading size */
  }

  .footer-bottom p {
    font-size: 8px;
    /* Smallest text for ultra-small screens */
  }

  .footer-bottom a {
    font-size: 7px;
    /* Smallest font size for links */
  }
}

/* General styles for footer bottom */
footer .footer-bottom {
  text-align: center;
  margin-top: 20px;
}

/* Links hover effect */
footer .footer-top a:hover,
footer .footer-bottom a:hover {
  color: var(--golden-color);
}

.footer-top ul li a {
  display: block;
  margin-bottom: 5px;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 16.5px;
  /* Default font size .............*/
}

.footer-top ul li a:hover {
  color: var(--golden-color);
}

.footer-top h3 {
  font-weight: bolder 400;
  text-transform: uppercase;
  font-size: 20px;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .footer-bottom {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .footer-bottom p {
    font-size: 0.875rem;
  }

  .footer-bottom .space-x-4 {
    margin-top: 1rem;
  }
}

.footer-bottom a {
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: hsl(46, 53%, 53%);
}

.footer-bottom a i {
  transition: color 0.3s ease;
}

.footer-bottom a:hover i {
  color: hsl(46, 53%, 53%);
}




/* Heading */
h1 {
  margin: 20px 0;
  font-size: 2.5rem;
  color: #333;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
  text-align: center;
}

/* Image Gallery Grid */
.img-gallery {
  width: 90%;
  margin: 20px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
}

.img-gallery img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  cursor: pointer;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.img-gallery img:hover {
  transform: scale(1.05);
  filter: brightness(0.9);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
}

/* Full Image Viewer */
.full-img {
  height: 100vh;
  width: 100%;
  background: rgba(0, 0, 0, 0.9);
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  animation: fadeIn 0.5s forwards;
}

.full-img img {
  width: 90%;
  max-width: 700px;
  border-radius: 10px;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3);
}

/* Close Button */
.full-img .close {
  position: absolute;
  top: 5%;
  right: 5%;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.full-img .close:hover {
  transform: scale(1.2);
  color: #ff4b5c;
}

/* Navigation Arrows */
.full-img .prev,
.full-img .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 2rem;
  cursor: pointer;
  transition: 0.3s ease;
  user-select: none;
}

.full-img .prev {
  left: 10%;
}

.full-img .next {
  right: 10%;
}

.full-img .prev:hover,
.full-img .next:hover {
  color: #ff4b5c;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Default styles for larger screens */
.top-welcome-heading {
  font-size: 1.875rem;
  /* 30px */
}

.top-welcome-subheading {
  font-size: 1.875rem;
  /* 30px */
  line-height: 1.4;
  /* Ensure good spacing */
}

/* Media Query for Small Screens (Max Width 640px) */
@media (max-width: 640px) {
  .top-welcome-heading {
    font-size: 1.5rem;
    /* 24px */
  }

  .top-welcome-subheading {
    font-size: 1.5rem;
    /* 24px */
  }
}

/* Media Query for Very Small Screens (Max Width 240px) */
@media (max-width: 240px) {
  .top-welcome-heading {
    font-size: 1.25rem;
    /* 20px */
    padding: 0.5rem 0;
    /* Add spacing */
  }

  .top-welcome-subheading {
    font-size: 1.25rem;
    /* 20px */
    padding: 0.5rem 0;
  }
    }
   /* Styling for the royalty-line */
    .royalty-line {
        display: inline-block;
        width: 100px;
        height: 2px;
        background-color: #000; 
        margin: 0 8px; 
    }

    @media (max-width: 640px) {
        .royalty-line {
            width: 60px; 
        }
    }

    @media (max-width: 240px) {
        .royalty-line {
            width: 40px; 
        }
    }



        .preloader {
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background-color: rgba(128, 128, 128, 0.5);
          display: flex;
          justify-content: center;
          align-items: center;
          z-index: 9999;
        }
    
        .hidden {
          display: none;
        }
    
        .crown {
          width: 7vw;
          /* Smaller size for larger screens */
          height: 15vw;
          /* Smaller size for larger screens */
          max-width: 150px;
          /* Adjusted max-width */
          max-height: 150px;
          /* Adjusted max-height */
          margin: 2px;
          background: url('./img/Crown1.svg') no-repeat center center;
          background-size: contain;
          animation: bounce 1.5s infinite;
        }
    
        .crown:nth-child(1) {
          animation-delay: 0s;
        }
    
        .crown:nth-child(2) {
          animation-delay: 0.5s;
        }
    
        .crown:nth-child(3) {
          animation-delay: 1s;
        }
    
        @keyframes bounce {
    
          0%,
          100% {
            transform: translateY(0);
          }
    
          50% {
            transform: translateY(-20px);
          }
        }
    
        .royalty-line {
          display: inline-block;
          width: 50px;
          height: 2px;
          background-color: var(--first-color);
          margin: 0 10px;
          border-top: 2px solid var(--first-color);
          border-bottom: 2px solid var(--first-color);
        }
    
        .top-welcome {
          text-align: center;
        }
    
        .top-welcome h1 {
          color: var(--gold-color);
          font-size: 2rem;
          /* Larger font size for big screens */
        }
    
        .top-welcome h2 {
          font-size: 2rem;
          /* Larger font size for big screens */
        }
    
        @media (max-width: 768px) {
          .crown {
            width: 9vw;
            /* Original size for small screens */
            height: 20vw;
            /* Original size for small screens */
            max-width: 200px;
            max-height: 200px;
          }
    
          .top-welcome h1 {
            font-size: 1.5rem;
            /* Smaller font size for small screens */
          }
    
          .top-welcome h2 {
            font-size: 1.3rem;
            /* Smaller font size for small screens */
          }
        }
    
        @media (max-width: 240px) {
          .top-welcome h1 {
            font-size: 1rem;
            /* Even smaller font size for very small screens */
          }
    
          .top-welcome h2 {
            font-size: 0.8rem;
            /* Even smaller font size for very small screens */
          }
        }
        