/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Satisfy&display=swap");

* {
   margin: 0; 
   padding: 0; 
   box-sizing: border-box; 
   
}


body { 
  font-family: 'Times New Roman', Times, serif;
 }

/* Navbar */
.nav-bar {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  height: 50px;
  background-color: #fff;
  box-shadow: 3px 3px 10px lightslategray;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 0;
  z-index: 1;
  border: 3px solid black;
  margin-bottom: 3px;
}

.logo {
  flex: 1;
  font-size: 40px;
  margin-left: 50px;
  font-family: Satisfy;
}

ul.menu {
  flex: 1;
  display: flex;
  flex-flow: row wrap;
}

.menu li {
  flex: 1;
  list-style-type: none;
  font-size: 16px;
  font-family: "Barlow Condensed";
  text-align: center;
}

.menu li a {
  text-decoration: none;
  color: #000;
  text-transform: uppercase;
  font-size: 18px;
}

.menu li a:hover {
  color: rgb(69, 69, 225);
  text-decoration: underline;
}

/* Hamburger icon */
.menu-toggle {
  display: none;
  position: fixed;
  top: 18px;
  right: 40px;
  font-size: 30px;
  color: #000;
  cursor: pointer;
  z-index: 1100;
}

/* Image Slider */
#Home { 
  width: 100%; 
  overflow: hidden;
 }

.slider { 
  width: 100%; 
  position: relative; 
  overflow: hidden;
  }


.slider input {
   display: none; 
}

.sider input:hover{
  cursor: pointer;
}

.slides{
  display: flex;
  width: 700%;
  will-change: transform;
}

.slides .img {
  width: 100%;
  height: 718px;
  border: 5 px solid black;
  object-fit: cover;
  border: 2px solid black;
  animation: slide 20s ease-in-out infinite;
}

@keyframes slide {
  0%   { transform: translateX(0%); }
  20%  { transform: translateX(0%); }

  20%  { transform: translateX(-100%); }
  40% { transform: translateX(-100%); }

  40%  { transform: translateX(-200%); }
  60%  { transform: translateX(-200%); }

  60%  { transform: translateX(-300%); }
  80%  { transform: translateX(-300%); }

  80%  { transform: translateX(-400%); }
  100%  { transform: translateX(-400%); }

}

#s1:checked ~ .slides { margin-left: 0%; }
#s2:checked ~ .slides { margin-left: -100%; }
#s3:checked ~ .slides { margin-left: -200%; }
#s4:checked ~ .slides { margin-left: -300%; }
#s5:checked ~ .slides { margin-left: -400%; }
#s6:checked ~ .slides { margin-left: -500%; }

/* Dot Controls */
.dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
  position: relative;
}


.dots label {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: black;
  cursor: pointer;
  transition: 0.3s;
}

.dots label:hover 
{ 
  background: gold; 
}

/* <!Phone and Whatsapp --> */
.contact-icons {
  position: fixed;
  right: 30px;
  bottom: 100px;
  display: flex;
  gap: 20px;
  z-index: 999;
}

.contact-icons a img {
  width: 50px;
  height: 50px;
  background-color: black ;
  border-radius: 20%;
  border: 2px solid white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  animation: bounce 1s ease-in-out 2s infinite;
}

.contact-icons a img:hover {
  transform: scale(1.1);
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);

  }
}

/* ======================== Places Section ========================= */
/* Places Section */
#places { 
  padding: 50px 20px; 
}


.places-text {
   text-align: center;
    margin-bottom: 40px; 
    font-size: 20px;
}


.places-text h2 {
   font-size: 50px; 
   color: #003d9e;
}

.places-text p {
  font-size: 25px;
  font-weight: 700;
  font-style: oblique;
  font-family: 'Times New Roman', Times, serif;
  color: #c4c408;
  margin-top: 10px;
  text-align: left;
  margin-left: 60px;
}

.places-text p span {
  color: rgb(231, 15, 15);
}

.places-text p strike {
  color: rgb(227, 25, 11);
}

.places-text p i {
  color: rgb(8, 156, 57);
  margin-left: 10px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  padding: 0 40px;
}


.card {
  border-radius: 10px;
  text-align: center;
  padding: 20px;
  border: 2px solid gray;
  box-shadow: 10px 5px 10px rgba(0,0,0,0.2);
  height: 550px;
}

.card:hover{
  border: 2px solid orange;
}


.card img { 
  width: 100%; 
  height: 300px; 
  border-radius: 10px; 
  border: 2px solid black;
}

