
body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f0f2f5;
  color: #333;
}


.hero {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
  text-align: center;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid #0056b3;
}

.hero h1 {
  font-size: 4em;
  margin: 0;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.hero p {
  font-size: 1.3em;
  margin-top: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}


.container {
  display: flex;
  flex-direction: row;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}

/* Sidebar */
.sidebar {
  width: 250px;
  background: #0056b3;
  color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 20px;
  flex-shrink: 0;
}

.sidebar h2 {
  font-size: 1.8em;
  margin-top: 0;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.sidebar a {
  display: block;
  color: white;
  text-decoration: none;
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.2);
  transition: background 0.3s, padding-left 0.3s;
  cursor: pointer;
}

.sidebar a:hover {
  background: rgba(255, 255, 255, 0.4);
  padding-left: 20px;
}


.content {
  flex: 1;
  padding: 0 20px;
}

.section {
  display: none;
  
  margin-bottom: 60px;
}

.section.active {
  display: block;
 
}

.section h2 {
  font-size: 2.5em;
  color: #007bff;
  position: relative;
  padding-bottom: 10px;
}

.section h2::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 6px;
  background: #007bff;
  border-radius: 5px;
}

.section p {
  font-size: 1.15em;
  line-height: 1.8;
  color: #555;
}

/* Why Choose Us */
.why-choose-us {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.why-choose-us .card {
  flex: 1;
  background: white;
  border-radius: 8px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.why-choose-us .card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: #007bff;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s;
}

.why-choose-us .card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.why-choose-us .card:hover::before {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.why-choose-us .card h3 {
  font-size: 1.6em;
  margin-top: 0;
  color: #007bff;
}

/* Value Added Section */
.value-added {
  background: linear-gradient(135deg, #e0e0e0, #ffffff);
  padding: 40px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.value-added h2 {
  font-size: 2.5em;
  color: #007bff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.value-added h2::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 6px;
  background: #007bff;
  border-radius: 5px;
}

.value-added .item {
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.value-added .item h3 {
  font-size: 1.6em;
  color: #007bff;
  margin-top: 0;
}

.value-added .item p {
  font-size: 1.15em;
  line-height: 1.8;
  color: #555;
}

/* Awards Section */
.awards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.awards .award-item {
  flex: 1;
  background: white;
  border-radius: 8px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
}

.awards .award-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.awards .award-item img {
  width: 120px;
  height: 120px;
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 15px;
}

.awards .award-item h3 {
  font-size: 1.6em;
  color: #007bff;
  margin-bottom: 10px;
  font-weight: bold;
  position: relative;
  padding-bottom: 5px;
}

.awards .award-item h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 4px;
  background: #007bff;
  border-radius: 5px;
}

.awards .award-item p {
  font-size: 1em;
  color: #555;
}

.contact-info {
  background: #f0f4f8;
  color: #333;
  padding: 60px 20px;
  border-top: 5px solid #007bff;
  position: relative;
}

.contact-info .container-contact {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info .section-heading {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  font-weight: bold;
  color: #007bff;
  text-transform: uppercase;
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.contact-item {
  background: #ffffff;
  border-radius: 10px;
  padding: 30px;
  max-width: 320px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.contact-item:hover {
  background: #f8f9fa;
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.contact-item .contact-icon {
  font-size: 3rem;
  color: #007bff;
  margin-bottom: 20px;
}

.contact-item h3 {
  font-size: 1.75rem;
  margin-bottom: 15px;
  font-weight: bold;
}

.contact-item p {
  font-size: 1.125rem;
  margin: 5px 0;
}

.contact-item a {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #0056b3;
}

.footer {
  background-color: #3498db;
  color: #ffffff;
  padding: 40px 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section {
  flex: 1;
  margin: 0 20px;
  min-width: 200px;
}

.footer-section.logo h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.footer-section.logo p {
  font-size: 1rem;
  color: #ffffff;
}

.footer-section.links h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.footer-section.links ul {
  list-style: none;
  padding: 0;
}

.footer-section.links ul li {
  margin-bottom: 8px;
}

.footer-section.links ul li a {
  color: #ffffff;
  text-decoration: none;
}

.footer-section.links ul li a:hover {
  text-decoration: underline;
}

.footer-section.social h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 1.2rem;
  color: #ffffff;
  background-color: #333;
  border-radius: 50%;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}

.social-icons .social-icon.facebook:hover {
  background-color: #3b5998;
}

.social-icons .social-icon.twitter:hover {
  background-color: #1da1f2;
}

.social-icons .social-icon.linkedin:hover {
  background-color: #0077b5;
}

.social-icons .social-icon.instagram:hover {
  background-color: #e4405f;
}

.footer-section.newsletter h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.newsletter form {
  display: flex;
  gap: 10px;
}

.newsletter input[type="email"] {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  flex: 1;
  font-size: 1rem;
}

.newsletter button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  background-color: #ffffff;
  color: #3498db;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.newsletter button:hover {
  background-color: #3498db;
  color: #ffffff;
}

.footer-bottom {
  background-color: #2980b9;
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 1rem;
  margin: 0;
}
.home-icon {
  position: fixed;
  bottom: 20px;
  right: 20px; 
  font-size: 24px;
  color: #000;
  background: #fff; 
  border-radius: 50%; 
  padding: 10px; 
  box-shadow: 0 2px 5px rgba(0,0,0,0.3); 
  text-decoration: none;
}

.home-icon:hover {
  color: #007bff; /* Color change on hover */
}




@media (max-width: 768px) {
  .container {
      flex-direction: column;
  }

  .sidebar {
      width: 100%;
      position: static;
      margin-bottom: 20px;
  }

  .contact-details {
      flex-direction: column;
      align-items: center;
  }
}