@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "poppins", sans-serif;
    line-height: 1.6;
    scroll-behavior: smooth;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  
  /* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 60px; /* increased padding for more height and side gap */
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
   /* border-radius: 50px; /* added radius for rounded corners */
    /*   margin: 10px; /* optional: adds space around navbar */
    transition: background-color 0.s ease;
}
  
  /* Logo */
  .logo {
    display: flex;
    justify-content: center; /* Horizontally centers the content */
    align-items: center; /* Vertically centers the content */
  }
  
  .logo img {
    max-width: 100%; /* Ensures the logo is responsive */
    height: auto; /* Maintains the aspect ratio of the image */
    width: 220px; /* Adjust this value to control the logo size */
  }
  
  /* Navigation Links */
  .nav-links {
    display: flex;
    gap: 30px;
    flex-grow: 1;
    justify-content: center;
  }
  
  .nav-links a {
    font-size: 18px;
    color: #1e40af;
    font-weight: 650;
    text-decoration: none;
    transition: font-weight 0.3s ease, color 0.3s ease, transform 0.3s ease, font-size 0.3s ease;
  }
  
  .nav-links a:hover {
    font-weight: bold;
    font-size: 19px;
    color: #e11d48;
    transform: translateY(-3px);
  }

  .header-right-box {
    display: flex;
    margin-right: 30px;
    align-items: center;
    padding: 15px 25px;
    border-radius: 10px;
    max-width: 400px;
    gap: 15px;
  }
  
  .header-right-icon svg {
    width: 40px;
    height: 40px;
    fill:  #1e40af;
    transition: transform 0.3s ease;
  }
  
  .header-right-icon svg:hover {
    transform: scale(1.1); /* Slight zoom on hover */
    fill: #e11d48;
  }
  
  .header-right-content span {
    font-style: normal;
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #555;
  }
  
  .header-right-content h4 {
    margin: 0px 0 0;
  }
  
  .header-right-content h4 a {
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    color: #1e40af;
    transition: color 0.3s ease, text-decoration 0.3s ease;
  }
  
  .header-right-content h4 a:hover {
    font-weight: bold;
    font-size: 18px;
    color: #e11d48;
    }
    .header-right-icon img {
      color: #d61818;
      width: 40px;
      height: 40px;
      transition: transform 0.3s ease;
    }
    
    .header-right-icon a:hover img {
      transform: scale(1.1);
    }
    
  /* Contact Button 
  .contact-btn a {
    background-color: #1e3a8a;
    color: #ffffff;
    padding: 12px 24px;
    border: 2px solid #1e40af;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s, transform 0.3s, box-shadow 0.3s ease-in-out;
  }
  
  .contact-btn a:hover {
    background-color: #e11d48;
    color: #ffffff;
    border-color: #e11d48;
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  }
  */
  
  
  /* Hamburger Menu */
  .hamburger {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
  }
  
/* Slider Styles */
.slider-wrapper {
  position: relative;
  width: 100%;
  height: 80vh; /* Adjust height */
  margin: auto;
  overflow: hidden;
}

.slider {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.slider::after {
  content: "";
  display: table;
  clear: both;
}

.slide-wrapper {
  position: relative;
  display: block;
  width: 100%;
  height: 100vh; /* keeps layout stable */
  overflow: hidden;
 
}

.slides-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  will-change: transform;
  
}

/* Navigation text container */
.slide-navigation__txt {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0 auto 20px;
  flex-wrap: wrap;
  gap: 15px;
  backface-visibility: hidden;
   margin-top: 10px;
}

/* Remove default bullets & make side by side */
.slide-navigation__txt ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  padding: 0;
  margin: 0;
}

.slide-navigation__txt li {
  display: inline-block; /* horizontal layout */
  letter-spacing: 1px;
  font-size: 13px;
  font-weight: 700;
  color: #6c6e77;
}

/* Clickable text */
.slide-navigation__txt li span {
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
  display: inline-block;
}

.slide-navigation__txt li span.active {
  transform: scale(1.1);
  color: #df0000;
  font-weight: 800;
}


