:root {
  --primary-color: #540411;
  --secondary-color: #192955;
  --accent-color: #f1591e;
  --light-blue: #d3eefb;
  --light-lilac: #dfcbe3;
  --text-primary: #1a1a1a;
  --text-secondary: #ffffff;
  --text-blue: #192955;
  --text-grey: #111827;
  --font-heading: "halyard-micro";
  --font-body: "allumi-std";
  --max-width: 100vw;
  --desktop-padding: 4vw;
}

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

body {
  width: 100%;
  background: var(--text-secondary);
  position: relative;
  overflow-x: hidden;
  min-width: 320px;
  font-family: var(--font-body);
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

header .top-strip {
  background: var(--secondary-color);
  color: var(--text-secondary);
  display: flex;
  justify-content: space-between;
}

.top-strip .left-side {
  display: flex;
  align-items: center;
  padding: 0.6rem 0;
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 0.2vw + 0.875rem, 1rem);
  font-style: normal;
  line-height: 1.3;
}

.top-strip .left-side a {
  color: var(--text-secondary);
  text-decoration: none;
  padding: 0 calc(1rem + 0.5vw);
  font-weight: 400;
  border-right: 1px solid var(--text-secondary);
}

.top-strip .left-side p {
  padding: 0 calc(1rem + 0.5vw);
  font-weight: 400;
}

.top-strip .right-side {
  display: flex;
}

.top-strip .right-side a {
  padding: 0 calc(0.5rem + 0.5vw);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: clamp(0.6875rem, 0.2vw + 0.6875rem, 0.8125rem);
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.96px;
  overflow: hidden;
}

.top-strip .right-side a.cta-btn1 {
  background: var(--primary-color);
}

.top-strip .right-side a.cta-btn2 {
  background: var(--accent-color);
}

.top-strip .right-side .icon-wrapper {
  width: 1.25rem;
  height: 2.5rem;
  position: relative;
  transform: rotate(45deg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-strip .right-side .arrow-container {
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}

.top-strip .right-side .icon-wrapper svg {
  width: 0.9375rem;
  height: 0.9375rem;
  flex-shrink: 0;
}

.top-strip .right-side .cta-btn1:hover .arrow-container,
.top-strip .right-side .cta-btn2:hover .arrow-container {
  transform: translateY(-25%);
}

.top-strip .right-side .cta-btn1 .arrow-container,
.top-strip .right-side .cta-btn2 .arrow-container {
  transform: translateY(25%);
}

.navbar {
  width: 100%;
  background: var(--text-secondary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  padding: calc(0.25rem + 0.2vw) calc(1rem + 0.5vw);
}

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

.navbar .logo img {
  max-width: 100%;
}
.navbar .nav-links-desktop{
  width: 100%;
  display: flex;
  justify-content: center;
}
/* Parent nav list */
.navbar .nav-links-desktop .main-menu {
  display: flex;
  gap: 5px;
  align-items: center;
  font-family: var(--font-body);
  font-size: clamp(0.8rem, 0.2vw + 0.875rem, 0.8rem);
  padding: 0;
}

.navbar .nav-links-desktop .main-menu li {
  position: relative;
  list-style: none;
}

.navbar .nav-links-desktop .main-menu li a,
.navbar .nav-links-desktop .main-menu li {
  text-decoration: none;
  color: #1a1a1a;
  font-size: 15px;
  padding: 5px;
  cursor: pointer;
}



.navbar .nav-links-desktop .main-menu li a {
  position: relative;
  padding-bottom: 5px;
  display: flex;
}

.navbar .nav-links-desktop .main-menu li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 2.5%;
  height: 3px;
  width: 0;
  background-color: #F1591E;
  border-radius: 3px;
  transition: width 0.3s ease-in-out;
}

.navbar .nav-links-desktop .main-menu li a:hover::after {
  width: 95%;
}







.navbar .nav-links-desktop .main li ul {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 8px 0;
  display: none;
  z-index: 999;
}





.navbar .nav-links-desktop .main li ul li {
  width: 100%;
}

.navbar .nav-links-desktop .main li ul li a {
  display: block;
  padding: 10px 15px;
  color: #1a1a1a;
  white-space: nowrap;
}

.navbar .nav-links-desktop .main li ul li a:hover {
  background: #f5f5f5;
}

.navbar .nav-links-desktop .main li.parent:hover>ul {
  display: block;
}

.navbar .right-side {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.navbar .right-side a {
  color: var(--text-secondary);
  text-decoration: none;
  background: var(--accent-color);
  width: 6.875rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.3125rem;
  font-family: var(--font-heading);
  font-size: clamp(0.75rem, 0.15vw + 0.75rem, 0.875rem);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-align: center;
  transition: background 0.4s ease-in-out;
  letter-spacing: -0.0645rem;
}

.navbar .right-side a:hover {
  background: var(--primary-color);
}

.navbar .right-side .ctabtn-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}

.navbar .right-side .ctabtn-wrapper span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50%;
  overflow: hidden;
  text-wrap: nowrap;
}

.navbar .right-side .ctabtn-wrapper span:nth-child(1) {
  transform: translateY(0.6875rem);
  transition: transform 0.4s ease-in-out;
}

.navbar .right-side .ctabtn-wrapper span:nth-child(2) {
  transform: translateY(100%);
  transition: transform 0.4s ease-in-out;
}

.navbar .right-side .ctabtn-wrapper:hover span:nth-child(1) {
  transform: translateY(-100%);
}

.navbar .right-side .ctabtn-wrapper:hover span:nth-child(2) {
  transform: translateY(-0.6875rem);
}

.navbar .right-side .tab-menu {
  display: none;
}


        .tab-menu,
        .close-menu {
          display: none;
          cursor: pointer;
        }


        .nav-links-mobile {
            position: fixed;
            top: 20;
            left: 0;
            width: 100%;
            height: 100dvh;
            max-height: 150dvh; 
            background-color: #ffffff;
            z-index: 1001;

            display: flex;
            flex-direction: column;
            align-items: center;
            
            transform: translateY(-150%);
            transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        }

        body.menu-open .nav-links-mobile {
            transform: translateY(0);
        }

        .nav-links-mobile .main{
          width: 100%;
          padding: calc(3rem + 0.1vw);
        }
        .nav-links-mobile .main li {
            margin: 1.5rem 0;
            list-style: none;
            padding: 0.5rem;
            border-bottom: 1px solid #000;
        }
        
        .nav-links-mobile .main li a {

            color: var(--text-primary);
            transition: color 0.3s;
            text-decoration: none;
display: flex;
  justify-content: space-between;

            color: var(--Core-Black, #1A1A1A);
            font-family: var(--font-heading);
              font-size: 2rem;
              font-style: normal;
              font-weight: 500;
              line-height: 120%;
              letter-spacing: 0.005rem;
        }

        .nav-links-mobile .main li a:hover {
            color: #540411;
        }

        @media (max-width: 1300px) {
            .nav-links-desktop {
                display: none;
            }

            .tab-menu {
                display: block;
            }
            
            body.menu-open .right-side .close-menu {
                display: block;
                position: fixed;
                top: 2;
                right: 2rem;
                z-index: 1002; 
            }
            body.menu-open .right-side .tab-menu {
                display: none;
            }
        }

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  margin-top: 6.25rem;
  display: flex;
  background: var(--text-secondary);
}

.hero-bg-img {
  width: 100%;
  position: absolute;
}

.hero-bg-img img {
  width: 100%;
  margin-top: 2rem;
  overflow: hidden;
  object-fit: cover;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  gap: 1.25rem;
  padding: calc(3.75rem + 2vw) calc(2.5rem + 2vw);
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-content {
  max-width: 45%;
  min-width: 17.5rem;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 1.5vw + 2.25rem, 3.75rem);
  font-style: normal;
  font-weight: 400;
  line-height: calc(3rem + 1.5vw);
  color: var(--primary-color);
  letter-spacing: -0.25rem;
}

.hero-content .make-600 {
  font-weight: 500;
}

.hero-content p {
  width: 100%;
  margin: 1.25rem 0;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: clamp(1.375rem, 0.4vw + 1.25rem, 1.375rem);
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0.0625rem;
}

.hero-content .cta-btn {
  width: fit-content;
  padding: calc(0.375rem + 0.2vw);
  background: var(--accent-color);
  color: var(--text-secondary);
  border-radius: 0.375rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 0.4vw + 1.125rem, 1.25rem);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.1125rem;
}

.hero-content .cta-btn:hover {
  background: var(--primary-color);
}

.hero-content .cta-btn .icon-wrapper {
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 0.25rem;
  background: var(--text-secondary);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.hero-content .arrow-container {
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.76, 0, 0.24, 1);
  transform: rotate(45deg) translateY(25%);
}

.hero-content .icon-wrapper svg {
  width: 1.25rem;
  height: 1.1875rem;
  flex-shrink: 0;
}

.hero-content .cta-btn:hover .arrow-container {
  transform: rotate(45deg) translateY(-25%);
}

.hero-media {
  margin: 0;
  display: flex;
  justify-content: baseline;
  align-items: baseline;
}

.hero-media video {
  width: 34rem;
  max-width: 100%;
  min-width: 17.5rem;
  height: 34rem;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.hero-nav {
  position: absolute;
  top: 10%;
  right: 4.375rem;
  transform: translateY(-50%);
  display: flex;
  z-index: 10;
  gap: 0.625rem;
}

#searchbar {
  width: 100%;
  position: absolute;
  height: fit-content;
  padding: calc(1.25rem + 1vw) calc(3.75rem + 2vw);
  display: flex;
  justify-content: center;
  align-items: center;
  background: none;
}

#searchbar .search-container {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  background: var(--secondary-color);
  border-radius: 0.5rem;
  padding: calc(1rem + 0.5vw) calc(1.5rem + 0.5vw);
  gap: 1.25rem;
}

#searchbar .search-container h4 {
  color: #fff5cc;
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 0.4vw + 1.125rem, 1.38rem);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.07875rem;
}

#searchbar .search-container .search-act {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.625rem;
}

#searchbar .search-container .search-act input {
  width: 60%;
  height: 3.125rem;
  padding: 0 calc(1rem + 0.5vw);
  border-radius: 0.5rem;
  border: none;
  background: var(--text-secondary);
  outline: none;
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 0.3vw + 0.875rem, 1.0625rem);
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0.005rem;
}

#searchbar .flex-box {
  display: flex;
  gap: 10px;
}

#searchbar .search-container .search-act .search-filters {
  display: flex;
  height: 3.125rem;
  align-items: center;
  gap: 1.25rem;
  background: var(--text-secondary);
  padding: calc(0.125rem + 0.2vw);
  border-radius: 0.5rem;
}

#searchbar .search-container .search-act .search-filters input {
  display: none;
}

#searchbar .search-container .search-act .search-filters label {
  padding: calc(0.375rem + 0.2vw) calc(0.8125rem + 0.2vw);
  border-radius: 0.5rem;
  background: var(--text-secondary);
  color: #000;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 0.4vw + 0.875rem, 1.125rem);
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0.09px;
}

#searchbar .search-container .search-act .search-filters input:checked+label {
  background: var(--primary-color);
  color: var(--text-secondary);
}

#searchbar .search-container .search-act button {
  padding: 0 calc(0.5rem + 0.2vw);
  height: 3.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  background: var(--accent-color);
  border-radius: 0.3125rem;
  border: none;
  cursor: pointer;
  color: var(--text-secondary);
  font-family: var(--font-heading);
  font-size: clamp(1rem, 0.3vw + 1rem, 1.25rem);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -1.8px;
}

#searchbar .search-container .search-act button:hover {
  background: var(--primary-color);
  color: var(--text-secondary);
}

#searchbar .search-container .search-act button .search-icon {
  width: 2.1875rem;
  height: 2.1875rem;
  background: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.3125rem;
}

#Academics {
  width: 100%;
  height: auto;
  display: flex;
  align-self: center;
  padding: 8rem 0;
}

.academics-container {
  width: 100%;
  min-height: 100%;
  padding: calc(5rem + 2vw) calc(3.75rem + 2vw);
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #D3EEFB 0%, rgba(211, 238, 251, 0.00) 100%);
}

.academics-container .academics-header {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: calc(0.5rem + 0.5vw);
  margin-bottom: calc(2rem + 1vw);
}

