* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.navbar {
  background-color: #014D8C;
  color: white;
  padding: 5px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo {
  font-size: 18px;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
}

.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #014D8C;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    padding: 10px 0;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links li {
    text-align: center;
    padding: 10px 0;
  }
}
}


body {
  background-color: #f4f4f4;
  color: #333;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  padding: 5px;
}

header {
  background: #004080;
  color: white;
  padding: 10px 0;
}

header h1 {
  text-align: center;
  margin-bottom: 10px;
}


nav {
  text-align: right;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
}

.hero {
  background: #e8f0ff;
  padding: 40px 0;
  text-align: center;
}

.hero img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 20px;
}

.section {
  padding: 20px 0;
}

.section.light {
  background-color: #ffffff;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.service-box {
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  width: 300px;
  text-align: center;
  padding: 10px;
}

.service-box img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-top: 15px;
}

.whatsapp-btn {
  display: inline-block;
  background: #25D366;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  margin-top: 20px;
}

footer {
  background: #004080;
  color: white;
  text-align: center;
  padding: 15px 0;
  margin-top: 30px;
}
.support-btn {
  display: inline-block;
  margin: 10px 5px 0 5px;
  padding: 8px 15px;
  background-color: #004080;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-size: 14px;
}

.support-btn:hover {
  background-color: #0066cc;
}
.case-studies {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.case-studies h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #004080;
}

.case-study-boxes {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.case-box {
  background-color: white;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  flex: 1 1 30%;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  text-align: center;
}

.case-box img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 5px;
}

.case-box h3 {
  margin-top: 15px;
  font-size: 18px;
  color: #333;
}

.case-box p {
  font-size: 14px;
  color: #666;
  margin: 10px 0;
}

.read-btn {
  display: inline-block;
  padding: 8px 15px;
  background-color: #004080;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-size: 14px;
  margin-top: 10px;
}

.read-btn:hover {
  background-color: #0066cc;
}

.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.floating-buttons a img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  transition: transform 0.3s;
}

.floating-buttons a img:hover {
  transform: scale(1.1);
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.branding {
  display: flex;
  align-items: center;
}

.logo {
  height: 80px;
  width: 200px;
  margin-right: 20px;
}

.company-name {
  font-size: 23px;
  font-weight: bold;
  color: #FFFFFF;
  text-align: center;
  display: inline;
  
}

.phone-group {
  display: flex;
  gap: 10px;
}
.phone-group input,
.phone-group select {
  flex: 1;
}
.floating-buttons {
  position: fixed;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.floating-buttons a img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.floating-buttons a img:hover {
  transform: scale(1.1);
}
/* Callback Button */
.callback-button {
  position: fixed;
  right: 20px;
  bottom: 240px;
  z-index: 9999;
  /* Callback Button updated  */
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
}

.callback-button img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  margin-bottom: 5px;
}

.callback-button img:hover {
  transform: scale(1.1);
}

/* Popup Form Styles */
.callback-form {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 99999;
  justify-content: center;
  align-items: center;
}

.callback-form .form-container {
  background: white;
  padding: 20px;
  width: 90%;
  max-width: 400px;
  border-radius: 10px;
  position: relative;
}

.callback-form .close-btn {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 20px;
  cursor: pointer;
  color: #333;
}

.callback-form input,
.callback-form textarea {
  width: 100%;
  margin: 10px 0;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.callback-form button {
  background: #004080;
  color: white;
  border: none;
  padding: 10px;
  width: 100%;
  border-radius: 5px;
  cursor: pointer;
}

.callback-form button:hover {
  background: #0066cc;
}
/* Floating Button with Text Label */
.floating-buttons a,
.callback-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #333;
  font-size: 12px;
  font-weight: bold;
  text-decoration: none;
}

/* Floating Button Labels - Green & Bold */
.floating-buttons a,
.callback-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
}

.floating-buttons a span,
.callback-button span {
  margin-top: 5px;
  font-size: 14px;
  font-weight: bold;
  color: #28a745; /* Green color */
}
.hero {
  background-image: url('images/banner.jpg');
  background-size: 1080px 600px;
  background-repeat: no-repeat;
  background-position: center;
  width: 1080px;
  height: 600px;
  position: relative;
  margin: 0 auto; /* center the section horizontally */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.banner-content {
  padding: 20px;
  background: rgba(0, 0, 0, 0.5); /* Optional: adds contrast */
  border-radius: 10px;
  width: 100%;
}
/* Default desktop styles */
.banner-content h1 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
}

.banner-content p {
  font-size: 20px;
  line-height: 1.6;
}

/* Responsive styles for tablets and mobiles */
@media (max-width: 768px) {
  .hero {
    width: 100%;
    height: auto;
    background-size: cover;
    background-position: center;
    padding: 40px 20px;
  }

  .banner-content h1 {
    font-size: 32px;
  }

  .banner-content p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .banner-content h1 {
    font-size: 24px;
  }

  .banner-content p {
    font-size: 14px;
  }
}

.about-section {
  padding: 30px 20px;
  background-color: #f9f9f9; /* or any light shade */
  text-align: justify;
}

.about-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.about-section p {
  font-size: 18px;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
}
