/* ===== Global Reset & Fix White Space Issue ===== */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    scroll-behavior: smooth;
}

html, body {

  height: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}



:root {
--main-font: Arial, sans-serif;
}

section {
max-width: 100vw;
overflow-x: hidden;
}

img {
max-width: 100%;
height: auto;
display: block;
}

.navbar, .graph-container {
max-width: 100%;
flex-wrap: wrap;
}

/* ===== Header Styling (Fixed & Responsive) ===== */
header {
background: black;
padding: 1rem;
display: flex;
justify-content: space-between;
align-items: center;
width: 100%;
position: fixed;
top: 0;
left: 0;
z-index: 1000;
height: 60px;
}

body {
padding-top: 60px;
}

.header-title {
color: white;
font-size: 2rem;
font-weight: bold;
margin-left: 0.5rem;
}

/* ===== Navigation Bar ===== */
.navbar {
display: flex;
justify-content: space-between;
align-items: center;
padding: 0.5rem 1.5rem;
background-color: #000;
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 999;
}

.nav-menu {
list-style: none;
display: flex;
gap: 20px;
}

.nav-menu li {
position: relative;
}

.nav-menu li a {
color: white;
text-decoration: none;
font-weight: 600;
padding: 10px 20px;
border: 2px solid white;
border-radius: 8px;
transition: all 0.3s ease;
background-color: transparent;
display: inline-block;
}

.nav-menu li a:hover,
.nav-menu li a:focus {
background-color: white;
color: black;
transform: scale(1.05);
outline: none;
}

.nav-menu li a:active {
transform: scale(0.97);
}


/* Dropdown */
.dropdown {
  position: relative;
}



.dropdown-content {
  display: none;
  position: absolute;
  background-color: #222;
  min-width: 200px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  padding: 0;
  overflow: hidden;
  left: 0;
  list-style: none;  
  margin: 0;
}

.dropdown-content a {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px 0;
  text-decoration: none;
  color: white;
  background-color: #222;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 16px;
}

.dropdown-content a:last-child {
  border-bottom: none;
}

.dropdown-content a:hover {
  background-color: #444;
}

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

/* Mobile Menu Toggle Button */
.menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: white;
  background-color: black;
  padding: 8px 12px;
  border: 2px solid white;
  border-radius: 6px;
  cursor: pointer;
}

/* ===== Hero Section ===== */

 .hero {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: fill; /* OR try: object-fit: contain if you want no crop */
  display: block;
  padding: 0px;
}


/* ===== Hero Overlay with Light Blur and Gradient ===== */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom right,
    rgba(0, 0, 0, 0.6),
    rgba(20, 20, 20, 0.4)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  box-sizing: border-box;
  backdrop-filter: blur(1.5px); /* Subtle blur */
}

/* ===== Hero Content Box ===== */
.hero-content {
  background: rgba(255, 255, 255, 0.04); /* very subtle glass effect */
  border-radius: 12px;
  padding: 40px;
  max-width: 800px;
  color: #f1f1f1;
  animation: fadeInUp 1s ease-in-out;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.hero-content p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #dddddd;
}

/* ===== CTA Button: Elegant Black & White Glow ===== */
.cta-btn {
  background-color: #000;
  color: #fff;
  padding: 14px 30px;
  border: 2px solid #fff;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
}

.cta-btn:hover {
  background-color: #fff;
  color: #000;
  transform: scale(1.05);
  box-shadow: 0 8px 22px rgba(255, 255, 255, 0.35);
  letter-spacing: 1px;
  border: 2px solid #000;
}

/* ===== Fade-in Animation ===== */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  animation: fadeInUp 1.2s ease forwards;
}

.delay-1 {
  animation-delay: 0.6s;
}
.delay-2 {
  animation-delay: 1.2s;
}

/* ===== Responsive Design ===== */
@media screen and (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-content {
    padding: 25px;
  }

  .hero {
    height: 75vh;
  }
}

/* ===== About Section ===== */
#about {
  padding: 90px 5% 80px;
  background: #f9f9f9;
  color: #1a1a1a;
  font-family: 'Poppins', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
  flex-wrap: wrap;
  gap: 40px;
}

.about-text {
  flex: 1;
  text-align: left;
  font-size: 1.1rem;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s ease-out;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: black;
}

.highlight {
  color: black;
  font-weight: 600;
}