.academics-container .academics-header h2 {
  color: var(--primary-color);
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-style: normal;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.2rem;
}

.academics-container .academics-header p {
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.2vw + 1rem, 1.125rem);
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0.005625rem;
}

.academics-container .flex-container {
  display: flex;
  gap: calc(1rem + 0.5vw);
  width: 100%;
}

.academics-container .parent-screen {
  width: 80%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--text-secondary);
  position: relative;
  border-radius: 1.25rem;
  z-index: 1;
}

.academics-container .child {
  width: 100%;
  min-height: calc(28rem + 5vw);
  height: 100%;
  position: relative;
  display: none;
  padding: calc(2.5rem + 0.5vw);
  border-radius: 1.25rem;
  overflow: hidden;
}

.academics-container .child.active {
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.academics-container .child .bg {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  z-index: 0;
  transition: background 0.6s ease-in-out;
}


.academics-container .child-1 .bg {
  background: linear-gradient(106deg, #B32F91 3.15%, rgba(179, 47, 145, 0.50) 30.78%, rgba(179, 47, 145, 0.00) 43.52%);
}
.academics-container .child-2 .bg {
  background: linear-gradient(106deg, #043628 3.15%, rgba(0, 103, 75, 0.50) 30.78%, rgba(0, 103, 75, 0.10) 43.52%);}
.academics-container .child-3 .bg {
 background: linear-gradient(106deg, #00ABCC 3.15%, rgba(0, 171, 204, 0.50) 30.78%, rgba(0, 171, 204, 0.10) 43.52%);}
.academics-container .child-4 .bg {
background: linear-gradient(106deg, #04509A 3.15%, rgba(4, 80, 154, 0.50) 30.78%, rgba(4, 80, 154, 0.10) 43.52%);}

/* .academics-container .child-1:hover .bg {
  background: linear-gradient(109deg, #B32F91 3.47%, rgba(179, 47, 145, 0.61) 51.23%, rgba(179, 47, 145, 0.00) 100.22%);
}
.academics-container .child-2:hover .bg {
background: linear-gradient(109deg, #044A37 3.47%, rgba(0, 103, 75, 0.60) 51.23%, rgba(0, 103, 75, 0.00) 100.22%);}
.academics-container .child-3:hover .bg {
background: linear-gradient(109deg, #04768C 3.47%, rgba(0, 171, 204, 0.60) 51.23%, rgba(0, 171, 204, 0.00) 100.22%);}
.academics-container .child-4:hover .bg {
background: linear-gradient(109deg, #013F7A 3.47%, rgba(4, 80, 154, 0.60) 51.23%, rgba(4, 80, 154, 0.00) 100.22%);} */

.academics-container .child .content-top {
  z-index: 1;
}

.academics-container .child .bg-img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.academics-container .child .bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.academics-container .child .top-svg {
  position: absolute;
  top: -19rem;
  right: -20rem;
}

.academics-container .child .top-svg svg {
  width: 40rem;
  height: 40rem;
}

.academics-container .child .child-flex-box {
  width: 100%;
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0 calc(2.5rem + 0.5vw);
  box-sizing: border-box;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: calc(1.5rem + 0.5vw);
}

.academics-container .child .child-flex-box a {
  color: #540411;
}

.sname h1{
  color: #ffffff;
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 90%;
}
.sname i{
  font-size: 2.8rem;
}

.academics-container .child p {
  padding: calc(1rem + 0.2vw) 0;
  width: 35%;
  color: #FFF;
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 0.2vw + 0.9rem, 1.125rem);
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0.09px;
}

.academics-container .child .exp-btn {
  width: fit-content;
  height: fit-content;
  padding: calc(0.375rem + 0.2vw);
  background: #ffffff;
  color: #540411;
  border-radius: 0.375rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 0.4vw + 1.125rem, 1.25rem);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.1125rem;
}

.academics-container .child .exp-btn .icon-wrapper {
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 0.25rem;
  background: var(--text-secondary);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.academics-container .child .arrow-container {
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.76, 0, 0.24, 1);
  transform: rotate(45deg) translateY(25%);
}

.academics-container .child .icon-wrapper svg {
  width: 1.25rem;
  height: 1.1875rem;
  flex-shrink: 0;
}

.academics-container .child .exp-btn:hover .arrow-container {
  transform: rotate(45deg) translateY(-25%);
}

.academics-container .child .hovered-text {
  color: #FFF;
  display: flex;
  flex-direction: column;
  gap: calc(1rem + 0.2vw);
  font-family: var(--font-heading);
  opacity: 1;
    visibility: visible;
  transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
}

/* .academics-container .child:hover .hovered-text {
  opacity: 1;
  visibility: visible;
} */

.academics-container .child .hovered-text h5 {
  font-size: clamp(1rem, 0.2vw + 1rem, 1.25rem);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -1.6px;
}

.academics-container .child .hovered-text ul {
  list-style: square;
  padding-left: 1.25rem;
  color: var(--Core-White, #FFF);
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 0.2vw + 0.9rem, 1.125rem);
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0.09px;
}

.academics-container .child .hovered-text ul li {
  margin-bottom: 0.3rem;
  font-size: clamp(0.85rem, 0.1vw + 0.85rem, 0.95rem);
}

.academics-container .act-calls {
  width: 20%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.academics-container .act-calls .act-bg {
  background: #ffffff;
  border-radius: 1.25rem;
  padding: calc(1rem + 0.5vw);
  display: flex;
  align-items: center;
}
.academics-container .act-calls .child-1{
  color: #540411;
}
.academics-container .act-calls .act-bg h1 {
  font-size: 2rem;
  font-weight: 300;
  line-height: 95%
}
.academics-container .act-calls .act-bg h1 i{
  font-size: 1.8rem;
}
.academics-container .act-calls .child-1.active {
  box-shadow: 0 4px 7.3px 0 rgba(179, 47, 145, 0.10);
  border: 2px solid rgba(170, 41, 135, 0.40);
  color: #B32F91;
}
.academics-container .act-calls .child-2.active {
border: 2px solid rgba(0, 103, 75, 0.40);
box-shadow: 0 4px 8px 0 rgba(0, 103, 75, 0.20);
color: #00674B;
}
.academics-container .act-calls .child-3.active {
border: 2px solid rgba(0, 171, 204, 0.40);
box-shadow: 0 4px 8px 0 rgba(0, 171, 204, 0.20);
color: #00ABCC;
}
.academics-container .act-calls .child-4.active {
border: 2px solid rgba(4, 80, 154, 0.40);
box-shadow: 0 4px 7.3px 0 rgba(4, 80, 154, 0.30);
color: #04509A;
}

.academics-container .act-calls .child-1 {
  color: #B32F91;
}

.academics-container .act-calls .child-2 {
  color: #00674B;
}

.academics-container .act-calls .child-3 {
  color: #00ABCC;
}

.academics-container .act-calls .child-4 {
  color: #04509A;
}



#building {
  width: 100%;
  height: auto;
  display: flex;
  align-items: stretch;
  padding: calc(1rem + 0.5vw) calc(3.75rem + 2vw);
  gap: 2.5rem;
}

#building .main-card {
  width: 70%;
}

#building .bg-img img {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  border-radius: 1.25rem;
  object-fit: cover;
}

#building .side-card {
  width: 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.875rem;
}

#building .side-card .side-card-1,
#building .side-card .side-card-2 {
  width: 100%;
  padding: calc(1rem + 0.5vw);
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 1rem;
  border: none;
  flex: 1;
}

#building .side-card .top-svg {
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  justify-content: flex-end;
  z-index: 0;
}

#building .side-card .side-card-1 {
  background: linear-gradient(180deg, var(--light-blue) 0%, rgba(211, 238, 251, 0) 100%);
  transition: background 0.5s ease-in-out;
  border: none;
}

#building .side-card .side-card-1:hover {
  border-radius: 1rem;
  border: 1px solid #b8e8ff;
  background: linear-gradient(180deg,
      var(--light-blue) 0.12%,
      rgba(211, 238, 251, 0) 146.28%);
  box-shadow: 0 116px 32px 0 rgba(188, 227, 245, 0.04),
    0 74px 30px 0 rgba(188, 227, 245, 0.04),
    0 42px 25px 0 rgba(188, 227, 245, 0.05),
    0 18px 18px 0 rgba(188, 227, 245, 0.09),
    0 5px 10px 0 rgba(188, 227, 245, 0.1);
}

#building .side-card .side-card-2 {
  background: linear-gradient(180deg, var(--light-lilac) 0%, rgba(223, 203, 227, 0) 100%);
  transition: background 0.3s ease-in-out;
}

#building .side-card .side-card-2:hover {
  border: 1px solid #DFCBE3;
  box-shadow: -12px 121px 34px 0 rgba(215, 201, 218, 0),
    -8px 77px 31px 0 rgba(215, 201, 218, 0.01),
    -4px 43px 26px 0 rgba(215, 201, 218, 0.05),
    -2px 19px 19px 0 rgba(215, 201, 218, 0.09),
    0 5px 11px 0 rgba(215, 201, 218, 0.1);
  background: linear-gradient(182deg,
      var(--light-lilac) 1.74%,
      rgba(223, 203, 227, 0) 174.85%);
}

#building .side-card h4 {
  color: var(--text-blue);
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 0.4vw + 1.125rem, 1.25rem);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.1rem;
  z-index: 1;
}

#prof-yt {
  width: 100%;
  display: flex;
  gap: 2.5rem;
  padding: calc(5.625rem + 0.5vw) calc(3.75rem + 2vw);
  background: linear-gradient(180deg, var(--light-blue) 0%, rgba(211, 238, 251, 0) 100%);
}

#prof-yt .left {
  width: 45%;
}

#prof-yt .right {
  width: 55%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#prof-yt .right .video-container {
  position: relative;
  cursor: pointer;
  width: 95%;
  padding-bottom: 48%;
  height: 0;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

#prof-yt .right .video-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease-in-out;
  z-index: 10;
}

#prof-yt .right .video-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

#prof-yt .right .video-container.playing .video-thumbnail {
  opacity: 0;
  pointer-events: none;
}

#prof-yt .left p {
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: clamp(1.375rem, 0.4vw + 1.25rem, 1.375rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1.9375rem;
  padding-bottom: 2.5rem;
}

#prof-yt .left p span {
  color: var(--accent-color);
}

#prof-yt .left h3 {
  color: var(--primary-color);
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.075rem;
}

#prof-yt .left h6 {
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: clamp(1.125rem, 0.4vw + 1rem, 1.125rem);
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0.005625rem;
}

#top-recruiter {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  padding: calc(1rem + 0.5vw) calc(3.75rem + 2vw);
  gap: 2.5rem;
  margin-top: 1.875rem;
}

#top-recruiter h2 {
  color: var(--primary-color);
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-style: normal;
  font-weight: 500;
  line-height: 3.75rem;
  letter-spacing: -0.24rem;
}

#top-recruiter .container {
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 1fr);
  border-radius: 1.25rem;
  border: 1px solid #d7dbdd;
  background: var(--text-secondary);
  overflow: hidden;
}

.r-grid {
  width: 100%;
  height: 9.375rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--text-secondary);
  border: 1px solid #d7dbdd;
  position: relative;
  transition: transform 1s ease-in-out;
}

.r-grid svg {
  transition: scale 0.3s ease-in-out;
}

.r-grid:hover {
  z-index: 10;
}

.r-grid:hover svg {
  scale: 1.2;
}


.r-grid:nth-child(4n + 1) {
  border-left: none;
}

.r-grid:nth-child(4n) {
  border-right: none;
}

.r-grid:nth-child(1),
.r-grid:nth-child(2),
.r-grid:nth-child(3),
.r-grid:nth-child(4) {
  border-top: none;
}

.r-grid:nth-last-child(-n+4) {
  border-bottom: none;
}


.r-grid-1 {
  border-top-left-radius: 1.25rem;
}

.r-grid-4 {
  border-top-right-radius: 1.25rem;
}

.r-grid-9 {
  border-bottom-left-radius: 1.25rem;
}

.r-grid-12 {
  border-bottom-right-radius: 1.25rem;
}


#academic-calendar {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  padding: calc(5rem + 0.5vw) calc(3.75rem + 2vw);
  gap: 2.5rem;
  overflow: hidden;
  position: relative;
}

#academic-calendar .header {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

#academic-calendar .header-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

