
body {
  /* overflow: hidden; */
  scroll-behavior: smooth;
  text-align: center ;
}/* Navbar Layout */
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
}

.menu-toggle {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  z-index: 999;
}

.aratica-logo {
  height: 40px;
}

/* Overlays (Left & Right) */
.menu-overlay {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  padding-top: 40px;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  justify-content: center;
}

.menu-overlay.right {
  right: 0;
  left: auto;
  transform: translateX(100%);
}

.menu-overlay.open {
  transform: translateX(0);
}

/* Logo Inside Menu */
.aratica-logo-nav {
  width: 10%;
  margin: 10px 45% 0;
  display: block;
  position: absolute;
  top: 10px;
}

/* Centered Menu Links */
.menu-center {
  text-align: center;
  padding: 0 30px;
}

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

.menu-center li {
  margin: 20px 0;
  font-size: 18px;
}

.menu-center a {
  color: #222;
  text-decoration: none;
  transition: color 0.3s ease;
}

.menu-center a:hover {
  color: #612002;
}

/* Close Button */
.close-btn {
  position: absolute;
  bottom: 20px;
  left: 48%;
  font-size: 25px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 10px;
  border-radius: 100px;
  transition:  0.3s ease;
}
.close-btn:hover{
  background-color: #612002;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .aratica-logo {
    height: 30px;
  }

  .menu-toggle {
    font-size: 18px;
  }

  .menu-overlay {
    width: 100%;
    max-width: 100%;
  }

  .menu-center li {
    font-size: 16px;
  }
}
.scroll-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  scroll-snap-align: start;
  padding: 3rem 0;
}

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

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

.bullets {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bullets .dot {
  width: 12px;
  height: 12px;
  cursor: pointer;
/* display: inline-block; */
  outline: 0;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  background: #222;
  border: 1px solid rgba(255, 255, 255, 0);
  transition: .4s ease-in-out;
  font-size: 0;
  text-decoration: none;
}

.bullets .dot.active {
  background: #222;
  border: 1px solid #fff;
  padding: 2px;
}

#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  font-size: 2rem;
  font-weight: bold;
  opacity: 1;
  transition: opacity 0.5s ease;
}

#loader.hidden {
  opacity: 0;
  pointer-events: none;
}
.header-content{
  color: #FFF;
}
.header-content h1{
  margin-bottom: 40px;
}
.getintouch{
  color: #4b4a4a;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 6px;
  text-transform: uppercase;
  border: 1px solid white;
  background: white;
  padding: 15px 25px;
  transition: .4s;
  cursor: pointer;
  margin-top: 20px;
}
.getintouch:hover{
  background-color: #612002;
  color: #fff;
  border-radius: 5px;
}
.how-we-work{
  background-image: url(../img/how-we-work.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: #FFF;
}

.how-we-work h2 {
  text-align: center;
  margin-bottom: 20px;
}

.how-we-work > .container > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

.work-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.work-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  padding: 20px;
  text-align: center;
  flex: 1 1 calc(33.333% - 30px); /* 3 per row */
  max-width: calc(33.333% - 30px);
  transition: transform 0.3s ease;
}

.work-card img {
  max-width: 60px;
  margin-bottom: 15px;
}

.work-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.work-card p {
  font-size: 0.95rem;
  color: #555;
}

.work-card:hover {
  transform: translateY(-5px);
}

/* ✅ Responsive Styles */
@media (max-width: 992px) {
  .work-card {
    flex: 1 1 calc(45% - 30px); /* 2 per row */
    max-width: calc(45% - 30px);
  }
  .bullets{
    visibility: hidden;
  }
}

@media (max-width: 576px) {
  .work-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .work-card img {
    max-width: 50px;
  }

  .how-we-work h2 {
    font-size: 1.5rem;
  }
}

.our-companies{
  background-image: url(../img/our-companies.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: #FFF;
}

.our-companies h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #FFF;
}

.companies-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.company-card {
  background: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  padding: 20px;
  text-align: center;
  flex: 1 1 calc(25% - 30px); /* 4 per row on desktop */
  max-width: calc(25% - 30px);
  transition: transform 0.3s ease;
  position: relative;
}

.company-card h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #612002;
}

.company-card p {
  font-size: 0.95rem;
  color: #555;
}
.company-card a{
  color: #4b4a4a;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 6px;
  text-transform: uppercase;
  border: 1px solid white;
  background: #612002;
  padding: 15px 25px;
  transition: .4s;
  cursor: pointer;
  color: #fff;
  display: block;
  width: 80%;
  margin: auto;
  position: absolute;
  bottom: -15%;
  right: 10%;
}
.company-card a:hover{
  background-color: #FFF;
  color: #612002;
  border-radius: 5px;
  border: 1px solid #612002;
  font-weight: 700;
}

.company-card:hover {
  transform: translateY(-5px);
}

/* ✅ Tablet and Mobile Responsive Styles */
@media (max-width: 992px) {
  .company-card {
    flex: 1 1 calc(50% - 30px); /* 2 per row */
    max-width: calc(50% - 30px);
  }
}

@media (max-width: 576px) {
  .company-card {
    flex: 1 1 100%; /* Full width on small mobile */
    max-width: 100%;
  }

  .our-companies h2 {
    font-size: 1.5rem;
  }
}
.about-us{
  background-image: url(../img/about-us.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: #FFF;
}
.contact-us-section {
  background-image: url(../img/contact-us.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: #ffffff;
}

.contact-us-section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.contact-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-info {
  flex: 1 1 300px;
  font-size: 1rem;
  line-height: 1.6;
  color: #ffffff;
}

.contact-info p {
  margin-bottom: 10px;
}

.contact-info a {
  color: #ffffff;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-form {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .contact-content {
    flex-direction: column;
  }
}
.site-footer {
  background-color: #121212;
  color: #f1f1f1;
  font-size: 0.95rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  text-align: left;
}

.footer-about {
  flex: 1 1 300px;
}

.footer-links,
.footer-social {
  flex: 1 1 200px;
}

.footer-links h4,
.footer-social h4 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  color: #ffffff;
}

.footer-links ul,
.footer-social ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-social ul li{
  display: inline-block;
  padding: 3px 3px;
  margin: 0px 5px;
}
.footer-links li,
.footer-social li {
  margin-bottom: 8px;
}

.footer-links a,
.footer-social a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-social a:hover {
  color: #612002;
}

.footer-bottom {
  margin-top: 40px;
  text-align: center;
  border-top: 1px solid #2a2a2a;
  padding-top: 20px;
  font-size: 0.85rem;
  color: #999;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-about,
  .footer-links,
  .footer-social {
    width: 100%;
  }
  .footer-about {
    flex: 1 1 100px;
  }

  .footer-links,
  .footer-social {
    flex: 1 1 100px;
  }
}
