:root {
  /* Palette derived from screenshot */
  --bg-color-main: #000000;
  /* Pure dark background */
  --bg-color-card: #0c0d0d;
  /* Slightly lighter for cards */
  --accent-green: #38ef7d;
  --charcoal: #121212;
  --test-green: #38ef7d;
  --test-dark: #121212;
  --test-bg: #f9f9f9;
  --cream: #fdfbf7;
  --white: #ffffff;
  --gal-accent: #38ef7d;
  --gal-charcoal: #121212;
  --serv-accent: #38ef7d;
  --serv-charcoal: #121212;
  --con-accent: #38ef7d;
  --con-bg-dark: #0a0f0a;
  --cloud-accent: #38ef7d;
  --cloud-glass-bg: rgba(255, 255, 255, 0.08);
  --cloud-glass-border: rgba(255, 255, 255, 0.15);
  --serv-cream: #fdfbf7;
  --revas-accent-green: #38ef7d;
  --revas-charcoal: #121212;
  --revas-light-text: #333;
  --accent-green-border: #1aed3a;
  --text-color-primary: #ffffff;
  --text-color-secondary: #fefefe;
  --text-color-muted: #d0d0d0;
  --font-family-title: "Inter", system-ui, -apple-system, sans-serif;
  --font-family-content: "Inter", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}
body {
  width: 100%;
  background-image:
    linear-gradient(
      rgba(0, 0, 0, 0.527),
      rgba(83, 82, 82, 0.461),
      rgba(0, 0, 0, 0)
    ),
    url(/images/Gemini_Generated_Image_q1u1rbq1u1rbq1u1.png);
  background-repeat: repeat;
  color: black;
}

/* header*/
#header {
  width: 100%;
  height: 100vh;
  background-image: url(/images/Gemini_Generated_Image_fmvat6fmvat6fmva-removebg-preview.png);
  background-position: right;
  background-repeat: no-repeat;
  background-size: contain;
}

/*container contents*/
.special-logo {
  color: #7fff00;
  width: 140px;
  font-family: sans-serif;
}

.container {
  padding: 10px 10%;
}

/* Ensure the nav stays on top */
.revas-main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 10%;
  position: fixed; /* Fixes to the viewport */
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000; /* Keeps it above all other sections */
  background-color: #f4f4f4;
  height: 80px;
}

/* Hide the technical checkbox */
.revas-menu-checkbox {
  display: none;
}

.revas-nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
}

.revas-nav-links li a {
  text-decoration: none;
  color: #000;
  font-size: 18px;
  transition: 0.3s;
}




.com-logo a {
  text-decoration: none;
  color: #000000c9;
}

.nino:hover {
  background-color: #1a1a1a27;
  padding: 5px 5px;
  border-radius: 12px;
}

.header-text {
  margin-top: 300px;
  font-size: 30px;
}

.header-text h1 {
  font-size: 8rem;
  font-weight: 6rem;
  /* margin-top: 20px; */
  color: #000000d3;
}
.header-text h3 {
  color: #000000d3;
  font-size: 3rem;
}
.header-text p {
  color: #000000d3;
  font-size: 30px;
  font-weight: 10px;
}

