* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial;
}

body {
    background: #f6f6f6;
    overflow-x: hidden;
}


header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background: #004aad;
    color: white;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 45px;
}

nav {
    display: flex;
    gap: 18px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}


nav a.active {
    color: #ffd700;
    text-decoration: underline;
    text-underline-offset: 6px;
}


.menu-icon {
    display: none;
    font-size: 28px;
    cursor: pointer;
}


@media (max-width: 768px) {
    .menu-icon {
        display: block;
    }

    nav {
        display: none;
        flex-direction: column;
        background: #004aad;
        position: absolute;
        top: 70px;
        right: 20px;
        width: 200px;
        border-radius: 8px;
        text-align: center;
    }

    nav a {
        padding: 12px;
        border-bottom: 1px solid rgba(255,255,255,0.2);
    }

    nav.show {
        display: flex;
    }
}

.hero {
    height: 50vh;
 background: url("https://images.unsplash.com/photo-1509062522246-3755977927d7")
        center/cover no-repeat;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}


.section {
    padding: 50px 20px;
    text-align: center;
}

.section h2 {
    color: #004aad;
    margin-bottom: 15px;
}

.gallery-grid1 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
    gap: 15px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.gallery-grid img,
.gallery-grid video {
    width: 100%;
    border-radius: 10px;
}


form {
    max-width: 400px;
    margin: auto;
}

input, textarea, button {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
}

button {
    background: #004aad;
    color: white;
    border: none;
    cursor: pointer;
}


footer {
    background: #004aad;
    color: white;
    text-align: center;
    padding: 10px;
    height:150px;
}
/* 22 12 2025*/
/* Slider */
.slider {
  position: relative;
  height: 450px;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(1.1);
  transition: all 1s ease-in-out;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
}

.slide img {
  width: 100%;
  height: 150%;
  object-fit: cover;
}

.caption {
  position: absolute;
  bottom: 50px;
  left: 50px;
  background: rgba(0,0,0,0.6);
  color: white;
  padding: 15px;
  font-size: 24px;
  animation: slideUp 1s ease;
}

@keyframes slideUp {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.prev, .next {
  position: absolute;
  top: 50%;
  font-size: 30px;
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
}

.prev { left: 10px; }
.next { right: 10px; }


/* Dots */
.dots {
  position: absolute;
  bottom: 15px;
  width: 100%;
  text-align: center;
}

.dots span {
  height: 12px;
  width: 12px;
  background: white;
  display: inline-block;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  opacity: 0.5;
}

.dots span.active {
  opacity: 1;
}



.prev, .next {
  position: absolute;
  top: 50%;
  font-size: 30px;
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
}

.prev { left: 10px; }
.next { right: 10px; }
/*social media*/

    .social-section {
 
        text-align: center;
    }

    .social-section h3 {
        margin-bottom: 15px;
        font-family: Arial, sans-serif;
        color: #333;
    }

    .social-links a {
        text-decoration: none;
        margin: 0 10px;
        font-size: 28px;
        color: #555;
        transition: 0.3s;
    }

    .social-links a:hover {
        transform: scale(1.2);
    }

    .social-links .fa-facebook { color: #1877f2; }
    .social-links .fa-instagram { color: #e1306c; }
    .social-links .fa-twitter { color: #1da1f2; }
    .social-links .fa-youtube { color: #ff0000; }



