* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
}

a{
  text-decoration: none;
}

.btn {
  display: inline-block;
  background: #00bcd4;
  color: white;
  text-decoration: none;
  padding: 12px 30px;
  border-radius: 5px;
  margin-top: 20px;
  font-weight: 500;
  transition: transform 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.navbar {
  background: linear-gradient(to right, #1f1471, #06014b);
  height: 70px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.offer-banner {
  width: 100%;
  background-color: #00bfff;
}

.sub-navbar {
  width: 95%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}

.logo-container {
  /* background-color: #00c3ff; */
  width: 12%;
  height: auto;
  display: flex;
  /* justify-content: flex-end; */
  align-items: center;
}

.logo-container p {
  margin-left: 10px;
}

.logo {
  width: auto;
  height: 100px;
}

.menu-container {
  width: 70%;
  display: flex;
  justify-content: center;
}

.menu {
  width: 60%;
  display: flex;
  justify-content: space-between;
}

.menu a {
  text-decoration: none;
  color: white;
  font-size: 16px;
  transition: color 0.3s;
}

.navbar .menu a:hover {
  color: #00bfff;
}

.cnt-btn-container {
  width: 12%;
  height: auto;
  display: flex;
  justify-content: center;
}

.contact-btn {
  display: inline-block;
  padding: 1rem 1.5rem;
  background-color: #00bcd4;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  transition: transform 0.3s ease;
}

.contact-btn:hover {
  transform: translateY(-2px);
}

/* Hamburger Menu Styles */
.hamburger {
  display: none;
  cursor: pointer;
  padding: 10px;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* Add overflow hidden to body when menu is open */
body.menu-open {
  overflow: hidden;
}

/* Hide mobile contact button by default */
.mobile-contact-btn {
  display: none;
}

.hero {
  /* background-color: white; */
  width: 100%;
  height: 550px;
  color: white;
  background: linear-gradient(to right, #1f1471, #06014b);
  display: flex;
  justify-content: center;
  align-items: center;

}

/* .hero img {
  width: 100%;
  height: 100vh;
} */

.hero-content {
  /* background-color: #00bcd4; */
  /* position: absolute;
  top: 0; */
  width: 95%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-text {
  width: 40%;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.hero-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #00bcd4;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  transition: transform 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
}

.hero-content img {
  /* height: 40%; */
  width: 550px;
  margin-right: 100px;
  animation: bounce 3s infinite ease-in-out;
  /* align-self: flex-start; */
margin-bottom: 100px;
}

@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(100px);
  }

  100% {
    transform: translateY(0);
  }
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}

.services-title {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.services-title span {
  color: #00bcd4;
}

.services-description {
  color: #666;
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

.service-box {
  border: 2px solid #00bcd4;
  /* background: #ffffff; */
  padding: 30px;
  border-radius: 8px;
  transition: transform 0.3s;
}

.service-box:hover {
  transform: translateY(-5px);
}

/* .service-box.hidden {
  display: none;
} */

.service-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
}

.service-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #333;
}

.service-description {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* .read-more {
  color: #003366;
  text-decoration: none;
  font-weight: bold;
} */

/* .view-all-btn {
  background: #00bcd4;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1em;
  transition: transform 0.3s ease;
}

.view-all-btn:hover {
  transform: translateY(-2px);
} */

.whyus-title {
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 30px;
  margin-top: 50px;
  text-align: center;
}

.highlight {
  color: #00bcd4;
}

.whyus-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 50px;
}
.box {
  width: 300px;
  text-align: center;
}
.icon {
  width: 100px;
  height: 100px;
  border: 3px solid #001a33;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.icon img {
  width: 50px;
}
.title {
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 10px;
}
.description {
  color: #333;
}

/* About */

.new_about {
  background: linear-gradient(to right, #1f1471, #06014b);
  padding: 60px 0;
  color: white;
}

.about_container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  gap: 40px;
}

.about_image_box {
  width: 45%;
}

.about_image_box img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.about_content_box {
  width: 45%;
}

.about_main_title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 15px;
  color: white;
}

.highlight_text {
  color: #00bcd4;
}

.about_subtitle {
  font-size: 16px;
  color: #ccc;
  margin-bottom: 30px;
}

.about_text_content h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: white;
}

.about_text_content p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #f5f5f5;
  text-align: justify;
}


/* contact  */
.contact_area {
  background: linear-gradient(to right, #1f1471, #06014b);
  padding: 60px 0;
  color: white;
}

.contact_wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-evenly;
  align-items: center;
  padding: 0 20px;
  gap: 40px;
}

.contact_image {
  width: 45%;
}

.contact_image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.contact_info {
  width: 45%;
}

.contact_heading {
  font-size: 36px;
  color: #00bcd4;
  margin-bottom: 40px;
  font-weight: bold;
}

.info_item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.info_icon {
  background-color: #2a1f7d;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info_icon i {
  color: #00bcd4;
  font-size: 20px;
}

.info_content h3 {
  font-size: 20px;
  margin-bottom: 5px;
  font-weight: 600;
}

.info_content p {
  color: #ccc;
  font-size: 16px;
}

.social_section {
  margin-top: 40px;
}

.social_section h3 {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 600;
}

.cnt-social_links {
  display: flex;
  gap: 15px;
}

.cnt-social-icon {
  background-color: #2a1f7d;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cnt-social-icon:hover {
  background: #00bcd4;
  transform: translateY(-3px);
}

.cnt-us-now-btn {
  display: inline-block;
  background: #00bcd4;
  color: white;
  text-decoration: none;
  text-align: center;
  padding: 12px 30px;
  border-radius: 5px;
  margin-top: 20px;
  font-weight: 500;
  transition: transform 0.3s ease;
}

.cnt-us-now-btn:hover {
  transform: translateY(-2px);
}

/* footer   */

.footer {
  border-top: 2px solid #4cc9f0;
  background: linear-gradient(to right, #1f1471, #06014b);
  color: white;
  padding: 40px 80px;
  font-family: Arial, sans-serif;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr 1.5fr;
  gap: 40px;
}

.brand-section {
  max-width: 400px;
}

.brand-section img {
  height: 100px;
}

.brand-description {
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.5;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  color: white;
  font-size: 18px;
  text-decoration: none;
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.heading-line {
  width: 25px;
  height: 1px;
  background-color: #4cc9f0;
}

.section-heading h3 {
  color: white;
  font-size: 16px;
  margin: 0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  margin-left: 10px;
}

.footer-contact-details {
  font-size: 14px;
  line-height: 1.8;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
}

.footer-contact-item i {
  color: #4cc9f0;
  margin-top: 4px;
}

.newsletter-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.newsletter-form input {
  width: 100%;
  padding: 8px 12px;
  border-radius: 4px;
  border: none;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
}

.newsletter-form button {
  width: 100%;
  height: 30px;

  background: #00bcd4;
  color: white;
  border: none;

  border-radius: 5px;
  cursor: pointer;
  font-size: 1em;
  transition: transform 0.3s ease;
}

.newsletter-form button:hover {
  transform: translateY(-2px);
}

.newsletter p {
  font-size: 14px;
  margin-top: 10px;
  color: #cccccc;
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(93, 89, 89, 0.4);
  display: flex;
  justify-content: center;
  font-size: 12px;
}


@media screen and (max-width: 1400px) {
.hero-content img{
  width: 40%;
}

}
/* Media Queries */
@media screen and (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .whyus-container {
    flex-wrap: wrap;
  }

  .box {
    width: calc(50% - 30px);
  }

  .cnt-btn-container {
    width: 22%;
  }
}

@media screen and (max-width: 992px) {
  .sub-navbar {
    width: 100%;
    padding: 0 20px;
  }

  .logo-container {
    width: 20%;
  }

  .menu-container {
    width: 60%;
  }

  .menu {
    width: 100%;
  }

  .cnt-btn-container {
    width: 20%;
  }

  .hero-text h1 {
    font-size: 2.8rem;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .about_container {
    flex-direction: column;
  }

  .about_image_box,
  .about_content_box {
    width: 80%;
  }

  .about_image_box img {
    margin-bottom: 30px;
  }

  .about_main_title {
    text-align: center;
  }

  .about_subtitle {
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .navbar {
    height: auto;
    padding: 15px 0;
  }

  .hamburger {
    display: block;
  }

  .menu-container {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: linear-gradient(to right, #1f1471, #06014b);
    transition: 0.3s;
    z-index: 1000;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .menu-container.active {
    left: 0;
  }

  .menu {
    flex-direction: column;
    align-items: center;
    padding: 40px 0;
    margin-bottom: 20px;
  }

  .menu a {
    margin: 15px 0;
    font-size: 20px;
  }

  /* Hide original contact button and show mobile version */
  .cnt-btn-container {
    display: none;
  }

  .mobile-contact-btn {
    display: block;
    margin-top: 20px;
  }

  .mobile-contact-btn .contact-btn {
    font-size: 18px;
    padding: 15px 30px;
  }

  .hiding-banner{
    display: none;
  }

  .hero {
    height: 900px;
  }

 

  .hero-content {
    flex-direction: column;
    align-items: center;
    /* padding: 40px 20px; */
  }

  .hero-text {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
  }

  .hero-text h1 {
    font-size: 2.2rem;
  }

  .hero-content img {
    width: 80%;
    margin-right: 0;
  }
/* 
  .services-container {
    margin-top: 300px;
  } */

  .services-grid {
    grid-template-columns: 1fr;
  }

  .whyus-container {
    padding: 20px;
  }

  .box {
    width: 100%;
  }

  .footer {
    padding: 40px 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .about_image_box,
  .about_content_box {
    width: 100%;
  }

  .about_main_title {
    font-size: 30px;
  }

  .about_text_content h3 {
    font-size: 20px;
    text-align: center;
  }

  .contact_wrapper {
    flex-direction: column;
  }

  .contact_image,
  .contact_info {
    width: 100%;
  }

  .contact_image {
    margin-bottom: 40px;
  }

  .contact_heading {
    text-align: center;
    font-size: 30px;
  }
}

@media screen and (max-width: 480px) {
  .logo-container p {
    display: none;
  }

  .hero {
    height: 750px;
  }

  .hero-text h1 {
    font-size: 1.8rem;
  }

  .services-title {
    font-size: 2em;
  }

  .new_about {
    padding: 40px 0;
  }

  .about_container {
    padding: 0 15px;
  }

  .about_main_title {
    font-size: 26px;
  }

  .about_subtitle {
    font-size: 14px;
  }

  .about_text_content p {
    font-size: 13px;
  }

  .info_item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .cnt-us-now-btn {
    display: block;
    margin: 20px auto; /* Centers the button horizontally */
  }

  .social_section {
    text-align: center;
  }

  .cnt-social_links {
    justify-content: center;
  }
}
