@import url('https://fonts.googleapis.com/css?family=Raleway');
@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap');


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter Tight", sans-serif;
}

:root {
  --primary-color: #111827;
  --secondary-color: #374151;
  --accent-color: #10498A;
  --text-primary: #111827;
  --text-secondary: #6b7280;
  --background: #ffffff;
  --background-alt: #f9fafb;
  --border-color: #e5e7eb;
  --nav-height: 72px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  background: var(--background-alt);
  color: var(--text-primary);
  line-height: 1.6;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--background);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 700;
  font-size: 20px;
  z-index: 1001;
  color: #10498A;
}

.logo-icon {
  width: 32px;
  height: 32px;
  stroke-width: 2;
  rotate: 180deg;
}

.logo-text {
  letter-spacing: -0.5px;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  transition: all 0.3s ease;
}

.hamburger-line {
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 48px);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 32px);
  list-style: none;
}

.nav-link {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

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

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-btn {
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  display: inline-block;
}

.nav-btn.secondary {
  color: var(--text-primary);
  background: transparent;
  border: 1px solid var(--border-color);
}

.nav-btn.secondary:hover {
  background: var(--background-alt);
}

.nav-btn.primary {
  color: #ffffff;
  background: var(--accent-color);
  border: 1px solid var(--accent-color);
}

.nav-btn.primary:hover {
  background: #1d4ed8;
  border-color: #1d4ed8;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.main-content {
  margin-top: var(--nav-height);
}

.hero-section {
  padding: clamp(60px, 12vw, 120px) clamp(16px, 4vw, 32px);
  text-align: center;
  background: transparent;
  position: relative;
  overflow: hidden;
  height: 100vh;

  &::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: rgb(0 0 0 / 30%);
    z-index: 0;
  }
}


.video-background {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: auto;
  object-fit: cover;
  width: 100%;
  height: 100%;
  margin: 0;
  z-index: -1;
}


.hero-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.hero-container h1 {
  font-weight: 600;
}

.hero-title {
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -1px;
  line-height: 1.1;
}

.hero-description {
  font-size: 18px;
  color: #fff;
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-btn {
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.hero-btn.primary {
  background: var(--accent-color);
  color: #ffffff;
}

.hero-btn.primary:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.hero-btn.secondary {
  background: var(--background-alt);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.hero-btn.secondary:hover {
  background: #f3f4f6;
}

.content-section {
  padding: clamp(40px, 8vw, 60px) clamp(16px, 4vw, 32px);
}

.content-container {
  max-width: 1200px;
  margin: 0 auto;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(24px, 4vw, 32px);
}

.feature-card {
  background: var(--background);
  padding: clamp(24px, 4vw, 32px);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--background-alt);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--accent-color);
  stroke-width: 2;
}

#features .feature-icon img {
  width: 40px;
  height: 40px;
}

.feature-title {
  font-size: clamp(18px, 3vw, 22px);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.feature-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.enquery-btn {
  padding: 15px 20px;
  margin-top: 20px;
  color: #fff;
  background-color: #10498A;
  border: none;
  border-radius: 8px;
  cursor: pointer;

}

.enquery-btn i {
  transition: .3s;
}

.enquery-btn:hover.enquery-btn i {
  margin-left: 5px;
}

/*--Slider--*/
#slider {
  margin: 0 auto;
  width: 100%;
  overflow: hidden;
  border-top: 1px solid #000;
  padding-top: 40px;
}

.slides {
  overflow: hidden;
  animation-name: fade;
  animation-duration: 1s;
  display: none;
  height: 400px;
}

img {
  width: 100%;
}

#dot {
  margin: 0 auto;
  text-align: center;
}

.dot {
  display: inline-block;
  border-radius: 50%;
  background: #d3d3d3;
  padding: 4px;
  margin: 10px 5px;
  visibility: hidden;
}


