* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #fff;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  background-color: skyblue;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #000;
}

.nav-links {
  display: flex;
  gap: 2rem;
  transition: all 0.3s ease-in-out;
}

.nav-links a {
  color: #000;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a.active,
.nav-links a:hover {
  color: #087a9c;
}

/* Mobile menu icon */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  color: #fff;
  cursor: pointer;
}

.features1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  text-align: center;
  background: #fff;
  margin: 2rem auto;
  width: 90%;
  max-width: 1000px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.feature-box {
  padding: 2.5rem 1rem;
  border-right: 1px solid #e5e5e5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.feature-box:last-child {
  border-right: none;
}

.feature-box i {
  font-size: 2.5rem;
  color: #000;
  margin-bottom: 1rem;
}

.feature-box h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #000;
  letter-spacing: 0.5px;
}

.feature-box:hover {
  background: skyblue;
  color: #fff;
}

.feature-box:hover i,
.feature-box:hover h3 {
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .feature-box {
    border-right: none;
    border-bottom: 1px solid #e5e5e5;
  }

  .feature-box:last-child {
    border-bottom: none;
  }
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  min-height: 90vh;
   background-color: #2d2c2b;
}

.hero-text {
  flex: 1;
  padding: 4rem 5%;
}

.hero-text h1 {
  font-size: 1.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-text h3 {
    font-size: 1rem;
}

.hero-text p {
  color: #cfcfcf;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.discover-btn {
  display: inline-block;
  border: 1px solid #fff;
  padding: 0.8rem 1.6rem;
  text-decoration: none;
  color: #fff;
  transition: 0.3s;
}

.discover-btn:hover {
  background-color: skyblue;
  border-color: #087a9c;
}

/* Hero Image */
.hero-image {
  flex: 1;
  min-width: 300px;
  height: 90vh;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive Design */
@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    flex-direction: column;
    background-color: white;
    text-align: center;
    padding: 1rem 0;
    display: none;
  }

  .nav-links a {
    color: black;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 600px) { 
    .logo {
        font-size: 1rem;
    }
    
    .hero-text h1 {
        font-size: 1.5rem;
    }
    
     .hero-text h3 {
         font-size: 1rem;
     }
}

/* Animated Menu Icon */
.menu-toggle.open {
  transform: rotate(90deg);
  transition: transform 0.3s ease;
}

/*-------------------------- Floating Side Buttons----------------------------- */
.side-buttons {
  position: fixed;
  top: 30%;
  right: 0;
  display: flex;
  flex-direction: column;
  z-index: 9999;
}

.side-buttons .btn {
  display: flex;
  flex-direction: column; 
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 150px; 
  color: #fff;
  text-decoration: none;
  font-size: 24px;
  transition: all 0.3s ease;
}

.side-buttons .btn i {
  font-size: 18px;
  order: 1;
}

.side-buttons .btn span {
  writing-mode: vertical-rl; 
  transform: rotate(180deg);
  font-size: 15px;
  letter-spacing: 2px;
}

.side-buttons .contact {
  gap: .5rem;
  align-items: center;
  background: skyblue; 
}

span {
  color: black;
}

.side-buttons .phone {
  background: #25d366; 
  height: 50px;
}

.side-buttons .whatsapp {
  background: #57c9bb; 
  border-bottom-left-radius: 1rem;
  height: 50px;
}

.side-buttons .btn:hover {
  opacity: 0.85;
}

/*------------- ABOUT SECTION---------*/

/* Main Section */
.about-section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 4rem 8%;
}

.left-experience {
  flex: 1 1 35%;
}

.left-experience {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.left-img-1 {
  position: relative;
  z-index: 2;
  width: 90%;
  height: auto;
  object-fit: cover;
}

.left-img-2 {
  position: absolute;
  z-index: 3;
  width: 360px;
  height: auto;
  top: 60%;
  right: 0%;
  left: 40%;
  border: 8px solid white;
  transform: translateY(-10%);
  background: white;
}

@media screen and (max-width: 1024px) {
  .left-experience {
    flex: 1 1 100%;
    width: 100%;
    text-align: center;
  }

  .left-img-1 {
    width: 90%;
  }

  .left-img-2 {
    width: 220px;
    top: 65%;
    right: 10%;
    left: 50%;
  }
}

/* ==================== MEDIA QUERIES(PHONES) ======================= */
    @media screen and (max-width: 600px) {
      .left-experience{
  min-height: 320px;
}
  .left-img-1 {
    width: 80%;
    height: 270px;
  }

  .left-img-2 {
    width: 180px;
    top: 65%;
    right: 5%;
    border: 6px solid white;
  }
  
  .about-content p {
      font-size: 30px;
  }
}

/* Content Section */
.about-content {
  flex: 1 1 300px;
}

.subtitles {
  color: #087a9c;
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-weight: 600;
}

.titles {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 20px;
  color: black;
}

.about-content p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 20px;
}

