/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Nunito Sans', sans-serif;
}

body {
  background-color: #f8f9fa;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 3. Main content wrapper to push footer down */
body > *:not(footer) {
  flex: 1;
}

/* Media Queries for Responsive Design */
@media screen and (max-width: 1200px) {
  .container {
    width: 95%;
    padding: 0 15px;
  }
  
  .video-wrapper {
    margin-right: 0;
  }
  .video-description h3 {
    margin-left: 0;
    text-align: center;
  }
  .btn {
    margin-left: 0;
    position: relative;
    display: block;
    width: fit-content;
    margin: 20px auto;
  }
}

@media screen and (max-width: 992px) {
  nav {
    right: 20px;
  }
  .explore-electronics .content h2 {
    font-size: 2.5rem;
  }
  .explore-electronics .content p {
    font-size: 1.2rem;
  }
  .what-we-do, .demo-video {
    padding: 40px 20px;
    font-size: 20px;
  }
}

@media screen and (max-width: 768px) {
  nav {
    position: relative;
    top: 0;
    right: 0;
    align-items: center;
  }
  nav ul li {
    margin-left: 15px;
  }
  .footer-content {
    gap: 20px;
  }
}

@media screen and (max-width: 576px) {
  nav ul {
    flex-direction: column;
    gap: 15px;
  }
  nav ul li {
    margin: 0;
  }
  .explore-electronics .content h2 {
    font-size: 2rem;
  }
  .explore-electronics .content p {
    font-size: 1rem;
  }
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

@media screen and (max-width: 400px) {
  .overlay-text {
    font-size: 1.5rem;
  }
  .what-we-do,  .demo-video {
    font-size: 18px;
  }
}

/* Basic Nav Styles (Moved here for better organization) */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: #ffffffff; /* White background as per your later definition */
  /* backdrop-filter: blur(10px); Removed as it's commented out in your later nav rule */
  z-index: 1000;
  padding: 1.5rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap; /* Allow nav items to wrap on smaller screens */
}
nav .contact-btn {
  background-color: #fff;
  color: #333;
  padding: 1px 1px; /* This padding looks very small for a button. Consider increasing. */
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  /* Removed fixed position properties here, as the nav itself is fixed. */
}
nav .contact-btn:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}
nav .contact-btn i {
  font-size: 16px;
}
nav .phone-number {
  color: #fff; /* This will be overridden by nav a color if inside <a> */
  font-size: 14px;
  margin-top: 5px;
  text-align: right;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  /* This element seems standalone, ensure it has a proper container or placement */
}
nav ul {
  display: flex;
  justify-content: center;
  gap: 3rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap; /* Allow nav links to wrap */
}
nav ul li {
  display: inline-block;
  margin-left: 30px; /* Adjust with gap on smaller screens */
}
nav a {
  color: #000000;
  font-style: bold; /* 'bold' is not a valid font-style property value. Use font-weight. */
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 520;
  padding: 0.5rem 1rem;
  position: relative;
  transition: all 0.3s ease;
}
/* Unique Underline Effect */
nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background: linear-gradient(90deg, #00ff88, #00a1ff);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
nav a:hover::after {
  width: 100%;
}
/* Glow Effect on Hover */
nav a:hover {
  color: #e68d06;
  text-shadow: 0 0 10px rgba(9, 34, 221, 0.5);
}
/* Active Link Style */
nav a.active {
  color: #1919e3;
}
nav a.active::after {
  width: 100%;
  background: linear-gradient(90deg, #f09310, #1529de);
}

/* Responsive Navigation */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  nav a {
    font-size: 1rem;
  }
}

/* Explore Electronics Section with Background Video */
.explore-electronics {
  margin-top: 23px;
  width: 100%;
  height: 100vh;
  /* Set the height to cover the full viewport */
  overflow: hidden;
}

/* MODIFIED: Move content to the left */
.explore-electronics .content {
  position: absolute;
  top: 50%;
  left: 10%;
  /* Move from 50% to 10% */
  transform: translateY(-50%);
  /* Remove translateX to keep it on the left */
  color: white;
  font-size: 2rem;
  text-align: left;
  /* Align text to the left */
  z-index: 10;
}

/* Overlay Text Styles */
.overlay-text {
  position: fixed;
  top: 0;
  left: 0;
  transform: none;
  text-align: left;
  z-index: 1001;
  padding: 0px 5px;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 15px 0 0 20px;
}

.logo-overlay {
  position: fixed;
  z-index: 1100;
}

/* UPDATED: Fixed position for the logo */
.logo {
  height: 60px;
  width: auto;
  position: fixed;
  top: 20px; /* Adjust as needed */
  left: 20px; /* Adjust as needed */
  z-index: 1200; /* Ensure it's above other fixed elements like nav */
}

.overlay-text span {
  display: inline;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin: 0;
}

.overlay-text span:first-child {
  color: #ec7017;
}

.overlay-text span:last-child {
  color: #285feb;
}

/* Navigation Styles */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: #ffffffff;
  /* backdrop-filter: blur(10px); */
  z-index: 1000;
  padding: 1.5rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

nav ul {
  display: flex;
  justify-content: center;
  gap: 3rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
/* --- Media Queries for Responsive Design --- */
/* Extra Large Screens (e.g., beyond 1200px if needed, but 1200px is max-width for .container) */
@media screen and (min-width: 1201px) {
  /* Add any specific styles for very large screens here if desired */
}

/* Large Desktops and Laptops (max-width: 1200px, but base styles already cover this range for .container) */
@media screen and (max-width: 1200px) {
  .container {
    width: 95%;
    padding: 0 15px;
  }
  .feature-list {
    gap: 20px;
  }
  .explore-electronics .content {
    left: 5%; /* Adjust content position slightly */
    font-size: 1.8rem;
  }
  .explore-electronics .content h2 {
    font-size: 2.8rem;
  }
  .explore-electronics .content p {
    font-size: 1.4rem;
  }
  /* Video section adjustments */
  .video-description h3 {
    font-size: 30px;
    margin-top: 20px;
  }
  .contact-btn-standalone {
    width: 190px;
    height: 50px;
    font-size: 15px;
    padding: 0.8rem 0.8rem;
  }
}

/* Tablets and smaller desktops (max-width: 992px) */
@media screen and (max-width: 992px) {
  nav {
    justify-content: space-around; /* Distribute items more evenly */
    padding: 1rem 0;
  }
  nav ul {
    gap: 2rem;
  }
  nav ul li {
    margin-left: 0; /* Reset margin as gap handles spacing */
  }
  nav a {
    font-size: 1rem;
    padding: 0.4rem 0.8rem;
  }
  .explore-electronics .content {
    left: 8%; /* Adjust content position slightly */
    font-size: 1.5rem;
  }
  .explore-electronics .content h2 {
    font-size: 2.5rem; /* From your code */
  }
  .explore-electronics .content p {
    font-size: 1.2rem; /* From your code */
  }
  .what-we-do, .product-features, .demo-video {
    padding: 40px 20px; /* From your code */
    font-size: 20px; /* From your code */
  }
  .feature-list {
    gap: 20px;
  }
  .feature {
    flex: 1 1 calc(50% - 15px); /* Two columns */
    max-width: unset; /* Let flex control width */
  }
  /* Video section adjustments */
  .video-description h3 {
    font-size: 28px;
  }
  /* Footer adjustments */
  .footer-info, .footer-links, .footer-contact {
    flex: 1 1 calc(50% - 15px); /* Two columns */
  }
  .contact-btn-standalone {
    width: 170px;
    height: 48px;
    font-size: 14px;
    right: 15px;
    bottom: 30px;
  }
  .contact-btn-standalone i {
    font-size: 1.1rem;
  }
}
/* Small Tablets and Large Phones (max-width: 768px) */
@media screen and (max-width: 768px) {
  nav {
    flex-direction: column; /* Stack nav items */
    padding: 1rem 0;
    position: relative; /* From your code, but fixed is usually better for global nav */
    top: 0;
    right: 0;
  }
  nav ul {
    flex-direction: column; /* Stack links */
    align-items: center;
    gap: 1rem;
    margin-top: 10px; /* Add space below logo/contact */
  }
  nav ul li {
    margin: 0; /* Reset margin */
  }
  nav a {
    font-size: 1.1rem;
  }
  .logo {
    position: relative; /* Change logo to relative for better flow in stacked nav */
    top: auto;
    left: auto;
    height: 50px;
    margin-bottom: 10px;
  }
  .overlay-text {
    position: relative; /* Change to relative or static for better flow */
    margin: 10px auto; /* Center it */
    text-align: center;
    width: fit-content;
    padding: 5px 10px;
    top: auto;
    left: auto;
    transform: none;
  }
  .overlay-text span {
    font-size: 1.8rem;
    letter-spacing: 1px;
  }
  .explore-electronics {
    margin-top: 0; /* Reset margin as nav is not fixed at the very top */
    height: auto; /* Allow height to adjust based on content */
    min-height: 80vh; /* Ensure some minimum height */
  }
  .explore-electronics .content {
    position: static; /* Remove absolute positioning */
    transform: none;
    text-align: center;
    left: auto;
    top: auto;
    padding: 20px;
    width: 100%;
    max-width: 100%;
  }
  .explore-electronics .content h2 {
    font-size: 2rem;
  }
  .explore-electronics .content p {
    font-size: 1rem;
  }
  .feature {
    width: 100%; /* Each feature takes full width */
    max-width: 300px; /* Keep max-width for better readability */
    flex: 1 1 100%;
  }
  .feature-list {
    flex-direction: column;
    align-items: center;
  }
  /* Video section adjustments */
  .video-wrapper {
    margin-bottom: 20px;
    max-width: 90%;
  }
  .video-description h3 {
    font-size: 25px;
    margin-top: 20px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  /* Footer adjustments */
  .footer-content {
    flex-direction: column; /* Stack footer columns */
    text-align: center;
    gap: 20px;
  }
  .footer-info, .footer-links, .footer-contact {
    width: 100%;
    min-width: unset;
    flex: 1 1 100%;
  }
  .contact-btn-standalone {
    width: 150px;
    height: 45px;
    font-size: 13px;
    right: 10px;
    bottom: 20px;
    padding: 0.6rem 0.6rem;
  }
  .contact-btn-standalone i {
    font-size: 1rem;
  }
}
/* Mobile Devices (max-width: 576px) */
@media screen and (max-width: 576px) {
  nav {
    padding: 0.8rem 0;
  }
  nav ul {
    gap: 0.8rem;
  }
  nav a {
    font-size: 0.9rem;
    padding: 0.3rem 0.6rem;
  }
  .logo {
    height: 45px;
  }
  .overlay-text span {
    font-size: 1.5rem;
    letter-spacing: 0.5px;
  }
  .what-we-do h2,
  .product-features h2,
  .demo-video h3 {
    font-size: 28px;
  }
  .what-we-do p,
  .product-features p,
  .office-details p,
  .important-links ul li a {
    font-size: 16px;
  }
  .contact-btn-standalone {
    width: 130px;
    height: 40px;
    font-size: 12px;
    right: 8px;
    bottom: 15px;
    padding: 0.5rem 0.5rem;
  }
  .contact-btn-standalone i {
    font-size: 0.9rem;
  }
}
/* Small Mobile Devices (max-width: 480px) */
@media screen and (max-width: 480px) {
  .container {
    padding: 0 10px;
  }
  nav a {
    font-size: 0.85rem;
    padding: 0.25rem 0.5rem;
  }
  .logo {
    height: 40px;
  }
  .overlay-text span {
    font-size: 1.3rem;
  }
  .what-we-do h2,
  .product-features h2,
  .demo-video h3 {
    font-size: 24px;
  }
  .what-we-do p,
  .product-features p,
  .office-details p,
  .important-links ul li a {
    font-size: 15px;
  }
  .footer-bottom p {
    font-size: 13px;
  }
  .contact-btn-standalone {
    width: 120px;
    height: 38px;
    font-size: 11px;
    right: 5px;
    bottom: 10px;
    padding: 0.4rem 0.4rem;
  }
  .contact-btn-standalone i {
    font-size: 0.8rem;
  }
}
/* Very Small Mobile Devices (max-width: 400px) */
@media screen and (max-width: 400px) {
  .overlay-text span {
    font-size: 1.1rem;
    letter-spacing: 0;
  }
  .what-we-do, .demo-video {
    font-size: 18px; /* From your code */
    padding: 30px 15px;
  }
  .what-we-do h2,
  .demo-video h3 {
    font-size: 22px;
  }
  .what-we-do p,
  .office-details p,
  .important-links ul li a {
    font-size: 14px;
  }
  .footer-bottom p {
    font-size: 12px;
  }
}


/* What We Do Section Styling */
.what-we-do {
  background-color: #f9f9f9;
  padding: 60px 0;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
}

.what-we-do h2 {
  font-size: 36px;
  color: #000;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.what-we-do p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 18px;
  color: #000;
  line-height: 1.6;
}

/* Section Styles */
.what-we-do, .demo-video {
  padding: 60px 60px;
  background-color: #fff;
  text-align: center;
  font-size: 25px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Video Section */
.video-wrapper {
  margin-bottom: -10px;
  margin-right: 500px;
  background-color: #cccc;
}

.video-description h3 {
  font-size: 35px;
  margin-top: -220px;
  margin-left: 700px;
  color: #000;
}

/* Footer Section */
footer {
  background-color: #333;
  color: white;
  padding: 40px 0;
  text-align: center;
}

footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.footer-info, .footer-links, .footer-contact {
  width: 30%;
  margin-bottom: 20px;
}

.footer-info h3, .footer-contact h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.footer-links h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.footer-links p {
  font-size: 16px;
}

.footer-contact p {
  font-size: 16px;
}

.line-before {
  border-top: 1px solid #444;
  margin-top: 20px;
  margin-bottom: 20px;
}

footer p {
  font-size: 14px;
}

footer a {
  color: #fff;
  text-decoration: none;
}

/* Media Queries */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    text-align: center;
  }
  nav ul {
    margin-top: 10px;
  }
  nav ul li {
    margin: 0 10px;
  }
  .overlay-text {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .overlay-text {
    font-size: 1.5rem;
  }
  .form-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .form-buttons button {
    width: 100%;
  }
  .btn {
    width: 100%;
  }
}

/* Responsive Design */
/* Large Screens (1200px and above) */
@media screen and (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  .explore-electronics {
    height: 100vh;
  }
  .content h2 {
    font-size: 3.5rem;
    color: rgb(255, 132, 0);
  }
  .content h1 {
    font-size: 3.5rem;
  }
  .content p {
    font-size: 1.5rem;
  }
  .overlay-text {
    font-size: 2.5rem;
  }
}

/* Medium Screens (992px to 1199px) */
@media screen and (max-width: 1199px) {
  .container {
    max-width: 960px;
  }
  .explore-electronics {
    height: 90vh;
  }
  .content h2 {
    font-size: 3rem;
  }
  .content p {
    font-size: 1.3rem;
  }
  .overlay-text {
    font-size: 2.2rem;
  }
  .what-we-do h2 {
    font-size: 2.5rem;
  }
  
}

/* Tablets (768px to 991px) */
@media screen and (max-width: 991px) {
  .container {
    max-width: 720px;
  }
  .explore-electronics {
    height: 80vh;
  }
  .content h2 {
    font-size: 2.5rem;
  }
  .content p {
    font-size: 1.2rem;
  }
  .overlay-text {
    font-size: 2rem;
  }
  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  .what-we-do h2 {
    font-size: 2.2rem;
  }
  
  .video-wrapper {
    width: 100%;
  }
  .video-wrapper video {
    width: 100%;
    height: auto;
  }
}

/* Mobile Landscape (576px to 767px) */
@media screen and (max-width: 767px) {
  .container {
    max-width: 540px;
  }
  .explore-electronics {
    height: 70vh;
  }
  .content h2 {
    font-size: 2rem;
  }
  .content p {
    font-size: 1.1rem;
  }
  .overlay-text {
    font-size: 1.8rem;
  }
  .what-we-do h2 {
    font-size: 2rem;
  }
  .what-we-do p {
    font-size: 1rem;
  }
  
  .video-description h3 {
    font-size: 1.5rem;
  }
}

/* Mobile Portrait (575px and below) */
@media screen and (max-width: 575px) {
  .container {
    max-width: 100%;
    padding: 0 15px;
  }
  .explore-electronics {
    height: 60vh;
  }
  .content h2 {
    font-size: 1.8rem;
  }
  .content p {
    font-size: 1rem;
  }
  .overlay-text {
    font-size: 1.5rem;
  }
  nav ul {
    padding: 10px;
  }
  nav ul li a {
    font-size: 0.9rem;
    padding: 8px 15px;
  }
  .what-we-do h2 {
    font-size: 1.8rem;
  }
  .what-we-do p {
    font-size: 0.9rem;
  }
  
  .video-description h3 {
    font-size: 1.3rem;
  }
  footer {
    padding: 30px 0;
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .footer-info h3,
  .footer-contact h2 {
    font-size: 1.1rem;
  }
  .footer-info p,
  .footer-contact p {
    font-size: 0.9rem;
  }
}

/* Small Mobile Devices (320px and below) */
@media screen and (max-width: 320px) {
  .content h2 {
    font-size: 1.5rem;
  }
  .content p {
    font-size: 0.9rem;
  }
  .overlay-text {
    font-size: 1.3rem;
  }
  nav ul li a {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
  .what-we-do h2 {
    font-size: 1.5rem;
  }
  
  .video-description h3 {
    font-size: 1.2rem;
  }
}

/* Device Orientation */
@media screen and (orientation: landscape) and (max-height: 500px) {
  .explore-electronics {
    height: 100vh;
  }
  .content h2 {
    font-size: 2rem;
  }
  .content p {
    font-size: 1rem;
  }
  nav ul {
    flex-direction: row;
  }
}

/* High-DPI Screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  
}

/* Print Styles */
@media print {
  .explore-electronics video {
    display: none;
  }
  .content {
    position: static;
    color: #000;
  }
  nav {
    display: none;
  }
  .overlay-text {
    display: none;
  }
  .what-we-do,
  .demo-video {
    page-break-inside: avoid;
  }
}



/* Base styles - apply to all screen sizes */
.contact-btn-standalone {
  position: fixed;
  bottom: 842px; /* Adjusted for better visibility on smaller screens */
  right: 20px;
  background: linear-gradient(90deg, #ec7017, #285feb);
  color: white;
  padding: 1rem 1rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 1000;
  height: 55px;
  width: 201px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 2px solid #2c3e50;
  font-size: 16px; /* Default font size */
}
.contact-btn-standalone i {
  font-size: 1.2rem;
}
.header__btn-dots {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-left: 1px;
  margin-top: 5px;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.header__btn-dots span {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: white;
  animation: bounce 1.5s infinite ease-in-out;
}
.header__btn-dots span:nth-child(1) {
  animation-delay: 0s;
}
.header__btn-dots span:nth-child(2) {
  animation-delay: 0.2s;
}
.header__btn-dots span:nth-child(3) {
  animation-delay: 0.4s;
}
.contact-btn-standalone:hover {
  background: transparent;
  color: #2c3e50;
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}
.contact-btn-standalone:hover .header__btn-dots span {
  background-color: #2c3e50;
}
.contact-btn-standalone:active {
  transform: translateY(0);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.footer-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  padding: 20px; /* Add some padding to the footer section */
}
.company-content,
.important-links,
.office-section {
  flex: 1 1 30%;
  min-width: 250px;
}
/* Company Section */
.company-logo {
  height: auto;
  max-width: 100%;
  margin-top: -250px; /* You might want to re-evaluate this negative margin */
  position: sticky; /* Sticky might not work as expected with negative margin, consider its parent */
}
.company-description {
  font-size: 16px;
  margin-bottom: 15px;
  margin-top: -280px; /* You might want to re-evaluate this negative margin */
  line-height: 1.5;
  position: relative;
}
.know-more-btn {
  position: relative;
  padding: 8px 20px;
  background: linear-gradient(90deg, #ec7017, #285feb);
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}
.know-more-btn:hover {
  background: linear-gradient(90deg, #ec7017, #285feb);
}
/* Important Links */
.important-links h3 {
  font-size: 22px;
  color: #fff;
  margin-bottom: 15px;
}
.important-links ul {
  list-style: none;
  padding: 0;
}
.important-links ul li {
  margin-bottom: 10px;
}
.important-links ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  transition: color 0.3s ease;
}
.important-links ul li a:hover {
  color: orangered;
  text-decoration: underline;
}
/* Office Section */
.office-section h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #fff;
}
.office-details p {
  margin: 8px 0;
  font-size: 16px;
}
/* Footer Bottom */
.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #ccc;
  margin-top: 30px;
  font-size: 15px;
  color: #fff;
}
footer {
  background-color: #000;
  color: white;
  text-align: center;
  padding: 15px 0;
  margin-top: 1%;
  margin-left: 0%;
}




/* --- Media Queries for Responsiveness --- */
/* Tablets and smaller desktops (e.g., 768px to 1024px) */
@media (max-width: 1024px) {
  .contact-btn-standalone {
    width: 180px;
    height: 50px;
    font-size: 15px;
    padding: 0.8rem 0.8rem;
  }
  .contact-btn-standalone i {
    font-size: 1.1rem;
  }
  .footer-section {
    gap: 20px;
    padding: 15px;
  }
  .company-content,
  .important-links,
  .office-section {
    flex: 1 1 45%; /* Allow two columns on tablets */
    min-width: unset; /* Remove min-width to let flex manage */
  }
  .company-logo,
  .company-description {
    margin-top: -150px; /* Adjust negative margin for smaller screens if needed */
  }
  .important-links h3,
  .office-section h3 {
    font-size: 20px;
  }
  .important-links ul li a,
  .office-details p {
    font-size: 15px;
  }
}
/* Mobile devices (e.g., up to 767px) */
@media (max-width: 767px) {
  .contact-btn-standalone {
    bottom: 20px;
    right: 15px;
    width: 160px;
    height: 45px;
    font-size: 14px;
    padding: 0.7rem 0.7rem;
  }
  .contact-btn-standalone i {
    font-size: 1rem;
  }
  .header__btn-dots span {
    width: 5px;
    height: 5px;
  }
  .footer-section {
    flex-direction: column; /* Stack sections vertically on mobile */
    align-items: center; /* Center items when stacked */
    gap: 25px;
    padding: 10px;
  }
  .company-content,
  .important-links,
  .office-section {
    flex: 1 1 100%; /* Each section takes full width */
    text-align: center; /* Center text for stacked sections */
  }
  .company-logo {
    max-width: 80%; /* Adjust logo size for mobile */
    margin-top: 0; /* Remove negative margin on mobile */
    position: static; /* Remove sticky on mobile */
  }
  .company-description {
    margin-top: 10px; /* Adjust margin for mobile */
    font-size: 14px;
  }
  .know-more-btn {
    padding: 8px 15px;
    font-size: 14px;
  }
  .important-links h3,
  .office-section h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .important-links ul li a,
  .office-details p {
    font-size: 14px;
  }
  .footer-bottom {
    padding-top: 20px;
    margin-top: 20px;
    font-size: 13px;
  }
  footer {
    padding: 10px 0;
    margin-top: 2%; /* Adjust margin for mobile */
  }
}
/* Small mobile devices (e.g., up to 480px) */
@media (max-width: 480px) {
  .contact-btn-standalone {
    width: 140px;
    height: 40px;
    font-size: 13px;
    right: 10px;
    padding: 0.5rem 0.5rem;
  }
  .contact-btn-standalone i {
    font-size: 0.9rem;
  }
  .footer-section {
    gap: 20px;
  }
  .company-description {
    font-size: 13px;
  }
  .know-more-btn {
    padding: 7px 12px;
    font-size: 13px;
  }
  .important-links h3,
  .office-section h3 {
    font-size: 16px;
  }
  .important-links ul li a,
  .office-details p {
    font-size: 13px;
  }
  .footer-bottom {
    font-size: 12px;
  }
}
