*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

html,body{
  height: 100%;
  width: 100%;
}
body{
  color: white;
  background: #1e1e1e;
}

.header{
  width: 100%;
  position: fixed;
  z-index: 100;
  top: 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo {
  filter: invert(78%) sepia(96%) saturate(480%) hue-rotate(2deg) brightness(100%) contrast(100%);
}

.logo img{
  width: 200px;
  height: 50px;
  padding-left: 50px;  
 
}

nav{
  padding: 10px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgb(67, 65, 65);
  position: relative;
  height: 70px;
}

nav ul{
  display: flex;
  gap: 60px;
  
}


nav ul li{
  list-style-type: none;
}
nav ul li a{
  text-decoration: none;
  color: #f8ba00;
}
.menu-icon {
  font-size: 28px;
  cursor: pointer;
  display: none; 
  color: #f8ba00;
}

.loginbtn {
  outline: none;
  border: none;
  background: linear-gradient(135deg, #f8ba00, #f8ba00); 
  color: #fff;
  width: 80px;  
  height: 35px; 
  border-radius: 20px; 
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  position: relative;
  bottom: 7px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.loginbtn:hover {
  background: linear-gradient(135deg, #f8ba00, #7dcce4); 
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.loginbtn:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

nav ul li a {
  text-decoration: none;
  color: #f8ba00; 
  font-weight: 500;
  font-size: 15px;
  padding: 6px 12px;
  border-radius: 4px;
  transition: all 0.3s ease;
}


nav ul li a:hover {
  background-color: #f8ba00;
  color: #222; 
  box-shadow: 0 2px 8px rgba(0,255,255,0.3);
}


.menu-icon {
  font-size: 28px;
  cursor: pointer;
  display: none;
  color: #f8ba00;
  transition: color 0.3s ease;
}

.menu-icon:hover {
  color: #f1c40f; 
}

.dropdown {
  position: relative;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 70%;
  left: 0;
  list-style: none;
  padding: 5px 0;
  margin: 0;
  min-width: 85px;       
  background-color: #333; 
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  z-index: 1000;
  height: 35px;
}

.dropdown-menu li a {
  display: block;
  padding: 8px 12px;    
  color: #fff;           
  text-decoration: none;
  font-size: 15px;        
  border-radius: 4px;
  transition: none; 
  position: relative;
  bottom: 5px;  
  left: 4px;  
}

.dropdown-menu li a:hover {
 background-color: #f8ba00;
  color: #222; 
  box-shadow: 0 2px 8px rgba(0,255,255,0.3);
}

.dropdown:hover .dropdown-menu {
  display: block;
}

@media (max-width: 768px) {

  .header{
    width: 100%;
  }
  .nav-links {
    display: none; 
    flex-direction: column;
    background: #444;
    position: absolute;
    top: 60px;
    right: 13px;
    padding: 15px;
    border-radius: 8px;
    width: 100%;
    text-align: center;
    gap: 30px;
    
  }

  .nav-links.show {
    display: flex; 
  }

  .menu-icon {
    display: block; 
  }
}

.headmain{
  min-height: 100vh;
  width: 100%;
  background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(./image/4.jpg);
  background-position: center;
  background-size: cover;
  position: relative;
}


.happy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 10%;
  flex-wrap: wrap;
  position: relative;
  top: 55px;
  left: 15px;
}


.happy::before,
.happy::after {
  content: "✦";
  position: absolute;
  font-size: 20px;
  color: #d6bba5;
  opacity: 0.6;
}

.happy::before {
  top: 20%;
  left: 5%;
}

.happy::after {
  bottom: 15%;
  right: 10%;
}


.maintext {
  flex: 1 1 45%;
  max-width: 700px;
  position: relative;
}

.maintext h4 {
  font-size: 24px;
  letter-spacing: 2px;
  color: white;
  margin-bottom: 15px;
}

.maintext h1 {
  font-size: 68px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #f8ba00;
}

.maintext p {
  font-size: 22px;
  margin-bottom: 25px;
  color: white;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border: 2px solid #555;
  border-radius: 25px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  background: #333;
  color: #fff;
}

.image-box {
  flex: 1 1 45%;
  text-align: center;
  position: relative;
}

.image-box img {
  width: 100%;
  max-width: 450px;
  border-radius: 30px;
  border: 3px solid #ddd;
  background: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7));
}

.image-box img {
  border: 3px solid transparent;
  border-radius: 20px;
  padding: 6px;
  background: linear-gradient(
    90deg,
    red,
    blue,
    red,
    blue
  );
  background-size: 400% 400%;
  animation: neonGlow 8s linear infinite;
  box-shadow: 0 0 15px rgba(0,0,0,0.6); 
}


@keyframes neonGlow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}



.image-box {
  position: relative;
  width: 100%;
  max-width: 400px; 
  overflow: hidden;
  border-radius: 10px;
}

.image-box img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.img-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(0,0,0,0.6);
  color: #fff;
  opacity: 0;
  transition: opacity 0.5s ease;
  padding: 20px;
  cursor: pointer;
}