/*----------Vision & Mission--------*/
.about-section {
  padding: 10px;
  width: 100%;
  height: 100vh;
  background-color: #F2F3EE;
  overflow: hidden;
}

.about-section-flex {
  display: flex;
  flex-wrap: wrap;
  padding: 30px 10px;

}

.about-section-flex-col {
  width: 50%;
  overflow: visible;
}

.about-section-flex-col-flex {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.about-section-flex-col img {
  border-radius: 15px;
  width: 70%;
}


.container {
  position: relative;
  width: 50%;
  max-width: 300px;
}

.about-p {
  padding: 20px 10px;
  width: 30%;
}

.image {
  display: block;
  width: 100%;
  height: auto;
}

.overlay {
  position: absolute;
  left: 20%;
  top: 30%;
  color: #f1f1f1;
  width: 90%;
  opacity: 1;
  font-size: 20px;
  padding: 20px;
  text-align: center;
}

.about-section-flex-col:last-child {
  padding-left: 10px;
}


.about-section-flex-col-text span {
  padding: 5px 10px;
  border: #1a1a1a1a 1px solid;
  border-width: 1px 1px 1px 1px;
  border-radius: 100px;
  position: relative;
}

.about-section-flex-col-text span::before {
  display: inline-block;
  content: '';
  border-radius: 0.375rem;
  height: 0.35rem;
  width: 0.35rem;
  margin-right: 0.5rem;
  background-color: #5180e6;
  align-items: center;
  margin-bottom: 2px;
}

.about-section-flex-col-flex {
  display: flex;
  flex-wrap: wrap;
  width: 100%;

}

.about-section-flex-col-flex-col {
  width: 100%;
}

.about-section-flex-col-text h2 {
  font-family: "Inter Tight", sans-serif;
  font-size: 52px;
  font-weight: 500;
  line-height: 1.1em;
  color: #1a1a1a;
  padding: 20px 0;
}

.about-section-flex-col-text p {
  line-height: inherit;
  font-family: "Inter Tight", sans-serif;
  padding-bottom: 20px;
}

.about-section-flex-col-flex-col {
  padding: 20px 0 40px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  border-bottom: #1a1a1a1a 1.5px solid;
}

.about-section-flex-col-flex-col-flex {
  display: flex;
  width: 45%;
  padding: 10px 0;
  align-items: center;
  background: white;
  padding: 20px;
  border-radius: 15px;
}

.about-section-flex-col-flex-col-flex-col {
  width: 80%;
}

.about-section-flex-col-flex-col-flex-col:last-child {
  width: 20%;
}

.about-section-flex-col-flex-col-flex-col i {
  font-size: 30px;
  color: #10498A;
}

.about-section-flex-col-flex-col-flex-col h2 {
  font-size: 40px;
  font-weight: 500;
}

.about-flex {
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 80%;
}

.about-flex-col {
  width: 45%;
}

.about-flex-col-flex {
  display: flex;
  align-items: center;
}

.about-flex-col a {
  padding: 15px 20px;
  background-color: #10498A;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
}

.about-flex-col-flex-col img {
  height: 60px;
  width: 60px;
  clip-path: circle(50%);
}

.about-flex-col i {
  transform: rotate(-40deg);
  padding-left: 5px;
}

.about-flex-col-flex .about-flex-col-flex-col:last-child {
  padding-left: 10px;
}

.about-flex-col-flex-col h3 {
  font-weight: 500;
}

/*-----Map-----*/
.map-main {
  padding: 20px;
}

.map-main h3 {
  text-align: center;
  padding: 25px 10px 10px 10px;
  font-family: "Inter Tight", sans-serif;
  font-size: 35px;
  line-height: 1.1em;
  color: #1a1a1a;
}

/*-----Amenities-----*/
.amenities-main {
  padding: 20px 20px 0 20px;
}

.amenities-text {
  text-align: center;
  align-items: center;
}

.amenities-text p {
  text-align: center;
  padding: 5px 10px;
  border: #1a1a1a1a 1px solid;
  border-width: 1px 1px 1px 1px;
  border-radius: 100px;
  width: 180px;
  margin-left: auto;
  margin-right: auto;
}

.amenities-text p::before {
  display: inline-block;
  content: '';
  border-radius: 0.375rem;
  height: 0.35rem;
  width: 0.35rem;
  margin-right: 0.5rem;
  background-color: #5180e6;
  align-items: center;
  margin-bottom: 2px;
}

.amenities-text h3 {
  font-family: "Inter Tight", sans-serif;
  font-weight: 500;
  line-height: 1.1em;
  color: #1a1a1a;
  padding: 20px 0;
  width: 60%;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
}

.amenities-main .review-categories {
  padding: 0px 30px 0 30px;
  margin-bottom: 60px;
}

.amenities-main .category-card {
  padding: 0;
  border: none;
  border-bottom: 3px solid #10498A;
}

.amenities-main .category-card p {
  padding: 0 10px 15px;
}

.category-card img {
  height: 180px;
  width: 100%;
  border-radius: 12px 12px 0 0;
}

.review-categories .category-card span {
  color: #10498A;
  cursor: pointer;
}

.amenities-main .category-card h3 {
  padding: 10px;
  margin: 0;
  font-weight: 500;
}



/*-------Projects--------*/
.projects h2 {
  font-family: "Inter Tight", sans-serif;
  font-weight: 500;
  line-height: 1.1em;
  color: #1a1a1a;
}

.feature-card img {
  height: 300px;
  border-radius: 12px 12px 0 0;
}

.projects .feature-card {
  padding: 0 0 10px 0;
}

.projects #features {
  padding: 40px 0 10px 0;
  background-color: #f2f3ee;
}