#academic-calendar .header h2 {
  color: var(--primary-color);
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-style: normal;
  font-weight: 500;
  line-height: 3.75rem;
  letter-spacing: -0.24rem;
}

#academic-calendar .header-actions .header-btn {
  border-radius: 0.3125rem;
  background: var(--accent-color);
  border: none;
  color: var(--text-secondary);
  padding: calc(0.375rem + 0.2vw) 0.5rem calc(0.5rem + 0.2vw);
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 1.5vw, 1.25rem);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.1125rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  transition: background 0.5s ease-in-out;
}

#academic-calendar .header-actions .header-btn:hover {
  background: var(--primary-color);
}

#academic-calendar .header-actions .header-btn .icon-wrapper {
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 0.25rem;
  background: var(--text-secondary);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

#academic-calendar .header-actions .header-btn .icon-wrapper .arrow-container {
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.76, 0, 0.24, 1);
  transform: rotate(45deg) translateY(25%);
}

#academic-calendar .header-actions .header-btn .icon-wrapper svg {
  width: 1.25rem;
  height: 1.1875rem;
  flex-shrink: 0;
}

#academic-calendar .header-actions .header-btn:hover .arrow-container {
  transform: rotate(45deg) translateY(-25%);
}

.cal-nav {
  display: flex;
  gap: 1rem;
}

.nav-btn {
  background: var(--primary-color);
  border: none;
  width: 4rem;
  height: 5rem;
  border-radius: 0.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.arrow-container {
  width: 200%;
  padding: calc(0.5rem + 0.2vw);
  display: flex;
  gap: 1.25rem;
  transition: transform 0.3s ease-in-out;
}

.arrow-container svg {
  flex-shrink: 0;
  width: 0.75rem;
  height: 1.375rem;
}

.prev-btn .arrow-container {
  transform: translateX(0.4375rem);
}

.prev-btn:hover .arrow-container {
  transform: translateX(-1.5625rem);
}

.next-btn .arrow-container {
  transform: translateX(-1.5625rem);
}

.next-btn:hover .arrow-container {
  transform: translateX(0.4375rem);
}

#academic-calendar .slider-wrapper {
  display: flex;
  overflow: hidden;
}

#academic-calendar .slide {
  width: 32.125rem;
  height: 4.0625rem;
  margin: 0.625rem;
  padding: 0 calc(1rem + 0.5vw);
  background: linear-gradient(180deg,
      #fff5cc 0%,
      rgba(255, 245, 204, 0) 100%);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  gap: 1.875rem;
  flex-shrink: 0;
}

#academic-calendar .slide h4 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-style: normal;
  font-weight: 500;
  line-height: 1.875rem;
  color: var(--primary-color);
}

#academic-calendar .slide p {
  color: var(--text-grey);
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1.1vw, 1rem);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

#academic-calendar .rows {
  display: flex;
  flex-direction: column;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

#academic-calendar .row {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

#recruiter-fliter {
  width: 100%;
  height: auto;
  display: flex;
  padding: calc(1rem + 0.5vw) calc(3.75rem + 2vw);
  position: relative;
  justify-content: space-between;
  gap: 1.875rem;
}

#recruiter-fliter .left-side {
  width: 60%;
  max-width: 100%;
  height: 23.625rem;
  padding: 0;
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
}

#recruiter-fliter .left-side img.workers {
  position: absolute;
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

#recruiter-fliter .left-side .content {
  width: 100%;
  height: 100%;
  padding: calc(1.875rem + 1vw);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#recruiter-fliter .left-side h3 {
  width: 80%;
  color: var(--text-secondary);
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-style: normal;
  font-weight: 500;
  line-height: 3.75rem;
  letter-spacing: -0.24rem;
}

#recruiter-fliter .left-side button {
  width: fit-content;
  padding: calc(0.375rem + 0.2vw);
  background: var(--accent-color);
  color: var(--text-secondary);
  border-radius: 0.3125rem;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 1.5vw, 1.25rem);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.1125rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  transition: background 0.5s ease-in-out;
}

#recruiter-fliter .left-side button:hover {
  background: var(--primary-color);
}

#recruiter-fliter .left-side button .icon-wrapper {
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 0.25rem;
  background: var(--text-secondary);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

#recruiter-fliter .left-side button .arrow-container {
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.76, 0, 0.24, 1);
  transform: rotate(45deg) translateY(25%);
}

#recruiter-fliter .left-side button .icon-wrapper svg {
  width: 1.25rem;
  height: 1.1875rem;
  flex-shrink: 0;
}

#recruiter-fliter .left-side button:hover .arrow-container {
  transform: rotate(45deg) translateY(-25%);
}

#recruiter-fliter .left-side .bg-vector {
  position: absolute;
  bottom: 0;
  right: 0;
}

#recruiter-fliter .right-side {
  width: 40%;
  max-width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;

  gap: 1.25rem;
}


#recruiter-fliter .filter-buttons {
  width: 100%;
  display: flex;
  align-items: center;
  border: 1px solid #e0e0e0;
  border-radius: 0.5rem;
  position: relative;
  background: var(--text-secondary);
  padding: 0.2rem;
  color: #000000;

}

.glider {
  position: absolute;

  height: 85%;
  background: var(--primary-color);

  border-radius: 0.5rem;
  z-index: 1;
  padding: 0.2rem;
  box-sizing: border-box;

}


#recruiter-fliter .filter-buttons button {
  width: 100%;
  padding: calc(0.5rem + 0.2vw);
  background: transparent;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  color: #000000;
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

#recruiter-fliter .filter-buttons button.active {
  color: #ffffff;
}

#recruiter-fliter .filter-content {
  display: none;
  width: 100%;
  border: 0.5px solid #e0e0e0;
  background: var(--text-secondary);
  border-radius: 0.5rem;
  overflow: hidden;
}

#recruiter-fliter .filter-content div {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 9.375rem;
  border: 0.5px solid #d7dbdd;
  padding: 2rem;
}
#recruiter-fliter .filter-content div svg{
  height: 100%;
  width: 100%;
}

#recruiter-fliter .active-fliter {
  width: 100%;
  display: grid;
grid-template-columns: repeat(2, 1fr);
}

#recruiter-fliter .active-fliter .full-grid{
    grid-column: span 2 / span 2;
}
#success-stories {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  padding: calc(3.75rem + 2vw);
  gap: 2.5rem;
  overflow: hidden;
}

#success-stories .ss-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#success-stories .ss-header h2 {
  color: var(--primary-color);
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-style: normal;
  font-weight: 500;
  line-height: 3.75rem;
  letter-spacing: -0.24rem;
}

.ss-nav {
  display: flex;
  gap: 1rem;
}

.ss-nav .nav-btn {
  width: 3.1rem;
  height: 3.1rem;
}

.ss-nav .prev-btn .arrow-container {
  transform: translateX(0.5rem);
}

.ss-nav .prev-btn:hover .arrow-container {
  transform: translateX(-1.5rem);
}

.ss-nav .next-btn .arrow-container {
  transform: translateX(-1.5rem);
}

.ss-nav .next-btn:hover .arrow-container {
  transform: translateX(0.5rem);
}

#success-stories .ss-slider {
  display: flex;
  transition: transform 0.6s ease-in-out;
  width: 100%;
  gap: 2.5rem;
}

#success-stories .ss-slide {
  flex: 0 0 100%;
  min-height: 26.75rem;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(1.875rem + 1vw);
  border-radius: 1.25rem;
  gap: 2.5rem;
  background: linear-gradient(180deg, var(--light-blue) 0%, rgba(211, 238, 251, 0) 100%);
  box-sizing: border-box;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

#success-stories .ss-slide-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
}

#success-stories .ss-slide-content h4 {
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.375rem, 2.2vw, 1.625rem);
  font-style: normal;
  font-weight: 500;
  line-height: 1.918625rem;
  letter-spacing: -0.0628125rem;
}

#success-stories .ss-slide-content p {
  width: 80%;
  color: var(--text-blue);
  font-family: var(--font-body);
  font-size: clamp(1.5rem, 2.5vw, 1.75rem);
  font-style: normal;
  font-weight: 300;
  line-height: 1.875rem;
  z-index: 1;
}

#success-stories .ss-slide-content h6 {
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: clamp(1.0625rem, 1.4vw, 1.25rem);
  font-style: normal;
  font-weight: 300;
  line-height: 1.0465rem;
}

#success-stories .slide-svg {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
}




#gallery {
  width: 100vw;
  background: linear-gradient(181deg, rgba(255, 245, 204, 0.00) -8.74%, #FFF5CC 99.2%);
  min-height: 100vh;
  padding: calc(1.25rem + 1vw) calc(3.75rem + 2vw);
  
}

#gallery .header-g{
  width: 100%;
  height: fit-content;
  display: flex;
  justify-content: space-between;
  align-items: center ;
}


#gallery .header-g h2 {
  color: var(--primary-color);
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-style: normal;
  font-weight: 500;
  line-height: 3.75rem;
  letter-spacing: -0.24rem;
}

#gallery .header-g .header-btn {
  border-radius: 0.3125rem;
  background: var(--accent-color);
  border: none;
  color: var(--text-secondary);
  padding: calc(0.175rem + 0.2vw) 0.5rem calc(0.2rem + 0.2vw);
  height: 3rem;
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 1.5vw, 1.25rem);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.1125rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  transition: background 0.5s ease-in-out;
}

#gallery .header-g .header-btn:hover {
  background: var(--primary-color);
}

#gallery .header-g .header-btn .icon-wrapper {
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 0.25rem;
  background: var(--text-secondary);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

#gallery .header-g .header-btn .icon-wrapper .arrow-container {
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.76, 0, 0.24, 1);
  transform: rotate(45deg) translateY(25%);
}

#gallery .header-g .header-btn .icon-wrapper svg {
  width: 1.25rem;
  height: 1.1875rem;
  flex-shrink: 0;
}

#gallery .header-g .header-btn:hover .arrow-container {
  transform: rotate(45deg) translateY(-25%);
}

#gallery .btn-sort{
  width: 100%;
  height: fit-content;
  padding: 3.5rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
#gallery .btn-sort .sort-buttons {

  display: flex;
  align-items: center;
  border: 1px solid #e0e0e0;
  border-radius: 0.5rem;
  position: relative;
  background: var(--text-secondary);
  padding: 0.2rem;
  color: #000000;

}

.glider2 {
  position: absolute;

  height: 85%;
  background: var(--primary-color);

  border-radius: 0.5rem;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 1;
  padding: 0.2rem;
  box-sizing: border-box;

}


#gallery .btn-sort .sort-buttons button {
  width: 100%;
  padding: calc(0.5rem + 0.2vw);
  background: transparent;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  color: #000000;
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.2vw, 1rem);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
  text-wrap: nowrap;
}

#gallery .btn-sort .sort-buttons button.active {
  color: #ffffff;
}


#gallery .btn-sort .active-fliter {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.gallery-container {
  width: 100%;
  position: relative;
  aspect-ratio: 4 / 3;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 6rem;
}

.photo-card {
  position: absolute;
  background: var(--core-white);
  width: 30%;
  transition: transform 0.5s ease-in-out;
}

.photo-card:hover {
  transform: scale(1.05) !important;
  z-index: 100 !important;
}

.photo-card .image {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 1.5;
  object-fit: cover;
  border: 30px solid #FFF;
  box-shadow: 0 0 30px 12px rgba(0, 0, 0, 0.05);
}

