/* ================== FONT ================== */
/* @font-face {
  font-family: 'Agency FB';
  src: url('fonts/AgencyFB.woff2') format('woff2'),
       url('fonts/AgencyFB.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
} */
@import url('https://fonts.googleapis.com/css2?family=Antonio:wght@100..700&family=Great+Vibes&display=swap');

/* Body and general text */
body, p, a, li {
  font-family: 'Inter', "Inter Placeholder", sans-serif; /* paragraphs, links, lists */
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Headings */
h1, h2, h3, h4, h5, h6,
.special-heading {
  font-family: 'Antonio', sans-serif; /* headings */
}

/* Special heading style if needed */
.special-heading {
  font-family: 'Antonio', sans-serif;
}


/* ================== BODY ================== */
body {
  color: #111;
  background: #fff;
  overflow-x: hidden;
  transition: background 0.3s, color 0.3s;
  position: relative;
}

body::before {
  content: "";
  position: absolute;
  top:0; left:0;
  width:100%; height:100%;
  background-image: url('https://www.transparenttextures.com/patterns/noisy.png');
  opacity: 0.02;
  pointer-events: none;
  z-index: -1;
  mix-blend-mode: multiply;
}

body.dark-mode {
  background: #121212;
  color: #e0e0e0;
}

body.dark-mode::before {
  background-color: #ffffff;
  mix-blend-mode: normal;
}




/* ================== NAVBAR ================== */
/* Header wrapper */
.header {
  width: 100%;
  padding: 15px px; /* कम padding */
  display: flex;
  background: transparent;
  justify-content: center;
}

/* Navbar main */
.navbar {
  display: grid;
  grid-template-columns: auto auto auto; /* left | logo | right */
  align-items: center;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 40px;
  padding: 6px 15px; /* border धेरै नहोस् */
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: background 0.3s, color 0.3s;
  column-gap: 1px; /* logo र lists बीच दूरी */
}

/* Dark mode */
body.dark-mode .navbar {
  background: #111;
  border: 1px solid #333;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

/* Navigation lists */
.nav-left, .nav-right {
  display: flex;
  list-style: none;
  justify-content: center;
  gap: 25px; /* logo नजिक, तर equal spacing */
}

/* Nav links */
.nav-left li a, .nav-right li a {
  text-decoration: none;
  color: #115a63;
  font-weight: 500;
  transition: color 0.3s;
}
.nav-left li a:hover, .nav-right li a:hover { color: #eeebeb; }

body.dark-mode .nav-left li a, body.dark-mode .nav-right li a { color: #fff; }
body.dark-mode .nav-left li a:hover, body.dark-mode .nav-right li a:hover { color: #0070f3; }

/* Logo */
.logo {
  display: flex;
  padding-left: 10%;
}
.logo img {
  width: 80px; /* border tight देखाउन logo अलि सानो */
  height: 90px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 3px 12px rgba(0,0,0,0.25);
  transition: transform 0.3s;
}
.logo img:hover { transform: scale(1.05); }

/* Contact button */
.btn-contact { 
  background: #115a63; 
  color: #fff; 
  padding: 6px 16px; /* compact */
  border-radius: 20px; 
  transition: background 0.3s; 
}
.btn-contact:hover { background: #115a63; }

/* Responsive gap adjust */
@media (max-width: 1024px) {
  .nav-left, .nav-right { gap: 14px; }
}
@media (max-width: 768px) {
  .nav-left, .nav-right { gap: 10px; }
}
@media (max-width: 480px) {
  .nav-left, .nav-right { gap: 6px; }
}

/* ================== SCROLL NAVBAR ================== */
.navbar-scroll {
  display: flex;
  align-items: center;
  gap: 10px;
  position: fixed;
  top: -60px; /* hidden initially */
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(255, 255, 255, 0.95);
  padding: 10px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: top 0.3s ease;
  z-index: 999;
}

.navbar-scroll.show {
  top: 10px; /* visible on scroll */
}

.navbar-scroll .navbar-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.navbar-scroll .navbar-cta {
  font-weight: bold;
  color: #115a63;
  font-size: 1rem;
}

/* ================== HERO ================== */
.hero {
  display:flex; justify-content:center; align-items:center; gap:60px;
  flex-wrap:wrap; padding:100px 10%; position:relative;
  transition: background 0.3s, color 0.3s;
}
.hero-left, .hero-right { flex:1; text-align:center; }
.hero-left h3 { font-size:1rem; color:#555; margin-bottom:10px; letter-spacing:2px; }
.hero-left h1, .hero-right h2 { font-size:3rem; font-weight:700; letter-spacing:1.5px; line-height:1.3; color:inherit; text-transform: uppercase; }
.hero-left h3 { font-size:1.2rem; font-weight:400; color:#777; }

.hero-center { flex:1; display:flex; justify-content:center; align-items:center; position:relative; }
.hero-center img {
  width: 350px; height: 450px;
  object-fit: cover;
  border-radius: 20px;
  border: 6px solid #f2f2f2;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.hero-center img:hover { transform: scale(1.05); }

.hi-circle {
  position:absolute; bottom:15px; left:50%; transform:translateX(-50%);
  width:60px; height:60px; background:#0070f3; border-radius:50%;
  display:flex; justify-content:center; align-items:center; color:#fff; font-size:1.2rem; font-weight:bold;
  cursor:pointer; transition: transform 0.3s, background 0.3s; box-shadow:0 5px 15px rgba(0,0,0,0.2);
}
.hi-circle:hover { transform:translateX(-50%) scale(1.2); background:#005ad1; }
.hi-circle span { animation: wave 1.5s infinite; display:inline-block; transform-origin:70% 70%; }
@keyframes wave { 0%{transform:rotate(0);} 15%{transform:rotate(14deg);} 30%{transform:rotate(-8deg);} 45%{transform:rotate(14deg);} 60%{transform:rotate(-4deg);} 75%{transform:rotate(10deg);} 100%{transform:rotate(0);} }
.hi-popup { position:absolute; bottom:80px; left:50%; transform:translateX(-50%) translateY(10px); background:#0070f3; color:#fff; padding:10px 20px; border-radius:20px; opacity:0; pointer-events:none; font-weight:bold; transition: opacity 0.3s, transform 0.3s; }
.hi-popup.show { opacity:1; transform:translateX(-50%) translateY(0); }

/* ================== ABOUT ================== */
.about {
  padding: 100px 50px;
  background-color: #f5f5f5;
}

.about h2 {
  font-size: 60px;
  font-weight: 700;
  text-align: left;
  margin-bottom: 40px;
}

.about-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: flex-start;
  justify-content: space-between;
}

.about-text {
  flex: 1;
  min-width: 300px;
  font-size: 18px;
  line-height: 1.8;
  text-align: justify;
  color: #333;
}

.about-image {
  flex: 1;
  min-width: 300px;
  height: 450px;
  position: relative;
}
.about-wrapper {
  display: flex;
  align-items: flex-start; /* aligns top of everything */
  gap: 30px;
  flex-wrap: wrap;
}

/* Left side: My Story button */
.my-story-wrapper {
  flex: 0 0 auto;
  display: flex;
  align-items: flex-start; /* top-align with text */
  margin-top: -100px;        /* adjust vertical position */
}

.btn-my-story {
  display: inline-block;
  margin-top: 20px;       /* space below paragraph */
  padding: 12px 30px;     /* button padding */
  background-color: #115a63; /* accent color */
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.btn-my-story:hover {
  background-color: #717171;  /* darker on hover */
  transform: translateY(-3px);
}

/* Counters below About section */
.experience-stats {
  display: flex;
  justify-content: center; /* center counters horizontally */
  gap: 125px; /* space between counters */
  margin-top: 20px; /* distance from about-wrapper */
  flex-wrap: wrap; /* responsive wrap */
}

.stat {
  text-align: center;
}

.counter {
  font-size: 7rem;
  font-weight: 700;
  color: #115a63;
  display: block;
}

.stat p {
  margin-top: 3rem;
  font-size: 2rem;
  color: #000000;
}


/* Dark Mode Fix for About Section */
body.dark-mode .about {
  background: transparent;  /* keep body bg visible */
}
body.dark-mode .about-text {
  color: #e0e0e0; /* readable on dark background */
}
body.dark-mode .stat p {
  color: #e0e0e0;
}
body.dark-mode .counter {
  color: #e0e0e0;
  }
  body.dark-mode .btn-my-story {
  color: #e0e0e0;
  }
/* ================== PROJECTS ================== */
/* ===============================
   Text Box (Header + Paragraph)
   =============================== */
/* ===============================
   Projects Section Text (like About)
   =============================== */
.projects {
padding: 100px 50px;
  background-color: #f5f5f5;
}
.projects-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;                /* space between heading and paragraph */
  width: 100%;
  max-width: 1200px;
  padding: 0 50px;          /* same padding as About section */
  height: min-content;
  position: relative;
  overflow: hidden;
}

.projects-text h2 {
  font-size: 60px;   
  padding-left: 15%;       
  font-weight: 700;
  text-align: left;
  margin-bottom: 10px;      /* space between heading and paragraph */
  margin-top: 30px;
}

.projects-text p {
  font-size: 18px;          
  line-height: 1.8;
  padding-left: 15%;
  width: 55%;
  text-align: justify;
  color: #333;
  margin-top: 0;             /* ensure no extra margin above paragraph */
  margin-bottom: 20px;       /* optional spacing below paragraph */
}
.project-frame {
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}
.project-frame {
  min-height: 400px; /* optional, design अनुसार */
  overflow: hidden;
}

.browse-projects {
  display: flex;
  justify-content: center;
  margin-top: 30px; /* space after last frame */
}
.browse-section {
  padding: 100px 10%; /* top/bottom padding */
  min-height: 800px;  /* ensures the section is taller */
  position: relative; /* for button positioning */
  background: #f9f9f9; /* optional */
}
.btn-browse {
  background-color: #115a63;
  color: #fff;
  margin-top: 60px; /* increased from 10px to 60px for more spacing */
  padding: 14px 40px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
}

.btn-browse:hover {
  background-color: #333;
  transform: translateY(-3px);
}


/* Dark mode adjustments */
body.dark-mode .projects-text p {
  color: #e0e0e0;
}


/* ===============================
   Frame Box (Vertical Frames)
   =============================== */
.pinned-container {
  position: relative;
  height: calc(600px * 4 + 50px); /* 4 frames × 600px + small extra space */
  width: 100%;
  margin-top: 0;
}


.project-frames {
  position: sticky;
  top: calc(30px + 60px); /* margin-top of h2 + margin-bottom of paragraph */
  width: 1000px;
  height: 600px;
  margin: 0 auto;
}


.project-frame {
  position: absolute;
  width: 1000px;
  height: 600px;
  border-radius: 12px;
  overflow: hidden;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.1s linear, opacity 0.1s linear;
}

.project-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.project-frame::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* 20% opacity black */
  z-index: 2; /* overlay in front of image */
  border-radius: 12px;
}

.frame-heading h2 {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 8px 20px;            /* smaller padding for a thinner background */
  border-radius: 50px;          /* rounded corners */
  text-align: center;
  width: auto;                  /* auto width for text */
  max-width: 300px;             /* optional max width */
  height: 25px;                 /* adjust height based on padding */
  background-color: #115a63;    /* your desired background color */
  color: #fff;                  /* white text */
  font-size: 0.9rem;              /* adjust text size */
  font-weight: 600;             /* make text bold */
  z-index: 3;                   /* above overlay */
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: sans-serif;
}

.frame-text-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 30px 40px;
  border-radius: 20px;
  text-align: center;
  width: 100%;
  max-width: 700px;
  z-index: 3; /* text above overlay */
}
.frame-text-box h3 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff;
}

.frame-text-box p {
  font-size: 1rem;
  line-height: 1.6;
  color: #ffffff;
}

body.dark-mode .frame-text-box h3,
body.dark-mode .frame-text-box p {
  color: #fff;
}


 /* ================== CLIENTS ================== */
.clients-section {
  padding: 100px 10%;
  background: #f9f9f9;
}

.clients-text {
  max-width: 1200px;
  margin: 0 auto 60px auto;
  text-align: center;
}

.clients-text h2 {
 font-size: 60px;   
  padding-left: auto;       
  font-weight: 700;
  text-align: left;
  margin-bottom: 10px;      /* space between heading and paragraph */
  margin-top: 30px;
}

.clients-text p {
   font-size: 18px;          
  line-height: 1.8;
  padding-left: auto
;
  width: 55%;
  text-align: justify;
  color: #333;
  margin-top: 0;             /* ensure no extra margin above paragraph */
  margin-bottom: px;       /* optional spacing below paragraph */
}

/* Clients Grid */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Client Box */
.client-box {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  text-align: center; /* center all content */
}

/* ================== TESTIMONIAL STARS ================== */
.testimonial-rating {
  margin-bottom: 15px;
}

.testimonial-rating .star {
  color: #ccc; /* empty star */
  font-size: 1.2rem;
  margin-right: 2px;
}

.testimonial-rating .star.filled {
  color: #115a63 !important; /* force the new color */
}


/* Testimonial Text */
/* Client box */
.client-box {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  text-align: left;
}

/* Stars on top */
.testimonial-rating {
  margin-bottom: 15px;
}

.star {
  color: #ccc;
  font-size: 1.2rem;
  margin-right: 2px;
}

.star.filled {
  color: #115a63;
}

/* Testimonial text */
.client-box p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 15px;
}

/* Client info: image left, name+role right on one line */
.client-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 15px;
}

.client-info img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.client-text {
  font-size: 1rem;
  color: #333;
  font-weight: 600;
}
/* Counters in the clients section */
#clients .counter {
  color: #ffffff; /* new color */
  font-weight: 700; /* optional: make it bold */
  font-size: 4rem; /* optional: adjust size */
}

.stats-box {
  color: #fff;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* push content to top and bottom */
  height: 180px; /* fixed height */
}

.stats-box-1 {
  background-color: #115a63; /* first box color */
   box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.stats-box-2 {
  background-color: #1e1e1e; /* second box color */
   box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.stats-box p {
  font-size: 0.95rem;
  line-height: 1.4;
  margin: 0;
}

/* Bottom-left alignment for number and label */
.stats-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* left-align at bottom */
}
.stats-box p {
  font-size: 0.95rem;
  line-height: 1.4;
  margin: 0;
  color: #e0f7f5; /* new paragraph color */
}

.stats-box h3 {
  font-size: 4rem;
  margin: 0;
  margin-bottom: 5px;
}

.stats-box span {
  font-size: 0.95rem;
  color: #e0e0e0;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .client-info {
    flex-direction: column;
    text-align: center;
  }
}

/* ================== FAQ ================== */
.faq-section {
  padding: 80px 10%;
  background: #f9f9f9;
}

.faq-container {
  display: grid;
  grid-template-columns: 1fr 2fr; /* left text, right accordion */
  gap: 250px; /* increased spacing between left and right */
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}


/* Left text sticky */
.faq-text {
  position: sticky;
  top: 100px; /* distance from top of viewport */
  align-self: start; /* prevents stretching */
}


.faq-text h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.faq-text p {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
  text-align: justify;
}

/* Accordion styles */

/* Accordion items spacing */
.accordion-item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 30px;  /* bigger gap after each item */
}

/* Accordion header spacing */
.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 15px 0; /* bigger top/bottom padding */
}

/* Accordion content spacing */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding-left: 0;
  margin-bottom: 15px; /* gap below content */
}

.accordion-item.active .accordion-content {
  max-height: 600px; /* adjust as needed for content */
  padding-top: 15px; /* gap above content */
}

/* FAQ text spacing */
.faq-text p {
  font-size: 18px;
  line-height: 2.2; /* increased line height for paragraphs */
  margin-bottom: 40px; /* bigger gap after intro text */
}

.accordion-header h4 {
  font-size: 1.7rem;
  line-height: 1.7;
  color: #555;
  margin: 0;
  display: flex;          /* make number + text flexible */
  align-items: flex-start; /* align numbers with top of text */
  gap: 8px;               /* spacing between number and text */
}

.accordion-header h4::before {
  content: counter(faq-counter, decimal-leading-zero) ".";
  font-weight: 700;
  color: #333;
  flex-shrink: 0;          /* prevent number from shrinking */
  width: 2.5rem;           /* fixed width so all numbers align */
}


.accordion-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

/* ✅ Add auto-numbering before each FAQ heading */
.faq-items {
  counter-reset: faq-counter;
}

.accordion-item {
  counter-increment: faq-counter;
}

.accordion-header h4::before {
  content: counter(faq-counter, decimal-leading-zero) ". ";
  font-weight: 700;
  color: #333;
  margin-right: 8px;
}

/* Responsive */
@media screen and (max-width: 992px) {
  .faq-container {
    grid-template-columns: 1fr;
  }
}


/* ================== Lets work ================== */


.contact-section {
  padding: 100px 10%;
  background: #f9f9f9;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr; /* left: hero image, right: text + form */
  gap: 50px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

/* Left side: hero image */
.contact-left {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Rounded frame for hero image */
/* Frame */
.contact-frame {
  position: relative;
  width: 450px;
  height: 650px;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  background: #fff;
}

.contact-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Hand circle */
.hi-cir {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;   /* bigger circle */
  height: 80px;  /* bigger circle */
  background-color: #115a63;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 6px 15px rgba(0,0,0,0.25);
  z-index: 10;
  pointer-events: none; /* hover only affects popup */
}

/* Hand wave inside the circle */
.wave-hand {
  font-size: 35px;           /* bigger hand */
  color: #fff;               /* white hand */
  display: inline-block;
  transform-origin: 70% 70%;
  animation: wave 2.5s infinite ease-in-out;
}

/* Waving animation */
@keyframes wave {
  0% { transform: rotate(0deg); }
  15% { transform: rotate(15deg); }
  30% { transform: rotate(-10deg); }
  45% { transform: rotate(15deg); }
  60% { transform: rotate(-10deg); }
  100% { transform: rotate(0deg); }
}


/* Popup */
.hi-pop {
  position: absolute;
  bottom: 100px; /* adjust for bigger circle */
  left: 50%;
  transform: translateX(-50%);
  background-color: #115a63;
  color: #fff;
  padding: 10px 18px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 20;
}

.contact-frame:hover .hi-pop {
  opacity: 1;
  visibility: visible;
}


/* Right side: heading + paragraph + form */
/* Form styling */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px; /* overall gap between form sections */
}

/* Name + Email on same line */
.contact-form .form-row {
  display: flex;
  gap: 30px; /* spacing between Name and Email */
  margin-top: 30px; /* space from paragraph above */
}


.contact-form .form-row .form-group {
  flex: 1; /* equal width */
  display: flex;
  flex-direction: column;
}

/* Individual form groups (other rows) */
.contact-form .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 25px; /* spacing between second, third row, etc. */
}

.contact-form label {
  font-family: 'Inter', "Inter Placeholder", sans-serif;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 8px;
  color: #115a63;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: 'Inter', "Inter Placeholder", sans-serif;
  padding: 15px 20px;
  border-radius: 25px;
  border: 1px solid #e0e0e0;
  background-color: #f5f5f5;
  font-size: 16px;
  color: #b1afaf;
  outline: none;
  transition: border 0.3s, box-shadow 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #115a63;
  box-shadow: 0 0 0 3px rgba(17, 90, 99, 0.15);
}

.contact-form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23666' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 18px 18px;
  cursor: pointer;
}