.profile-container {
  flex: 1;
  display: flex;
  justify-content: center;
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.7s ease-out;
}

.profile-pic {
  width: 300px;
  height: 320px;              /* Crops bottom part */
  border-radius: 15px;
  overflow: hidden;           /* This hides the cropped shirt */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  position: relative;
}

.profile-pic img {
  width: 100%;
  height: auto;               /* Keeps image ratio natural */
  object-fit: cover;
  object-position: top;       /* Aligns image to top */
  display: block;
}


/* === Social Icons Styling === */
.social-icons2 {
  margin-top: 25px;
  display: flex;
  justify-content: flex-start;
  gap: 18px;
}

.social-icons2 a {
  color: #333;
  font-size: 20px;
  transition: all 0.3s ease;
}

.social-icons2 a:hover {
  transform: scale(1.2);
  color: #0077b5;
}

/* ===== Media Section (Black-White-Grey Theme with Animations) ===== */
.media-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #000000, #0d0d0d);

  text-align: center;
  
  position: relative;
  overflow: hidden;
}

.media-heading h2 {
  font-size: 3.5rem;
  margin-bottom: 10px;
  letter-spacing: 1px;
  animation: fadeDown 1s ease forwards;
  opacity: 0;

  /* Shiny silver gradient */
  background: linear-gradient(90deg, #e6e6e6 0%, #ffffff 40%, #dcdcdc 70%, #f5f5f5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;

  /* Soft silver glow */
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.4), 0 0 15px rgba(200, 200, 200, 0.3);

}


.media-heading p {
  font-size: 1.1rem;
  color: #bbb;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeUp 1s ease 0.5s forwards;
  opacity: 0;
}


/* Video Carousel */
.media-videos {
  display: flex;
  justify-content: center; /* <== changed this line */
  align-items: center;
  gap: 24px;
  max-width: 100%;
  overflow-x: auto;
  padding: 20px 10px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  animation: slideIn 1.2s ease forwards;
}

.media-videos::-webkit-scrollbar {
  height: 8px;
}
.media-videos::-webkit-scrollbar-thumb {
  background: #444;
  border-radius: 4px;
}
.media-videos::-webkit-scrollbar-track {
  background: #222;
}

.video-container {
  position: relative;
  width: 480px;
  height: 270px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 16px;
  scroll-snap-align: center;
  background-color: #000;
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.05);
  transform: scale(0.95);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: fadeUp 1.2s ease forwards;
  opacity: 0;
}

