/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Open Sans", sans-serif;
    line-height: 1.6;
    color: #333;
}

html, body {
  width: 100%;
  overflow-x: hidden; /* 🚫 Prevent horizontal scroll */
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Montserrat", sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
}

/* .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}


a {
  text-decoration: none;
  color: inherit;
}


ul {
  list-style: none;
} */


/* Header Styles */
/* Basic Styles */
header {
  background-color: #f9f9ff;
  padding: 0 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  }
  nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  height: 70px;
  }
  .logo {
  display: flex;
  align-items: center;
  z-index: 1001;
  }
  .logo img {
  width: 124px;
  height: auto;
  }
  /* Navigation Menu */
  .nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
  margin: 0;
  padding: 0;
  }
  .nav-item {
  position: relative;
  }
  .nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 16px;
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s ease;
  }
  .nav-link:hover {
  color: #4285f4;
  }
  .nav-link.active {
  color: #333;
  font-weight: 500;
  }
  /* Dropdown Arrow */
  .dropdown-arrow {
  transition: transform 0.3s ease;
  }
  .dropdown-arrow img {
  width: 16px;
  height: auto;
  }
  
  /* Desktop Dropdown Menu */
  .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 250px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  padding: 10px 0;
  }
  
  /* Desktop Hover Effects */
  @media screen and (min-width: 769px) {
  .nav-item:hover .dropdown-arrow {
    transform: rotate(180deg);
  }
   .nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  }
  .dropdown-item {
  list-style: none;
  }
  .dropdown-link {
  display: block;
  padding: 12px 20px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  }
  .dropdown-link:hover {
  background-color: #f8f9ff;
  color: #4285f4;
  padding-left: 25px;
  }
  /* Contact Button */
  .contact-btn {
  background: transparent;
  border: 2px solid #4285f4;
  color: #4285f4;
  padding: 10px 25px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  }
  .contact-btn:hover {
  background-color: #4285f4;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
  }
  /* Mobile Toggle */
  .mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.3s ease;
  }
  
  .hamburger {
  width: 20px;
  height: 2px;
  background-color: #333;
  margin: 2px 0;
  transition: all 0.3s ease;
  border-radius: 1px;
  display: block;
  }
  
  .mobile-toggle.active .hamburger:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
  }
  
  .mobile-toggle.active .hamburger:nth-child(2) {
  opacity: 0;
  }
  
  .mobile-toggle.active .hamburger:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
  }
  
  /* Tablet Responsive */
  @media screen and (max-width: 1024px) and (min-width: 769px) {
  .nav-menu {
      gap: 20px;
  }
   .nav-link {
      font-size: 15px;
  }
   .logo img {
      width: 110px;
  }
   .contact-btn {
      padding: 8px 20px;
      font-size: 13px;
  }
  }
  
  /* Mobile Responsive */
  @media screen and (max-width: 768px) {
  body {
      padding-top: 70px;
  }
   header {
      padding: 0 15px;
  }
   .mobile-toggle {
      display: flex;
  }
  .nav-menu {
      position: fixed;
      left: -100%;
      top: 70px;
      flex-direction: column;
      background-color: white;
      width: 100%;
      text-align: center;
      transition: left 0.3s ease;
      box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
      padding: 20px 0;
      gap: 0;
      z-index: 999;
      max-height: calc(100vh - 70px);
      overflow-y: auto;
  }
  .nav-menu.active {
      left: 0;
  }
  .nav-item {
      width: 100%;
      margin: 0;
  }
  .nav-link {
      padding: 15px 20px;
      justify-content: center;
      border-bottom: 1px solid #f0f0f0;
      width: 100%;
      box-sizing: border-box;
  }
  
  /* Mobile Dropdown - FIXED ALIGNMENT */
  .dropdown {
      position: static;
      opacity: 1;
      visibility: visible;
      transform: none;
      box-shadow: none;
      background: #f8f9ff;
      margin: 0;
      border-radius: 0;
      padding: 0;
      display: none;
      min-width: auto;
      width: 100%;
  }
  
  /* Show dropdown when active */
  .nav-item.dropdown-active .dropdown {
      display: block;
      padding: 0;
  }
  
  /* Rotate arrow when dropdown is active */
  .nav-item.dropdown-active .dropdown-arrow {
      transform: rotate(180deg);
  }
  
  /* Fixed dropdown item alignment */
  .dropdown-item {
      list-style: none;
      width: 100%;
      margin: 0;
      padding: 0;
  }
  
  /* Fixed dropdown link alignment */
  .dropdown-link {
      padding: 15px 20px;
      font-size: 14px;
      border-bottom: 1px solid #e0e4f0;
      text-align: center;
      display: block;
      width: 100%;
      box-sizing: border-box;
      color: #333;
      background-color: #f8f9ff;
      margin: 0;
      line-height: 1.4;
  }
  
  .dropdown-link:hover {
      background-color: #e8edff;
      color: #4285f4;
      padding-left: 20px; /* Keep consistent padding */
  }
  
  /* Remove extra spacing */
  .dropdown-link:last-child {
      border-bottom: none;
  }
  
  .contact-btn {
      margin: 20px auto 10px auto;
      padding: 14px 40px;
      font-size: 16px;
      display: block;
      text-align: center;
      width: fit-content;
      min-width: 140px;
  }
   .logo img {
      width: 100px;
  }
  }
  
  /* Small Mobile */
  @media screen and (max-width: 480px) {
  body {
      padding-top: 60px;
  }
   nav {
      height: 60px;
  }
  .nav-menu {
      top: 60px;
      max-height: calc(100vh - 60px);
  }
   .logo img {
      width: 80px;
  }
   .nav-link {
      font-size: 16px;
      padding: 12px 15px;
  }
  
  /* Better spacing for small screens */
  .dropdown-link {
      padding: 12px 15px;
      font-size: 13px;
  }
  
   .contact-btn {
      padding: 12px 35px;
      font-size: 15px;
  }
  
  .mobile-toggle {
      width: 35px;
      height: 35px;
  }
  
  .hamburger {
      width: 18px;
  }
  }
  
  /* Very Small Screens */
  @media screen and (max-width: 360px) {
  header {
      padding: 0 10px;
  }
   .logo img {
      width: 70px;
  }
  
  .mobile-toggle {
      width: 32px;
      height: 32px;
  }
  
  .hamburger {
      width: 16px;
      height: 1.5px;
  }
  
  /* Even more compact dropdown for very small screens */
  .dropdown-link {
      padding: 10px 15px;
      font-size: 12px;
  }
  }
  
  /* Focus States */
  .nav-link:focus,
  .dropdown-link:focus,
  .contact-btn:focus,
  .mobile-toggle:focus {
  outline: 2px solid #4285f4;
  outline-offset: 2px;
  }