.img-content h1{
  color: #00aeff;
  line-height: 1.5;
}

.image-box:hover img {
  transform: scale(1.1); 
}

.image-box:hover .img-content {
  opacity: 1;
}

.img-content h1 {
  font-size: 28px;
  margin-bottom: 10px;
}

.img-content p {
  font-size: 16px;
}


@media (max-width: 768px) {
  .img-content h1 {
    font-size: 22px;
  }
  .img-content p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .img-content h1 {
    font-size: 18px;
  }
  .img-content p {
    font-size: 12px;
  }
}



@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    padding: 40px 7%;
    text-align: center;
  }

  .maintext {
    flex: 1 1 100%;
    max-width: 100%;
    margin-bottom: 30px;
  }

  .maintext h1 {
    font-size: 36px;
  }

  .maintext p {
    font-size: 15px;
  }


}
.about {
  background: url("./image/success2.jpeg") no-repeat center center fixed;
  background-size: cover;
}

.service{
  background: url("./image/success2.jpeg") no-repeat center center fixed;
  background-size: cover;
}
.join {
  background: url("./image/success2.jpeg") no-repeat center center fixed;
  background-size: cover;
}
.gallery {
  background: url("./image/success2.jpeg") no-repeat center center fixed;
  background-size: cover;
}



/* section welcome */
.welcome {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
  text-align: center;
}

.welcome .text h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}
.welcome .text .span1 {
  color: #ff9800;
}
.welcome .text p {
  font-size: 16px;
  color: #fff;
  max-width: 750px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.features .box {
  background: #fff;
  padding: 30px 25px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: left;
  position: relative;
}

.features .box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.features .box i {
  font-size: 40px;
  color: #ff9800;
  margin-bottom: 15px;
  display: inline-block;
}


.features .box h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #111;
}

.features .box p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: justify;
}

.read {
  background: #ff9800;
  color: #fff;
  border: none;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
}
.read:hover {
  background: #e68900;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .welcome {
    padding: 60px 20px;
  }
  .welcome .text h2 {
    font-size: 28px;
  }
  .welcome .text p {
    font-size: 14px;
  }
  .features {
    gap: 20px;
  }
}

/* Section About */
.about {
  padding: 60px 10%;
  line-height: 1.6;
}

.about-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text h2 {
  font-size: 32px;
  color: #ff9800;
  margin-bottom: 10px;
}

.about-text .subtitle {
  font-size: 16px;
  color: #777;
  margin-bottom: 20px;
}

.about-text h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #ff9800;
}

