@font-face {
  font-family: 'Futura Light';
  src: url('https://shevaroyengineers.in/fonts/futuralight.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

body {
  font-family: 'Futura Light';
  font-size: 16px;
  margin: 0;
  padding: 0;
  height: 100%;
  min-height: 100vh;
  background-color: #f5f5f5;
  overflow-x: hidden;
}

header {
  display: flex;
  height: 55px;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: transparent;

  position: fixed;
  width: 98%;
  top: 0;
  z-index: 1000;
  transition: background-color 0.3s;
}

/* style.css */
.company-name {
  font-size: 1.6rem;
  font-weight: 600;
  color: #2c3e50;
  margin-left: 12px;
}
/* Breadcrumb Section */
.breadcrumb {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  background: #0d919d;
  height: 14px;
  margin: 0px;
  font-size: 14px;
  font-weight: 500;
  margin-top: 75px;
}

.breadcrumb a {
  position: relative;
  color: #f9fafc;
  text-decoration: none;
  padding: 6px 10px;

  overflow: hidden;
  z-index: 0;
  transition: color 0.3s ease;
}

/* Create the fill effect using ::before */
.breadcrumb a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #fae01ae2;
  z-index: -1;
  transition: left 0.4s ease;
}

/* On hover, slide the background in */
.breadcrumb a:hover::before {
  left: 0;
}

/* Optional: Change text color on hover */
.breadcrumb a:hover {
  color: #0056b3;
}

.breadcrumb a:not(:last-child)::after {
  content: "⟩";
  margin: 0 8px;
}

.breadcrumb span {
  color: #6c757d;
  padding: 8px 16px;
}

.breadcrumb .current {
  color: #fae01ae2;
  /* Highlight the current page */
  font-weight: bold;
}

/* Additional Styling */
.container {
  margin: 0 auto;
}

.content {
  padding: 10px;
}

logo colour #logo {
  transition: all 0.3s ease;
}

header.scrolled {
  background-color: #f1f3f5;
  opacity: 0.95;
}

header.scrolled .nav-links a {
  color: #06325f;
  /* Change this to your desired color */
}

.logo {
  margin: 50px;
  font-size: 1.5em;
}

.logo-container {
  display: flex;
  flex-direction: column; /* stack logo + tagline vertically */
  align-items: flex-start;
  
}

.logo-tagline {
  margin-top: 42px;          /* small space below logo */
  font-size: 0.70rem;
  font-weight: 600;
  color: #06325f;           /* matches your scrolled nav color */
  letter-spacing: 1px;
  animation: fadeLoop 6s ease-in-out infinite; /* smooth fade in/out */
}

@keyframes fadeLoop {
  0%   { opacity: 0; }
  20%  { opacity: 1; }
  50%  { opacity: 1; }
  80%  { opacity: 0; }
  100% { opacity: 0; }
}


.nav-links {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.nav-links li {
  margin: 0 15px;
}

.nav-links a {
  position: relative;
  display: inline-block;
  color: #1b58dc;
  font-size: 15px;
  text-decoration: none;
  padding: 6px 15px;
  transition: color 0.3s ease;
  overflow: hidden;
  z-index: 0;
}

.nav-links a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background-color: #33d1b4;
  z-index: -1;
  transition: width 0.4s ease;
}

.nav-links a:hover::before {
  width: 100%;
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a.active {
  background-color: #33d1b4;
  color: #fff;
}

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  width: 200px;
  position: absolute;
  background-color: #D3D3D3;
  opacity: 0.8;
  box-shadow: 0 8px 16px rgba(251, 251, 251, 0.2);
  z-index: 1;
  border-radius: 4px;
}

.dropdown-content a {
  color: #051f7d;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #6cbbe0;
  color: #fff;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.menu-icon {
  display: none;
  font-size: 1.5em;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 60px;
    left: 0;
    background-color: #E5E4E2;
  }

  .nav-links li {
    text-align: left;
    margin: 10px 0;
    padding-left: 20px;
  }

  .menu-icon {
    display: block;
    margin-right: 5%;
  }

  .nav-links .dropdown-content {
    left: 100px;
    top: -10px;
  }
}