.pin {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.photo-card:nth-child(1) {
  top: 0;
  left: 5%;
  transform: rotate(-8deg);
  z-index: 2;
}

.photo-card:nth-child(2) {
  top: 2%;
  left: 35%;
  transform: rotate(4deg);
  z-index: 2;
}

.photo-card:nth-child(3) {
  top: 0;
  left: 66%;
  transform: rotate(-5deg);
  z-index: 2;
}

.photo-card:nth-child(4) {
  top: 28%;
  left: 5%;
  transform: rotate(5deg);
  z-index: 3;
}

.photo-card:nth-child(5) {
  top: 33%;
  left: 35%;
  transform: rotate(-3deg);
  z-index: 3;
}

.photo-card:nth-child(6) {
  top: 29%;
  left: 65%;
  transform: rotate(8deg);
  z-index: 3;
}

.photo-card:nth-child(7) {
  top: 58%;
  left: 5%;
  transform: rotate(-6deg);
  z-index: 4;
}

.photo-card:nth-child(8) {
  top: 60%;
  left: 35%;
  transform: rotate(3deg);
  z-index: 4;
}

.photo-card:nth-child(9) {
  top: 60%;
  left: 65%;
  transform: rotate(-4deg) ;
  z-index: 4;
}
/* 

#top-footer {
  width: 100%;
  display: flex;
  padding: calc(1.875rem + 1vw) calc(3.75rem + 2vw);
  background: var(--secondary-color);
  color: var(--text-secondary);
  justify-content: center;
  font-family: var(--font-body);
  gap: 3.125rem;
}

#top-footer .flex-box {
  display: flex;
  gap: 3.125rem;
}

#top-footer .flex-row {
  display: flex;
}

#top-footer p {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1.1vw, 1rem);
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0.005rem;
}

#top-footer .para {
  width: 80%;
}

#top-footer h4 {
  color: var(--accent-color);
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 1.5vw, 1.25rem);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.1rem;
  padding-bottom: 0.625rem;
}

#top-footer a {
  color: var(--text-secondary);
} */


    #top-footer {
      width: 100%;
      display: flex;
      flex-direction: column;
      padding: calc(1.875rem + 1vw) calc(3.75rem + 2vw);
      background: var(--secondary-color);
      color: var(--text-secondary);
  
      font-family: var(--font-body);

    }
  
    #top-footer .flex-box {
      display: flex;
      justify-content: space-between;
      gap: 3rem;
    }
  
    #top-footer .flex-row {
      display: flex;
      gap: 3rem;
    }
  
    #top-footer p {
      font-family: var(--font-body);
      font-size: clamp(0.875rem, 1.1vw, 1rem);
      font-style: normal;
      font-weight: 400;
      line-height: 140%;
      letter-spacing: 0.005rem;
    }
  
    #top-footer a {
      text-decoration: none;
    }
  
    #top-footer .para {
      width: 50%;
    }
  
    #top-footer h4 {
      color: var(--accent-color);
      font-family: var(--font-heading);
      font-size: clamp(1.125rem, 1.5vw, 1.25rem);
      font-style: normal;
      font-weight: 500;
      line-height: normal;
      letter-spacing: -0.1rem;
      padding-bottom: 0.625rem;
    }
  
    #top-footer a {
      color: var(--text-secondary);
      margin-top: 0.5rem;
    }
  
    #top-footer .flex-row .social-links {
      width: 100%;
      display: flex;
      flex-wrap: nowrap;
      gap: 0.5rem;
      margin: 10px 0;
      align-items: center;
    }
    #top-footer .flex-row .quick-links{
      width: fit-content;
      display: flex;
      text-wrap: nowrap;
      flex-direction: column;
    }
  
    #top-footer .bottom {
      margin-top: 3rem;
    }
  
    #top-footer .bottom .left-side {
  
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
         #top-footer .bottom .left-side h5{
          font-weight: 400;
         }
#footer {
  width: 100%;
  min-height: 50vh;
  height: auto;
  background: var(--primary-color);
  padding: calc(1.875rem + 1vw) calc(3.75rem + 2vw);
  position: relative;
}

#footer h4 {
  width: fit-content;
  color: var(--text-secondary);
  font-family: var(--font-heading);
  font-size: clamp(0.875rem, 1.1vw, 1rem);
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -0.04rem;
  border-bottom: 2px solid var(--accent-color);
  padding-bottom: 0.1875rem;
  margin: 1.25rem 0;

}

#footer .footer-links {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 5;
}

#footer .footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1.1vw, 1rem);
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0.005rem;
  z-index: 2;
  cursor: pointer;
}

#footer a:hover {
  color: #fff5cc;
}

#footer .footer-links ul li {
  width: 15.625rem;
  list-style: none;
  padding: 0;
  margin: 1.25rem 0;
}

#footer .bottom {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3.75rem;
  color: var(--text-secondary);
  z-index: 2;
}

#footer .bottom .left-side {
  z-index: 2;
}

#footer .bottom .left-side h5 {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1.1vw, 1rem);
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0.005rem;
}

#footer .bottom .left-side a {
  color: var(--text-secondary);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1.1vw, 1rem);
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0.005rem;
}

#footer .bottom .left-side .left-links {
  display: flex;
  padding-top: 1.875rem;
}

#footer .bottom .left-side .border-right {
  border-right: 1px solid var(--text-secondary);
  margin: 0 2.5rem;
}

#footer .bottom .right-side {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  z-index: 2;
}

#footer .bottom .right-side h5 {
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0.005625rem;
}

#footer .bottom .right-side .social-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

#footer .bottom .right-side .social-links a {
  text-decoration: none;
}

#footer .bottom a:hover {
  color: #fff5cc;
}

#footer .svg {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}

