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

html,
body {
    height: 100%;
    width: 100%;
    background: rgb(255, 255, 255);
    right: 0;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 10px 60px 10px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    height: 80px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.logo a {
    text-decoration: none;
}

.meb {
    color: rgb(158, 0, 0);
    text-shadow: 0.5px 0.5px rgb(100, 0, 0);
}

.marker {
    color: rgb(0, 0, 0);
    text-shadow: 0.5px 0.5px rgb(80, 80, 80);
}

.livebutton {
    background-color: rgb(235, 38, 38);
    color: white;
    padding: 4px 8px;
    border-radius: 10px;
    font-size: 14px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-left: 20px;
    margin-right: 12px;

}

.livebutton:hover {
    border: solid 2px rgb(0, 0, 0);
    font-weight: bold;
}

li.livebutton a {
    text-decoration: none;
    color: white;
}

nav ul {
    display: flex;
    gap: 30px;
    align-items: center;

}

nav ul li {
    list-style-type: none;
}

nav ul li a {
    text-decoration: none;
    color: rgb(0, 0, 0);
    font-size: 18px;
}

nav ul li a:hover {
    font-weight: bold;
    text-shadow: 0.5 0.1;
}

.menu-icon {
    display: none;
}

.menu-icon i {
    color: rgb(0, 0, 0);
    font-size: 35px;
}

.header {
    width: 100%;
    height: 100vh;
    background: url('images/hero2.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.textbox {
    max-width: 800px;
    background-color: rgba(0, 0, 0, 0.583);
    padding: 20px 20px 60px 20px;
    border-radius: 20px;
}

.header .textbox h1 {
    font-size: 50px;
    color: rgb(255, 255, 255);
    margin-bottom: 20px;
    text-shadow: 0 5px 10px rgba(0, 0, 0, 0.918);
}

.header .textbox p {
    font-size: 22px;
    color: white;
    margin-bottom: 30px;
    text-shadow: 0 5px 10px rgba(0, 0, 0, 0.918);
}

.header .textbox .hero-btn {
    padding: 15px 30px;
    font-size: 18px;
    color: white;
    background-color: rgb(180, 0, 0);
    border: none;
    border-radius: 10px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.header .textbox .hero-btn:hover {
    background-color: rgb(112, 18, 18);
}

.services {
    padding: 80px 20px;
    text-align: center;
    background: rgb(240, 240, 240);
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.services h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: rgb(0, 0, 0);
}

.services .service-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
}

.service {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    flex: 1 1 300px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.services-col {
    flex-basis: 30%;
    text-align: center;
    justify-content: center;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    background-color: rgb(255, 255, 255);
    min-width: 400px;
    min-height: 200px;
}

.services-heading {
    font-size: 24px;
    margin-bottom: 15px;
    color: rgb(0, 0, 0);
}

.services-para {
    font-size: 24px;
    color: rgb(0, 0, 0);
    line-height: 1.5;
    margin-bottom: 35px;
    text-align: center;
    justify-content: center;
    padding: 0 10% 0 10%;

}

.services h1 {
    font-size: 30px;
}

.services-col h3 {
    margin: 20px 0;
    font-size: 1.5rem;
}

 :root{
    --bg: rgb(240, 240, 240);
    --card-bg: #ffffff;
    --accent: #0b78ff;
    --muted: #6b7280;
    --radius: 14px;
    --shadow: 0 10px 25px rgba(10, 15, 30, 0.08);
    --container-max: 800px;
  }

  .gallery-section{
    background: white;
    padding: 16px 16px 48px 16px;
    display: flex;
   flex-direction: column;
    align-items: center;
    gap: 20px;
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  .gallery-title{
    margin-top: 30px;
    font-size: 30px;
    font-weight: 700;
    color: #111827;
  }

  .cards-wrapper{
    width: 100%;
    max-width: var(--container-max);
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 22px;
    padding: 8px;
    box-sizing: border-box;
    justify-items: center;
    align-items: center;
  }

  .card{
    width: 100%;
    max-width: 360px;
    background: transparent;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: default;
    transition: transform .25s ease, box-shadow .25s ease;
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  .card:hover{
    transform: translateY(-6px);
    filter: saturate(1.03);
  }

  .card-media{
    height: 160px;
    overflow: hidden;
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
  }

  .card-media img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .45s ease;
  }

  .card:hover .card-media img{
    transform: scale(1.04);
  }

  .card-body{
    background: rgb(240, 240, 240);
    backdrop-filter: blur(6px);
    padding: 18px;
    box-sizing: border-box;
    border-bottom-left-radius: var(--radius);
    border-bottom-right-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
  }

  .card-body h3{
    margin: 6px 0 8px;
    font-size: 20px;
    color: #111827;
  }

  .card-body p{
    margin: 0 0 14px;
    font-size: 16px;
    color: rgb(24, 24, 24);
    line-height: 1.45;
  }

  .btn-more{
    display: inline-block;
    padding: 10px 18px;
    border-radius: 10px;
    border: none;
    background: rgb(180, 0, 0);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    
    transition: transform .15s ease, box-shadow .15s ease;
  }

  .btn-more a{
    text-decoration: none;
    color: white;
  }

  .btn-more:active{ transform: translateY(1px); }
  .btn-more:hover{ box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); }

  .gallery-para{
    font-size: 20px;
    color: #000000;
    max-width: 700px;
    text-align: center;
    padding-bottom: 20px;
  }

  .contact {
    padding-top: 30px;
    padding-bottom: 60px;
    text-align: center;
    background: rgb(240, 240, 240);
  }

.contact-heading {
    font-size: 36px;
    color: rgb(0, 0, 0);
    padding-top: 40px;
}

.contact-para {
    font-size: 16px;
    color: rgb(0, 0, 0);
    margin-bottom: 20px;
    padding: 0 10px 0 10px;
}

.contact h3 {
    gap: 10px;
    font-size: 20px;
    color: rgb(0, 0, 0);
    padding-bottom: 10px;
}

footer {
    background-color: #111827;
    color: white;
    text-align: center;
    padding: 20px 0;
}

i {
    font-size: 40px;
    color: rgb(20, 20, 191);
}

#mail {
    font-size: 40px;
    color: rgb(26, 26, 26);
    padding-bottom: 15px;
}

#phone {
    font-size: 35px;
    color: rgb(26, 26, 26);
    padding-bottom: 15px;
    padding-top: 20px;
}

#fb {
    font-size: 50px;
    color: rgb(27, 27, 157);
    padding-bottom: 15px;
}