/* Slide */
.slide { 
  position: absolute; 
  display: flex; 
  flex-direction: column; 
  justify-content: center; 
  align-items: center; 
  width: 100%; /* Full width */ 
  height: 100%; /* Full height */ 
  opacity: 0; 
  visibility: hidden; 
  overflow: hidden; 
  z-index: 1; 
}
/* Active Slide */
.slide.active {
   opacity: 1;
    visibility: visible; 
    z-index: 5; 
    transition: opacity 0.05s ease-in-out;
   }

/* Slide Image Smooth Transition */
.slide img { 
  width: 100%; /* Fill the screen width */ 
  height: 100%; /* Fill the screen height */
  object-fit: cover; /* Ensure the image covers the screen */ }



.slide-content {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.slide-content h1 {
  text-transform: uppercase;
  color: rgb(255, 255, 255);
  text-shadow: 8px 8px 3px rgba(0, 0, 0, 0.5);
  font-weight: 900;
  font-size: 120px;
  text-align: center;
  opacity: 0.8;
  position: relative;
  z-index: 2;
}

.slide-content h2 {
  color: #d61818;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-size: 50px;
  max-width: 80%;
  margin: 0;
  margin-top: -10px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}

.slide-txt {
  position: relative;
  display: block;
  width: 100%;
  margin-top: 20px;
  text-align: center;
  z-index: 0;
}

.slide-txt p {
  margin: 0 auto;
  max-width: 60%;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 1.4;
}

/* Active Slide */
.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 5;
}

/* Responsive Adjustments for 10 Slides */
@media screen and (max-width: 1200px) {
  .slide-content h1 {
    font-size: 90px;
  }
  .slide-content h2 {
    font-size: 40px;
  }
  .slide-txt p {
    font-size: 1rem;
    max-width: 70%;
  }
}

@media screen and (max-width: 860px) {
  .slide-content h1 {
    font-size: 60px;
  }
  .slide-content h2 {
    font-size: 30px;
  }
  .slide-txt p {
    font-size: 0.9rem;
    max-width: 90%;
  }
  .slide-navigation__txt {
    margin-bottom: 10px;
  }
  .slide-navigation__txt li {
    font-size: 12px;
  }
  .slide-navigation__txt li span.active {
    font-size: 13px;
  }
}

@media screen and (max-width: 480px) {
  .slide-content h1 {
    font-size: 40px;
  }
  .slide-content h2 {
    font-size: 20px;
  }
  .slide-txt p {
    font-size: 0.8rem;
    max-width: 95%;
  }
}

/* === GENERAL CONTAINER === */
.container {
  width: 100%;
  padding: 60px 150px;
  box-sizing: border-box;
}

/* === ABOUT SECTION === */


.about-section {
  background-color: #ffffff;
}

.about-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: fixed;
  margin-bottom: 50px;
}

/* Reverse layout for even blocks */
.about-block.reverse {
  flex-direction: row-reverse;
}

/* === TEXT CONTENT === */
.text-content {
  max-width: 800px;


}

.text-content h3 {
  color: #0a0a23;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.text-content h1 {
  font-size: 18px;
  font-family: "Lucida Handwriting";
  color: red;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.3;
}

.text-content p {
  font-size: 17px;
  line-height: 1.6;
  color: #000;
  text-align: justify;
  margin-bottom: 10px;
}

/* === READ MORE BUTTON === */
.btn-wrapper {
  margin-top: 10px;
}