.header-text button {
  margin-top: 20px;
  padding: 15px 20px;
  border-radius: 14px;
  border: 3px solid transparent;
  background:
    linear-gradient(#ffffff9d, #ffffffbe) padding-box,
    linear-gradient(90deg, #500140, #7fff00, #020225) border-box;
  box-shadow: 0 10px 20px rgba(15, 231, 44, 0.694);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.header-text button:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.539);
}

.header-text button:active {
  transform: translateY(-2px);
}

.header-text button a {
  text-decoration: none;
  color: black;
  font-size: larger;
}

/* subsection of hero section */

.revas-mission-section {
  padding: 120px 0 0 0;
  background-color: var(--white);
  overflow-x: hidden;
}

.revas-main-headline {
  text-align: center;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 80px;
  letter-spacing: -1px;
}

/* Grid Logic */
.revas-grid {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.revas-row {
  display: flex;
  min-height: 85vh; /* Large VH for impact */
  width: 100%;
  opacity: 0;
  transform: translateX(100px); /* Initial animation state */
  transition: all 1.2s cubic-bezier(0.2, 1, 0.3, 1);
}

.revas-row.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.revas-block {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.block-inner {
  max-width: 500px;
  padding: 80px 40px;
}

/* Colors & Text */
.cream-bg {
  background-color: var(--cream);
  color: var(--charcoal);
}
.charcoal-bg {
  background-color: var(--charcoal);
  color: var(--white);
}

.revas-tag {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 3px;
  opacity: 0.6;
  display: block;
  margin-bottom: 20px;
}

.block-inner h3 {
  font-size: 3rem;
  margin-bottom: 25px;
  font-weight: 800;
  line-height: 1.1;
}

.block-inner p {
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1.8;
  margin-bottom: 40px;
  opacity: 0.85;
}

.revas-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Interactivity */
.revas-roadmap-link {
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
}

.green-indicator {
  width: 10px;
  height: 10px;
  background: var(--accent-green);
  border-radius: 50%;
  box-shadow: 0 0 15px var(--accent-green);
}

/* Glass Modal */
.revas-glass-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center; /* This ensures the 70% glass is centered vertically */
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s ease;
}

.revas-glass-modal.open {
  opacity: 1;
  visibility: visible;
}

.glass-content {
  width: 90%;
  max-width: 900px;
  height: 70vh; /* Exactly 70% of screen height */
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 60px;
  color: white;
  position: relative;

  overflow-y: auto;

  /* Custom scrollbar for modern feel */
  scrollbar-width: thin;
  scrollbar-color: var(--accent-green) transparent;
}

/* Roadmap Styling */
.roadmap-timeline {
  border-left: 2px solid rgba(56, 239, 125, 0.3);
  padding-left: 35px;
  margin-top: 50px;
}
.roadmap-step {
  position: relative;
  margin-bottom: 50px;
}
.step-marker {
  position: absolute;
  left: -46px;
  top: 5px;
  width: 20px;
  height: 20px;
  background: #333;
  border-radius: 50%;
}
.active-step .step-marker {
  background: var(--accent-green);
  box-shadow: 0 0 20px var(--accent-green);
}
.active-step h4 {
  color: var(--accent-green);
}

/* Buttons */
.revas-btn-charcoal {
  padding: 16px 40px;
  background: var(--accent-green);
  color: rgb(0, 0, 0);
  border-radius: 50px;
  border: none;
  font-weight: 700;
  cursor: pointer;
}

@media (max-width: 600px) {
  .glass-content {
    height: 70vh; /* Keeps your 70% height constraint */
    width: 95%;
    padding: 40px 20px;
  }

  /* Adjust roadmap spacing inside the scrollable area */
  .roadmap-timeline {
    margin-top: 20px;
    padding-left: 20px;
  }
}

/* Responsive */
@media (max-width: 992px) {
  .revas-row {
    flex-direction: column;
    min-height: auto;
  }
  .revas-row:nth-child(2) {
    flex-direction: column-reverse;
  }
}

/*about section*/

.revas-about-section {
  padding: 100px 5%;
  background-color: #ffffff;
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease-out;
}

.revas-about-section.reveal-active {
  opacity: 1;
  transform: translateY(0);
}

.revas-about-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

/* Left Image Box */
.revas-about-image-wrap {
  flex: 0 0 40%;
}

.revas-main-team-img {
  width: 100%;
  height: auto;
  border-radius: 25px; /* Smooth rounded corners from UI */
  object-fit: cover;
}

/* Right Content */
.revas-about-content {
  flex: 1;
}

.revas-about-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--accent-green-border);
}

.revas-about-description p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  color: var(--revas-light-text);
}

/* Stats Cards Grid */
.revas-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.revas-stat-card {
  background: var(--revas-charcoal);
  border-radius: 20px;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}

.revas-stat-card:hover {
  transform: translateY(-15px); /* Lift effect */
}

.revas-stat-header {
  background-color: var(--accent-green-border);
  width: 80%;
  margin: 20px auto 10px auto;
  padding: 10px 0;
  border-radius: 50px;
  text-align: center;
}

.revas-stat-number {
  font-weight: 900;
  font-size: 1.2rem;
  color: #000;
}

.revas-stat-label {
  color: #fff;
  font-size: 0.8rem;
  margin-bottom: 15px;
  text-transform: capitalize;
}

.revas-stat-img-box {
  width: 100%;
  height: 199px;
  overflow: hidden;
}

.revas-stat-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
  .revas-about-container {
    flex-direction: column;
  }
  .revas-stats-grid {
    grid-template-columns: 1fr;
  }
}

/* sub About section style */

.revas-profile-section {
  padding: 100px 10%;
  background-color: #ffffff;
  text-align: center;
}