/* Hero Banner */
.hero-banner {
  position: relative;
  height: 400px;
  overflow: hidden;
  margin: 20px auto;
}
.hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
}
.hero-banner:hover img {
  transform: scale(1.05);
  filter: brightness(1.15);
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  transition: background-color 0.5s ease;
}
.hero-banner:hover .overlay {
  background-color: rgba(0, 0, 0, 0.25);
}

/* Disclaimer */
.disclaimer {
  padding: 60px 20px;
}
.disclaimer h1 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.2rem;
  font-weight: 600;
}
.disclaimer-content {
  max-width: 800px;
  margin: 0 auto;
}
.intro {
  margin-bottom: 30px;
  color: #555;
  line-height: 1.8;
}
.disclaimer-section {
  margin-bottom: 25px;
}
.disclaimer-section h2 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.disclaimer-section p {
  color: #555;
  line-height: 1.7;
}

/* ===================== Responsive ===================== */
@media (max-width: 991px) {
  nav ul {
    gap: 15px;
  }
  .btn {
    padding: 8px 16px;
  }
}

@media (max-width: 768px) {
  nav ul {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 70px;
    right: 20px;
    width: 220px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 15px;
    border-radius: 8px;
  }
  nav ul.active {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
  .contact-btn {
    display: none;
  }
  .hero-banner {
    height: 300px;
  }
  .disclaimer h1 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .logo img {
    width: 100px;
  }
  .btn {
    font-size: 14px;
    padding: 6px 14px;
  }
  .hero-banner {
    height: 220px;
  }
  .disclaimer {
    padding: 40px 15px;
  }
  .disclaimer h1 {
    font-size: 1.5rem;
  }
}

/* footer section*/
/* ================================
   Footer Base Styles
================================ */
/* Footer Styles */
.footer {
  background-color: #f8f9ff;
  padding: 60px 0 30px 0;
  color: #333;
}
 
.footer-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}
 
.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}
 
