* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
    }

    .hero {
      position: relative;
      height: 100vh;
      background: linear-gradient(
          rgba(0, 0, 0, 0.35),
          rgba(0, 0, 0, 0.35)
        ),
        url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?q=80&w=1600&auto=format&fit=crop")
          center center/cover no-repeat;
      color: white;
      overflow: hidden;
    }
	
	.menu-btn {
		visibility: hidden;
	}
	
	.close-btn {
		visibility: hidden;
	}
	
	.nav2 a {
		visibility: hidden;
	}
	
	.navbar .logo {
		visibility: hidden;
	}
	
	@media (max-width: 768px) {
		
		/* Hamburger Icon */
    .menu-btn{
      font-size:30px;
      cursor:pointer;
      color:white;
      visibility: visible;
    }
	
	.navbar .logo {
		visibility: visible;
	}
	
		/* SIDE MENU */
    .nav-links{
    position:fixed;
    top:0;
    left:-250px;
    width:250px;
    height:100%;
    background:#111;
    display:flex;
    flex-direction:column;
    padding-top:60px;
    transition:0.3s;
    z-index:9;
}
    .nav-links a{
      color:white;
      text-decoration:none;
      padding:20px 30px;
      font-size:28px;
      transition:0.2s;
    }

    .nav-links a:hover{
      background:#222;
    }

    /* Show Menu */
    .nav-links.active{
      left:0;
    }
	
	

    /* Close Button */
    .close-btn{
      position:absolute;
      top:20px;
      right:25px;
      font-size:35px;
      cursor:pointer;
      color:white;
	  visibility: visible;
    }
	}

    /* NAVBAR */
    .navbar {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      padding: 28px 48px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 9;
    }
	
	.logo{
      font-size:24px;
      color: transparent;
    }

    .logo-box {
      width: 74px;
      height: 74px;
      background: #445757;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 8px;
    }

    .logo-box img {
      height: 100px;
    }

    .logo-box span {
      display: block;
      font-size: 8px;
      margin-top: 4px;
      opacity: 0.8;
    }

    .nav-links {
      display: flex;
      gap: 42px;
    }

    .nav-links a {
      text-decoration: none;
      color: white;
      font-size: 15px;
      letter-spacing: 1px;
      font-weight: 600;
      transition: 0.3s ease;
	  z-index:10;
    }

    .nav-links a:hover {
      opacity: 0.75;
    }

    /* HERO CONTENT */
    .hero-content {
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 20px;
    }

    .hero-content h1 {
      font-size: 35px;
      font-weight: 300;
      margin-bottom: 40px;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .button-group {
      display: flex;
      gap: 26px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .btn {
      padding: 20px 38px;
      background: #36585a;
      color: white;
      text-decoration: none;
      font-size: 16px;
      font-weight: 700;
      letter-spacing: 1px;
      border-radius: 3px;
      transition: 0.3s ease;
    }

    .btn:hover {
      background: #2c494b;
      transform: translateY(-2px);
    }

    /* RESPONSIVE */
    @media (max-width: 768px) {
      .navbar {
        padding: 20px;
      }

      .nav-links {
        gap: 18px;
      }

      .hero-content h1 {
        font-size: 30px;
      }

      .btn {
        padding: 16px 28px;
		width: 85%;
      }
	  .button-group {
      display: inline-flex;
      gap: 20px;
      flex-wrap: wrap;
      justify-content: center;
    }
    }
	
	/*section 2*/
	
	/* PAGE 2 */

.about-section {
  background: #f5f5f5;
  padding: 70px 40px;
  font-size: 18px;
  line-height: 1.7;
  color: #4b4b4b;
  text-align: center;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.about-card {
  text-align: center;
}

.about-card img {
  width: 100%;
  height: 290px;
  object-fit: cover;
  margin-bottom: 28px;
}

.about-card h2 {
  font-size: 24px;
  font-weight: 500;
  color: #1f1f1f;
  margin-bottom: 28px;
}

.about-card p {
  font-size: 18px;
  line-height: 1.7;
  color: #4b4b4b;
  margin-bottom: 14px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* RESPONSIVE */

@media (max-width: 900px) {

  .about-container {
    grid-template-columns: 1fr;
  }

  .about-card img {
    height: 240px;
  }

  .about-card p {
    font-size: 16px;
  }
}

.hero-banner {
      position: relative;
      width: 100%;
      height: 260px;
      overflow: hidden;
    }

    .hero-banner img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      filter: brightness(65%);
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.15);
    }

    .hero-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      display: flex;
      align-items: center;
      gap: 5px;
      text-align: center;
      white-space: nowrap;
    }

    .sub-title {
      color: white;
      font-size: 1.7rem;
      font-weight: 400;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .hero-btn {
      background: #0f5c63;
      color: white;
      text-decoration: none;
      padding: 18px 28px;
      font-family: Arial, sans-serif;
      font-size: 0.65rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      transition: background 0.3s ease;
    }

    .hero-btn:hover {
      background: #0b474d;
    }

    @media (max-width: 768px) {
      .hero-content {
        flex-direction: column;
        gap: 18px;
        white-space: normal;
        width: 90%;
      }
	  
	  .hero-content h1 {
        font-size: 13px;
      }

      .hero-title {
        font-size: 1.6rem;
        line-height: 1.4;
      }
	  
	  .hero-btn {
      padding: 8px 8px;
      font-size: 0.65rem;
    }
    }
	
	.testimonials {
      padding: 80px 20px;
      background: #f7f7f7;
    }

    .section-title {
      text-align: center;
      margin-bottom: 60px;
    }

    .section-title h2 {
      font-family: Georgia, serif;
      font-size: 2rem;
      font-weight: 400;
      letter-spacing: 1px;
      color: #0d3b52;
      text-transform: uppercase;
    }

    .title-line {
      width: 40px;
      height: 1px;
      background: #cfcfcf;
      margin: 18px auto 0;
    }

    .testimonial-wrapper {
      max-width: 1100px;
      margin: auto;
      display: grid;
      grid-template-columns: 1fr 1px 1fr;
      gap: 40px;
      align-items: stretch;
    }

    .divider {
      background: #d9d9d9;
      width: 1px;
    }

    .testimonial {
      padding: 0 20px;
    }

    .testimonial h3 {
      font-size: 1.5rem;
      font-weight: 400;
      margin-bottom: 20px;
      color: #173d4d;
    }

    .testimonial p {
      font-size: 1.1rem;
      line-height: 1.8;
      color: #4b5563;
      margin-bottom: 28px;
      max-width: 460px;
    }

    .testimonial .author {
      font-style: italic;
      font-size: 1rem;
      color: #4b5563;
      line-height: 1.8;
    }

    @media (max-width: 768px) {
      .testimonial-wrapper {
        grid-template-columns: 1fr;
		gap: 5px;
      }


      .divider {
        display: none;
      }

      .testimonial {
        padding: 0;
      }

      .testimonial:not(:last-child) {
        margin-bottom: 50px;
        padding-bottom: 50px;
        border-bottom: 1px solid #ddd;
      }

      .section-title h2 {
        font-size: 1.8rem;
      }

      .testimonial h3 {
        font-size: 1.4rem;
      }
	  
	  .testimonial p {
      font-size: 1.0rem;
	  }
	  
	  .testimonial .author {
      font-size: 0.8rem;
    }
	}

/* last page */
.subscribe-section {
      background: #f4f4f4;
      text-align: center;
      padding: 40px 20px 40px;
    }

    .subscribe-title {
      font-size: 35px;
      letter-spacing: 2px;
      color: #0d1b2a;
      margin-bottom: 25px;
      font-family: "Times New Roman", serif;
      font-weight: 500;
    }

    .subscribe-text {
      font-size: 18px;
      color: #666;
      margin-bottom: 35px;
    }

    .subscribe-form {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 25px;
      flex-wrap: wrap;
    }

    .subscribe-input {
      width: 620px;
      max-width: 100%;
      padding: 18px 20px;
      border: 1px solid #ddd;
      border-radius: 4px;
      font-size: 18px;
      outline: none;
      background: #fff;
    }

    .subscribe-btn {
      padding: 18px 40px;
      background: #294c4d;
      color: #fff;
      border: none;
      border-radius: 4px;
      font-size: 18px;
      font-weight: bold;
      cursor: pointer;
      transition: 0.3s ease;
    }

    .subscribe-btn:hover {
      background: #1f3b3c;
    }

    .footer {
      background: #0b0b0d;
      color: #cfcfcf;
      text-align: center;
      padding: 55px 20px;
    }

    .footer p {
      margin-bottom: 25px;
      font-size: 16px;
    }

    .footer-line {
      width: 60px;
      height: 1px;
      background: #333;
      margin: 0 auto 25px;
    }

    .footer a {
      color: #d6d6d6;
      text-decoration: none;
      font-size: 16px;
    }

    .footer a:hover {
      text-decoration: underline;
    }

    @media (max-width: 768px) {
      .subscribe-title {
        font-size: 32px;
      }

      .subscribe-form {
        flex-direction: column;
      }

      .subscribe-btn {
        width: 100%;
        max-width: 620px;
      }
	  
	  .subscribe-input {
      width: 620px;
      max-width: 100%;
      padding: 16px 18px;
    }
	
	.subscribe-btn {
	padding: 10px 30px;
	}
    }