.about-text p {
  font-size: 16px;
  color: white;
  margin-bottom: 25px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.stat-box {
  background: linear-gradient(135deg, #ff9800, #e09d71);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.stat-box h4 {
  font-size: 22px;
  color: black;
  margin-bottom: 5px;
}

.stat-box p {
  font-size: 14px;
  color: #000000;
}

.about-image {
  flex: 1;
  min-width: 280px;
  
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  margin-top: 100px;
}

@media (max-width: 1024px) {
  .about-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .stats {
    grid-template-columns: 1fr 1fr;
  }

  .about-text {
    margin-bottom: 30px;
  }
}

@media (max-width: 600px) {
  .stats {
    grid-template-columns: 1fr;
  }

  .about-text h2 {
    font-size: 26px;
  }

  .about-text h3 {
    font-size: 20px;
  }

  .stat-box h4 {
    font-size: 20px;
  }
}

/* section services */
.service {
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 80px 40px;
  text-align: center;
}

.texthead h1 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 15px;
  color: #fff;
}
.span2 {
  color: #ff9800;
}
.texthead p {
  font-size: 16px;
  color: white;
  margin-bottom: 20px;
}
.texthead h4 {
  font-size: 15px;
  font-weight: 400;
  color: white;
  max-width: 850px;
  margin: 0 auto 60px;
  line-height: 1.6;
}


.infoservice {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}


.imageservices {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  padding: 25px;
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: left;
}
.imageservices:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.imageservices img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 18px;
  transition: transform 0.4s ease;
}
.imageservices:hover img {
  transform: scale(1.05);
}


.imageservices h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111;
}

.imageservices p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}


@media (max-width: 768px) {
  .service {
    padding: 60px 20px;
  }
  .service .texthead h1 {
    font-size: 30px;
  }
  .service .texthead h4 {
    font-size: 14px;
  }
}



/* section join us */

.join {
  text-align: center;
  padding: 40px 20px;
}

.top{
  color: #ff9800;
  font-size: 32px;
  margin-bottom: 5px;

}

.joinus{
  font-size: 20px;
  margin-bottom: 40px;
}

.joincards {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;

  
}

.card {
  padding: 25px;
  border-radius: 12px;
  text-align: left;
  position: relative;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);

}

.card i {
  font-size: 28px;
  display: block;
  margin-bottom: 15px;

}

.card h3{
  font-size: 20px;
  margin-bottom: 10px;
}
.card p {
  font-size: 16px;
  line-height: 1.6;
}