.projects .features {
  margin-bottom: 50px;
}

.projects .feature-card h3 {
  font-weight: 500;
  line-height: 1.1em;
  text-align: left;
  padding: 10px;
  margin: 0;
  text-align:Center;
}

.projects .feature-card p {
  padding: 0 10px;
  text-align: left;
}

.projects .feature-card p span {
  color: #3b82f6;
  cursor: pointer;
}

.projects .feature-card p span:hover {
  text-decoration: underline;
}


/*-----Amenities 2-----*/
.amenities-main-2 .projects #features {
  background: transparent;
}

.amenities-main-2 span {
  text-align: center;
  padding: 5px 10px;
  border: #1a1a1a1a 1px solid;
  border-width: 1px 1px 1px 1px;
  border-radius: 100px;
  width: 180px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  margin-bottom: 20px;
  margin-top: 15px;
}

.amenities-main-2 span::before {
  display: inline-block;
  content: '';
  border-radius: 0.375rem;
  height: 0.35rem;
  width: 0.35rem;
  margin-right: 0.5rem;
  background-color: #5180e6;
  align-items: center;
  margin-bottom: 2px;
}

.amenities-main-2 h2 {
  width: 60%;
  margin-left: auto;
  margin-right: auto;
}

.amenities-main-2 .section-title::after {
  display: none;
}

.amenities-main-2 .feature-card {
  position: relative;
}

.top-left-text {
  position: absolute;
  top: 8px;
  left: 10px;
  color: #fff;
  width: 90%;
  text-align: left;

  background-color: rgb(0, 0, 0);
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.326);
  /* Black w/opacity/see-through */
  color: white;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 100%;
  padding: 20px;
  text-align: left;
  height: 100%;
  border-radius: 12px;
  transition: .2s;
}

.top-left-text:hover {
  background: transparent;
}

.projects .feature-card .top-left-text h3 {
  color: #fff;
  padding: 10px 0;
}

.amenities-main-2 .projects .feature-card {
  padding: 0;
}

.amenities-main-2 .projects img {
  height: 300px;
  border-radius: 12px 12px 12px 12px;
}

/*------Main Projects------*/
.main-projects {
  padding: 20px;
}