.revas-profile-header {
  max-width: 800px;
  margin: 0 auto 80px auto;
}

.revas-profile-main-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--accent-green-border);
}

.revas-profile-text-wrap p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

/* Team Grid Styling */
.revas-team-headline {
  font-size: 2rem;
  margin-bottom: 50px;
  font-weight: 600;
  color: var(--accent-green-border);
}

.revas-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.revas-team-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  /* Large shadow for modern feel */
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  text-align: left;
  /* Height adjustment for "Wider and Taller" specification */
  min-height: 480px;
  display: flex;
  flex-direction: column;
}

.revas-team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.revas-member-img {
  width: 100%;
  height: 350px; /* Taller image area */
  overflow: hidden;
  background-color: #f4f4f4; /* Placeholder color */
}

.revas-member-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Matches the UI's rounded-bottom profile look */
  border-bottom-left-radius: 50px;
}

.revas-member-info {
  padding: 25px;
  flex-grow: 1;
}

.revas-member-info h4 {
  font-size: 1.3rem;
  margin-bottom: 5px;
  color: #1a1a1a;
}

.revas-member-info span {
  font-size: 0.9rem;
  color: #888;
  display: block;
  margin-bottom: 15px;
}

.revas-social-icons {
  color: #38ef7d; /* Using your accent green */
  font-size: 1.1rem;
  display: flex;
  gap: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .revas-profile-section {
    padding: 60px 5%;
  }
  .revas-team-grid {
    grid-template-columns: 1fr;
  }
}

/* service section */
#services {
  background-image: url(/images/Rectangle.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--text-color-primary);
  font-family: var(--font-family-title);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 2rem;
}
.service_container {
  width: 100%;
  max-width: 1000px;
  /* Limits overall width for readability */
  text-align: center;
}

.services-title {
  font-size: 48px;
  font-weight: 700;
  /* Extra Bold */
  margin-bottom: 2rem;
  color: var(--text-color-secondary);
}

.services-description {
  font-size: 25px;
  line-height: 1.5;
  color: var(--text-color-muted);
  max-width: 600px;
  margin: 0 auto 4rem auto;
  font-weight: 400;
  /* Regular */
}

.services-grid {
  display: grid;
  /* Creates exactly two columns, each occupying half (1fr) */
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  /* Space between cards */
}

.service-card {
  /* background-color: var(--bg-color-card); */
  background-color: rgba(0, 0, 0, 0.018);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-radius: 20px;
  /* Larger radius for modern look */
  padding: 3rem;
  /* Generous padding like in the design */
  text-align: left;
  position: relative;

  /* Initial Hidden State for Scroll Reveal (Previous Lesson) */
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);

  /* Subtle Initial Shadow for Depth */
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.642),
    0 2px 4px -1px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

/* JS Class to trigger reveal */
.service-card.reveal {
  opacity: 1;
  transform: translateY(0);
}

/* Add Staggered Reveal Delays */
.service-card:nth-child(1) {
  transition-delay: 0s;
}

.service-card:nth-child(2) {
  transition-delay: 0.1s;
}

.service-card:nth-child(3) {
  transition-delay: 0.2s;
}

.service-card:nth-child(4) {
  transition-delay: 0.3s;
}

/* Icon Styling */
.card-icon {
  font-size: 3rem;
  margin-bottom: 2rem;
  color: var(--accent-green);
}

/* Card Content Styling */
.card-content h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--text-color-primary);
}

.card-content p {
  font-size: 18px;
  font-family: var(--font-family-content);
  line-height: 1.6;
  color: var(--text-color-muted);
}

/* Targets the 1st, 3rd, and 4th card based on the design pattern */
.service-card:nth-child(1),
.service-card:nth-child(3),
.service-card:nth-child(4),
.service-card:nth-child(2) {
  border-left: 3px solid var(--accent-green-border);
  padding-left: calc(3rem - 3px);
  /* Compensate padding for border */
}

/* 6. Responsive Adjustment */
@media (max-width: 768px) {
  .services-grid {
    /* Collapse to 1 column on smaller screens */
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .header-text h1 {
    font-size: 5rem;
  }
  .com-logo {
    color: #ffffff;
  }

  .header-text p {
    color: #ffffffd3;
    font-size: 20px;
    font-weight: 10px;
  }
  .container {
    padding: 20px 10%;
  }
  .header-text {
    margin-top: 40%;
  }

  #header {
    width: 100%;
    height: 100vh;
    background-image: url(/images/Gemini_Generated_Image_fmvat6fmvat6fmva-removebg-preview.png);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: contain;
  }

  .row {
    display: block;
    flex-wrap: wrap;
  }
}

