*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto',sans-serif;
}

html{
    scroll-behavior: smooth;
}

body{
    width: 100%;
    min-height: 100vh;
}

/* Overall design */
.website-wrapper{
    width: 100%;
    max-width: 1600px;
    min-height: 100vh;
    margin: 0px auto;
    background-color: #edf0f6;
}

/* Header */
section.header{
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 0px 8%;
}

.header .header-overlay{
    position: absolute;
    width: 100%;
    height:100%;
    top:0;
    left: 0;
}

.header .main-navbar{
    position: fixed;
    width: 100%;
    height: 12vh;
    max-height: 100px;
    top: 0;
    left: 0;
    padding: 0px 8%;
    margin: 0px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.70);
    z-index: 100;
    transition:all 0.3s;
}

.header .main-navbar .logo img{
    width: 150px;
    height: 80px;
}

.header .main-navbar .nav-list{
    list-style: none;
}

.main-navbar .nav-list li{
    display:inline-block;
    margin: 0px 15px;
}
    
.main-navbar .nav-list li a{
    text-decoration: none;
    color: #ccc;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.main-navbar .nav-list li a:hover{
    color: #fa5a20;
}

.header .main-navbar .hamburger-btn{
    user-select: none;
    cursor: pointer;
    display: none;
}

.main-navbar .hamburger-btn span{
    display: block;
    width: 26px;
    height: 2px;
    background-color: #ccc;
    margin:6px auto;
    transition: all 0.3s;
}

.user-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content p {
  padding: 12px 16px;
  margin: 0;
  color: #333;
}

.dropdown-content a {
  color: #333;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

.dropdown-content button {
  width: 100%;
  padding: 12px 16px;
  background: #ff6b6b;
  color: #fff;
  border: none;
  cursor: pointer;
  text-align: left;
}

.dropdown-content button:hover {
  background: #ff4f4f;
}

.user-dropdown:hover .dropdown-content {
  display: block;
}

/* video */
.videoo{
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;  
  height: 100vh; 
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.70); 
  z-index: 2; 
}

.videoo .overlay{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); 
  z-index: 1;
}

.videoo video {
  width: 100%;  
  height: 100%;
  object-fit: cover;
  display: block;
}

.header .banner{
  position: relative;
  width: 100%;
  min-height: calc(100vh - 80px);
  top: 80px;
  color: #f9f9f9;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
}

.header .banner .banner-content{
  position: relative;
  max-width: 1000px;
  top: -55px;
  text-align: center;
}

.banner .banner-content h1{
  font-size: 80px;
  text-transform: uppercase;
  font-weight: 2000;
  font-family: Georgia, serif;
  color: #ffffff;
  z-index: 4;
}

.banner .banner-content p{
  font-size: 25px;
  text-transform: uppercase;
  font-weight: 2000;
  font-family: 'Marine Elmour Bold Personal Use Only';
  color: #ffffff;
  z-index: 4;
}

.banner-content .s-btnn a{
  font-size: 23px;
  color: #ffffff;
  text-decoration: none;
  border: 2px solid #fff;
  padding: 15px 25px;
  border-radius: 50px;
  transition: 0.3s;
}

.banner-content .s-btnn a:hover{
  background: #efeac8;
  color: #111111;
  box-shadow: #efeac8 0px 1px 25px;
}

/* Services Section Styling */
.service{
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #f9f9f9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 45px;
    color: #111111;
    position: relative;
    display: inline-block;
    font-weight: 1000;
    margin-bottom: 15px;
    font-family: monospace;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 3px;
    background: #e8b45a;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-title p {
    color: #6d7b88;
    font-size: 23px;
    max-width: 700px;
    margin: 0 auto;
    font-family: 'Times New Roman', Times, serif;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.service-img {
    height: 250px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.05);
}

.service-content {
    padding: 30px;
    text-align: center;
}

.service-content h3 {
    color: #2a3a4b;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: left;
}

.service-content p {
    color: #6d7b88;
    margin-bottom: 20px;
    line-height: 1.6;
    text-align: left;
}

.service-features {
    margin-bottom: 20px;
    padding-left: 0;
    text-align: left;
}

.service-features li {
    list-style: none;
    padding-left: 25px;
    position: relative;
    margin-bottom: 8px;
    color: #2a3a4b;
}