html {
  scroll-behavior: smooth;
}

/* Change the background color of the navbar when scrolling */
.scrolled {
  background-color: #92cdb0;
}

body {
  font-family: "Futura Light", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #000;
  margin: 0;
  padding: 0;
}

.service-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  /* Increased padding for top and bottom */
  background-color: #15a3e5;
  text-align: center;
  max-width: 100%;
  height: 600px;
  /* Adjusted section height */
  background-size: cover;
  background-position: center;
  transition: background 2s ease-in-out, opacity 1.5s ease-in-out;
  position: relative;
  overflow: hidden;

}

.service-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: -1;
  transition: opacity 2s ease-in-out;
}

.services-title {
  font-size: 40px;
  color: #ffffff;
  margin-bottom: 20px;
  /* Increased margin-bottom */
  text-transform: uppercase;
  letter-spacing: 2px;
}

.dynamic-service {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  /* Increased gap between elements */
}

.service-title,
.service-description {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
  margin: 0;
  padding: 0 10px;
  text-align: center;
}

.service-title.show,
.service-description.show {
  opacity: 1;
  transform: translateY(0);
  
}


.service-title {
  font-size: 26px;
  color: #fff;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.service-description {
  font-size: 16px;
  color: #fff;
  max-width: 100%;
  margin: 0 auto 20px auto;
  /* Increased bottom margin */
  line-height: 1.6;
}

.cta-button {
  position: relative;
  background-color: transparent;
  color: #ffffff;
  padding: 12px 24px;
  font-size: 14px;
  border: 1px solid white;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.3s ease;
  text-decoration: none;
  margin: 0 auto 20px auto;
  overflow: hidden;
  z-index: 1;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #f5901c;
  z-index: -1;
  transition: width 0.4s ease;
}

.cta-button:hover::before {
  width: 100%;
}

.cta-button:hover {
  color: white;
  border-color: #f5901c;
}

.categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 20px;
  color: #fff;
  gap: 15px;
  /* Increased gap */
  margin-top: 30px;
  /* Increased margin-top */
}

.category-item {
  display: inline-block;
  cursor: pointer;
  color: #fff;
  transition: color 0.3s ease;
  padding: 10px 14px;
  /* Increased padding */
  text-decoration: none;
  /* Remove underline */
}

.category-item:hover {
  color: #f5901c;
}