.blue { 
  background: linear-gradient(135deg, #0033cc, #86a2f6); 
}
.green { 
  background: linear-gradient(135deg, #006666, #79fafa); 
}
.orange { 
  background: linear-gradient(135deg, #ff6600, #f5a875); 
}
.red { 
  background: linear-gradient(135deg, #cc0000, #f86363); 
}

@media (max-width: 900px) {
  .joincards {
    grid-template-columns: repeat(2, 1fr);
  }

  .card {
    padding: 20px;
  }
}

@media (max-width: 600px) {
  .joincards {
    grid-template-columns: 1fr;
  }

  .card {
    padding: 18px;
    font-size: 14px;
    max-width: 90%;
    margin: 0 auto;
  }
}


/* service gallery */

/* Gallery Section */
.gallery {
  padding: 80px 10%;
  /* background: #f9f9f9; */
  text-align: center;
}

.galltext h1 {
  font-size: 36px;
  font-weight: 800;
  color: white;
  margin-bottom: 15px;
}

.galltext span {
  color: #f8ba00; 
}

.galltext p {
  font-size: 18px;
  color: white;
  max-width: 600px;
  margin: 0 auto;
}

/* Image Grid */
.imgimg {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Images */
.imgimg img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

/* Hover effect */
.imgimg img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.25);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .gallery {
    padding: 60px 5%;
  }

  .galltext h1 {
    font-size: 28px;
  }

  .imgimg img {
    height: 200px;
  }
}


/* .span3{
  color: #ff9800; 
}
.gallery{
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px;
}
.imgimg{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 5px;
    
}
.imgimg img{
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  transition: tranform 0.8s ease, box-shadow 0.8s;
}

.imgimg img:hover {
  transform:scale(1.05);
  transition: 2s;
  cursor: pointer;
}
@media (max-width: 768px) {
  .image-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .image-grid {
    grid-template-columns: 1fr;
  }
} */

/* section contact */
.contact{
  font-family: 'Poppins', sans-serif;
  display: flex;
  justify-content: center;
  margin: 0;
}
.contactbox {
  background-color: #1ab3a5;
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  color: white;
  width: 500px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.contactbox h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
}
.contactbox p {
  font-size: 16px;
  margin-bottom: 25px;
}
.contactbtn {
  background-color: #ff4d4d;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s ease;
  }
   
 .contactbtn:hover {
  background-color: #e63c3c;
}
.contactpro{
  font-size: 15px;
  font-weight: bold;
}
    
.span4 {
  color: #ff9800; 
}
.contactpro h1{
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px;
    
}

@media (max-width: 768px) {
  .contactbox {
    width: 90%;
    padding: 30px;
  }

  .contactbox h2 {
    font-size: 24px;
  }

  .contactbox p {
    font-size: 15px;
  }

  .contactbtn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .contactpro h1 {
    font-size: 22px;
    padding: 20px 10px;
  }
}

@media (max-width: 480px) {
  .contact {
    flex-direction: column;
    padding: 15px;
  }

  .contactbox {
    width: 100%;
    padding: 20px;
  }

  .contactbox h2 {
    font-size: 20px;
  }

  .contactbox p {
    font-size: 14px;
  }

  .contactbtn {
    padding: 8px 16px;
    font-size: 13px;
  }

  .contactpro h1 {
    font-size: 20px;
  }
}


/* section footer  */

.footer {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
              url("./image/success1.jpg") no-repeat center center fixed;
  background-size: cover;
}
.footer{
  padding: 40px 155px;
}
.footer{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  /* max-width: 1100px; */
  margin: auto;
}

.foottext h3{
  margin-bottom: 15px;
  font-size: 18px;
}

.foottext ul{
  list-style: none;

}


.foottext ul li{
  margin-bottom: 10px;
}
.foottext ul li:hover{
  color: #B12C00;
  cursor: pointer;
}
.aa{
  text-decoration: none;
  background-color: #B12C00;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  color: white;
  font-weight: 600;
}
.subscribe p.sub{
  color: #B12C00;
  margin-top: 15px;
}

.subscribe form{
  display: flex;

}

.subscribe input{
  padding: 10px;    
  width: 70%;
  border-radius: 4px 0 0 4px;
}
.subscribe button{
  background-color: #B12C00;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 0 4px 4px 0;
  font-weight: bold;
}
.subscribe button:hover{
  background-color: #B12C00;
  cursor: pointer;
}
.contactfoot p{
  margin-bottom: 8px;
  color: white;

}
.contactfoot i{
  margin-right: 8px;
  color: #B12C00;
}
.bottom{
  width: 100%;
  max-width: 1200px;
  margin-top: 30px;
  border-top: 1px solid gray;
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}



.bottom p{
  font-size: 14px;

}
.icons a{
  margin: 0 8px;
  font-size: 18px;
  transition: color 0.3s;
  color: white;

}
.icons a:hover{
  cursor: pointer;
  color: #B12C00;
}

@media (max-width: 992px) {
  .footer {
    padding: 40px 60px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .subscribe form {
    flex-direction: column;
    width: 100%;
  }

  .subscribe input {
    width: 100%;
    border-radius: 4px;
    margin-bottom: 10px;
  }

  .subscribe button {
    width: 100%;
    border-radius: 4px;
  }

  .bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}

@media (max-width: 600px) {
  .footer {
    padding: 30px 20px;
    gap: 20px;
  }

  .foottext h3 {
    font-size: 16px;
  }

  .foottext ul li {
    font-size: 14px;
  }

  .subscribe h3 {
    font-size: 16px;
  }

  .subscribe input {
    font-size: 14px;
    padding: 8px;
  }

  .subscribe button {
    font-size: 14px;
    padding: 8px;
  }

  .contactfoot p {
    font-size: 14px;
  }

  .bottom p {
    font-size: 12px;
  }

  .icons a {
    font-size: 16px;
    margin: 0 6px;
  }
}