.video-container:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.08);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Animations */
@keyframes fadeDown {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  0% {
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}




/* ===== FAQ Section ===== */
/* ===== FAQ Section ===== */
.faq-section {
  max-width: 900px;
  margin: 80px auto;
  padding: 40px 30px;
  background: #0e0e0e;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
  font-family: 'Poppins', sans-serif;
  color: white;
  overflow: hidden;
  transition: all 0.4s ease;
}

.faq-section h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
  color: white; /* Changed to white */
  font-weight: 700;
  letter-spacing: 1px;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-item {
  background: #1a1a1a;
  border: 1px solid #2c2c2c;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(192, 192, 192, 0.15); /* Silver glow */
  overflow: hidden;
  transition: all 0.4s ease-in-out;
}

.faq-item:hover {
  box-shadow: 0 8px 20px rgba(192, 192, 192, 0.25); /* Stronger silver glow */
  transform: translateY(-2px);
}

.faq-question {
  width: 100%;
  padding: 20px;
  background: #141414;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #1f1f1f;
}

.faq-question .icon {
  font-size: 20px;
  color: #c0c0c0; /* Grey icon */
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Rotate icon on open */
.faq-item.active .faq-question .icon {
  transform: rotate(45deg);
  color: #d3d3d3;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #ffffff; /* White background */
  color: #000000;       /* Black text */
  font-size: 15px;
  line-height: 1.6;
  padding: 0 20px;
  transition: max-height 0.5s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 18px 20px;
}

.services-section {
  padding: 80px 20px;
  background: linear-gradient(145deg, #0d0f1a, #1f2230);
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
  letter-spacing: 1px;
  background: linear-gradient(90deg, #e6e6e6 0%, #ffffff 40%, #dcdcdc 70%, #f5f5f5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.25), 0 0 12px rgba(200, 200, 200, 0.3);
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  max-width: 1400px;
  width: 100%;
  margin-top: 40px;
}

/* Service wrapper for button alignment */
.service-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 330px;
}

/* Card base */
.service-card {
  width: 100%;
  padding: 30px 25px;
  border-radius: 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
}

/* Card image */
.service-card img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.service-card:hover img {
  transform: scale(1.1);
}

/* Card title */
.service-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-top: 10px;
}

/* Unique glowing borders */
.card-1 { border: 1px solid #5f72ff; box-shadow: 0 0 20px #5f72ff77; }
.card-2 { border: 1px solid #cc66ff; box-shadow: 0 0 20px #cc66ff77; }
.card-3 { border: 1px solid #ff6a00; box-shadow: 0 0 20px #ff6a0077; }
.card-4 { border: 1px solid #00ffc6; box-shadow: 0 0 20px #00ffc677; }
.card-5 { border: 1px solid #8effa5; box-shadow: 0 0 20px #8effa577; }

/* Stylish glowing Read More button */
.read-more-btn {
  display: inline-block;
  min-width: 160px;
  text-align: center;
  padding: 10px 22px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  border: 1px solid white;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.25), 0 0 40px rgba(211, 211, 211, 0.1);
  transition: all 0.4s ease;
  animation: pulseGlow 2.5s infinite ease-in-out;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.read-more-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.05), rgba(255,255,255,0.2), rgba(255,255,255,0.05));
  transform: skewX(-20deg);
  transition: 0.7s;
  z-index: -1;
}

.read-more-btn:hover::before {
  left: 130%;
}

.read-more-btn:hover {
  transform: translateY(-2px) scale(1.03);
}

/* Pulse effect */
@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.25), 0 0 40px rgba(211, 211, 211, 0.1);
  }
  50% {
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.4), 0 0 60px rgba(200, 200, 200, 0.2);
  }
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .services-grid {
    gap: 30px;
  }

  .service-wrapper {
    width: 100%;
    max-width: 300px;
  }

  .service-card {
    max-width: 100%;
  }

  .read-more-btn {
    min-width: 150px;
    font-size: 0.85rem;
    padding: 8px 18px;
  }

  .service-card img {
    width: 70px;
    height: 70px;
  }

  .service-title {
    font-size: 2rem;
  }
}



/* Section Styling */
.why-choose-us {
  padding: 80px 20px;
  background: linear-gradient(135deg, #2c2c2c, #3d3d3d);


  color: white;
  text-align: center;
}

.section-heading {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  background: linear-gradient(to right, #00ffe7, #5f72ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin-bottom: 60px;
}



/* Section Title */
.why-choose-us {
  padding: 100px 20px;
  background: linear-gradient(135deg, #1a1a1a, #2f2f2f);
  text-align: center;
  color: #f1f1f1;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.section-heading {
   font-size: 2.5rem;
  margin-bottom: 9px;
  letter-spacing: 1px;
  animation: fadeDown 1s ease forwards;
  opacity: 0;
    margin-top: -20px; /* shifts heading upward */
  /* Silver Gradient Text */
  background: linear-gradient(90deg, #e6e6e6 0%, #ffffff 40%, #dcdcdc 70%, #f5f5f5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;

  /* Elegant Glow */
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.25), 0 0 12px rgba(200, 200, 200, 0.3);

}

.features-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1500px;
  margin: 50px auto 0; /* Adds 40px space on top, centers the grid */
}

.feature-box {
  background-color: rgba(255, 255, 255, 0.03);
  padding: 30px 50px;
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.8);
}



/* Flaticon Icon Styling */
.flaticon-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  animation: pulse-glow 2.5s infinite ease-in-out;
  filter: drop-shadow(0 0 8px #dcdcdc); /* soft silver glow */
}

/* Glowing Animation */
@keyframes pulse-glow {
  0% {
    filter: drop-shadow(0 0 6px #e0e0e0);
    transform: scale(1);
  }
  50% {
    filter: drop-shadow(0 0 14px #ffffff);
    transform: scale(1.05);
  }
  100% {
    filter: drop-shadow(0 0 6px #dcdcdc);
    transform: scale(1);
  }
}


/* Reviews */

.reviews-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #1a1a1a, #2f2f2f);
  text-align: center;
  color: #f1f1f1;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.reviews-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 40px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
}

.reviews-title {
  font-size: 2.8rem;
  background: linear-gradient(to right, #ffffff, #aaaaaa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

.reviews-subtitle {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 40px;
}


@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(255,255,255,0.15), 0 0 40px rgba(255,255,255,0.07);
  }
  50% {
    box-shadow: 0 0 25px rgba(255,255,255,0.2), 0 0 60px rgba(255,255,255,0.1);
  }
}



  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }

  .feature-box {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
  }

  .feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(255,255,255,0.2);
  }

  .feature-box .icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }

  .feature-box h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .feature-box p {
    font-size: 1rem;
    line-height: 1.6;
    color: #ddd;
  }