.read-more {
  text-decoration: none;
  color: #1e40af;
  font-weight: 500;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.read-more:hover {
  color: #0e2369;
  transform: translateX(5px);
}

/* === IMAGE CONTENT === */
.image-content {
  flex-shrink: 0;
}

.image-wrapper {
  width: 500px;
  height: 340px;
  overflow: hidden;
  border-top-left-radius: 180px;
  border-bottom-left-radius: 180px;
}

.reverse .image-wrapper {
  border-top-right-radius: 180px;
  border-bottom-right-radius: 180px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* === HIDDEN TEXT === */
.more-text {
  display: none;
}

.show {
  display: inline;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1000px) {
  .container {
    padding: 60px 40px;
  }

  .about-block {
    flex-direction: column;
    text-align: center;
  }

  .about-block.reverse {
    flex-direction: column;
  }

  .image-wrapper {
    width: 100%;
    height: 240px;
    border-radius: 25px;
    margin-top: 20px;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 40px 20px;
  }
}

.card-slider-section {
  text-align: center;
  padding: 10px 0;
}

/* Container to hold heading and cards */
.card-slider-container {
  display: flex;
  flex-direction: column; /* stack heading and cards vertically */
  align-items: center;    /* center horizontally */
  justify-content: flex-start;
  padding: 50px 20px;    /* optional spacing around */
}

/* Slider Heading */
.slider-heading {
  text-align: center;
  color: #000000;
  font-size: 2rem;
  margin-bottom: 40px; /* space between heading and cards */
  font-weight: 600;
  letter-spacing: 1px;
}

.card-slider {
  display: flex;
  align-items: flex-start; /* Align cards at the top to remove extra bottom space */
  justify-content: center;
  gap: 30px;
  padding: 0;   /* Remove extra padding */
  transition: all 0.3s ease;
}

.card {
  position: relative;
  width: 200px;
  height: 280px;
  border-radius: 15px;
  overflow: hidden;
  background-size: contain;      
  background-position: center;
  background-repeat: no-repeat; 
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
  margin: 0;       /* Ensure no margin below cards */
  padding: 0;      /* Ensure no padding inside card affecting layout */
  display: flex;   /* Optional: if you want to center content inside card */
  align-items: center; 
  justify-content: center;
}


.card h2 {
  position: absolute;
  bottom: 15px;       /* distance from bottom */
  left: 50%;          /* start from center horizontally */
  transform: translateX(-50%); /* shift back by 50% of its width to truly center */
  color: #000000;
  font-size: 1rem;
  letter-spacing: 1px;
  text-align: center;
}
.card:hover {
  transform: translateY(-8px);
}

.card.active {
  width: 240px;
  height: 320px;
  box-shadow: 0 15px 25px rgba(0,0,0,0.6);
  z-index: 5;
}


/*CSS For Contact Form Starts here*/
.contact-container {
  display: flex;
  justify-content: center; 
  align-items: center;
  border-radius: 20px;
  padding: 1.5% 5%;
  column-gap: 70px;
  background-color: #f9f9f9;
  max-width: 1050px;
  width: 100%;
  height: auto;
  margin: 40px auto 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Add this line */
}

/* Form Styles */
.contact-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-inputs {
  width: 400px;
  height: 42px;
  border: none;
  outline: none;
  padding-left: 25px;
  font-family: 'poppins';
  font-size: 14px;
  font-weight: 600;
  color: #666;
  border-radius: 20px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.contact-left textarea {
  height: 170px;
  padding-top: 10px;
  resize: vertical;
}

.contact-inputs:focus {
  border: 1.2px solid #ff994f;
}

.contact-inputs::placeholder {
  color: #a9a9a9;
}

.contact-left button {
  width: 80px;
  height: 36px;
  background: #1e40af;
  color: white;
  border: none;
  text-align: center;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  border-radius: 16px;
  transition: background 0.3s;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.contact-left button:hover {
  background: #990b0b;
}


/* Contact Info Styles */
.contact-info h2 {
  font-size: 28px;
  font-weight: 850;
  color: #1e40af;
  margin-bottom: 5px;
}

.company {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

.info-block {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-size: 14px;
}

.icon {
  background: #1e40af;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block; /* <--- This helps center it */
}

.icon:hover {
  background: #d61818;
  cursor: pointer;
}

/* Google Maps Container */
.map-container {
  margin-top: 3rem;
  margin-bottom: 3rem;
  max-width: 1050px;
  width: 100%; /* Make it a bit smaller */
  height: 520px; /* Adjust as needed */
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.map-container iframe {
  border-radius: 10px;
  width: 100%;
  height: 100%;
}

/*CSS for contcat form ends here*/

/* Footer Section CSS Starts Here*/
.footer {
  background-color: rgba(255, 255, 255, 0.1); /* semi-transparent white */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); /* for Safari support */
  padding: 1rem 1rem;
  text-align: center;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 0.5rem;
}

.social-icons img {
  width: 24px;
  height: 24px;
  transition: transform 0.2s ease, opacity 0.2s ease;
  cursor: pointer;
}

.social-icons img:hover {
  transform: scale(1.2);
  opacity: 0.8;
}

footer p {
  color: #9ca3af; /* Tailwind's gray-400 */
  font-size: 0.875rem;
}
/* Footer Section CSS Ends Here*/
