/* Reset and Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f8f8f8;
  color: #333;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  overflow-x: hidden;  /* Prevent horizontal scroll */
  box-sizing: border-box;

}


img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 20px 0;
}

/* Navbar */
.navbar {
  background-color: #fff;
  padding: 10px 0;
  border-bottom: 1px solid #ccc;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* CSS: Add this to your main stylesheet */
.site-logo {
  max-width: 80px;
  height: auto;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2)); /* subtle shadow for all themes */
}




/* Menu Button */
/*.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}


.menu-toggle .bar {
  height: 3px;
  width: 100%;
  background-color: white;
  border-radius: 3px;
  transition: 0.4s;
}

/* Toggle to X */
/*
.menu-toggle.open .top-bar {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.open .middle-bar {
  opacity: 0;
}

.menu-toggle.open .bottom-bar {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Nav Links (mobile dropdown) */
/*
.nav-links {
  list-style: none;
  display:  none;
  flex-direction: column;
  gap: 1rem;
  position: absolute;
  top: 100%;
  right: 2rem;
  background-color: #f0f0f5;
  padding: 1.2rem 1.5rem;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.nav-links.open {
  display:  flex;
}

/* Desktop Styles */
/*
@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }

  .nav-links {
    display: flex !important;
    flex-direction: row;
    position: static;
    background: transparent;
    padding: 0;
    box-shadow: none;
    gap: 2rem;
  }
}
  */

  

  .navbar-dark .navbar-nav .nav-link {
  color: #f5f5f5;
  margin-left: 1rem;
  transition: color 0.3s ease;
}
.navbar-dark .navbar-nav .nav-link:hover {
  color: #FFD700;
}


.nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 15px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.nav-links a.active,
.nav-links a:hover {
  color: #d4a017;
}

.hero {
  position: relative;
  height: 75vh;
  width: 100%;
  overflow-x: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  border-radius: 0 !important;
}

.hero-text {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 700px;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 30px;
  border-radius: px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}


.hero-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 40px;
  color: #fff;
  text-align: center;
  border-radius: px;
}

.shadow-box {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  background: rgba(0, 0, 0, 0.6);
  padding: 30px;
  border-radius: 12px;
}

.carousel {
  overflow: hidden;
  width: 100%;
  background-color: #d4a017; /* subtle background */
  padding: 0.2.7rem 0;
  
}

.carousel .container {
  overflow: hidden;
  position: relative;
}

.carousel-slide {
  display: flex;
  width: max-content;
  animation: slide-right-to-left 30s linear infinite;
  gap: 4rem;
  white-space: nowrap;
  font-style: italic;
  font-weight: 600;
  font-size: 1.25rem;
  color: #181818;
  user-select: none;
}


.carousel-slide p {
  margin: 0;
}


/* Keyframes for sliding from left to right */
@keyframes slide-right-to-left {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.video-section video {
  width: 100%;
  max-width: 600px;  /* You can adjust this */
  height: auto;
  border-radius: 12px;
  display: block;
  margin: 1rem auto; /* Center horizontally */
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.video-section .container {
  text-align: center;
  padding: 2rem 1rem;
}

.services-showcase {
  padding: 2rem 0;
  background-color: #fff;
  color: #222;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.25rem;
  color: #d4a017; /* Accent color */
}

.section-description {
  text-align: center;
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cards-wrapper {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-behavior: smooth;
}

.card {
  min-width: 280px;
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 1px solid #ddd;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.caption {
  padding: 12px 10px;
  font-size: 1rem;
  color: #333;
}






/* Services */
.service-grid,
.project-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 30px;
}

.service-card,
.project-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.service-card:hover,
.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}


.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  background: #1f1f1f;
  padding: 2rem;
  
  color: #fff;
}

.contact-form {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 2rem;
  border-radius: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem;
  border: none;
  border-radius: 0.5rem;
  background-color: #333;
  color: #fff;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #bbb;
}

.contact-form button {
  padding: 0.8rem;
  background-color: #e6b800;
  color: #000;
  font-weight: bold;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background-color: #ffd700;
}

.contact-info {
  margin-top: 1rem;
}

.contact-info p {
  margin: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
}

.contact-info a {
  color: #ffd700;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-info i {
  color: #ffd700;
  font-size: 1rem;
}

.support-image {
  flex: 1 1 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.support-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 1rem;
}


/* About */
.about-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
}

.about-content {
  flex: 1;
}

.founder-image img {
  max-width: 100%;
  border-radius: 12px;
}

/* Projects */
.project-grid img {
  height: 200px;
  object-fit: cover;
}

/* Footer */
.footer {
  background-color: #222;
  color: #fff;
  padding: 20px 0;
  text-align: center;
  margin-top: 50px;
}

/* Media Queries */
@media (min-width: 768px) {
  .nav-menu {
    display: block !important;
    position: static;
    background: none;
    padding: 0;
    box-shadow: none;
  }

  .menu-toggle {
    display: none;
  }

  .nav-links {
    flex-direction: row;
    gap: 30px;
    margin-top: 0;
  }

  .contact-wrapper,
  .about-wrapper {
    flex-direction: row;
    align-items: center;
  }

  .service-grid,
  .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .service-grid,
  .project-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}



