* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

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: 20px;
}

.service-box img {
  width: 100%;
  height: 180px;
  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;
}
