* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  /* font-family: 'Arial', sans-serif; */
  /* background: #f5f5f5; */
  /* padding-top: 70px;  */
}
/* Color Variables */
:root {
  --primary: #1e2a38;
  --primary-foreground: #ffffff;
  --secondary: #f8f6f0;
  --accent: #10b981;
  --accent-foreground: #ffffff;
  --background: #ffffff;
  --muted-foreground: #6b7280;
  --orange: #f97316;
}
/* Navigation */
.navbar {
  /* background-color: var(--primary); */
  /* background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%); */
  background-color: #fff;
  color: black;
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 1rem;
  box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.1); /* shadow above navbar */
  
}
.navbar::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: 
      radial-gradient(circle at 20% 20%, rgba(52, 152, 219, 0.1) 0%, transparent 50%),
      radial-gradient(circle at 80% 80%, rgba(155, 89, 182, 0.1) 0%, transparent 50%); */
  pointer-events: none;
  box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.1); /* shadow above navbar */
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 1.2rem;
}

.logo .accent {
  color: var(--accent);
}

.nav-links {
  display: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
  text-transform: uppercase;
}

.nav-links a:hover {
  color: var(--accent);
}

/* Added dropdown functionality for Projects menu */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  border-radius: 0.375rem;
  margin-top: 0;
}

.dropdown-content a {
  display: block;
  padding: 0.75rem 1rem;
  color: black;
  text-decoration: none;
  transition: background-color 0.2s;
}

.dropdown-content a:hover {
  /* background-color: rgba(255, 255, 255, 0.1); */
  background-color: white;
  color: black;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.phone-number {
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--accent);
}

.mobile-menu-btn {
  background: none;
  border: none;
  color: black;
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100vh;
  background-color: var(--primary);
  padding: 2rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-menu.active {
  transform: translateX(0);
}

/* Added close button styling for mobile menu */
.mobile-menu-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--primary-foreground);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  line-height: 1;
}

.mobile-menu-close:hover {
  color: var(--accent);
}

.mobile-menu-content {
  margin-top: 3rem;
}

.mobile-menu a {
  display: block;
  color: var(--primary-foreground);
  text-decoration: none;
  padding: 1rem 0;
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* Added mobile dropdown for projects */
.mobile-dropdown {
  padding-left: 1rem;
}

.mobile-dropdown a {
  font-size: 1rem;
  padding: 0.5rem 0;
  /* color: var(--accent); */
}

/* Responsive Design */
@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .phone-number {
    display: flex;
  }

  .mobile-menu-btn {
    display: none;
  }
}
@media (max-width: 767px) {
  .mobile-menu {
    display: block;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .section-title,
  .mission-vision-title {
    font-size: 2rem;
  }
}


/* Mobile Menu Overlay Styles */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #f5f5f5;
  z-index: 9999;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  padding-top: 80px; /* Space for navbar */
}

.mobile-menu-overlay.menu-active {
  transform: translateY(0);
}

.mobile-menu-content {
  padding: 20px;
  max-width: 400px;
  margin: 0 auto;
}

.mobile-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav li {
  margin-bottom: 0;
  border-bottom: 1px solid #e0e0e0;
}

.mobile-nav li:last-child {
  border-bottom: none;
}

.mobile-menu-link {
  display: block;
  padding: 20px 0;
  color: #333;
  text-decoration: none;
  font-size: 1.1rem;
  text-align: center;
  transition: all 0.3s ease;
}

.mobile-menu-link:hover,
.mobile-menu-link.active {
  color: #3498db;
  background: rgba(52, 152, 219, 0.1);
}

/* Hamburger Animation */
.mobile-toggle.menu-open .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.menu-open .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.menu-open .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Hide mobile menu on desktop */
@media (min-width: 769px) {
  .mobile-menu-overlay {
    display: none !important;
  }
}