.card img:hover {
  transform: scale(1.05);
  transition: 0.3s;
}

.card a {
  text-decoration: none;
  font-size: 20px;
  color: darkblue;
  font-weight: bold;
}
.card a:hover {
  text-decoration: underline;
  color: orange;
}

.card h2{
  font-size: 25px;
  padding: 15px;
  font-family: 'Times New Roman', Times, serif;
}

.card p{
  padding: 10px;
}


/*=========================About Us=========================*/
#about {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  padding: 100px;
}


.about-img {
  flex: 1;
}

.about-img img {
  width: 550px;
  height: 700px;
  box-shadow: 2px 2px 6px 0 rgba(0, 0, 0, 0.3);
  border: 2px solid black;
}

.about-text {
  flex: 1;
  /*width: 100px;*/
  display: flex;
  flex-flow: column wrap;
  font-family: 'Times New Roman', Times, serif;
  font-weight: 500;
}

.about-text small{
  font-size: 25px;
}



.about-text p,
.about-text input,
.about-text a {
  flex: 1;
  font-family: Roboto;
  font-size: px;
  color:#000;
}

.about-text small {
  color: #f8ab07;
  font-size: 22px;
  font-weight: 900;
}

.about-text h2 {
  flex: 1;
  font-family: Barlow Condensed;
  font-size: 60px;
  color: #191d34;
  width: 450px;
}

.about-text label {
  padding-bottom: 10px;
  color: #506172;
  font-weight: bolder;
  font-family: Roboto;
  letter-spacing: 1px;
}

.about-text p {
  width: 500px;
  line-height: 30px;
  color: #506172;
  font-weight: bolder;
  padding: 50px 0;
}

.about-text a {
  background-color: #fff;
  border: 2px solid #014b85;
  text-decoration: none;
  border-radius: 5px;
  width: 180px;
  padding: 20px;
  text-align: center;
  margin-top: 50px;
  color: #014b85;
  font-weight: bolder;
  font-size: 14px;
}

.about-text a:hover {
  background-color: #014b85;
  color: #fff;
  border: 2px solid black ;
}

/*Service Section*/
/* Services Section Styling */
.services {
    max-width: 1300px;       /* Full big laptop width */
    width: 100%;
    margin: auto;
    margin-bottom: 80px;
    display: flex;
    justify-content: center;
    gap: 100px;
    padding: 50px 20px;
    background: #f3f8ff;
    flex-wrap: wrap;
}

/* Each Service Card */
.service-item {
    background: #ffffff;
    flex: 1 1 420px;        /* Auto adjust width */
    max-width: 1800px;       /* Largest card width */
    height: 550px;
    padding: 35px 30px;
    border-radius: 18px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    transition: .4s;
    border-top: 5px solid #0066ff;
}

/* Hover Effect */
.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.20);
}

#service-item-1 {
    background: #ffffff;
    flex: 1 1 420px;        /* Auto adjust width */
    max-width: 1800px;       /* Largest card width */
    height: 1000px;
    padding: 35px 30px;
    border-radius: 18px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    transition: .4s;
    border-top: 5px solid #0066ff;
}


#service-item-1 h2{
    font-size: 30px;
    font-weight: 700;
    color: #003d9e;
    margin-bottom: 18px;
    text-align: center;
} 

#service-item-1 p{
    font-size: 22px;
    padding-top: 10px;
    margin: 8px 0;
    font-weight: 500;
    color: #333;
    text-align: center;
    color: #003d9e;
    font-weight: 700;
    text-decoration: underline;
}

#service-item-1 p span{
    color: #ff7d00;
}

#service-item-1 ul{
    margin-top: 20px;
    list-style-type: square;
    padding-left: 20px;
    font-size: 20px;
    color: #333;
    font-weight: 500;
}

#service-item-1 i {
    color: #ff7d00;
    margin-left: 6px;
}

#service-item-1:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.20);
}

/* Heading */
.service-item h2 {
    font-size: 40px;
    font-weight: 700;
    color: #003d9e;
    margin-bottom: 18px;
    text-align: center;
}

/* Paragraph Text */
.service-item p {
    font-size: 20px;
    padding-top: 10px;
    margin: 8px 0;
    font-weight: 500;
    color: #333;
    text-align: center;
}

/* Icon Colors */
.service-item i {
    color: #ff7d00;
    margin-left: 6px;
}

/* 📱 Responsive */
@media (max-width: 950px) {
    .services {
        gap: 30px;
    }
    .service-item {
        max-width: 90%;
    }
}