#footer .svg svg {
  z-index: -1;
}
#footer .svg .mobile {
  display: none;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(1.875rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content>*,
.hero-media,
.hero-nav {
  opacity: 0;
  animation-name: fadeInUp;
  animation-duration: 1.3s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

.hero-content>*:nth-child(1) {
  animation-delay: 0.5s;
}

.hero-content>*:nth-child(2) {
  animation-delay: 0.5s;
}

.hero-content>*:nth-child(3) {
  animation-delay: 0.5s;
}

.hero-media {
  animation-delay: 1.3s;
}

.hero-nav {
  animation-delay: 1.3s;
}

.scroll-animate {
  opacity: 0;
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

.scroll-animate.fade-in-up {
  transform: translateY(3.125rem);
}

.scroll-animate.fade-in-down {
  transform: translateY(-3.125rem);
}

.scroll-animate.fade-in-left {
  transform: translateX(-3.125rem);
}

.scroll-animate.fade-in-right {
  transform: translateX(3.125rem);
}

.scroll-animate.zoom-in {
  transform: scale(0.9);
}

.scroll-animate.animate {
  opacity: 1;
  transform: none;
}

@media (max-width: 600px) {

  body {
    overflow-x: hidden;
  }

  header .top-strip {
    gap: 0.5rem;
  }

  .top-strip .left-side {
    width: 40%;
    font-size: clamp(0.075rem, 0.2vw + 0.8125rem, 0.8125rem);
    padding: 0.5rem 0;
  }

  .top-strip .left-side p {
    display: none;
  }

  .top-strip .right-side {
    width: 60%;
    justify-content: end;
  }

  .top-strip .right-side a {
    padding: 0 calc(0.5rem + 0.3vw);
    font-size: clamp(0.6875rem, 0.1vw + 0.6875rem, 0.75rem);
  }

  .top-strip .right-side .icon-wrapper {
    width: 1.25rem;
    height: 1rem;

  }

  .navbar {
    padding: 0.2rem 1rem;
  }

  .navbar .logo svg {
    max-width: 10rem;
  }

  .navbar .right-side {
    width: 100%;
    justify-content: end;
    gap: 1rem;
  }

  .navbar .right-side a {
    width: 6rem;
    height: 2.5rem;
  }

  .navbar .right-side .ctabtn-wrapper span:nth-child(1) {
    transform: translateY(0.55rem);
  }

  .navbar .right-side .tab-menu {
    display: block;
  }

.navbar .nav-links-desktop{
  display: none;
}
body.menu-open .right-side .close-menu svg{
  width: 20px;
  height: 20px;
}
body.menu-open .right-side .close-menu {
    display: block;
    position: relative;
    top: 2;
    margin-left: 0.5rem;
    right: 0.5rem;
    z-index: 1002; 
}
        .nav-links-mobile .main{
          width: 100%;
          padding: calc(1rem + 0.1vw);
        }
 .nav-links-mobile .main li {
            margin: 0.5rem 0;
            list-style: none;
            padding: 0.8rem 0.5rem;
            border-bottom: 1px solid rgba(84, 4, 17, 0.78);
        }

 .nav-links-mobile .main li a {

            color: var(--text-primary);
            transition: color 0.3s;
            text-decoration: none;

          display: flex;
          justify-content: space-between;
            color: var(--Core-Black, #1A1A1A);
            font-family: var(--font-heading);
              font-size: 1rem;
              font-style: normal;
              font-weight: 500;
              line-height: 120%;
              letter-spacing: 0.005rem;
        }

  .hero {
    min-height: 100vh;
    margin: 0;
    position: relative;
  }.hero-bg-img {
    padding-top: 20rem;
  }
    .hero-bg-img img {
      width: 100%;
      margin-top: 10rem;
      overflow: hidden;
      object-fit: cover;
    }

  .hero-slide {
    flex-direction: column;
    padding: 18vh 1.5rem 0;
    gap: 2rem;
  }

  .hero-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .hero-content h1 {
    font-size: clamp(1.8rem, 8vw, 2.125rem);
    line-height: 1.2;
    letter-spacing: -0.2125rem;
  }

  .hero-content p {
    font-size: clamp(0.8rem, 4vw, 1rem);
    margin: 1rem 0;
  }

  .hero-content .cta-btn {
    font-size: clamp(0.9rem, 0.4vw + 1rem, 1rem);
    padding: calc(0.275rem + 0.2vw) calc(0.5rem + 0.2vw);
    border-radius: 0.25rem;
  }

  .hero-content .cta-btn .icon-wrapper {
    width: 1.5rem;
    height: 1.5rem;
  }

  .hero-content .cta-btn .icon-wrapper svg {
    width: 1rem;
    height: 1rem;
  }

  .hero-media {
    justify-content: center;
    align-items: center;
    margin: 0;
  }

  .hero-media video {
    width: 80vw;
    height: 80vw;
  }

  .hero-nav {
    margin-top: 29dvh;
    right: 0;
    margin-right: 1.5rem;
    display: none;
  }

  #searchbar {
    padding: calc(1rem + 1vw) calc(0.5rem + 2vw);
  }

  #searchbar .search-container {
    padding: 0.5rem 1rem 1rem;
    gap: 0.5rem;
  }

  #searchbar .search-container h4 {
    font-size: clamp(1rem, 0.1vw + 1rem, 1.125rem);
  }

  #searchbar .search-container .search-act {
    flex-direction: column;
    width: 100%;
  }

  #searchbar .search-container .search-act .search-filters {
    height: 2.5rem;
    gap: 0.5rem;
  }

  #searchbar .search-container .search-act button {
    height: 2.5rem;
    width: 100%;
    font-size: clamp(1rem, 0.2vw + 1rem, 1rem);

  }

  #searchbar .search-container .search-act button .search-icon {
    display: none;
  }

  #searchbar .flex-box {
    gap: 0.3rem;
    width: 100%;
    overflow: hidden;
  }

  #searchbar .search-container .search-act input {
    width: 100%;
    height: 2.5rem;
    font-size: clamp(0.8rem, 0.3vw + 0.8rem, 0.8125rem);
    padding: 0 calc(0.7rem + 0.5vw);
  }

  #searchbar .search-container .search-act .search-filters {
    flex-direction: row;
  }

  #searchbar .search-container .search-act .search-filters label {
    font-size: clamp(0.75rem, 3vw, 0.875rem);
    padding: 0.5rem;
  }

  #Academics {
    flex-direction: column;
    padding: 2rem 0 0;
  }

  .academics-container {
    padding: 5rem 1rem 2rem;
  }


  .academics-container .academics-header {
    padding: 1rem calc(0.4rem + 1vw);
  }

  .academics-container .academics-header h2 {
    font-size: clamp(1.5rem, 4vw, 1.5rem);
    letter-spacing: -0.12rem;
  }

  .academics-container .academics-header p {
    font-size: clamp(1rem, 0.1vw + 1rem, 1rem);
    letter-spacing: 0.005rem;
    line-height: 120%;
  }

  .academics-container .flex-container {
    flex-direction: column;
  }

  .academics-container .parent-screen,
  .academics-container .act-calls {
    width: 100%;
  }

  .academics-container .act-calls {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1rem;
  }
     .academics-container .act-calls img {
       width: 25vw;
     }

  .academics-container .child {
    min-height: calc(18.3125rem + 5vw);
    padding: calc(1.2rem + 0.5vw);
  }

  .academics-container .child .top-svg {
    right: -40%;
    top: 60%;
    rotate: 85deg;
  }

  .academics-container .child .top-svg svg {
    width: 30rem;
    height: 20rem;
  }
    .sname h1 {
      font-size: 2.2rem;
    }
  
    .sname i {
      font-size: 1.8rem;
    }

    .academics-container .act-calls .act-bg h1 {
      font-size: 1.4rem;
    }

    .academics-container .act-calls .act-bg h1 i {
      font-size: 1.2rem;
    }
  .academics-container .child p {
    width: 12.6875rem;
    font-size: clamp(0.75rem, 4vw, 0.75rem);
    line-height: 120%;
  }


  .academics-container .child .content-top {
    gap: 0;
  }

  .academics-container .child .content-top .svg-con {
    width: 7.05rem;
    height: 3.25rem;
  }


  .academics-container .child .child-flex-box {
    width: 100%;
    flex-direction: row-reverse;
    padding: 0 1rem;
  }

  .academics-container .child .child-flex-box .hovered-text {
    width: 100%;
    opacity: 1;
    text-align: left;
    gap: calc(0.2rem + 0.2vw);
    visibility: visible;
  }

  .academics-container .child .child-flex-box .hovered-text h5 {
    font-size: clamp(1rem, 0.2vw + 1rem, 1rem);
  }

  .academics-container .child .hovered-text ul {
    width: 100%;
    line-height: 100%;
    letter-spacing: normal;
    padding-left: 1rem;
  }

  .academics-container .child .hovered-text ul li {
    margin-bottom: 0;
    font-size: clamp(0.75rem, 0.2vw + 0.75rem, 0.75rem);
  }

  .academics-container .child .exp-btn {
    gap: 0;
    text-wrap: nowrap;
    font-size: clamp(0.9rem, 0.9vw + 0.9rem, 0.9rem);
    padding: calc(0.3rem + 0.2vw);
    border-radius: 0.2rem;
    letter-spacing: -0.0825rem;
  }


  #building {
    flex-direction: column;
    gap: 2rem;
    padding: 0 1rem
  }

  #building .main-card {
    width: 100%;
  }

  #building .side-card {
    width: 100%;
    align-items: start;
    flex-direction: row;
  }

  #building .side-card h4 {
    width: 90%;
    font-size: clamp(0.8rem, 0.8vw + 0.8rem, 0.8rem);
    letter-spacing: -0.07rem;
  }

  #building .side-card {
    font-size: 16px;
    gap: 1rem;
  }

  #building .side-card .icon svg {
    width: 2rem;
    height: 2rem;
  }

  #building .side-card .top-svg {
    width: 80px;
    top: -2.1rem;
  }

  #building .side-card .side-card-1,
  #building .side-card .side-card-2 {
    padding: 0.5rem;
  }


  #prof-yt {
    flex-direction: column-reverse;
    padding: 3rem 1.5rem;
    margin-top: 3rem;
  }

  #prof-yt .left,
  #prof-yt .right {
    width: 100%;
  }

  #prof-yt .left p {
    font-size: clamp(1rem, 0.4vw + 1rem, 1rem);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-bottom: 2rem;
  }

  #prof-yt .left h3 {
    font-size: clamp(1.25rem, 2vw, 1.25rem);
    letter-spacing: -0.075rem;
  }

  #prof-yt .left h6 {
    font-size: clamp(0.8125rem, 0.4vw + 0.8rem, 0.8125rem);
    line-height: normal;
    letter-spacing: 0.00206rem;
  }

  #prof-yt .right .video-container {
    width: 100%;
    height: 13rem;
    padding-bottom: 10%;
  }

  #top-recruiter {
    padding: 1rem 1.5rem;
    gap: 1rem;
  }

  #top-recruiter h2 {

    font-size: clamp(1.5rem, 4vw, 1.5rem);
    line-height: 1.2;
    letter-spacing: -0.12rem;
  }

  #top-recruiter .container {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
  }

  .r-grid {
    width: 100%;
    height: 5.5rem;
    border: 0.5px solid #d7dbdd;

  }

  .r-grid svg {
    width: 5.5rem;
  }




  #academic-calendar {
    padding: 1rem 1.5rem;
    position: relative;
  }

  #academic-calendar .header {
    gap: 1rem;


  }

  #academic-calendar .header h2 {
    font-size: clamp(1.5rem, 4vw, 1.5rem);
    line-height: 1.2;
    letter-spacing: -0.12rem;
  }

  #academic-calendar .header .header-btn {
    position: absolute;
    bottom: 0;
    left: 0;
    margin-left: 1.5rem;
    font-size: clamp(1rem, 1.5vw, 1rem);
    padding: calc(0.275rem + 0.2vw) calc(0.5rem + 0.2vw);
    border-radius: 0.25rem;
  }

  #academic-calendar .header-actions .header-btn .icon-wrapper {
    width: 1.5rem;
    height: 1.5rem;
  }

  #academic-calendar .header-actions .header-btn .icon-wrapper svg {
    width: 1rem;
    height: 1rem;
  }

  #academic-calendar .slider-wrapper {
    padding-bottom: 3rem;

  }

  #academic-calendar .slide {
    width: 90vw;
    height: 3.5rem;
    margin: 0;
    padding: 0 calc(1rem + 0.5vw);
    gap: 1rem;
    margin: 10px 10px 10px 0;

  }

  #academic-calendar .slide h4 {
    font-size: clamp(1.25rem, 2vw, 1.25rem);
    letter-spacing: -0.1rem;

  }

  #recruiter-fliter {
    padding: 3rem 1rem;
    flex-direction: column;
  }

  #recruiter-fliter .left-side {
    width: 100%;
    height: 14rem;
    padding: 0;
    position: relative;
    border-radius: 1.25rem;
    overflow: hidden;
  }

  #recruiter-fliter .left-side img.workers {
    max-width: 220%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  #recruiter-fliter .left-side .content {
    padding: calc(1rem + 1vw);
  }

  #recruiter-fliter .left-side h3 {
    width: 95%;
    font-size: clamp(1.5rem, 4vw, 1.5rem);
    line-height: normal;
    letter-spacing: -0.12rem;
  }

  #recruiter-fliter .left-side button {
    font-size: clamp(1rem, 1.5vw, 1rem);
    padding: calc(0.275rem + 0.2vw) calc(0.5rem + 0.2vw);
    border-radius: 0.25rem;
    letter-spacing: -0.1125rem;
    gap: 0.625rem;

  }

  #recruiter-fliter .left-side button .icon-wrapper {
    width: 1.5rem;
    height: 1.5rem;
  }

  #recruiter-fliter .left-side button .icon-wrapper svg {
    width: 1rem;
    height: 1rem;
  }


  #recruiter-fliter .left-side .bg-vector {
    width: 10rem;
    height: 10rem;
    right: -1rem;
  }




  #recruiter-fliter .right-side {
    width: 100%;
  }

  #recruiter-fliter .filter-buttons button {
    padding: calc(0.5rem + 0.2vw);
    font-size: clamp(1rem, 1.2vw, 1rem);
    font-weight: 500;
    line-height: 130%;
  }

  #recruiter-fliter .active-fliter {
    grid-template-columns: repeat(2, 1fr);
  }

  #recruiter-fliter .filter-content div {
    width: 100%;
    height: 7rem;
  }

  #success-stories {
    padding: 3rem 1.5rem;
  }

  #success-stories .ss-header {
    gap: 1rem;
    justify-content: start;
  }

  #success-stories .ss-header h2 {
    font-size: clamp(1.5rem, 4vw, 1.5rem);
    line-height: 1.2;
    letter-spacing: -0.12rem;
  }

  #success-stories .ss-slider {

    justify-content: space-between;
  }

  #success-stories .ss-slide {
    flex-direction: column-reverse;
    justify-content: space-between;
    min-height: 18rem;
    padding: calc(1rem + 1vw);
  }

  .ss-nav {
    display: flex;
    gap: 1rem;
  }

  .ss-nav .nav-btn {
    width: 2.125rem;
    height: 2.125rem;
  }

  .ss-nav .prev-btn .arrow-container {
    transform: translateX(0.1rem);
  }

  .ss-nav .prev-btn:hover .arrow-container {
    transform: translateX(-1.9rem);
  }

  .ss-nav .next-btn .arrow-container {
    transform: translateX(-1.8rem);
  }

  .ss-nav .next-btn:hover .arrow-container {
    transform: translateX(0.2rem);
  }

  #success-stories .ss-slide-content {
    gap: 0.5rem;

  }

  #success-stories .ss-slide-content p {
    width: 100%;
    font-size: clamp(1rem, 2.5vw, 1rem);
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.005rem;
    margin-bottom: 2.6rem;
  }

  #success-stories .ss-slide-content h4 {
    transform: translateX(35%);
    font-size: clamp(1.25rem, 2.2vw, 1.25rem);
  }

  #success-stories .ss-slide-content h6 {
    transform: translateX(35%);
    font-size: clamp(0.9rem, 1.4vw, 0.9rem);
    font-weight: 400;
    line-height: normal;
  }

  .ss-slide .ss-img {
    position: absolute;
    left: 0;
    margin-left: 1.5rem;
    top: 11rem;
    width: 5.75rem;
    height: 5.75rem;
  }

  .ss-slide .ss-img img {
    width: 100%;
    object-fit: cover;
  }

  #success-stories .slide-svg {
    width: 12rem;
    height: 12rem;
    top: 0;
    right: -3rem;
  }

    #gallery {
      padding: calc(1.25rem + 1vw) calc(0.75rem + 2vw);
  
    }

  
    #gallery .header-g h2 {
      font-size: clamp(1.5rem, 4vw, 1.5rem);
      line-height: normal;
      width: 100%;
      letter-spacing: -0.12rem;
    }
  
    #gallery .header-g .header-btn {
display: none;
    }
  
    #gallery .btn-sort {
      width: 100%;
      height: fit-content;
      padding: 2rem 0;
      display: flex;
      justify-content: center;
      align-items: center;
    }
  
    #gallery .btn-sort .sort-buttons {
      width: 100%;
      display: flex;
      align-items: center;
      border: 1px solid #e0e0e0;
      border-radius: 0.5rem;
      position: relative;
      background: var(--text-secondary);
      padding: 0.2rem;
      color: #000000;
  
    }
  
    .glider2 {
      position: absolute;
  
      height: 85%;
      background: var(--primary-color);
  
      border-radius: 0.5rem;
      transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
      z-index: 1;
      padding: 0.2rem;
      box-sizing: border-box;
  
    }
  
  
    #gallery .btn-sort .sort-buttons button {
      padding: calc(0.4rem + 0.2vw);
      font-size: clamp(1rem, 1.2vw, 0.75rem);
      font-weight: 500;
    }

  
    .pin{
      width: 20px;
      height: auto;
      top: -10px;
    }
.gallery-container {
  width: 100%; 

  position: relative;
  padding: 0;
  aspect-ratio: 1 / 1.2;
}

.photo-card {
  width: 45%;
}

.photo-card:hover {
  transform: scale(1.05) !important;
  z-index: 100 !important;
}

.photo-card .image {
  border-width: 10px;
}

.photo-card:nth-child(1) {
  top: 2%;
  left: 5%;
  transform: rotate(-8deg);
}

.photo-card:nth-child(2) {
  top: 2%;
  left: 50%;
  transform: rotate(5deg);
}

.photo-card:nth-child(3) {
  top: 30%;
  left: 5%;
  transform: rotate(6deg);
}

.photo-card:nth-child(4) {
  top: 30%;
  left: 50%;
  transform: rotate(-4deg);
}

/* Row 2 Overrides */
.photo-card:nth-child(5) {
  top: 60%;
  left: 5%;
  transform: rotate(-5deg);
}

.photo-card:nth-child(6) {
  top: 60%;
  left: 50%;
  transform: rotate(8deg);
}

.photo-card:nth-child(7) {
  top: 87%;
  left: 5%;
  transform: rotate(4deg);
}

.photo-card:nth-child(8) {
  top: 87%;
  left: 50%;
  transform: rotate(-7deg);
}

