/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #333;
}

/* ===== CONTAINER ===== */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ===== HEADER ===== */
/* Header */
.site-header {
  background: #fff;
  padding: 15px 20px;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid #e0f0ff;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.site-header .logo img {
  height: 50px;
  width: auto;
}

/* Navigation */
.site-header .nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-header .nav-links a {
  text-decoration: none;
  color: #007BFF;
  font-weight: 500;
  transition: color 0.3s;
}

.site-header .nav-links a:hover {
  color: #0056b3;
}

/* Button */
.btn-primary {
  background: skyblue;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: #00a0e6;
}

/* Hamburger */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #007BFF;
}

/* Responsive */
@media (max-width: 768px) {
  .site-header .nav-links {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 70px;
    right: 20px;
    width: 200px;
    padding: 15px;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.1);
  }

  .site-header .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}


/* ===== HERO ===== */



/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #fff;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* Skyblue Overlay */
.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
   background: rgba(0, 0, 0, 0.6); /* black overlay, 60% opacity */
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: bold;
  color: #fff;
}

.hero-content .btn {
  background: skyblue;
  border: 2px solid white;  /* White border */
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease, color 0.3s ease;
}

.hero-content .btn:hover {
  background: white;
  color: skyblue;  /* Invert colors on hover */
}


.hero-content .btn:hover {
  background: #00a0e6;
}



/* ===== SECTIONS ===== */
section {
  padding: 80px 20px;
  text-align: center;
}
section h2 {
  color: skyblue;
  margin-bottom: 20px;
  font-size: 2rem;
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.gallery-grid img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}
.gallery-grid img:hover {
  transform: scale(1.05);
}

/* ===== FOOTER ===== */
.site-footer {
  background: skyblue;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
}


#about {
  padding: 60px 20px;
  background: #f1f8ff;
}

.about-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 30px;
  flex-wrap: wrap; /* responsive */
}

.about-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 12px;
  object-fit: cover;
}

.about-text {
  flex: 1;
  min-width: 250px;
}

.about-text h2 {
  font-size: 2rem;
  color: #003366;
  margin-bottom: 15px;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .about-card {
    flex-direction: column;
    text-align: center;
  }

  .about-image img {
    max-width: 100%;
  }
}
/*servie css*/

#services {
  padding: 80px 20px;
  background: #f9f9f9;
  text-align: center;
}

#services .section-title {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #003366;
}

#services .section-subtitle {
  color: #555;
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.service-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.service-card .icon {
  font-size: 2.5rem;
  color: skyblue;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.service-card:hover .icon {
  transform: scale(1.2) rotate(10deg);
}

.service-card h3 {
  font-size: 1.3rem;
  color: #003366;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}


  #contact input:focus, 
  #contact textarea:focus {
    border-color: #0077b6;
    box-shadow: 0 0 6px rgba(0,119,182,0.3);
  }
  #contact button:hover {
    background: #005f87;
  }
  @media(max-width: 768px){
    .contact-grid {
      grid-template-columns: 1fr !important;
    }
    .contact-animation {
      margin-top: 20px;
    }
  }