@media (max-width: 600px) {
    .service-item h2 {
        font-size: 26px;
    }
    .service-item p {
        font-size: 16px;
    }
}


/* Footer */
/*===============Footer===================*/
#contact{
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 670px;
  position: relative;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
} 
  
#contact h1{
  color:#2668d0;
}

#contact h3{
  color: rgb(240, 24, 24);
  font-size: 25px;
}

#contact::before {
  position: absolute;
  content: "";
  display: block;
  background-color: rgba(0, 0, 36, 0.8);
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

#contact .links {
  position: relative;
  color: #fff;
  flex: 1;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}

.links ul {
  list-style-type: none;
}

.links h3 {
  font-family: Barlow Condensed;
  font-weight: normal;
  font-size: 23px;
  margin-bottom: 15px;
}

.links li {
  font-family: Roboto;
  cursor: pointer;
  padding: 15px 0;
  font-size: 18px;
  font-weight: 900;
  margin-left: 50px;
}

.links li:hover{
  font-size: 19px;
}

.links li a:hover{
  font-size: 18px;
}

.links li a{
  text-decoration: none;
  margin-right: 40px;
  font-size: 17px;
  font-weight:500;
  color: white;
  text-align: justify;
}

.links li a:hover{
  color: #ffa801;
}

.links li:hover {
  color: #ffa801;
}

/* Footer */
  footer {
      background: #000;
      color: #fff;
      text-align: center;
      padding: 20px 10px;
  }

  footer p {
      margin: 0;
      font-size:15px;
      color: #eae2e2;
  }

/* ======================== FULL RESPONSIVE DESIGN ======================== */

/* 🔹 Large Laptop (Below 1300px) */
@media (max-width: 1300px) {
  .about-img img { width: 450px; height: 600px; }
  .about-text h2 { font-size: 48px; }
  .places-text h2 { font-size: 42px; }
}

/* 🔹 Tablet Mode (Below 992px) */
@media (max-width: 992px) {

  /* Navbar */
 .menu-toggle {
    display: block;
  }

  .nav-bar {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 20px;
    height: auto;
  }

  ul.menu {
    width: 100%;
    display: none;
    flex-direction: row;
    justify-content: space-around;
    background: #fff;
    border-top: 2px solid #000;
    margin-top: 10px;
  }

  ul.menu.active {
    display: flex;
  }

  .menu li {
    flex: unset;
    padding: 10px;
  }

  .menu li a {
    font-size: 16px;
  }

  /* Slider */
  .slides .img { height: 450px; animation: none; }

  /* About */
  #about { flex-direction: column; gap: 25px; padding: 60px 20px; }
  .about-img img { width: 100%; height: auto; }
  .about-text h2 { width: 100%; font-size: 40px; text-align: center; }
  .about-text p { width: 100%; padding: 15px 0; text-align: center; }
  .about-text a { margin: auto; }

  /* Services */
  .services { gap: 30px; width: 100%; }
  .service-item { height: auto; padding: 25px 20px; width: 100%; max-width: 100%; }

  /* Footer */
  #contact { height: auto; padding: 20px 0; flex-direction: column; text-align: center;}
}

/* 🔹 Mobile Portrait (Below 600px) */
@media (max-width: 600px) {
  /* Logo */
  .logo { font-size: 28px; }

  /* Header Slider */
  .slides .img { height: 300px;}

  /* Place Cards */
  .places-text p{ font-size: 18px}
  .cards { padding: 0 10px; grid-template-columns: 1fr; }
  .card { height: auto; padding: 10px; }
  .card img { height: 220px; }

  /* About Section */
  .about-text h2 { font-size: 32px; }
  .about-text small { font-size: 18px; }
  .about-text a { width: 150px; font-size: 12px; padding: 14px; }

  /* Services */
  .service-item h2 { font-size: 26px; }
  .service-item p { font-size: 16px; }
  .service-item { padding-bottom: 30px;}

  /* Footer */
  .links h3 { font-size: 18px; }
  .links li { font-size: 16px; margin-left: 0; }

  footer p{
    font-size: 14px;
  }
}

@media (max-width: 412px){
  .service-item { padding-bottom: 30px;}
}

/* 🔹 Very Small Phones (Below 390px) */
@media (max-width: 390px) {
  .logo { font-size: 24px; }
  .about-text h2 { font-size: 28px; }
  .service-item h2 { font-size: 22px; }
}