/* sub service section  */

.revas-serv-section {
  padding: 100px 5%;
  background: #fff;
  text-align: center;
}

.revas-serv-heading {
  font-size: 2.7rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--serv-charcoal);
}

.revas-serv-subheading {
  color: #666;
  font-size: 1.5rem;
  margin-bottom: 60px;
  max-width: 600px;
  margin-inline: auto;
}

/* Bento Grid Layout */
.revas-serv-bento-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 25px;
  max-width: 1300px;
  margin: 0 auto;
}

.revas-serv-col {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* Service Card Styling */
.revas-serv-card {
  background: var(--serv-cream);
  padding: 40px;
  border-radius: 24px;
  text-align: left;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  cursor: pointer;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.revas-serv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  background: #fff;
}

.revas-serv-icon-box {
  background: var(--serv-charcoal);
  color: var(--serv-accent);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 25px;
  font-size: 1.5rem;
}

.revas-serv-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--serv-charcoal);
}

.revas-serv-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 25px;
}

.revas-serv-btn {
  background: none;
  border: none;
  color: var(--accent-green-border);
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
}

/* Middle Image Card */
.revas-serv-center-card {
  border-radius: 30px;
  overflow: hidden;
  height: 100%;
}
.revas-serv-center-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Glass Modal Styling */
.revas-serv-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}

.revas-serv-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.revas-serv-glass-content {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 90%;
  max-width: 700px;
  max-height: 70vh;
  padding: 60px;
  border-radius: 30px;
  color: #fff;
  position: relative;
  overflow-y: auto;
}

.revas-serv-close {
  position: absolute;
  top: 20px;
  right: 25px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

/* Mobile */
@media (max-width: 992px) {
  .revas-serv-bento-grid {
    grid-template-columns: 1fr;
  }
  .revas-serv-center-card {
    display: none;
  }
}

/* gallery style */

.revas-gal-section {
  padding: 100px 5%;
  background-color: #ffffff;
  overflow: hidden;
}

.revas-gal-header {
  text-align: center;
  margin-bottom: 60px;
}

.revas-gal-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--gal-charcoal);
  margin-bottom: 15px;
}

.revas-gal-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

/* Masonry Grid Setup */
.revas-gal-masonry {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-auto-rows: 200px; /* Base row height */
  grid-auto-flow: dense;
  gap: 20px;
}

.revas-gal-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #f4f4f4;
  cursor: pointer;
  /* Initial state for fade-in */
  opacity: 0;
  transform: translateY(50px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease,
    box-shadow 0.3s ease;
}

/* Creating Variations in Grid Sizes */
.revas-gal-item.tall {
  grid-row: span 3;
}
.revas-gal-item.wide {
  grid-column: span 2;
}
.revas-gal-item:nth-child(3n) {
  grid-row: span 2;
}

/* Reveal state */
.revas-gal-item.revealed {
  opacity: 1;
  transform: translateY(0);
}

.revas-gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Hover Effects */
.revas-gal-item:hover img {
  transform: scale(1.1);
}

.revas-gal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(18, 18, 18, 0.8), transparent);
  display: flex;
  align-items: flex-end;
  padding: 25px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.revas-gal-overlay span {
  color: var(--gal-accent);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.revas-gal-item:hover .revas-gal-overlay {
  opacity: 1;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .revas-gal-masonry {
    grid-template-columns: 1fr;
    grid-auto-rows: 300px;
  }
  .revas-gal-item.wide {
    grid-column: span 1;
  }
}

/* testimonial section */
.revas-test-section {
  padding: 100px 5%;
  background-color: #ffffff;
}

.revas-test-header {
  text-align: center;
  margin-bottom: 70px;
}

.revas-test-main-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--test-dark);
}

.revas-test-subtitle {
  color: #666;
  max-width: 600px;
  margin: 20px auto 0;
  line-height: 1.6;
}

/* Grid Layout */
.revas-test-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1300px;
  margin: 0 auto;
}

/* Card Styling */
.revas-test-card {
  background: var(--test-bg);
  padding: 40px;
  border-radius: 25px;
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.revas-test-card:hover {
  transform: translateY(-10px);
  background: #fff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.revas-test-quote {
  color: var(--test-green);
  font-size: 2rem;
  margin-bottom: 20px;
}

.revas-test-feedback {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 30px;
}

.revas-test-client {
  display: flex;
  align-items: center;
  gap: 15px;
}

.revas-test-client img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--test-green);
}

