* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #f5f5f5;
  color: #222;
}

/* HEADER */


.header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 25px 7%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: rgba(0,0,0,0.2);
  backdrop-filter: blur(10px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
  color: white;
}

.logo i {
  font-size: 55px;
  color: #ffc107;
}

.logo h1 {
  font-size: 50px;
  line-height: 40px;
}

.logo span {
  color: #ffc107;
  font-weight: bold;
  letter-spacing: 2px;
}

nav {
  display: flex;
  gap: 35px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
  position: relative;
}

nav a:hover,
nav .active {
  color: #ffc107;
}

nav .active::after {
  content: "";
  width: 100%;
  height: 3px;
  background: #ffc107;
  position: absolute;
  bottom: -8px;
  left: 0;
}

.quote-btn {
  background: #ffc107;
  color: #0e1b2c;
  padding: 16px 30px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.quote-btn:hover {
  transform: translateY(-3px);
}

/* HERO */

.hero {
  min-height: 100vh;

  background:
  linear-gradient(
    90deg,
    rgba(0,15,35,0.96) 0%,
    rgba(0,35,70,0.88) 35%,
    rgba(0,0,0,0.25) 100%
  ),
  url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?q=80&w=1800&auto=format&fit=crop');

  background-size: cover;
  background-position: center;

  display: flex;
  align-items: center;

  padding: 140px 7% 80px;

  position: relative;
}

.hero-content {
  max-width: 760px;
  color: white;
  z-index: 2;
}

.hero-content h2 {
  font-size: 110px;
  line-height: 105px;
  font-weight: 900;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.hero-content h2 span {
  color: #ffc107;
  display: block;
}

.hero-content p {
  font-size: 28px;
  line-height: 45px;
  margin-bottom: 45px;
  color: #f1f1f1;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;

  background: #ffc107;
  color: #071521;

  padding: 20px 38px;

  border-radius: 14px;

  text-decoration: none;
  font-size: 18px;
  font-weight: bold;

  transition: 0.35s;
}

.hero-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(255,193,7,0.35);
}

/* FEATURES */

.hero-features {

  margin-top: 70px;

  display: grid;
  grid-template-columns: repeat(4, 1fr);

  background: rgba(0,0,0,0.28);

  backdrop-filter: blur(12px);

  border: 1px solid rgba(255,255,255,0.08);

  border-radius: 22px;

  overflow: hidden;
}

.feature-box {

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 12px;

  padding: 25px 15px;

  min-width: 0;
}

.feature-box i {
  font-size: 30px;
  color: #ffc107;

  flex-shrink: 0;
}

.feature-box h3 {
  font-size: 16px;
  margin-bottom: 2px;
}

.feature-box span {
  color: #d9d9d9;
  font-size: 13px;
}

/* RESPONSIVE */

@media(max-width: 1100px){

  .hero-content h2{
    font-size: 70px;
    line-height: 70px;
  }

  .hero-features{
    grid-template-columns: repeat(2,1fr);
  }

}

@media(max-width: 768px){

  nav{
    display: none;
  }

  .quote-btn{
    display: none;
  }

  .hero-content h2{
    font-size: 50px;
    line-height: 55px;
  }

  .hero-content p{
    font-size: 20px;
    line-height: 35px;
  }

  .hero-features{
    grid-template-columns: 1fr;
  }

}

@media(max-width: 500px){

  .logo h1{
    font-size: 35px;
  }

  .hero-content h2{
    font-size: 40px;
    line-height: 45px;
  }

}

/* ABOUT */

.about {
  padding: 100px 8%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: white;
}

.about-text h2 {
  font-size: 40px;
  margin-bottom: 20px;
  color: #0e3b5f;
}

.about-text p {
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* SERVICES */

.services {
  padding: 100px 8%;
  text-align: center;
}

.services h2 {
  font-size: 40px;
  margin-bottom: 50px;
  color: #0e3b5f;
}

.service-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.card {
  background: white;
  padding: 40px 25px;
  border-radius: 20px;
  transition: 0.4s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.card:hover {
  transform: translateY(-10px);
}

.card i {
  font-size: 50px;
  color: #ffc107;
  margin-bottom: 20px;
}

.card h3 {
  margin-bottom: 15px;
}

/* GALLERY */

.gallery {
  padding: 100px 5%;
  background: white;
  text-align: center;
}

.gallery h2 {
  font-size: 40px;
  color: #0e3b5f;
  margin-bottom: 15px;
}

.gallery-text {
  color: #666;
  margin-bottom: 50px;
  font-size: 18px;
}

/* CAROUSEL */

.carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}

.gallery-item {
  min-width: 280px;
  height: 250px;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* BUTTONS */

.carousel-btn {
  background: #0e3b5f;
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  position: absolute;
  z-index: 10;
  transition: 0.3s;
}

.carousel-btn:hover {
  background: #ffc107;
  color: #0e3b5f;
}

.left {
  left: 0;
}

.right {
  right: 0;
}

/* MODAL */

.image-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
}

.modal-image {
  display: block;
  margin: auto;
  max-width: 90%;
  max-height: 85vh;
  border-radius: 20px;
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 40px;
  color: white;
  font-size: 45px;
  cursor: pointer;
}

/* RESPONSIVE */

@media(max-width: 768px) {

  .gallery-item {
    min-width: 220px;
    height: 200px;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
  }

}

/* CONTACT */

.contact {
  padding: 100px 8%;
  text-align: center;
  background: #0e3b5f;
  color: white;
}

.contact h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.contact p {
  margin-bottom: 30px;
}

.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.contact-btn {
  background: #25d366;
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.4s;
}

.insta {
  background: #e1306c;
}

.contact-btn:hover {
  transform: scale(1.05);
}

.phone-number {
  font-size: 25px;
}

/* FOOTER */

footer {
  background: #08263d;
  color: white;
  text-align: center;
  padding: 20px;
}

/* ANIMATION */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* MODAL BUTTONS */

.modal-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  color: white;
  font-size: 30px;
  cursor: pointer;
  transition: 0.3s;
}

.modal-btn:hover {
  background: #ffc107;
  color: #0e3b5f;
}

.modal-prev {
  left: 30px;
}

.modal-next {
  right: 30px;
}