.service-features li::before {
    content: '✓';
    color: #e8b45a;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.btn {
    display: inline-block;
    background: #e8b45a;
    color: white;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.btn:hover {
    background: #2a3a4b;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title h2 {
        font-size: 35px;
    }

    .section-title p {
        font-size: 20px;
    }
    
    .service-img {
        height: 200px;
    }
}

/* Footer */
footer{
    background-color: #ebeae1; /* #edf0f6 */
    box-sizing: border-box;
  }

  .footerContainer{
    width: 100%;
    padding: 50px 30px 20px;
  }
  
  .socialIcons{
    display: flex;
    justify-content: center;
  }
  
  .socialIcons a{
   text-decoration: none;
   padding: 10px;
   background-color: white;
   margin: 10px;
   border-radius: 50%;
  }
  
  .socialIcons a i{
    font-size: 2em;
    color: black;
    opacity: 0.9;
  }
  
  .socialIcons a:hover{
    background-color: #ebeae1;
    transition: 0.5s;
  }
  
  .socialIcons a:hover i{
    color: #3971e0;
    transition: 0.5s;
  }
  
  .footerNav{
    margin:30px 0;
  }
  
  .footerNav ul{
    display: flex;
    justify-content: center;
    list-style: none;
  }
  
  .footerNav ul li a{
    color: black;
    margin: 20px;
    text-decoration: none;
    font-size: 1em;
    opacity: 0.5;
    transition: 0.5s;
  }
  
  .footerNav ul li a:hover{
    color: #e99555;
    opacity: 1;
    font-weight: 800;
  }
  
  .footerBottom{
    padding: 10px;
    text-align: center;
  }
  
  .designer{
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
    margin: 0px 5px;
  }



/* Media styling */
@media screen and (max-width:968px){
    /* Home section */
    .header .main-navbar .hamburger-btn{
        display: block;
        margin-left: 30px;
        z-index: 101;
    }

    .header .main-navbar .logo img{
        width: 100px;
        height: 55px;
    }

    .header .main-navbar .nav-list{
        position: fixed;
        width: 60%;
        height: 100vh;
        top:0;
        /*right:0;*/
        right: -100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        background-color: #191919;
        transition: right 0.3s;
        z-index: 100;
    }

    .header .main-navbar .nav-list.active{
        right: 0;
    }

    .main-navbar .nav-list li{
        margin: 25px 0px 0px;
    }
    .main-navbar .nav-list li:nth-child(1){
        margin-top: 180px;
    }
    .main-navbar .nav-list li a{
        font-size: 18px;
        letter-spacing: 2px;
    }
    .main-navbar .hamburger-btn.active span:nth-child(1){
        transform: translateY(8px) rotate(45deg);
    }
    .main-navbar .hamburger-btn.active span:nth-child(3){
        transform: translateY(-8px) rotate(-45deg);
    }
    .main-navbar .hamburger-btn.active span:nth-child(2){
        transform: translateX(-30px);
        opacity: 0;
    }
}

@media screen and (max-width:600px){
    .banner .banner-content h1{
        font-size: 60px;
    }
}

@media screen and (max-width:500px){
    .banner .banner-content h1{
        font-size: 38px;
    }

    .banner .banner-content p{
        font-size: 20px;
    }
}


/* Footer */
@media (max-width: 768px) {
    .footerContainer {
      padding: 30px 20px 10px;
    }
  
    .socialIcons a {
      padding: 8px;
      margin: 5px;
    }
  
    .socialIcons a i {
      font-size: 1.5em;
    }
  
    .footerNav ul {
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }
  
    .footerNav ul li a {
      font-size: 0.9em;
      margin: 10px 0;
    }
  
    .footerBottom p {
      font-size: 0.9em;
    }
  }
  
  @media (max-width: 480px) {
    .footerContainer {
      padding: 20px 10px 5px;
    }
  
    .socialIcons {
      flex-wrap: wrap;
    }
  
    .socialIcons a {
      padding: 5px;
      margin: 5px;
    }
  
    .socialIcons a i {
      font-size: 1.2em;
    }
  
    .footerNav ul {
      flex-direction: column;
      align-items: center;
    }
  
    .footerNav ul li a {
      font-size: 0.8em;
    }
  
    .footerBottom p {
      font-size: 10px;
    }
  }