.revas-test-meta h4 {
  font-size: 1rem;
  color: var(--test-dark);
  margin-bottom: 2px;
}

.revas-test-meta span {
  font-size: 0.85rem;
  color: #888;
}

/* Animation Classes */
.revas-test-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.revas-test-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* contact section */
.revas-con-section {
  padding: 100px 5%;
  background:
    linear-gradient(rgba(10, 15, 10, 0.734), rgba(10, 15, 10, 0.675)),
    url("/images/Rectangle\ 54\ \(1\).png"); /* Use a tech/network background */
  background-size: cover;
  background-position: center;
  color: white;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.revas-con-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.revas-con-main-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 60px;
}

.revas-con-wrapper {
  display: flex;
  gap: 50px;
  align-items: stretch;
}

/* Glassmorphism Info Card */
.revas-con-info-card {
  flex: 1;
  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:2px 10px 5px #0000003d;
  border-radius: 30px;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
}

.revas-con-info-card h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.revas-con-detail {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 1.1rem;
}

.revas-con-detail i {
  color: var(--con-accent);
  font-size: 1.4rem;
  width: 30px;
}

/* Form Styling */
.revas-con-form {
  flex: 1.5;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.revas-con-input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.revas-con-input-group label {
  font-weight: 600;
  font-size: 1.1rem;
}

.revas-con-input-group input,
.revas-con-input-group textarea {
   background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.096);
  border-radius: 15px;
  box-shadow:2px 10px 5px #0000003d;
  padding: 15px 20px;
  color: white;
  outline: none;
  font-size: 1rem;
  transition: 0.3s;
}

.revas-con-input-group input:focus,
.revas-con-input-group textarea:focus {
  border-color: var(--con-accent);
  background: rgba(255, 255, 255, 0.1);
}

.revas-con-input-group textarea {
  height: 150px;
  resize: none;
}

.revas-con-submit {
  align-self: flex-start;
  background: transparent;
  border: 2px solid var(--con-accent);
  color: white;
  padding: 12px 40px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 10px;
}

.revas-con-submit:hover {
  background: var(--con-accent);
  color: black;
  box-shadow: 0 0 20px rgba(56, 239, 125, 0.4);
}

/* Responsive Logic */
@media (max-width: 992px) {
  .revas-con-wrapper {
    flex-direction: column;
  }
  .revas-con-info-card {
    padding: 40px;
  }
}

/* adopting to cloud services section */

.revas-cloud-section {
  padding: 100px 5%;
  background: #0a0f0a; /* Dark background to make glass pop */
  color: white;
  overflow: hidden;
}

.revas-cloud-header {
  text-align: center;
  margin-bottom: 60px;
}

.revas-cloud-main-title {
  font-size: 2.8rem;
  margin-bottom: 20px;
  font-weight: 800;
}

.revas-cloud-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1300px;
  margin: 0 auto;
}

/* Glass Card Styling */
.revas-cloud-card {
  background: var(--cloud-glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--cloud-glass-border);
  border-radius: 25px;
  padding: 40px;
  cursor: pointer;
  transition:
    transform 0.4s ease,
    border 0.4s ease;
}

.revas-cloud-card:hover {
  transform: translateY(-10px);
  border-color: var(--cloud-accent);
}

.revas-cloud-glass-icon {
  font-size: 2.5rem;
  color: var(--cloud-accent);
  margin-bottom: 25px;
}

.revas-cloud-card h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.revas-cloud-link {
  background: none;
  border: none;
  color: var(--cloud-accent);
  font-weight: 600;
  font-size: larger;
  cursor: pointer;
  margin-top: 20px;
  padding: 0;
}

/* Modal Styling */
.revas-cloud-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}

.revas-cloud-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.revas-cloud-modal-glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 90%;
  max-width: 800px;
  border-radius: 30px;
  padding: 50px;
  position: relative;
  max-height: 85vh;
}

.revas-cloud-modal-body {
  overflow-y: auto;
  max-height: 70vh;
  padding-right: 15px;
}

/* Custom Scrollbar */
.revas-cloud-modal-body::-webkit-scrollbar {
  width: 6px;
}
.revas-cloud-modal-body::-webkit-scrollbar-thumb {
  background: var(--cloud-accent);
  border-radius: 10px;
}