/* ===== Footer ===== */
  .footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 40px 20px;  /* Changed from 5% to fixed 20px padding */
  background-color: #000;
  color: white;
  box-sizing: border-box;
  width: 100vw;       /* Ensure it stretches edge to edge */
  overflow-x: hidden; /* Prevent overflow due to any wide content */
  margin: 0;
}



.footer-column {
  flex: 1 1 250px;
  margin: 10px;
 
}


.footer h3 {
  border-bottom: 2px solid #f1c40f;
  padding-bottom: 10px;
  margin-bottom: 20px;
  width: 100%;               /* Full width */
}



.footer p {
  color: white; /* Ensures all footer paragraphs show as white */
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li a {
  color: white;
  text-decoration: none;
  line-height: 2;
}

.footer ul li a:hover {
  color: #f1c40f;
}

.contact-info p {
  margin: 0 0 5px 0;
}

 .whatsapp-button {
             position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  padding: 12px 14px;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  text-align: center;
        }
     

    .whatsapp-button a {
      color: white;
      font-size: 28px;
      text-decoration: none;
    }

    .whatsapp-button a:hover {
      opacity: 0.8;
    }

/* Copyright now spans full width */
.copyright {
  text-align: center;
  font-size: 14px;
  color: #aaa;
  padding: 10px 0;
  background-color: #111;
  border-top: 1px solid #333;
  width: 100vw;
}



/* ===== Responsive Fixes ===== */

@media screen and (max-width: 768px) {
  .hero {
    background-size: cover;  /* Ensure background still covers */
    height: 50vh; /* Make sure full viewport height is used */
    padding: 0;  /* Remove padding for mobile */
  }
}




@media (max-width: 1000px) {
    
  .video-container {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }
  .media-heading h2 {
    font-size: 2.5rem;
  }
  .media-heading p {
    font-size: 1.05rem;
  }

.media-videos {
flex-direction: column;
align-items: center;
}

.about-container {
flex-direction: column;
text-align: center;
}

.about-text, .profile-container {
width: 100%;

}
}
@media (max-width: 900px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px; /* height of navbar */
    left: 0;
    width: 100%;
    background-color: #000;
    padding: 10px 0;
    z-index: 998;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-menu li a {
    border: none;
    border-radius: 0;
    padding: 12px;
    width: 100%;
  }

  .menu-toggle {
    display: block;
  }

 .dropdown {
    position: relative;
    z-index: 1001;
  }

  .dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #000;
    padding-left: 20px;
    z-index: 1000;
    width: 100%;
  }

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

  .dropdown-content a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 16px;
    display: block;
    text-align: left;
    background-color: #111;
  }

  .dropdown-content a:hover {
    background-color: #333;
  }

  .service-card {
    width: 90%;
    height: 90%;
  }


  .service-card img {
    width: 70px;
    height: 70px;
  }
  
 
     .footer {
    flex-direction: column;
    text-align: center;
    padding: 20px 10px;
    gap: 0;
  }


.footer-column {
  flex: none;
  width: 150%;                /* Increase the width percentage */
  padding: 10px 0;            /* Uniform spacing */
  margin: 0 auto;             /* Centers the block */
  box-sizing: border-box;
  max-width: 330px;           /* Increase max-width for more space */
}

  .footer h3 {
    display: inline-block;
    border-bottom: 2px solid #f1c40f;
    padding-bottom: 10px;
    margin-bottom: 10px;
    font-size: 18px;
  }

  .footer ul {
    padding: 0;
    margin: 0;
  }

  .footer p {
    margin: 5px 0;
  }

  .contact-info p {
    word-break: break-word;     /* Prevents long text from stretching */
  }   
       
            

        }