.photo-card:nth-child(9) {
  top: 90%;
  left: 5%;
  transform: rotate(2deg);
  display: none;
}


  #top-footer {
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
  }

  #top-footer .flex-box {
    flex-direction: column;
    gap: 1.5rem;
  }

  #top-footer p {
    font-size: clamp(0.8125rem, 1.1vw, 0.8125rem);
    line-height: 120%;
    display: flex;
    flex-direction: column;
  }

  #top-footer .para {
    width: 100%;
  }

  #top-footer .flex-row {
    gap: 0.5rem;
    flex-wrap: wrap;
  }
  #top-footer h4{
    margin-top: 1rem;
  }

  #footer {
    padding: 1.5rem;
    min-height: fit-content;
  }

  #footer .svg .desktop{
    display: none;
  }
  #footer .svg .mobile{
    display: block;
  }

  #footer h4 { 
    font-size: clamp(0.9375rem, 1.1vw, 0.9375rem);
    line-height: 140%;
    letter-spacing: -0.0375rem;
    padding-bottom: 0.1875rem;
    margin: 1rem 0;
  }

  #footer .footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 5rem;
  }

  #footer .footer-links a {
    width: 100%;
    text-wrap: wrap;
    font-size: clamp(0.8125rem, 1vw, 0.8125rem);
  }

  #footer .footer-links ul li {
    width: 100%;
    margin: 0.5rem 0;
  }

  #footer .bottom {
    flex-direction: column-reverse;
    justify-content: start;
    align-items: flex-start;
    margin-top: 1.5rem;
  }

  #footer .bottom .left-side {
    display: flex;
    flex-direction: column-reverse;
    justify-content: start;
    padding-top: 0rem;
    position: relative;
    height: fit-content;
    padding-bottom: 4.5vh;
  }

  #footer .bottom .left-side h5 {
    font-size: clamp(0.8125rem, 1.1vw, 0.8125rem);
    line-height: 160%;
    letter-spacing: 0.00206rem;
    padding-bottom: 0.5rem;
  }

  #footer .bottom .left-side .left-links {
    gap: 1.5rem;
    flex-wrap: wrap;
    padding-bottom: 1.5rem;
  }

  #footer .bottom .left-side .grapdes {
    position: absolute;
    left: 0;
    bottom: 0;

  }

  #footer .bottom .left-side .border-right {
    display: none;
  }

  #footer .bottom .right-side .social-links {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

}

@media (max-width: 393px) {
  .hero-nav {
    margin-top: 34vh;
  }
}

@media (max-width: 1024px) and (min-width: 600px) {
  :root {
    --desktop-padding: 4rem;
  }

  body {
    overflow-x: hidden;

  }

  header .top-strip {
    width: 100%;
    justify-content: space-between;
    z-index: 1000;

  }

  .top-strip .left-side p,
  .top-strip .left-side a {
    padding: 0 1.5rem;
  }

  .top-strip .left-side {
    width: fit-content;
    font-size: clamp(0.75rem, 0.2vw + 0.75rem, 0.875rem);
  }

  .top-strip .right-side {
    width: fit-content;
    justify-content: end;
  }

  .top-strip .right-side a {
    font-size: clamp(0.75rem, 0.2vw + 0.75rem, 0.875rem);
    padding: 0 1rem;
  }

  .navbar {
    padding: 0.3rem var(--desktop-padding);
    position: relative;
  }

  .navbar .logo svg {
    width: 164px;
    height: 52px;
  }
.navbar .nav-links-desktop {
  display: none;
}
  .navbar .right-side .tab-menu {
    display: block;
  }

  .hero {
    min-height: 60rem;
    flex-direction: column;
    margin-top: 7rem;
    padding-bottom: 5rem;


  }
    .hero-bg-img img {
      width: 100%;
      margin-top: 15rem;
      overflow: hidden;
      object-fit: cover;
    }

  .hero-slide {
    width: 100%;
    padding: 2rem 4rem;
    flex-direction: column;
  }

  .hero-content {
    max-width: 100%;
    min-width: 100%;
    z-index: 1;
  }

  .hero-content h1 {
    width: 40rem;
    font-size: clamp(3.5rem, 1.5vw + 0.5rem, 3.75rem);
    line-height: 1.2;
    letter-spacing: -0.3rem;
  }

  .hero-content p {
    font-size: clamp(1.125rem, 0.4vw + 1.125rem, 1.125rem);
    width: 35rem;
    margin: 2rem 0;
  }

  .hero-content .cta-btn {
    font-size: clamp(1rem, 0.4vw + 1rem, 1.125rem);
  }

  .hero-media {
    justify-content: end;
    margin-bottom: 2rem;
    margin-top: -6rem;
    z-index: 0;
  }

  .hero-media video {
    width: 35rem;
    height: 35rem;
  }

  .hero-nav {
    top: 80%;
    bottom: 0;
    left: 4rem;
    z-index: 4;
  }

  #searchbar {
    padding: 0 4rem;
  }

  #searchbar .search-container {
    padding: 1rem 1.5rem;
    gap: 1rem;

  }

  #searchbar .search-container h4 {
    font-size: clamp(1rem, 0.4vw + 1rem, 1.125rem);
  }

  #searchbar .search-container .search-act {
    gap: 0.5rem;
  }

  #searchbar .search-container .search-act input {
    height: 3.125rem;
    font-size: clamp(0.875rem, 0.3vw + 0.875rem, 1rem);
  }

  #searchbar .search-container .search-act button {
    height: 3.125rem;
  }

  #searchbar .search-container .search-act .search-filters {
    height: 3.125rem;
    justify-content: space-around;

    padding: 0.3rem;
  }

  #searchbar .search-container .search-act .search-filters label {
    font-size: clamp(0.875rem, 0.2vw + 0.875rem, 1rem);
    padding: 0.5rem 1rem;
  }

  #Academics {
    padding: 4rem 0;
  }

  .academics-container {
    padding: 6rem 4rem 2rem;
  }

  .academics-container .academics-header {
    font-size: clamp(2rem, 3vw, 2.5rem);
  }

  .academics-container .academics-header p {
    font-size: clamp(0.8rem, 0.2vw + 0.8rem, 1rem);
  }

  .academics-container .flex-container {

    gap: 1rem;
  }

  .academics-container .parent-screen {
    width: 80vw;
    height: 100%;
  }

  .academics-container .child {
    min-height: calc(20rem + 5vw);
    height: 100%;
    padding: 2rem;
  }

    .academics-container .child .top-svg {
      right: -30%;
      top: 60%;
      rotate: 85deg;
    }

            .academics-container .child .top-svg svg {
              width: 30rem;
              height: 20rem;
            }

  .academics-container .child .child-flex-box {
    /* flex-direction: row-reverse; */
    padding: 0 2rem;
  }

  .academics-container .child .child-flex-box .hovered-text {
    opacity: 1;
    gap: calc(0.2rem + 0.2vw);
    visibility: visible;
  }

  .academics-container .child p {
    width: 80%;
    font-size: clamp(0.9rem, 0.2vw + 0.9rem, 1.05rem);
  }

  .academics-container .child .hovered-text ul {
    list-style: square;
    padding-left: 1.25rem;
    color: var(--Core-White, #FFF);
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 0.2vw + 0.9rem, 1.125rem);
    font-style: normal;
    font-weight: 400;

    letter-spacing: 0.09px;
  }

  .academics-container .child .hovered-text ul li {
    margin-bottom: 0.005rem;
    font-size: clamp(0.85rem, 0.1vw + 0.85rem, 0.95rem);
  }

  .academics-container .child .exp-btn {
    font-size: clamp(0.8rem, 0.8vw + 0.8rem, 0.8rem);
    padding: calc(0.4rem + 0.2vw);
    border-radius: 0.2rem;
    letter-spacing: -0.0825rem;
  }

  .academics-container .act-calls {
    width: 20vw;
  }
    .academics-container .act-calls img {
      width: 9vw;
    }
  .academics-container .act-calls .act-bg {
    width: 100%;
    padding: 1rem;
    max-width: 10rem;
  }

  .academics-container .child .exp-btn .icon-wrapper {
    width: 1rem;
    height: 1rem;
  }

  .academics-container .child .icon-wrapper svg {
    width: 0.8rem;
    height: 0.8rem;
  }
        .sname h1 {
          font-size: 2.5rem;
        }
    
        .sname i {
          font-size: 2.2rem;
        }
    
        .academics-container .act-calls .act-bg h1 {
          font-size: 1.4rem;
        }
    
        .academics-container .act-calls .act-bg h1 i {
          font-size: 1.2rem;
        }


  #building {
    gap: 2rem;
    padding: 2rem var(--desktop-padding);


  }

  #building .side-card h4 {
    width: 70%;
    font-size: clamp(0.8rem, 0.8vw + 0.8rem, 0.8rem);
    letter-spacing: -0.07rem;
  }

  #building .side-card {
    font-size: 16px;
    gap: 1rem;
  }

  #building .side-card .top-svg {
    width: 120px;
    margin-top: -1.3vw;
  }

  #building .side-card .side-card-1,
  #building .side-card .side-card-2 {
    padding: 0.5rem;
  }

  #prof-yt {
    padding: 2rem 2rem 2rem 4rem;
    gap: 10px;

  }

  #prof-yt .left,
  #prof-yt .right {
    width: 100%;
  }

  #prof-yt .left {
    padding: 0;
  }

  #prof-yt .left p {
    padding-bottom: 1.5rem;
    font-size: clamp(0.9rem, 0.4vw + 1rem, 1.125rem);
    line-height: 130%
  }

  #prof-yt .left h3 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
  }

  #prof-yt .left h6 {
    font-size: clamp(1rem, 0.4vw + 1rem, 1rem);
  }

  #prof-yt .right .video-container {
    padding-bottom: 56.25%;
  }

  #top-recruiter {
    padding: 2rem var(--desktop-padding);


  }

  #top-recruiter h2 {
    font-size: clamp(1.5rem, 4vw, 2.25rem)
  }

  .r-grid {
    width: 100%;
    height: 6rem;
  }

  .r-grid svg {
    width: 100px;
  }



  #academic-calendar {
    padding: 2rem var(--desktop-padding);
  }

  #academic-calendar .header {

    gap: 1rem;
  }

  #academic-calendar .header-actions {
    gap: 1rem;
  }

  #academic-calendar .header-actions .header-btn {
    width: 100%;
    justify-content: center;
  }

  .cal-nav {
    display: none;
  }

  #academic-calendar .slider-wrapper {
    gap: 1rem;
  }

  #academic-calendar .row {
    gap: 1rem;
  }

  #academic-calendar .slide {
    width: 50%;
    margin: 0;
  }

  #recruiter-fliter {
    flex-direction: column;
    padding: 2rem var(--desktop-padding);

  }

  #recruiter-fliter .left-side,
  #recruiter-fliter .right-side {
    width: 100%;
  }

  #recruiter-fliter .left-side .content {
    padding: 2rem;
  }

  #recruiter-fliter .left-side h3 {
    font-size: clamp(2.25rem, 3vw + 2.25rem, 3rem);
    line-height: 1.2;
  }

  #recruiter-fliter .left-side button {
    font-size: clamp(1rem, 0.4vw + 1rem, 1.125rem);
  }

  #recruiter-fliter .filter-buttons {
    width: 50%;
    gap: 0.5rem;
  }


  #recruiter-fliter .active-fliter {
    display: flex;
  }

  #recruiter-fliter .filter-content div {
    height: 6rem;
  }

  #recruiter-fliter .filter-content div svg {
    width: 120px;
  }

  #success-stories {
    padding: 2rem var(--desktop-padding);
  }

  #success-stories .ss-header {
    gap: 1rem;
  }


  #success-stories .ss-slider {
    gap: 1rem;
  }

  #success-stories .ss-slide {
    flex-shrink: 0;
    width: 100%;
    min-height: auto;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  #success-stories .slide-svg {
    width: 120px;
    margin-top: -120px;
  }

  #success-stories .ss-slide img {
    width: 12rem;

  }

  #success-stories .ss-slide-content {
    gap: 0.3rem;
  }

  #success-stories .ss-slide-content p {
    width: 100%;
    font-size: clamp(1.25rem, 1.5vw, 1.25rem);
    line-height: 1.5rem;
  }

  #student-life {
    padding: 2rem var(--desktop-padding);
  }



#gallery {
  width: 100vw;
  background: linear-gradient(181deg, rgba(255, 245, 204, 0.00) -8.74%, #FFF5CC 99.2%);
  min-height: fit-content;
  padding: calc(1.25rem + 1vw) calc(3.75rem + 2vw);

}

#gallery .header-g {
  width: 100%;
  height: fit-content;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


#gallery .header-g h2 {
  color: var(--primary-color);
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-style: normal;
  font-weight: 500;
  line-height: 3.75rem;
  letter-spacing: -0.24rem;
}

