* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: "Montserrat", serif !important;  */
}

body {
    /* font-family: "Montserrat", serif; */
    line-height: 1.6;
    background-color: #fff; 
    color: #333;
}
 /* above navbar  */
.contact-info {
    background-color: white; 
    color: #003366;
    padding: 10px 0;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-info span {
    margin: 0 15px;
    font-size: 14px;
}
/* navbar */
.navbars {
    background-color: #003366; 
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
}

.logo {
    color: white;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 2px;
    font-weight: bold;
}

.navbars .logo img{
    width: 30%;
}

.navbars ul {
    list-style: none;
    display: flex;
}

.navbars ul li {
    margin-right: 20px;
}
 a {
    text-decoration: none;
}
.navbars ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.navbars ul li a:hover {
    color: #7BAF91; 
}
.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 999;
   
  }
  .burger div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 4px 0;
    transition: 0.3s ease;
  }
.buttonone {
    background-color: #7BAF91; 
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
}

.buttonone:hover {
    background-color: #6F9E7C;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); 
}

.navbars .hide{
    display: none;
}

/* project */
/* HERO SECTION VIDEO */
.hero {
    position: relative;
    height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background: url(../images/aesthetic-bathroom_5.webp) fixed;
}


.hero video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(60%);
}


.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3));
}


.content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
    animation: fadeIn 1.5s ease-in-out;
}

.content h1 {
    font-size: 3rem;
    font-weight: lighter;
    letter-spacing: 2px;
    animation: slideIn 1.2s ease-in-out;
}


.content p {
    font-size: 1.2rem;
    margin-top: 10px;
    opacity: 0.9;
    font-weight: lighter;
    font-style: italic;
}


.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    font-size: 1.2rem;
    color: white;
    background: #003366;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 51, 102, 0.8);
}

.btn:hover {
    background: #005599;
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(0, 51, 102, 1);
}

/* Fade-in Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Slide-in Animation */
@keyframes slideIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Projects */
.projects {
    text-align: center;
    padding: 50px 20px;
    background: #f8f8f8;
}
h2 {
    font-size: 2.5rem;
    color: #003366;
}
.filter-buttons {
    margin-bottom: 20px;
}
.filter-buttons button {
    padding: 10px 20px;
    margin: 5px;
    border: none;
    background: #003366;
    color: white;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 20px;
    margin-top: 30px;
}
.filter-buttons button:hover, .filter-buttons .active {
    background: #005599;
}
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.project-item {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.project-item video {
    width: 100%;
    aspect-ratio: 16 / 9; /* Adjusts height automatically based on width */
    border-radius: 10px;
    object-fit: cover;
}
.projects h3 {
    margin-top: 10px;
    color: #003366;
}
.projects p {
    color: #666;
    font-style: italic;
}
/* Photo projects */
.photo-slider {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(135deg, #f8f8f8, #e0e0e0);
}

.slider-container {
    position: relative;
    max-width: 900px;
    height: 600px;
    margin: auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide.active {
    opacity: 1;
}

.slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 15px;
    transition: transform 0.3s ease-in-out;
    width: 100%;
}

.slide img:hover {
    transform: scale(1.05);
}

.dots {
    margin-top: 15px;
}

.dot {
    height: 14px;
    width: 14px;
    margin: 5px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-colour 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.dot:hover {
    transform: scale(1.2);
    background: rgba(255, 255, 255, 1);
}

.dot.active {
    background: #003366;
}

/* Arrows */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: background-colour  0.3s ease-in-out;
}

.arrow:hover {
    background: rgba(0, 0, 0, 0.8);
}

.arrow-left {
    left: 10px;
}

.arrow-right {
    right: 10px;
}
.photo-slider p {
    margin-top: -5px;
    margin-bottom: 30px;
}
.photo-slider h2{
    font-weight: bold ;
}

/* footer section */
.footer {
    background: linear-gradient(135deg, #003366, #005599);
    color: white;
    padding: 40px 10px;
    text-align: center;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    flex: 0;
    min-width: 250px;
    margin: 20px;
}
.footer-section a {
    color: white;
}

.footer-section h2 {
    font-size: 1.8em;
    margin-bottom: 10px;
}

.footer-section p {
    font-size: 1em;
    line-height: 1.6;
}

.footer-section .social a {
    color: white;
    margin: 0 10px;
    font-size: 1.5em;
    transition: 0.3s ease-in-out;
}

.footer-section .social a:hover {
    color: #ffcc00;
}

.footer-bottom {
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9em;
}
@media (max-width: 768px) {
    .navbars {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 20px;
    }
    .navbars a{
        text-decoration: none;
    }
    .navbars ul {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #003366;
        padding: 10px 0;
    }

    .navbars ul.active {
        display: flex;
    }

    .navbars ul li {
        margin: 10px 20px;
    }

    .burger {
        display: flex;
        position: absolute;
        top: 50px;
        right: 30px;
        z-index: 1001;
}
  
    .logo img {
      width: 50%;
    }
    .hero {
      height: auto;
      padding: 60px 20px;
    }
  
    .content h1 {
      font-size: 2rem;
    }
  
    .content p {
      font-size: 1rem;
    }
  
    .btn {
      width: 100%;
      font-size: 1rem;
    }
  
    .project-grid {
      grid-template-columns: 1fr;
    }
  
    .slider-container {
      height: 300px;
    }
  
    .footer-container {
      flex-direction: column;
      align-items: center;
    }
  
    .footer-section {
      width: 100%;
      text-align: center;
      margin: 10px 0;
    }
  }
  
 
  @media (max-width: 480px) {
    .hero {
      padding: 40px 10px;
    }
  
    .content {
      padding: 10px;
    }
  
    .content h1 {
      font-size: 1.5rem;
    }
  
    .content p {
      font-size: 0.9rem;
    }
  
    .btn {
      font-size: 0.9rem;
      padding: 10px 20px;
    }
  
    h2 {
      font-size: 1.8rem;
    }
  
    .filter-buttons button {
      width: 100%;
      margin: 10px 0;
    }
  
    .slider-container {
      height: 250px;
    }
  
    .footer {
      padding: 20px 5px;
    }
  
    .footer-section h2 {
      font-size: 1.4em;
    }
  
    .footer-section p {
      font-size: 0.9em;
    }
  
    .dot {
      height: 10px;
      width: 10px;
    }
  }
  
  
  @media (min-width: 769px) and (max-width: 1024px) {
    .navbars {
      padding: 20px 30px;
    }
  
    .logo img {
      width: 40%;
    }
  
    .project-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .slider-container {
      height: 450px;
    }
  }