/* Company Info Section */
.footer-company {
  grid-column: span 1;
}
 
.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}
 
.footer-logo img {
  width: 120px;
  height: auto;
  margin-right: 10px;
}
 
.company-description {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}
 
/* Social Media Icons */
.social-media {
  display: flex;
  gap: 15px;
  align-items: center;
}
 
.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 20px;
  transition: all 0.3s ease;
  color: white;
}
 
.social-icon.linkedin {
  background-color: #0077b5;
}
 
.social-icon.twitter {
  background-color: #000;
}
 
.social-icon.facebook {
  background-color: #1877f2;
}
 
.social-icon.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
 
.social-icon.threads {
  background-color: #000;
}
 
.social-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
 
/* Footer Sections */
.footer-section h3 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
 
.footer-links {
  list-style: none;
}
 
.footer-links li {
  margin-bottom: 12px;
}
 
.footer-links a {
  color: #666;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  display: block;
  padding: 5px 0;
}
 
.footer-links a:hover {
  color: #4285f4;
  padding-left: 5px;
}
 
/* Contact Section */
.contact-infos {
  list-style: none;
}
 
.contact-infos li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  color: #666;
  font-size: 15px;
}
 
.contact-icon {
  width: 20px;
  height: 20px;
  margin-right: 15px;
  margin-top: 2px;
  flex-shrink: 0;
  color: #4285f4;
}
 
.contact-text {
  line-height: 1.5;
}
 
/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid #e0e0e0;
  padding-top: 30px;
  text-align: center;
}
 
.copyright {
  color: #666;
  font-size: 14px;
  font-weight: 500;
}
 
/* Tablet Styles */
@media screen and (max-width: 1024px) {
  .footer-content {
      grid-template-columns: 1fr 1fr 1fr;
      gap: 40px;
  }
 
  .footer-company {
      grid-column: span 1;
  }
 
  .footer-container {
      padding: 0 30px;
  }
}
 
/* Mobile Styles */
@media screen and (max-width: 768px) {
  .footer {
      padding: 40px 0 20px 0;
  }
 
  .footer-container {
      padding: 0 20px;
  }
 
  .footer-content {
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      margin-bottom: 30px;
  }
 
  .footer-company {
      grid-column: span 2;
      text-align: center;
      margin-bottom: 20px;
  }
 
  .company-description {
      font-size: 15px;
      margin-bottom: 25px;
  }
 
  .social-media {
      justify-content: center;
  }
 
  .footer-section h3 {
      font-size: 16px;
      margin-bottom: 20px;
  }
 
  .footer-links a {
      font-size: 14px;
  }
 
  .contact-infos li {
      font-size: 14px;
      margin-bottom: 15px;
  }
 
  .contact-icon {
      width: 18px;
      height: 18px;
  }
}
 
/* Small Mobile Styles */
@media screen and (max-width: 480px) {
  .footer {
      padding: 30px 0 15px 0;
  }
 
  .footer-container {
      padding: 0 15px;
  }
 
  .footer-content {
      grid-template-columns: 1fr;
      gap: 25px;
      margin-bottom: 25px;
  }
 
  .footer-company {
      grid-column: span 1;
      margin-bottom: 15px;
  }
 
  .footer-logo img {
      width: 100px;
  }
 
  .company-description {
      font-size: 14px;
      margin-bottom: 20px;
  }
 
  .social-icon {
      width: 35px;
      height: 35px;
      font-size: 18px;
  }
 
  .footer-section {
      text-align: center;
  }
 
  .footer-links a {
      padding: 8px 0;
  }
 
  .contact-infos li {
      justify-content: flex-start;
      text-align: left;
  }
 
  .copyright {
      font-size: 13px;
      padding: 0 10px;
  }
}
 
/* Very Small Screens */
@media screen and (max-width: 360px) {
  .footer-container {
      padding: 0 10px;
  }
 
  .social-media {
      gap: 10px;
  }
 
  .social-icon {
      width: 32px;
      height: 32px;
      font-size: 16px;
  }
 
  .contact-infos li {
      margin-bottom: 12px;
  }
}
 
/* Landscape Mobile */
@media screen and (max-height: 500px) and (orientation: landscape) {
  .footer {
      padding: 20px 0 10px 0;
  }
 
  .footer-content {
      margin-bottom: 15px;
  }
 
  .footer-section h3 {
      margin-bottom: 15px;
  }
}