.footer {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
  padding: 50px 0 20px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
      radial-gradient(circle at 20% 20%, rgba(52, 152, 219, 0.1) 0%, transparent 50%),
      radial-gradient(circle at 80% 80%, rgba(155, 89, 182, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

/* Left Section - Company Info */
.footer-left {
  display: flex;
  flex-direction: column;
}

.logo {
  margin-bottom: 15px;
}

.logo img {
  height: 50px;
  width: auto;
}

.logo-text {
  color: #3498db;
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.address-section h3 {
  color: white;
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 600;
}

.address-info {
  line-height: 1.6;
  margin-bottom: 15px;
  color: #bdc3c7;
  font-size: 1rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item:hover {
  color: #2980b9;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(52, 152, 219, 0.3);
  padding: 5px;
}

.social-icon:hover {
  background: rgba(52, 152, 219, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

/* Quick Links Section */
.quick-links h3 {
  color: white;
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.quick-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  /* gap: 12px; */
}

.quick-links ul li a {
  color: #bdc3c7;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 5px 0;
  position: relative;
  display: inline-block;
}

.quick-links ul li a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #76C043;
  transition: width 0.3s ease;
}

.quick-links ul li a:hover {
  color: #76C043;
  transform: translateX(5px);
}

.quick-links ul li a:hover::before {
  width: 100%;
}

/* Get in Touch Form */
.contact-form {
  /* background: rgba(255, 255, 255, 0.05); */
  background-color: #ffffff;
  padding: 20px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contact-form h3 {
  color: black;
  font-size: 20px;
  margin-bottom: 25px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

.form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 10px;
}

.form-group {
  flex: 1;
}

.form-input {
  width: 100%;
  padding: 9px 15px;
  background: rgba(255, 255, 255, 0.1);
  /* border: 1px solid rgba(255, 255, 255, 0.2); */
  border: 1px solid black;
  border-radius: 8px;
  color: black;
  font-size: 14px;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.form-input::placeholder {
  color: rgba(0, 0, 0, 0.678);
}

.form-input:focus {
  outline: none;
  border-color: #76C043;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.phone-input-group {
  display: flex;
  gap: 10px;
}

.country-code {
  width: 80px;
  padding: 12px 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: white;
  font-size: 14px;
  text-align: center;
}

.submit-btn {
  width: 100%;
  padding: 10px;
  background: linear-gradient(135deg, #76C043, #76C043);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 15px;
}

.submit-btn:hover {
  background: linear-gradient(135deg, #76C043, #76C043);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.submit-btn:active {
  transform: translateY(0);
}

/* Footer Bottom */
.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  margin: 40px 0 30px;
}

.registration-info {
  text-align: center;
  color: #95a5a6;
  font-size: 14px;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.copyright {
  text-align: center;
  color: #7f8c8d;
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .footer-content {
      grid-template-columns: 1fr 1fr;
      gap: 30px;
  }

  .contact-form {
      grid-column: 1 / -1;
      margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .footer {
      padding: 40px 0 20px;
  }

  .footer-content {
      grid-template-columns: 1fr;
      gap: 30px;
  }

  .form-row {
      flex-direction: column;
      gap: 15px;
  }

  .phone-input-group {
      flex-direction: row;
  }

  .country-code {
      width: 80px;
  }

  .contact-form {
      padding: 25px 20px;
  }

  .container {
      padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .footer {
      padding: 30px 0 20px;
  }

  .contact-form {
      padding: 20px 15px;
  }

  .social-icons {
      justify-content: center;
  }

  .logo-text {
      font-size: 20px;
  }
}
.navbar{
  display: block;
}


.whatsapp-logo{
  height: 70px;
  width: 70px;
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 999;
  border-radius: 50%;
}

.active{
  color: var(--accent);
}
@media (max-width: 768px) {
  .whatsapp-logo{
    bottom: 30px;
    right: 30px;
  }
}
/* @media (max-width: 480px) {
  .whatsapp-logo{
    bottom: 30px;
  }
} */




.spec-img{
  width: 50px;
  height: 50px;
}
