
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --main--color:rgb(197, 9, 9);
    --secon-color:black;
    --white:white;
    --background-color:white;
}

body{
    background-color: var(--background-color);
}


a{
    text-decoration: none;
}
/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background:var(--main--color);
    color: white;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: 90px;
}

.logo {
    font-size: 1.5rem;
}

.logo-image{
    padding-top: 10px;
    height: 80px;
    
}
.nav-items {
    display: flex;
    gap: 2rem;
}

.nav-items a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background 0.3s;
}

.nav-items a:hover {
    background: #ffffff;
    color: red;
}

/* nevbar chack box for mobile */
.mobile_menu{
    display: none;
}



.menu {
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    padding: 0;
  }
  .line {
    fill: none;
    stroke: var(--white);
    stroke-width: 6;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
      stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  .line1 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
  }
  .line2 {
    stroke-dasharray: 60 60;
    stroke-width: 6;
  }
  .line3 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
  }
  .opened .line1 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
  }
  .opened .line2 {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
    stroke-width: 6;
  }
  .opened .line3 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
  }



 /* Responsive Design */
@media (max-width: 768px) {
    .mobile_menu{
        display: block;
    }
    .nav-items {
     display: none;
    }
    .carousel img {
        width: 100%;
    }
}


.mobile-navbar{
    position: fixed;
    height: 30vh;
    width: 100vw;
    background-color: var(--secon-color);
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    padding: 2rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.mobile-navbar .items a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background 0.3s;
    font-size: 1.2rem;
}

.mobile-navbar .items a:hover {
    background: #ffffff;
    color: red;
    transform: scale(1.1);
}


/* Image Carousel */
.carousel-container {
    overflow: hidden;
    margin-top: 80px;
    padding: 2rem 0;
    background: var(--white);
    position: relative;
}

.carousel {
    display: flex;
    gap: 2rem;
    padding: 1rem 0;
    width: max-content;
    animation: slide 30s linear infinite;
}

.carousel:hover {
    animation-play-state: paused;
}

.carousel img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.carousel img:hover {
    transform: scale(1.05);
    z-index: 10;
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-100% - 2rem)); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .carousel img {
        width: 200px;
        height: 150px;
    }
    
    .carousel {
        gap: 1rem;
    }
}

.about-hedding{
    color: white;
    align-content: center;
    justify-items: center;
    height: 100px;
    width: 100%;
     background-color: black;
}
/* About Section */
.about {
    background-image: url(images/about-background.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 500px;
    width: 100%;
    color: var(--white);
    align-content: center;
    justify-items: center;
    align-items: center;
    position:relative;
}
.about h1{
    font-size: 50px;
}
.about p{
    margin: 20px;
    color: rgb(255, 255, 255); 
    font-size: 40px;
     font-weight: 700;
     text-shadow: 6px 6px 6px rgb(0, 0, 0);
}
.about .about-subhedding{
    font-size: 40px;  
}

/* Map Section */
.map {
    background-color: var(--background-color);
    padding: 2rem 5%;
    height: 400px;
}

.map iframe {
    width: 100%;
    height: 100%;
    border: none;
}


/* Footer */
footer {
    background: #000;
    color: white;
    text-align: center;
    padding: 2rem 5%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer h1 {
    margin-bottom: 10px;
    font-size: 1.8rem;
}

footer p {
    margin: 5px 0;
    font-size: 1rem;
}

footer p span {
    color: red;
    font-weight: bold;
}

footer a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 10px 0;
}

footer a i {
    color: red;
    font-size: 1.2rem;
}

/* Footer Image Styling */
footer img {
    height: 100px;
    width: 200px;
    position: absolute;
    right: 200px;
    bottom: 75px;
}

/* Copyrights */
footer .copyrights {
    margin-top: 50px;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 1268px) {
    footer {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    footer img {
        position: static;
        margin-top: 20px;
    }

    .about .about-subhedding{
        font-size: 30px;
    }
    .about p{
        font-size: 30px;
    }
}




