/* ===== Base Styles ===== */
:root {
  --primary: #ffffff;
  --secondary: #1a73e8;
  --dark-blue: #0d47a1;
  --light-blue: #e8f0fe;
  --text: #333333;
  --gray: #f5f5f5;
  --dark-gray: #757575;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

section {
  padding: 80px 0;
}

h1, h2, h3, h4 {
  margin-bottom: 20px;
  line-height: 1.2;
}

p {
  margin-bottom: 15px;
}

a {
  text-decoration: none;
  color: inherit;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--secondary);
  color: white;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
}

.btn:hover {
  background-color: var(--dark-blue);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--secondary);
  color: var(--secondary);
}

.btn-outline:hover {
  background-color: var(--secondary);
  color: white;
}

/* Visually hidden utility class for screen reader accessibility */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


:root {
  --primary: #ffffff;
  --secondary: #0044cc; /* your theme color */
}

.brand-name {
  font-size: 1.25rem;
  font-weight: bold;
  margin-left: -30px; /* Default for mobile */
  display: block; /* Show on all screens */
}

@media (min-width: 640px) {
  .brand-name {
    margin-left: -400px; /* Only shift on desktop */
  }
}

.blue {
  color: #1A237E;
}

/* HEADER BASE */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--primary);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

/* SCROLLED HEADER */
header.scrolled {
  background-color: rgba(255, 255, 255, 1);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* HEADER CONTAINER */
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  padding: 0 30px;
}

/* LOGO */
.logo img {
  height: 70px;
  display: block;
}

/* NAVIGATION */
nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  margin-left: 30px;
  display: flex;
  align-items: center;
}

nav ul li a {
  font-weight: 600;
  text-decoration: none;
  color: #000;
  position: relative;
  padding: 5px 0;
  transition: color 0.3s;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary);
  transition: width 0.3s;
}

nav ul li a:hover::after {
  width: 100%;
}

nav ul li a.active {
  color: var(--secondary);
}

.mobile-menu-btn {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--secondary);
}

   
    .contact-section {
      padding: 60px 20px;
      background: #d2ebf7ad;
    }

    .contact-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 40px;
      max-width: 1200px;
      margin: auto;
    }

    .contact-info {
      flex: 1 1 45%;
      background: #f9f9f9;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.505);
    }

   .contact-info h2 {
      margin-bottom: 20px;
      color: #333;
    }

    .contact-info ul {
      list-style: none;
      padding: 0;
    }

    .contact-info li {
      margin: 15px 0;
      color: #555;
      font-size: 16px;
    }

    .contact-info i {
      color: #007bff;
      margin-right: 10px;
    }

    .map-container {
      margin-top: 20px;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.418);
    }

    @media (max-width: 768px) {
      .contact-container {
        flex-direction: column;
      }
    }

    /* ===== Footer ===== */
footer {
  background-color: #1a1a2e;
  color: white;
  padding: 80px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-column h3 {
  color: white;
  font-size: 20px;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--secondary);
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #bbb;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: var(--secondary);
}

.footer-column p {
  color: #bbb;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: white;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: var(--secondary);
  transform: translateY(-5px);
}


.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #444;
  color: #bbb;
  font-size: 14px;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ===== Responsive Styles ===== */

@media (max-width: 768px) {
  .header-container {
    padding: 15px 0;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  nav {
    position: fixed;
    top: 69px;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: white;
    transition: all 0.3s ease;
    z-index: 999;
  }
  
  nav.active {
    left: 0;
  }
  
  nav ul {
    flex-direction: column;
    padding: 30px;
  }
  
  nav ul li {
    margin: 15px 0;
  }
  
  .hero h1 {
    font-size: 42px;
  }
  
  .hero p {
    font-size: 16px;
  }
  
  .hero-btns {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 250px;
    margin-bottom: 15px;
  }
}
  

@media (max-width: 576px) {
  .hero h1 {
    font-size: 36px;
  }
  
  .section-title h2, .section-title2 h2 {
    font-size: 28px;
  }
  
  .service-card {
    padding: 20px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
}

/* WhatsApp Icon */
.whatsapp-float {
    position: fixed; 
    margin-bottom: 20px;
    bottom: 20px; 
    right: 20px; 
    width: 60px;
    height: 60px; 
    transition: transform 0.3s ease;
    cursor: pointer; 
    overflow: visible;
    z-index: 9999; /* Add this line */
}

.whatsapp-float:hover {
    transform: scale(1.1);
    
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
}

@media screen and (max-width: 480px) {
    .whatsapp-float {
        width: 45px;
        height: 45px;
        bottom: 10px;
        right: 10px;
    }
}

        