.section-title {
  font-size: 2rem;
  color: #0c0b0b;
  text-align: center;
  margin-bottom: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.section-description {
  font-size: 1rem;
  color: #666;
  text-align: center;
  max-width: 750px;
  margin: 0 auto 40px;
  line-height: 1.6;
  padding: 0 1rem;
}

.about-page .about-header {
  text-align: center;
  margin-bottom: 20px;
}

.about-page .founder-image {
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .about-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}

/* Tighten space for all screens */
body {
  margin: 0;
  padding: 0;
}

header.navbar {
  margin-top: 0;
  padding-top: 0.5rem;
}

.container {
  margin-top: 0;
  padding-top: 0.5rem;
}

.about-page {
  margin-top: 0;
  padding-top: 0;
}

.about-header {
  margin-top: 0;
  padding-top: 0;
}

.about-header h2 {
  margin-top: 0;
  padding-top: 0;
  font-size: 2rem;
  text-align: center;
}

.about-content-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  margin: 2rem 0;
}

.about-flex-container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}

.founder-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  object-fit: cover;
}

.founder-text {
  flex: 1;
}

@media (max-width: 768px) {
  .about-flex-container {
    flex-direction: column;
    align-items: center;
    text-align: left;
  }

  .founder-image img {
    max-width: 100%;
  }
}

.about-founder-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 2rem;
  margin-top: 2rem 0;
  
}

.founder-flex-container {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: stretch; /* Makes image and text align at the bottom */
  flex-wrap: wrap;
}

.founder-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  object-fit: cover;
}

.founder-text {
  flex: 1;
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
}

@media (max-width: 768px) {
  .founder-flex-container {
    flex-direction: column;
    align-items: center;
    text-align: left;
  }

  .founder-image img {
    max-width: 100%;
  }
}


#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  background-color: #d4af37; /* gold tone */
  color: white;
  border: none;
  padding: 12px 16px;
  font-size: 20px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  display: none;
  transition: opacity 0.3s ease;
}

#backToTop:hover {
  background-color: #b8860b;
}

.testimonials-section {
  padding: 4rem 1rem;
  background-color: #f8f8f8;
  text-align: center;
}

.testimonials-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #333;
}

.testimonials-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background-color: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.06);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.testimonial-card img {
  border-radius: 50%;
  width: 60px;
  height: 60px;
  object-fit: cover;
  margin-bottom: 1rem;
}

.testimonial-card h4 {
  margin: 0;
  font-size: 1.1rem;
  color: #222;
}

.testimonial-card .company {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 0.8rem;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
}

.partner-certifications {
  padding: 4rem 1rem;
  background-color: #f5f5f5;
  text-align: center;
}

.partner-certifications h2 {
  font-size: 2rem;
  color: #222;
  margin-bottom: 2.5rem;
}

.logos-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}

.logo-card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.logo-card:hover {
  transform: scale(1.1) rotate(2deg);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.logo-card img {
  max-width: 80px;
  max-height: 80px;
  object-fit: contain;
}

/* Responsive Design */
@media (max-width: 768px) {
  .logo-card {
    width: 100px;
    height: 100px;
    padding: 1rem;
  }

  .partner-certifications h2 {
    font-size: 1.5rem;
  }

  .logo-card img {
    max-width: 60px;
    max-height: 60px;
  }
}

.certificate-section {
  padding: 4rem 1.5rem;
  background: #fff;
  text-align: center;
}

.certificate-section h2 {
  font-size: 2rem;
  color: #111;
  margin-bottom: 0.5rem;
}

.cert-desc {
  font-size: 1rem;
  color: #555;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  justify-content: center;
}

.cert-card {
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 1.5rem;
  text-align: center;
}

.cert-card img {
  max-width: 100%;
  height: auto;
  margin-bottom: 1rem;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.cert-card h4 {
  font-size: 1.1rem;
  color: #222;
  margin: 0.5rem 0;
}

.cert-card p {
  font-size: 0.95rem;
  color: #666;
}

.cert-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .certificate-section h2 {
    font-size: 1.5rem;
  }

  .cert-card {
    padding: 1rem;
  }
}


.why-choose-us {
  padding: 60px 20px;
  background-color: #f9f9f9;
  display: flex;
  justify-content: center;
  align-items: center;
}

.why-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  max-width: 900px;
  width: 100%;
  box-sizing: border-box;
}

.why-card h2 {
  font-size: 28px;
  margin-bottom: 25px;
  text-align: center;
  color: #222;
}

.why-card h2 span {
  color: #c79700;
}

.reasons {
  list-style: none;
  padding: 0;
  margin: 0;
}

.reasons li {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 18px;
}

.reasons li strong {
  color: #000;
  font-weight: 600;
}

/* Responsive tweaks */
@media screen and (max-width: 600px) {
  .why-card {
    padding: 30px 20px;
  }

  .why-card h2 {
    font-size: 22px;
  }

  .reasons li {
    font-size: 15px;
  }
}

  .footer-custom {
  background-color: #090909;
  color: #caad0a;
  padding: 2rem 0;
}

.footer-custom a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-custom a:hover {
  color: #fff;
}

.footer-title {
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 1rem;
}

.icon-svg {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  vertical-align: middle;
  fill: #FFD700;
  transition: fill 0.3s ease;
}

a:hover .icon-svg {
  fill: #fff;
}

.footer-text {
  color: #FFD700;
  font-size: 0.9rem;
}