@media (max-width: 768px) {
  .service-section {
    padding: 60px 20px;
    height: 80vh;
  }

  .services-title {
    font-size: 28px;
    margin-bottom: 30px;
    /* Increased margin-bottom */
  }

  .service-title {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .service-description {
    font-size: 14px;
    line-height: 1.4;
  }

  .cta-button {
    padding: 10px 20px;
    font-size: 12px;
    margin-top: 20px;
  }

  .categories {
    font-size: 16px;
    gap: 10px;
    /* Increased gap */
    margin: 0 auto 20px auto;
    /* Increased margin-top */
  }

  .category-item {
    padding: 12px 18px;
    /* Adjusted padding */
  }
   
}

@media (max-width: 480px) {
  .service-section {
    padding: 50px 15px;
    height: auto;
  }

  .services-title {
    font-size: 24px;
    margin-bottom: 30px;
    /* Increased margin-bottom */
  }

  .service-title {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .service-description {
    font-size: 12px;
    line-height: 1.2;
  }

  .cta-button {
    padding: 8px 16px;
    font-size: 10px;
    margin-top: 40px;
  }

  .categories {
    font-size: 12px;
    gap: 10px;
    /* Increased gap */
    margin: 0 auto 20px auto;
    /* Increased margin-top */
  }

  .category-item {
    padding: 14px 18px;
    /* Adjusted padding */
  }
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px;
  background: #E3E3E3;
  color: #134783;
}

.footer-column {
  flex: 1;
  margin-left: 30px;
  margin-right: 30px;
  max-width: 750px;
}

.footer-column h3 {
  border-bottom: 0.5px solid #c1c2cc;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.footer-column p,
.footer-column a {
  margin: 10px 0;
  color: #134783;
  text-decoration: none;
font-size: 15px;
}

.footer-column a:hover {
  text-decoration: underline;
}

.footer-column a i {
  margin-right: 10px;
}

.footer-column a i {
  margin-right: 10px;
}

.footer-column p i {
  margin-right: 10px;
}

.footer-bottom {
  text-align: center;
  padding: 5px;
  background-color: #1c4874;
}

.footer-bottom a {
  color: #f4f4fa;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.footer-logo {
  margin-top: 90px;
}

.footer-logo,
h4,
h5 {
  text-align: center;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: left;
  }

  .footer-logo {
    margin-top: 10px;
  }

  .footer-column {
    margin: 10px 0;
  }
}

.footer-column a i {
  margin-right: 10px;
  transition: color 0.3s;
  padding: 10px;
}

.footer-column a[href*="facebook"]:hover i {
  color: #1877f2;
  /* Facebook Blue */
}

.footer-column a[href*="linkedin"]:hover i {
  color: #0077b5;
  /* LinkedIn Blue */
}

.footer-column a[href*="youtube"]:hover i {
  color: #ff0000;
  /* YouTube Red */
}

.footer-column a[href*="google"]:hover i {
  color: #0f9d58;
  /* YGoogle Green */
}

.footer-column a[href*="instagram"]:hover i {
  color: #E1306C;
  /* Instagram Pink */
}

@media (max-width: 768px) {
  .footer-logo,
  h4,
  h5 {
    text-align: center;
  }
}

#myBtn {
  position: fixed;
  /* Fixed/sticky position */
  bottom: 20px;
  /* Place the button at the bottom of the page */
  right: 35px;
  /* Place the button 30px from the right */
  z-index: 99;
  /* Make sure it does not overlap */
  border: none;
  /* Remove borders */
  outline: none;
  /* Remove outline */
  background-color: transparent;
  /* Set a background color */
  color: #15a3e5;
  /* Text color */
  cursor: pointer;
  /* Add a mouse pointer on hover */
  padding: 10px;
  /* Some padding */
  border-radius: 10px;
  /* Rounded corners */
  font-size: 30px;
  /* Increase font size */
  opacity: 0.8;
  
}




#myBtn:hover {
  color: rgb(16, 103, 109);
  /* Add a dark-grey background on hover */
}

.sidebar {
  height: 100px;
  width: 35px;
  right: 0;
  display: flex;
  color: #1c4874;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  /* Transparent background */
  border-radius: 5px;
  border: 2px solid #bdc2dd;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  position: fixed;
  /* Fixed/sticky position */
  bottom: 100px;
  /* Place the button at the bottom of the page */
  /* Place the button 30px from the right */
  z-index: 99;
  /* Make sure it does not overlap */
}

.sidebar a,
.dropdown-btn {
  text-decoration: none;
  padding: 6px;
  text-align: center;
  width: 100%;
  transition: background-color 0.3s;
  cursor: pointer;
}

.sidebar a:hover,
.dropdown-btn:hover {
  background-color: #bac8ff;
  width: 15px;
  height: 15px;
  border-radius: 4px;
  color: #215add;
}

.sidebar a i {
  font-size: 17px;
  color: #215add;
}

.Copyright-container {
  display: flex;
  align-items: center;
  margin-left: 400px;
  justify-content: space-between;
  padding: 20px;
}

#preloader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2e83bc, #c4c3c8);
  /* Gradient background */
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.7s ease-out;
  /* Add transition for opacity */
}

#loader {
  width: 40px;
  height: 40px;
  border: 2.5px solid hsl(248, 14%, 89%);
  border-top: 2.5px solid transparent;
  border-radius: 70%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 0.5;
  }
}

@keyframes slideIn {
  0% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0);
  }
}

vision body {
  font-family: Arial, sans-serif;
  margin: 0;
  colour: white;
  padding: 0;
}