.gallery-sec {
    padding: 90px 20px 40px;
    background: #fff;
    text-align: center
}

.gallery-tit {
    font-size: 32px;
    margin-bottom: 20px
}

.gallery-gr {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 20px;
    padding: 40px 10%;
    box-sizing: border-box;
    justify-items: center;
    align-items: center;
}

.gallery-gr img {
    width: 100%;
    height: 250px;
    border-radius: 12px;
    cursor: pointer;
    object-fit: cover;
    transition: transform .3s
}

.gallery-gr img:hover {
    transform: scale(1.05)
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .9);
    align-items: center;
    justify-content: center
}

.lightbox img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 12px
}

.lightbox.active {
    display: flex
}

.close-lightbox {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 30px;
    color: #fff;
    cursor: pointer
}

.back-btn {
    display: inline-block;
    margin: 40px auto;
    padding: 12px 25px;
    background: rgb(180, 0, 0);
    color: #fff;
    text-decoration: none;
    border-radius: 8px
}

iframe {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 600px;
    height: 450px;
    margin-top: 100px;
    display: flex;
}

.live-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}



@media (max-width: 900px) {

    body {
        right: 0;
    }
    
    nav {
        padding: 10px 25px;
    }

    li.livebutton a {
        font-size: 12px;
        align-items: center;
        justify-content: center;
        padding: 4px 8px;
        text-align: center;
    }

    .meb {
        font-size: 28px;
    }

    .marker {
        font-size: 28px;
    }

    nav ul {
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        overflow: hidden;
        flex-direction: column;
        text-align: center;
        background: rgba(0, 0, 0, 0.781);
        gap: 0;
        margin-bottom: 20px;
        z-index: 1100;
    }

    nav ul li {
        padding: 20px;
    }

    nav ul li a {
        text-decoration: none;
        color: rgb(255, 255, 255);
        font-size: 18px;
    }

    .menu-icon {
        display: block;
    }

    #menuList {
        transition: all 0.5s;
        
    }

    .menu-icon i {
        transition: transform 0.3s ease;
        cursor: pointer;
    }

    .menu-icon i:active {
        transform: scale(0.9);
    }

    .header .textbox h1 {
        font-size: 2rem;
    }

    .header .textbox p {
        font-size: 1.2rem;
    }

    .services-para {
        padding: 0 5px 0 5px;
    }

    .cards-wrapper{
        grid-template-columns: 1fr;
    }

    .gallery-gr {
        grid-template-columns: 1fr;
    }

    .gallery-gr img {
        height: 200px;
    }  

    nav ul li.livebutton {
    margin-bottom: 25px;
  }

  #menuList {
  transition: max-height 0.4s ease;
}

}