.main-projects .about-section {
  border-radius: 12px;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.about-flex-col-flex-col i:last-child {
  rotate: 50deg;
}

.main-projects .about-section-flex-col-flex-col {
  justify-content: unset;
}

.main-projects .about-section-flex-col-flex-col .project-text {
  padding: 10px 20px 10px 0;
}

.main-projects .about-section-flex-col-flex-col .project-text p {
  padding: 10px 0;
}

.main-projects .about-section-flex-col-flex-col .project-text i {
  background-color: #10498A;
  padding: 5px;
  border-radius: 100%;
  color: #fff;
  margin-right: 10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  text-align: center;
  vertical-align: middle;
  font-size: 10px;
}

.about-flex-col-flex-col i {
  background-color: #10498A;
  padding: 5px;
  border-radius: 100%;
  color: #fff;
  margin-right: 10px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  vertical-align: middle;
  font-size: 20px;
  line-height: 38px;
}


.main-projects .about-section-flex-col-flex-col {
  padding-bottom: 20px;
}

.main-projects .about-flex {
  width: 90%;
}

.main-projects .about-section {
  height: 90vh;
  background-color: #F2F3EE;
}

/*-----Vision Mission------*/
.vision-mission {
  margin-top: 50px;
}



/*--------Additional Section---------*/

:root {
  --primary: #10498A;
  --secondary: #1e40af;
  --accent: #3b82f6;
  --light: #f8fafc;
  --dark: #1e293b;
  --gray: #64748b;
  --success: #10b981;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.hero {
  padding: 100px 0;
  background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
  text-align: center;
  border-radius: 0 0 30px 30px;
  margin-bottom: 60px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  color: var(--dark);
}

.hero p {
  font-size: 20px;
  color: var(--gray);
  max-width: 800px;
  margin: 0 auto 40px;
}

.cta-button {
  display: inline-block;
  background-color: var(--primary);
  color: white;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s;
  border: 2px solid var(--primary);
}

.cta-button:hover {
  background-color: transparent;
  color: var(--primary);
}

/* Features Section */
.section-title {
  text-align: center;
  font-size: 38px;
  margin-bottom: 50px;
  color: var(--dark);
  position: relative;
  font-weight: 500;
}

.section-title::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 4px;
  background-color: #10498A;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.feature-card {
  background-color: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background-color: #dbeafe;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary);
  font-size: 28px;
}

.feature-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--dark);
  font-weight: 500;
}

/* Reviews Section */
.reviews {
  margin-bottom: 80px;
}

.review-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-bottom: 60px;
}

.category-card {
  background-color: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  border-left: 4px solid var(--primary);
}

.category-card:hover {
  border-left-color: var(--accent);
  transform: translateX(5px);
}

.category-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  display: block;
  align-items: center;
  gap: 10px;
  color: var(--dark);
  text-align:Center;
}

.dots {
  margin-top: -40px;
}

/* Supportive Website Section */
.supportive-site {
  background-color: white;
  border-radius: 15px;
  padding: 50px;
  margin-bottom: 80px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-top: 5px solid var(--primary);
}

.supportive-site h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--dark);
}

.supportive-site p {
  font-size: 18px;
  color: var(--gray);
  max-width: 800px;
  margin: 0 auto 30px;
}

.site-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--primary);
  color: white;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s;
}

.site-link:hover {
  background-color: var(--secondary);
  transform: scale(1.05);
}

/* Newsletter Section */
.newsletter {
  background: #10498A;
  color: white;
  padding: 60px 20px;
  border-radius: 15px;
  text-align: center;
  margin-bottom: 80px;
}

.newsletter h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.newsletter p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 30px;
  opacity: 0.9;
}

.newsletter-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  flex: 1;
  padding: 15px;
  border-radius: 8px;
  border: none;
  font-size: 16px;
}

.newsletter-form button {
  background-color: white;
  color: var(--primary);
  border: none;
  padding: 0 30px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
}

.newsletter-form button:hover {
  background-color: var(--light);
  transform: translateY(-2px);
}