.btns {
  display: inline-block;
  padding: 10px 22px;
  border: 2px solid #087a9c;
  border-radius: 25px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: 0.3s;
}

.btns:hover {
  background-color: skyblue;
  border-color: #087a9c;
}

/* Responsive Design */
@media (max-width: 900px) {
  .about-section {
    flex-direction: column;
    text-align: center;
  }

  .about-content {
    padding: 0 1rem;
  }

  .titles {
    font-size: 1rem;
  }
}

/*----------------STEPS SECTION------------------*/

/* Section layout */
.steps-section {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
  padding: 4rem 4%;
  background-color: #f7f7f7;
  margin-top: 30px;
}

/* Left text area */
.steps-content {
  flex: 1 1 300px;
  max-width: 350px;
}

.subtitle2 {
  color: #087a9c;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 10px;
}

.title2 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 15px;
  color: #000;
}

.steps-content p {
  font-size: 1rem;
  margin-bottom: 25px;
  color: #444;
}

.btn1 {
  display: inline-block;
  padding: 10px 20px;
  border: 2px solid #087a9c;
  border-radius: 25px;
  text-decoration: none;
  color: #333;
  transition: 0.3s;
}

.btn1:hover {
  background-color: skyblue;
  border-color: #087a9c;
}

/* Right cards area */
.steps-cards {
  display: flex;
  flex: 2 1 600px;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.card {
  background: #fff;
  flex: 1 1 250px;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.card-number {
  font-size: 3rem;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px #b0b0b0;
  margin-bottom: 1rem;
}

.card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 0.8rem;
}

.card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1.5rem;
}

.read-more {
  text-decoration: none;
  color: #087a9c;
  font-weight: 500;
}

.read-more:hover {
  text-decoration: underline;
}

/* Responsive design */
@media (max-width: 992px) {
  .steps-section {
    flex-direction: column;
    text-align: center;
    margin-top: 5px;
  }

  .steps-content {
    max-width: 100%;
  }

  .steps-cards {
    justify-content: center;
  }

  .card {
    max-width: 350px;
  }
}

@media (max-width: 600px) {

  .steps-section {
    margin-top: 5px;
  }
  .title2 {
    font-size: 1.5rem;
  }

  .card-number {
    font-size: 2.5rem;
  }
}

/* Services Section */

/* Container */

.services {
  margin-top: 30px;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Section Styling */
.services {
  padding: 5rem 0;
  background: #f9f9f9;
  animation: fadeIn 1.2s ease-in-out;
}

.services-header {
  text-align: center;
  margin-bottom: 3rem;
  animation: slideDown 1s ease forwards;
}

.services-header h4 {
  color: #087a9c;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.services-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #222;
}

.services-header p {
  max-width: 800px;
  margin: 0 auto;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

/* Card Styling */
.service-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s ease forwards;
}

.service-card:nth-child(2) {
  animation-delay: 0.2s;
}
.service-card:nth-child(3) {
  animation-delay: 0.4s;
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 1rem 1rem 0.5rem;
  color: #222;
}

.service-card p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
  padding: 0 1rem 1.5rem;
}

/* Hover Animation */
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.service-card:hover img {
  transform: scale(1.05);
}

/* Animations */
@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .services-header h2 {
    font-size: 1.8rem;
  }

  .service-card img {
    height: 200px;
  }
}


/* Hero2 Section */
.heros {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

/* Overlay for dark effect */
.heros::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

/* Hero Content */
.heros-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 900px;
  padding: 0 20px;
}