.contact-form textarea {
  resize: none;
  min-height: 120px;
}

/* Submit button */
.submit-btn {
  font-family: 'Antonio', sans-serif;
  padding: 16px 50px;
  border-radius: 50px;
  border: 2px solid #115a63;
  background-color: transparent;
  color: #115a63;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.submit-btn:hover {
  background-color: #115a63;
  color: #fff;
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
  .contact-form .form-row {
    flex-direction: column;
    margin-bottom: 20px; /* slightly smaller on mobile */
  }

  .contact-form .form-group {
    margin-bottom: 20px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 15px;
    padding: 12px 18px;
  }

  .submit-btn {
    width: 100%;
    text-align: center;
  }
}

/* Responsive for smaller screens */
.hand-wave-text h2 {
  font-family: 'Antonio', sans-serif; /* heading font */
  font-size: 60px; /* increased from 50px to 60px */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #111;
}

/* Responsive adjustment for smaller screens */
@media screen and (max-width: 768px) {
  .hand-wave-text h2 {
    font-size: 42px; /* scale down on mobile */
  }
}


/* ================== FOOTER ================== */
footer {
  padding:30px;
  text-align:center;
  background:#f9f9f9;
  font-size:0.9rem;
  color:#666;
  transition: background 0.3s, color 0.3s;
}
body.dark-mode footer { background:#1e1e1e; color:#ccc; }

/* ================== CURSOR ================== */
.cursor {
  position: fixed; top:0; left:0; width:30px; height:30px;
  background: rgba(0,0,0,0.1); border:2px solid #111;
  border-radius:50%; pointer-events:none;
  transform:translate(-50%, -50%);
  transition: transform 0.15s ease-out;
  z-index:9999;
}

/* ================== DARK/LIGHT MODE BUTTON ================== */
.mode-switch {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mode-btn {
  background:#fff; border:2px solid #111;
  border-radius:50%; width:55px; height:55px;
  font-size:1.6rem; cursor:pointer;
  display:flex; justify-content:center; align-items:center;
  transition: all 0.3s ease;
  box-shadow:0 4px 10px rgba(0,0,0,0.2);
}
.mode-btn:hover { transform:scale(1.15); box-shadow:0 6px 15px rgba(0,0,0,0.25);}
body.dark-mode .mode-btn { background:#111; color:#fff; border:2px solid #fff; box-shadow:0 4px 15px rgba(255,255,255,0.2);}
.mode-btn span { display:inline-block; transition: transform 0.4s ease;}
body.dark-mode .mode-btn span { transform:rotate(360deg); }

/* ================== SECTIONS ================== */
.section { padding:100px 15%; text-align:center; }

/* ================== RESPONSIVE ================== */
@media screen and (max-width:992px){
  .hero{ flex-direction:column; gap:30px; }
  .hero-center img{ width:250px; height:350px; }
  .about-wrapper { flex-direction: column; gap:30px; }
  .about h2 { font-size:48px; }
}
.hero-wrapper, .services-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding: 80px 20px;
}

.hero-text, .services-text {
  flex: 1;
  max-width: 55%;
  font-family: 'Agency', sans-serif;
}

.hero-frame, .services-frame {
  flex: 1;
  max-width: 40%;
  position: relative;
}

.hero-frame img, .services-frame img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  object-fit: cover;
  position: sticky;
  top: 100px;
}
.hero-wrapper, .services-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding: 80px 20px;
}

.hero-text, .services-text {
  flex: 1;
  max-width: 55%;
  font-family: 'Agency', sans-serif;
}

.hero-frame, .services-frame {
  flex: 1;
  max-width: 40%;
  position: relative;
}

.hero-frame img, .services-frame img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  object-fit: cover;
  position: sticky;
  top: 100px;
}
/* ================== CURSOR ================== */
.cursor {
  position: fixed;
  width: 15px;
  height: 15px;
  background-color: #115a63;  /* cursor color */
  border-radius: 100%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
}

/* Hover effect on buttons or links */
a:hover ~ .cursor,
.btn-contact:hover ~ .cursor {
  width: 50px;
  height: 50px;
  background-color: #ff0000; /* hover color */
}
/* Base small cursor */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border: 2px solid #115a63;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: all 0.25s ease-out;
  z-index: 1000;
}

/* Enlarged with arrow inside */
.cursor.active {
  width: 70px;
  height: 70px;
  background: #115a63;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cursor.active::before {
  content: "➜";
  font-size: 1.5rem;
  color: #fff;
  font-weight: 10; /* ultra thin if supported */
  font-family: "Noto Sans Symbols", "Segoe UI Symbol", sans-serif;
    display: inline-block;
  transform: rotate(-45deg);
}