#gallery .header-g .header-btn {
  border-radius: 0.3125rem;
  background: var(--accent-color);
  border: none;
  color: var(--text-secondary);
  padding: calc(0.175rem + 0.2vw) 0.5rem calc(0.2rem + 0.2vw);
  height: 3rem;
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 1.5vw, 1.25rem);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.1125rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  transition: background 0.5s ease-in-out;
}

#gallery .header-g .header-btn:hover {
  background: var(--primary-color);
}

#gallery .header-g .header-btn .icon-wrapper {
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 0.25rem;
  background: var(--text-secondary);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

#gallery .header-g .header-btn .icon-wrapper .arrow-container {
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.76, 0, 0.24, 1);
  transform: rotate(45deg) translateY(25%);
}

#gallery .header-g .header-btn .icon-wrapper svg {
  width: 1.25rem;
  height: 1.1875rem;
  flex-shrink: 0;
}

#gallery .header-g .header-btn:hover .arrow-container {
  transform: rotate(45deg) translateY(-25%);
}

#gallery .btn-sort {
  width: 100%;
  height: fit-content;
  padding: 2.5rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

#gallery .btn-sort .sort-buttons {

  display: flex;
  align-items: center;
  border: 1px solid #e0e0e0;
  border-radius: 0.5rem;
  position: relative;
  background: var(--text-secondary);
  padding: 0.2rem;
  color: #000000;

}

.glider2 {
  position: absolute;

  height: 85%;
  background: var(--primary-color);

  border-radius: 0.5rem;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 1;
  padding: 0.2rem;
  box-sizing: border-box;

}


#gallery .btn-sort .sort-buttons button {
  width: 100%;
  padding: calc(0.5rem + 0.2vw);
  background: transparent;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  color: #000000;
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.2vw, 1rem);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
  text-wrap: nowrap;
}
.photo-card .image {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 1.5;
  object-fit: cover;
  border: 15px solid #FFF;
  box-shadow: 0 0 30px 12px rgba(0, 0, 0, 0.05);
}


    .photo-card:nth-child(1) {
      top: 0;
      left: 5%;
      transform: rotate(-8deg);
      z-index: 2;
    }
  
    .photo-card:nth-child(2) {
      top: 0;
      left: 35%;
      transform: rotate(4deg);
      z-index: 2;
    }
  
    .photo-card:nth-child(3) {
      top: 0;
      left: 66%;
      transform: rotate(-5deg);
      z-index: 2;
    }
  
    .photo-card:nth-child(4) {
      top: 30%;
      left: 5%;
      transform: rotate(5deg);
      z-index: 3;
    }
  
    .photo-card:nth-child(5) {
      top: 30%;
      left: 35%;
      transform: rotate(-3deg);
      z-index: 3;
    }
  
    .photo-card:nth-child(6) {
      top: 30%;
      left: 65%;
      transform: rotate(8deg);
      z-index: 3;
    }
  
    .photo-card:nth-child(7) {
      top: 60%;
      left: 5%;
      transform: rotate(-6deg);
      z-index: 4;
    }
  
    .photo-card:nth-child(8) {
      top: 60%;
      left: 35%;
      transform: rotate(3deg);
      z-index: 4;
    }
  
    .photo-card:nth-child(9) {
      top: 60%;
      left: 65%;
      transform: rotate(-4deg);
      z-index: 4;
    }
  #top-footer {
    padding: 2rem var(--desktop-padding);
    gap: 2rem;
  }

  #top-footer .flex-box {
    flex-direction: column;
    gap: 1rem;
  }


  #top-footer .para {
    width: 100%;
  }

  #top-footer a {}

  #footer {
    min-height: 100%;
    padding: 2rem var(--desktop-padding);
  }

  #footer .footer-links {
    gap: 2rem;
  }

  #footer .footer-links ul li {
    width: 100%;
    margin: 0.5rem 0;
  }

  #footer h4 {}

  #footer .bottom {
    gap: 2rem;

  }

  #footer .bottom .left-side .left-links {}

  #footer .bottom .left-side .border-right {}

  #footer .bottom .right-side {}
     #footer .svg .desktop {
      display: none;
     }
 #footer .svg .mobile {
   display: block;
 }
}



@media (min-width: 1600px) {

  body {
    max-width: var(--max-width);
  }

  .top-strip .left-side {
    font-size: clamp(1rem, 1vw, 1.25rem);
  }

  .top-strip .left-side a,
  .top-strip .left-side p {
    padding: 0 1.5vw;
  }

  .top-strip .right-side a {
    gap: 0.5vw;
    padding: 0 1.5vw;
    font-size: clamp(0.8125rem, 0.8vw, 1rem);
  }

  .navbar {
    padding: 0.5vh 1vw;
  }

  .navbar .right-side {
    gap: 1.5vw;
  }

  .navbar .right-side a {
    width: auto;
    height: auto;
    padding: 0vh 1vw;
    font-size: clamp(0.875rem, 0.9vw, 1.125rem);
  }

  .hero {
    margin: 5vw 0 0;
    min-height: 100dvh;
  }

  .hero-slide {
    gap: 2vw;
    padding: 4vw;
  }

  .hero-content h1 {
    font-size: clamp(3.75rem, 4.5vw, 5.625rem);
    line-height: 1.1;
    letter-spacing: -0.2vw;
  }

  .hero-content p {
    margin: 2vw 0;
    font-size: clamp(1.375rem, 1.5vw, 2rem);
  }

  .hero-content .cta-btn {
    gap: 0.8vw;
    padding: calc(0.3125rem + 0.2vw);
    font-size: clamp(1.5rem, 5vw, 2.25rem);
    align-items: center;
    width: fit-content;
    height: fit-content;
  }

  .hero-content .cta-btn .icon-wrapper {
    width: 2.5rem;
    height: 2.5rem;
  }

  .hero-content .icon-wrapper svg {
    width: 1.875rem;
    height: 1.875rem;
  }

  .hero-media video {
    width: 38vw;
    height: 38vw;
    border-radius: 50%;
  }

  .hero-nav {
    right: 4vw;
    gap: 1vw;
  }

  .hero-nav button {
    width: 3vw;
    height: 3vw;
    border-radius: 0.6vw;
  }

  .hero-nav .icon-wrapper svg {
    width: 1.875rem;
    height: 1.875rem;
    flex-shrink: 0;
  }

  .prev-btn .icon-wrapper {
    transform: translateX(0%);
  }

  .prev-btn:hover .icon-wrapper {
    transform: translateX(-50%);
  }

  .next-btn .icon-wrapper {
    transform: translateX(-50%);
  }

  .next-btn:hover .icon-wrapper {
    transform: translateX(0%);
  }

  #searchbar {
    padding: 1.5vw 4vw;
  }

  #searchbar .search-container {
    border-radius: 0.6vw;
    padding: 1.5vw;
    gap: 1.5vw;
  }

  #searchbar .search-container h4 {
    font-size: clamp(1.5rem, 1.5vw, 2rem);
  }

  #searchbar .search-container .search-act {
    gap: 1vw;
  }

  #searchbar .search-container .search-act input {
    height: 3.5vw;
    padding: 0 1.5vw;
    border-radius: 0.6vw;
    font-size: clamp(1.0625rem, 1vw, 1.375rem);
  }

  #searchbar .search-container .search-act .search-filters {
    height: 3.5vw;
    gap: 1vw;
    padding: 0.3vw;
    border-radius: 0.6vw;
  }

  #searchbar .search-container .search-act .search-filters label {
    padding: 0.8vw 1.2vw;
    border-radius: 0.6vw;
    font-size: clamp(1.125rem, 1vw, 1.375rem);
  }

  #searchbar .search-container .search-act button {
    padding: 0 1.5vw;
    height: 3.5vw;
    gap: 0.8vw;
    border-radius: 0.5vw;
    font-size: clamp(1.25rem, 1.2vw, 1.625rem);
  }

  #searchbar .search-container .search-act button .search-icon {
    width: 2.5vw;
    height: 2.5vw;
    border-radius: 0.4vw;
  }

  #Academics {
    padding-top: 7vw;
  }

  .academics-container {
    padding: 6vw 4vw;
  }

  .academics-container .academics-header {
    gap: 1vw;
    margin-bottom: 3vw;
  }

  .academics-container .academics-header h2 {
    font-size: clamp(3rem, 3.5vw, 4.5rem);
    letter-spacing: -0.2vw;
  }

  .academics-container .academics-header p {
    font-size: clamp(1.125rem, 1.2vw, 1.5rem);
  }

  .academics-container .flex-container {
    gap: 3vw;
  }

  .academics-container .parent-screen {
    border-radius: 1.5vw;
  }

  .academics-container .child {
    min-height: 32vw;
    padding: 3vw;
    border-radius: 1.5vw;
  }

  .academics-container .child .child-flex-box {
    padding: 0 3vw;
    margin-bottom: 2vw;
  }

  .academics-container .child p {
    font-size: clamp(1.5rem, 1.2vw, 2rem);
  }

  .academics-container .child .exp-btn {
    font-size: clamp(1.5rem, 1.4vw, 2.5rem);
    gap: 1.5vw;
  }

  .academics-container .child .exp-btn .icon-wrapper {
    width: 2.5rem;
    height: 2.5rem;
  }

  .academics-container .child .icon-wrapper svg {
    width: 2rem;
    height: 2rem;
  }

  .academics-container .child .exp-btn:hover .arrow-container {
    transform: rotate(45deg) translateY(-25%);
  }

  .academics-container .child .content-top img {
    width: 370px;
    height: 150px;
    margin-left: -20px;
  }

  .academics-container .child .hovered-text h5 {
    font-size: clamp(2rem, 0.2vw + 1rem, 4rem);
  }

  .academics-container .child .hovered-text ul li {
    margin-bottom: 1rem;
    font-size: clamp(1.5rem, 0.1vw + 0.85rem, 2.5rem);
  }

  .academics-container .act-calls {
    width: 15vw;
  }
  .academics-container .act-calls img{
    width: 9vw;
  }

  .academics-container .act-calls .act-bg {
    border-radius: 1.5vw;
    padding: 1.5vw;
  }

  .academics-container .act-calls .active {
    border-width: 0.3vw;
  }
     .sname h1 {
       font-size: 5rem;
     }
  
     .sname i {
       font-size: 4.5rem;
     }
  
     .academics-container .act-calls .act-bg h1 {
       font-size: 3.3rem;
     }
  
     .academics-container .act-calls .act-bg h1 i {
       font-size: 3rem;
     }

  #building {
    padding: 1vw 4vw;
    gap: 2vw;
  }

  #building .bg-img img {
    height: 25vw;
    border-radius: 1.5vw;
  }

  #building .side-card {
    gap: 1.5vw;
  }

  #building .side-card .side-card-1,
  .side-card-2 {
    height: 11.5vw;
    padding: 1.5vw;
  }

  #building .side-card h4 {
    font-size: clamp(1.5625rem, 1.4vw, 1.875rem);
  }

  #prof-yt {
    padding: 4vw 4vw;
    gap: 5vw;
  }

  #prof-yt .left {
    padding: 2vw 0;
  }

  #prof-yt .left p {
    font-size: clamp(1.375rem, 1.5vw, 2.25rem);
    line-height: 1.3;
    padding-bottom: 5rem;
  }

  #prof-yt .left h3 {
    font-size: clamp(1.5rem, 5vw, 2.25rem);
    line-height: 1.2;
  }

  #prof-yt .left h6 {
    font-size: clamp(1.25rem, 1.5vw, 1.75rem);
  }

  #top-recruiter {
    padding: 1vw 4vw;
    gap: 3vw;
    margin-top: 2vw;
  }

  #top-recruiter h2 {
    font-size: clamp(3rem, 3.5vw, 4.5rem);
    line-height: 1.2;
  }

  #top-recruiter .container {
    border-radius: 1.5vw;
  }

  .r-grid {
    height: 8vw;
  }

  .r-grid-1 {
    border-top-left-radius: 1.5vw;
  }

  .r-grid-4 {
    border-top-right-radius: 1.5vw;
  }

  .r-grid-9 {
    border-bottom-left-radius: 1.5vw;
  }

  .r-grid-12 {
    border-bottom-right-radius: 1.5vw;
  }

  #academic-calendar {
    padding: 5vw 4vw;
    gap: 3vw;
  }

  #academic-calendar .header h2 {
    font-size: clamp(3rem, 3.5vw, 4.5rem);
    line-height: 1.2;
  }

  #academic-calendar .header-actions {
    gap: 1.5vw;
  }

  #academic-calendar .header-actions .header-btn {
    padding: calc(0.3125rem + 0.2vw);
    font-size: clamp(1.5rem, 5vw, 2.25rem);
    gap: 0.8vw;
  }

  #academic-calendar .header-actions .header-btn .icon-wrapper {
    width: 2.5rem;
    height: 2.5rem;
  }

  #academic-calendar .header-actions .header-btn .icon-wrapper svg {
    width: 1.875rem;
    height: 1.875rem;
  }

  #academic-calendar .slide {
    width: 28vw;
    height: 4.5vw;
    margin: 0.5vw;
    padding: 0 1.5vw;
    border-radius: 0.6vw;
    gap: 2vw;
  }

  #academic-calendar .slide h4 {
    font-size: clamp(1.5625rem, 2vw, 1.875rem);
    line-height: 1.875rem;
  }

  #academic-calendar .slide p {
    font-size: clamp(1.25rem, 1.1vw, 1.375rem);
  }

  #recruiter-fliter {
    padding: 3vw 4vw;
    gap: 2vw;
  }

  #recruiter-fliter .left-side,
  #recruiter-fliter .left-side img.workers {
    height: 22vw;
  }

  #recruiter-fliter .left-side .content {
    padding: 2vw;
  }

  #recruiter-fliter .left-side h3 {
    font-size: clamp(3rem, 3.5vw, 4.5rem);
    line-height: 1.2;
  }

  #recruiter-fliter .left-side button {
    padding: calc(0.3125rem + 0.2vw);
    font-size: clamp(1.5rem, 5vw, 2.25rem);
    gap: 0.8vw;
  }

  #recruiter-fliter .left-side button .icon-wrapper {
    width: 2.5rem;
    height: 2.5rem;
  }

  #recruiter-fliter .left-side button .icon-wrapper svg {
    width: 1.875rem;
    height: 1.875rem;
  }

  #recruiter-fliter .right-side {
    gap: 1.5vw;
  }

  #recruiter-fliter .filter-buttons {
    padding: 0.3vw;
    border-radius: 0.6vw;
  }

  #recruiter-fliter .filter-buttons button {
    padding: 1vw;
    border-radius: 0.5vw;
    font-size: clamp(1.125rem, 1.1vw, 1.5rem);
  }

  #recruiter-fliter .filter-content div {
    height: 8vw;
  }

  #success-stories {
    padding: 4vw;
    gap: 3vw;
  }

  #success-stories .ss-header h2 {
    font-size: clamp(3rem, 3.5vw, 4.5rem);
    line-height: 1.2;
  }

  #success-stories .ss-slider {
    gap: 2vw;
  }

  #success-stories .ss-slide {
    min-height: 25vw;
    padding: 3vw;
    border-radius: 1.5vw;
    gap: 2vw;
  }

  .ss-nav .nav-btn {
    width: 4.375rem;
    height: 4.375rem;
  }

  .ss-nav .nav-btn svg {
    width: 1.875rem;
    height: 1.875rem;
  }

  .ss-nav .prev-btn .arrow-container {
    transform: translateX(5%);
  }

  .ss-nav .prev-btn:hover .arrow-container {
    transform: translateX(-45%);
  }

  .ss-nav .next-btn .arrow-container {
    transform: translateX(-40%);
  }

  .ss-nav .next-btn:hover .arrow-container {
    transform: translateX(5%);
  }

    #gallery .header-g h2 {
    font-size: clamp(3rem, 3.5vw, 4.5rem);
      line-height: 1.2;
    }
  
    #gallery .header-g .header-btn {
      padding: calc(0.3125rem + 0.2vw);
        font-size: clamp(1.5rem, 5vw, 2.25rem);
        gap: 0.8vw;
        height: auto;
    }
 #gallery .header-g .header-btn .icon-wrapper {
          width: 2.5rem;
          height: 2.5rem;
        }
    
 #gallery .header-g .header-btn .icon-wrapper svg {
          width: 1.875rem;
          height: 1.875rem;
        }

    #gallery .btn-sort .sort-buttons {
  
      display: flex;
      align-items: center;
      border: 1px solid #e0e0e0;
      border-radius: 0.5rem;
      position: relative;
      background: var(--text-secondary);
      padding: 0.2rem;
      color: #000000;
  
    }
  
    .glider2 {
      position: absolute;

      background: var(--primary-color);
  
      border-radius: 0.5rem;
      transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
      z-index: 1;
      padding: 0.2rem;
      box-sizing: border-box;
  
    }
  
  
    #gallery .btn-sort .sort-buttons button {
    padding: 1vw;
      border-radius: 0.5vw;
      font-size: clamp(1.125rem, 1.1vw, 1.5rem);
      font-weight: 500;
    }

    .pin{
      width: 60px;
    }
    .photo-card .image{
      border: 50px solid #ffffff;
    }
        
  #top-footer {
    padding: 5vw 4vw 3vw;
  }

  #footer {
    padding: 3vw 4vw;
  }

  #footer .footer-links ul li {
    width: 15vw;
  }

  #footer .bottom {
    margin-top: 4vw;
  }

}