#vision-mission {
  padding: 50px 0;
  background-color: #129f9f;
}

#vision-mission .container {
  max-width: 80%;
  margin: 0 auto;
  padding: 30px;
}

#vision-mission h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: white;
  text-align: center;
}

#vision-mission p {
  font-size: 1.2em;
  color: white;
  text-align: center;
  line-height: 1.6;
  text-align: center;
}

#vision-mission ul {
  list-style-type: none;
  padding: 0;
  text-align: center;
}

#vision-mission ul li {
  font-size: 1.2em;
  color: white;
  margin-bottom: 10px;
}


body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
}

.logo-container {
  position: relative;
  width: 280px;
  /* Set the width */
  height: 50px;
  /* Set a consistent height */
}

.logo-container img {
  position: absolute;
  width: 75%;
  height: 75%;
  transition: opacity 0.5s ease;
  /* Transition for fade effect */
}

.logo-hidden {
  opacity: 0;
  /* Fade out effect */
}

.content {
  margin-top: 100px;
  padding: 20px;
}

.spacer {
  height: 2000px;
  /* Just to create enough scrollable space */
}

.logo-container {
  position: relative;
  width: 300px;
  /* Set the width */
  height: 50px;
  /* Set a consistent height */
}

@media (max-width: 768px) {
  .logo-container img {
    position: absolute;
    width: 100%;
    height: 100%;
    transition: opacity 0.5s ease;
    /* Transition for fade effect */
  }
}

.logo-container {
  cursor: pointer;
  display: flex;
}

.logo-container img {
  transition: opacity 0.3s ease;
}

.logo-hidden {
  display: none;
}

.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  min-height: 80vh;
  transform: translate(-50%, -50%);
  background: rgba(188, 199, 200, 0.3);
  color: #f9fafc;
  padding: 40px 50px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  opacity: 0;
  justify-content: center;
  pointer-events: none;
  transition: opacity 3s ease;
  z-index: 1000;
  max-width: 90%;
  width: 80%;
  backdrop-filter: blur(8px);
  text-align: justify;
}

.popup.show {
  opacity: 1;
  pointer-events: auto;
}

.popup.hide {
  opacity: 0;
  pointer-events: none;
}

.popup h3 {
  margin-top: 0;
  color: #ffe600;
  font-size: 24px;
  text-align: center;
}

.popup-inner {
  text-align: center;
  justify-content: center;
  align-items: center;
  height: 100px;
}

.popup-logo {
  width: 250px;
  max-width: 100%;
  margin: 20px auto;
  display: block;
}

.popup p {
  font-size: 20px;
  line-height: 1.6;
  margin: 20px 0;
  color: #000000;
}

.popup ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.popup li {
  font-size: 15px;
  margin: 8px 0;
  color: #ffffff;
}

.popup li strong {
  color: #ffdd57;
}

.close-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
  position: absolute;
  top: 15px;
  right: 20px;
  transition: color 0.3s ease;
}

.close-btn:hover {
  color: #ff4c4c;
}

@media (max-width: 760px) {
  .popup {
    width: 90%;
    padding: 30px;
  }

  .popup p {
    font-size: 15px;
  }

  .popup h3 {
    font-size: 20px;
  }
.popup-logo {
  width: 200px;
}
 
}


.enquiry-tab {
      position: fixed;
      top: 30%;
      right: 20px; /* Pulls rotated tab into view */
      transform: translateY(-50%) rotate(-90deg);
      transform-origin: right center;
      background-color: #0078D4; /* Brand blue */
      color: white;
      font-family: 'Futura Light', sans-serif;
      font-size: 16px;
      padding: 12px 24px;
      border-radius: 4px 4px 0 0;
      cursor: pointer;
      box-shadow: 0 2px 6px rgba(0,0,0,0.2);
      z-index: 1000;
      transition: background-color 0.3s ease;
      text-align: center;
      white-space: nowrap;
    }

    .enquiry-tab:hover {
      background-color: #005A9E;
      
    }
    
    
    