/* Footer */
footer {
  background-color: var(--dark);
  color: white;
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column h3 {
  font-size: 20px;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: var(--accent);
  bottom: 0;
  left: 0;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: white;
  padding-left: 5px;
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #334155;
  color: #94a3b8;
  font-size: 14px;
}




/*-----------Media CSS----------*/
@media (max-width: 768px) {
  #slider {
    width: 100%;
    height: 300px;
  }

  #slider .slides img {
    height: 250px;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--background);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 100px 32px 32px;
    gap: 32px;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-item {
    border-bottom: 1px solid var(--border-color);
  }

  .nav-link {
    display: block;
    padding: 16px 0;
    font-size: 16px;
  }

  .nav-link::after {
    display: none;
  }

  .nav-actions {
    flex-direction: column;
    width: 100%;
  }

  .nav-btn {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
  }

  .slider {
    height: 400px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero p {
    font-size: 16px;
  }

  .supportive-site {
    padding: 30px 20px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .hero-section {
    height: auto;
  }

  .hamburger {
    display: block;
  }

  .hamburger i {
    font-size: 30px;
    color: #10498A;
  }

  .amenities-text h3 {
    width: 100%;
  }

  .amenities-main .review-categories {
    padding: 0;
  }

  .category-card img {
    height: 280px;
  }

  #slider,
  .slides {
    height: auto;
  }

  #dot {
    margin-top: -30px;
  }

  .about-section-flex {
    flex-direction: column-reverse;
    padding: 10px;
  }

}

@media (max-width: 700px) {

  .about-section-flex-col {
    width: 100%;
    padding: 0;
  }

  .about-section-flex-col .container {
    padding: 0;
    margin-top: 20px;
  }

  .about-p {
    padding: 10px 0;
  }

  .about-section-flex-col:last-child {
    padding: 10px 0 0;
    margin-top: 0px;
  }

  .about-section {
    height: auto;
  }

  .about-section-flex-col-flex-col-flex {
    width: 48%;
    padding: 10px;
  }

  .about-section-flex-col-flex-col-flex-col {
    width: 70%;
  }

  .about-section-flex-col-flex-col-flex-col:last-child {
    width: 30%;
  }

  .about-section-flex-col-flex-col-flex-col h2 {
    font-size: 30px;
  }

  .about-section-flex-col-text h2 {
    font-size: 32px;
  }

  .about-flex {
    width: 100%;
  }

  .about-flex-col:last-child {
    width: 50%;
  }

  .main-projects .about-flex-col,
  .main-projects .about-flex {
    width: 100%;
    margin-top: 10px;
  }

  .main-projects .about-flex-col,
  .main-projects .about-flex {
    display: block;
  }

  .main-projects .about-section-flex-col-flex-col .project-text:last-child {
    padding-bottom: 15px;
  }

  .main-projects .about-section {
    height: auto;
    padding: 10px;
  }

  .main-projects .about-section-flex-col-flex-col {
    padding: 0;
  }

  .main-projects .about-section-flex-col-flex-col .project-text p {
    padding: 5px 0;
  }

  .main-projects .about-section-flex-col-flex-col .project-text {
    padding: 0;
  }

  .newsletter-form button {
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 70px 0;
  }

  .hero h1 {
    font-size: 28px;
  }

  .section-title {
    font-size: 28px;
  }

  .supportive-site h2 {
    font-size: 26px;
  }

  .main-projects .main-projects .about-section-flex {
    flex-direction: column;
  }

  .main-projects .about-section-flex {
    padding: 10px 0 0;
    flex-direction: column;
  }

  .main-projects .about-flex-col-flex {
    margin-top: 40px;
  }

  .about-section-flex-col img {
    width: 100%;
  }

  .overlay {
    position: unset;
    padding: 10px 0 0;
    width: 100%;
  }

  .about-p {
    width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .nav-list {
    gap: 20px;
  }
}