@media (max-width: 2000px) and (min-width: 1600px) {
  .ss-nav .nav-btn {
    width: 3.8rem;
    height: 3.8rem;
  }

  .ss-nav .nav-btn svg {
    width: 1.5rem;
    height: 1.5rem;
  }

  .hero-content .cta-btn {
    gap: 0.8vw;
    padding: calc(0.25rem + 0.2vw);
    font-size: clamp(1.5rem, 5vw, 1.5rem);

  }

  .hero-content .cta-btn .icon-wrapper {
    width: 2.2rem;
    height: 2.2rem;
  }

  .hero-content .icon-wrapper svg {
    width: 1.5rem;
    height: 1.5rem;
  }

  #academic-calendar .header-actions .header-btn {
    gap: 0.8vw;
    padding: calc(0.25rem + 0.2vw);
    font-size: clamp(1.5rem, 5vw, 1.5rem);
  }

  #academic-calendar .header-actions .header-btn .icon-wrapper {
    width: 2.2rem;
    height: 2.2rem;
  }

  #academic-calendar .header-actions .header-btn .icon-wrapper svg {
    width: 1.5rem;
    height: 1.5rem;
  }
  .sname h1 {
    font-size: 4rem;
  }

  .sname i {
    font-size: 3.7rem;
  }

  .academics-container .act-calls .act-bg h1 {
    font-size: 2.5rem;
  }

  .academics-container .act-calls .act-bg h1 i {
    font-size: 2.3rem;
  }

  #recruiter-fliter .left-side button {
    gap: 0.8vw;
    padding: calc(0.25rem + 0.2vw);
    font-size: clamp(1.5rem, 5vw, 1.5rem);
  }

  #recruiter-fliter .left-side button .icon-wrapper {
    width: 2.2rem;
    height: 2.2rem;
  }

  #recruiter-fliter .left-side button .icon-wrapper svg {
    width: 1.5rem;
    height: 1.5rem;
  }
#gallery .header-g .header-btn {
     gap: 0.8vw;
     padding: calc(0.25rem + 0.2vw);
     font-size: clamp(1.5rem, 5vw, 1.5rem);
     height: auto;
   }
}


@media (max-width: 1200px) and (min-width: 1500px) and (max-height: 540px) {

  .hero {
    min-height: 150dvh;
    margin-top: 6rem;
    padding-bottom: 6rem;
  }
    .hero-media video {
      width: 35rem;
      max-width: 100%;
      min-width: 10rem;
      height: 35rem;
      object-fit: cover;
      margin-top: 80px;
    }
}

/* --- UNIVERSAL HEADER STYLES --- */
.site-header {
  background: #fff;
  padding: 1rem 2rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  /* CRITICAL: This allows dropdown to show */
  overflow: visible;
}

.navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1000;
  /* Keep nav controls on top */
}

.main-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.menu-item {
  padding: 0;
  margin: 0;
}

.menu-item a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

/* --- DESKTOP DROPDOWN (FORCES VISIBILITY) --- */
.nav-links-desktop .menu-item.has-dropdown {
  position: relative;
}

.nav-links-desktop .dropdown-menu {
  background-color: #ffffff;
  border: 1px solid #f0f0f0;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 0.5rem 0;
  min-width: fit-content;
  text-wrap: nowrap;

  /* --- Core Positioning & Visibility --- */
  position: absolute !important;
  /* Force position */
  top: 100%;
  left: 0;
  z-index: 1001;
  /* Must be higher than navbar */

  /* --- Hide by Default --- */
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease-in-out;
}
.nav-links-desktop .second-dropdown-menu {
  background-color: #ffffff;
  border: 1px solid #f0f0f0;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 0.5rem 0;
  min-width: fit-content;
  text-wrap: nowrap;

  /* --- Core Positioning & Visibility --- */
  position: absolute !important;
  /* Force position */
  top: 0%;
  left: 100%;
  z-index: 1001;
  /* Must be higher than navbar */

  /* --- Hide by Default --- */
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease-in-out;
}

/* --- Show the dropdown on hover --- */
.nav-links-desktop .menu-item.has-dropdown:hover>.dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(5px);
}
.nav-links-desktop .drop-menu-item.drop-menu-has-dropdown:hover>.second-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(5px);
}

.nav-links-desktop .dropdown-menu a {
  padding: 0.75rem 1.25rem;
  display: block;
}

.nav-links-desktop .dropdown-menu a:hover {
  background-color: #f8f8f8;
}

/* --- MOBILE MENU SETUP --- */
.has-dropdown {
  position: relative;
}

.dropdown-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}


.mobile-menu-toggle {
  display: none;
}


/* --- Mobile Dropdown Styles --- */
.nav-links-mobile .dropdown-menu {
  display: none;
  /* Hide by default */
  /* Indent sub-items */
  overflow: hidden;
}

.nav-links-mobile .has-dropdown.open > .dropdown-menu {
  display: block;
  margin: 0.5rem 0;
  /* Show when toggled */
}

/* Style for the dropdown arrow on mobile */
.dropdown-toggle .dropdown-arrow {
  transition: transform 0.3s ease;
}

.has-dropdown.open>.dropdown-toggle .dropdown-arrow {
  transform: rotate(180deg);
}

/* Adjust font size for sub-menu items on mobile */
.nav-links-mobile .dropdown-menu li {
  border-bottom: none;
  /* Remove bottom border for sub-items */
  margin: 0;
  padding: 0;
}

.nav-links-mobile .dropdown-menu li a {
  font-size: 1.5rem;
  /* Slightly smaller than main items */
  font-weight: 400;
  padding: 0.75rem 0rem;
  border-bottom: 1px solid rgba(84, 4, 17, 0.78);
}

.nav-links-mobile .dropdown-menu li:last-child a {
  border-bottom: none;
}

/* Make sure mobile link styles are applied correctly */
.nav-links-mobile .main li a {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-links-mobile .dropdown-menu li a div svg{
  padding: 0.1rem;
  stroke: var(--accent-color);
}
.nav-link-mobile .dropdown-menu{
  width: 100%;
  padding: 0.5rem;
}
.nav-link-mobile .dropdown-menu li a{
  width: 100%;
 display: flex;
 justify-content: space-between;
 align-items: center;

}

/* --- CSS for Multi-Level Mobile Menu --- */

/* Style for Level 2 dropdown */
.nav-links-mobile .dropdown-menu .dropdown-menu {

}

/* Style for Level 3 dropdown */
.nav-links-mobile .dropdown-menu .dropdown-menu .dropdown-menu {

}

/* Optional: Adjust font size for deeper levels */
.nav-links-mobile .dropdown-menu a {
  font-size: 1.1rem;
}

.nav-links-mobile .dropdown-menu .dropdown-menu a {
  font-size: 1rem;

}

/* Adjustments for smaller screens */
@media (max-width: 600px) {
  .nav-links-mobile .dropdown-menu li a {
    color: var(--primary-color);
      transition: color 0.3s;
      text-decoration: none;
      display: flex;
      justify-content: space-between;
      font-family: var(--font-heading);
      font-size: 1rem;
      font-style: normal;
      font-weight: 500;
      line-height: 120%;
      letter-spacing: 0.005rem;
  }
}