/* Reveal Animation */
.revas-cloud-reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease;
}
.revas-cloud-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .revas-cloud-main-title {
    font-size: 2rem;
  }
}

/* modal */

/* Status Modal Styling */
.revas-status-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  display: none; /* Hidden by default */
  align-items: center;
  justify-content: center;
  z-index: 100001;
  transition: opacity 0.3s ease;
}

.revas-status-modal {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  padding: 40px;
  border-radius: 25px;
  text-align: center;
  color: white;
  max-width: 400px;
  width: 90%;
  transform: scale(0.8);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.revas-status-overlay.active {
  display: flex;
}

.revas-status-overlay.active .revas-status-modal {
  transform: scale(1);
}

.revas-status-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  color: #38ef7d; /* Success Green */
}

.revas-status-modal h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.revas-status-modal p {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 25px;
  line-height: 1.5;
}

.revas-status-btn {
  background: transparent;
  border: 2px solid #38ef7d;
  color: white;
  padding: 10px 30px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.revas-status-btn:hover {
  background: #38ef7d;
  color: black;
}

/* FOOTER SECTION  */

.revas-foot-section {
  background-color: #121212; /* Matches your dark tech theme */
  padding: 80px 5% 30px;
  color: #ffffff;
  border-top: 1px solid rgba(230, 243, 217, 0.504);
}

.revas-foot-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  max-width: 1300px;
  margin: 0 auto;
}

.revas-foot-logo {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.revas-foot-tagline {
  color: #aaaaaa;
  line-height: 1.6;
  margin-bottom: 30px;
  font-size: 0.95rem;
}

.revas-foot-col h3 {
  color: #7fff00; /* Your brand green */
  margin-bottom: 25px;
  font-size: 1.2rem;
  position: relative;
}

.revas-foot-links {
  list-style: none;
}

.revas-foot-links li {
  margin-bottom: 12px;
}

.revas-foot-links li a {
  text-decoration: none;
  color: #bbbbbb;
  transition: 0.3s;
  font-size: 0.9rem;
}

.revas-foot-links li a:hover {
  color: #7fff00;
  padding-left: 5px;
}

/* Newsletter Glass UI */
.revas-foot-newsletter h4 {
  margin-bottom: 10px;
}

.revas-foot-form {
  display: flex;
  margin-top: 15px;
  background: rgba(255, 255, 255, 0.05);
  padding: 5px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.revas-foot-form input {
  background: transparent;
  border: none;
  padding: 12px;
  color: white;
  width: 100%;
  outline: none;
}

.revas-foot-form button {
  background: #7fff00;
  color: #000;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.revas-foot-socials {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.revas-foot-socials a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.revas-foot-socials a:hover {
  background: #7fff00;
  color: #000;
}

.revas-foot-bottom {
  text-align: center;
  margin-top: 60px;
  color: #666;
  font-size: 0.85rem;
}

.revas-foot-bottom hr {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 20px;
}



/* HAMBURGER */
@media (max-width: 768px) {
  /* Show the hamburger icon */
  .revas-hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }

  .revas-hamburger span {
    width: 25px;
    height: 3px;
    background: #000;
    transition: 0.4s;
  }

  /* Transform the links into a vertical dropdown */
  .revas-nav-links {
    position: absolute;
    top: 80px; /* Directly under the nav bar height */
    left: 0;
    width: 100%;
    background: #f4f4f4;
    flex-direction: column;
    align-items: center;
    max-height: 0; /* Starts hidden */
    overflow: hidden;
    z-index: 10001;
    transition: max-height 0.5s ease-in-out;
  }

  .revas-nav-links li {
    margin: 15px 0;
  }

  /* THE MAGIC: When checkbox is checked, expand the menu */
  .revas-menu-checkbox:checked ~ .revas-nav-links {
    max-height: 400px;
    opacity: 1;
    padding-bottom: 20px;
  }

  /* Animate Hamburger to an 'X' when open */
  .revas-menu-checkbox:checked ~ .revas-hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }
  .revas-menu-checkbox:checked ~ .revas-hamburger span:nth-child(2) {
    opacity: 0;
  }
  .revas-menu-checkbox:checked ~ .revas-hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }


  .header-text p{
    font-size:25px;
  }
}







/* Responsive Logic */
@media (max-width: 992px) {
  .revas-foot-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .revas-foot-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .revas-foot-form {
    flex-direction: column;
    background: none;
    border: none;
  }
  .revas-foot-form input {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  .revas-foot-socials {
    justify-content: center;
  }
}