.tagline {
  letter-spacing: 4px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: #087a9c;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.subtext {
  font-size: 1rem;
  font-weight: 400;
  color: #ddd;
  margin-bottom: 1.5rem;
  margin-top: 10px;
}

/* Contact info */
.contact-info {
  font-size: 1rem;
  margin-bottom: 2rem;
}

.contact-info i {
  color: #f5c57d;
  margin-right: 8px;
}

/* Contact Button */
.contact-btn {
  background: #fff;
  color: #111;
  border: none;
  padding: 0.9rem 1.8rem;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-btn i {
  margin-left: 8px;
}

.contact-btn:hover {
  background: skyblue;
  color: #111;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
  .heros {
    height: 80vh;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .tagline {
    font-size: 0.75rem;
  }

  .subtext {
    font-size: 0.9rem;
  }

  .contact-info {
    font-size: 0.9rem;
  }
}


/* Why choose us */

/* MAIN SECTION */
.choose-us {
  width: 100%;
  background: #fff;
  padding: 0;
}

/* FLEX CONTAINER */
.choose-container {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
}

/* LEFT IMAGE */
.choose-image {
  flex: 1 1 50%;
  min-height: 500px;
}

.choose-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* RIGHT CONTENT */
.choose-content {
  flex: 1 1 50%;
  background: #fff;
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* TEXT STYLES */
.subtitle1 {
  color: #087a9c;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.title1 {
  font-size: 2rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 1.8rem;
  line-height: 1.3;
}

/* FEATURES LIST */
.features {
  list-style: none;
  margin-bottom: 2rem;
}

.features li {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 0.7rem;
  color: #111;
  display: flex;
  align-items: flex-start;
}

.features i {
  color: #087a9c;
  margin-right: 10px;
  font-size: 1.1rem;
  margin-top: 4px;
}

/* FOOTER TEXT */
.footer-text {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.7;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .choose-container {
    flex-direction: column;
  }

  .choose-image,
  .choose-content {
    flex: 1 1 100%;
  }

  .choose-content {
    padding: 3rem 1.5rem;
  }

  .title1 {
    font-size: 1.6rem;
  }
}

@media (max-width: 600px) {
  .features li {
    font-size: 0.95rem;
  }
}


/* CONTACT SECTION */
.contact-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* DARK OVERLAY */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

/* CONTENT */
.contact-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.subtitle {
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #d4d4d4;
  margin-bottom: 1rem;
}

.title {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 2rem;
  line-height: 1.4;
}

/* BUTTON */
.btn2 {
  display: inline-block;
  background: #fff;
  color: #111;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 1rem 2.5rem;
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.btn2 i {
  margin-right: 10px;
  color: #b86b36;
  font-size: 1.1rem;
}

.btn2:hover {
  background: skyblue;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .contact-hero {
    height: 80vh;
  }

  .title {
    font-size: 1.8rem;
  }

  .btn2 {
    padding: 0.9rem 2rem;
  }
}

@media (max-width: 600px) {
  .title {
    font-size: 1.5rem;
  }

  .subtitle {
    font-size: 0.9rem;
  }

  .btn2 {
    font-size: 0.9rem;
    padding: 0.8rem 1.5rem;
  }
}





/* =================== FOOTER SECTION =================== */
.footer {
  background: #1d1d1d;
  color: #fff;
  padding: 80px 8% 30px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 50px;
}

.footer-column h3 {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #fff;
  position: relative;
}

.footer-column h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: #087a9c;
  margin-top: 8px;
}

.footer-column p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #ccc;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #ccc;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #087a9c;
}

.footer-column.contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: #ccc;
}

.footer-column.contact i {
  color: #087a9c;
  font-size: 1rem;
}

.footer-column.contact a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column.contact a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  padding-top: 15px;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: #bbb;
  margin: 0;
}

@media screen and (max-width: 900px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .footer {
    padding: 60px 6% 25px;
  }

  .footer-column h3 {
    font-size: 1.2rem;
  }

  .footer-column p {
    font-size: 0.9rem;
  }

}

@media screen and (max-width: 500px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer {
    padding: 50px 5% 20px;
  }

  .footer-column h3 {
    font-size: 1.1rem;
    /* text-align: center; */
    display: inline-block;
  }
  
  .footer-bottom p {
    font-size: 0.85rem;
  }
}