/* Reset */
* {margin:0;padding:0;box-sizing:border-box}
body {font-family: Arial, sans-serif; background:#000; color:#fff; line-height:1.6}

/* Containers */
.container {width:100%; max-width:1200px; margin:auto; padding:0 20px;}

/* Navbar */
/* NAVBAR base */
.navbar {
  background: #0a0a0a;
  padding: 15px 0;
}
.nav__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo in center on desktop */
.logo-center h1 {
  font-size: 22px;
  color: #fff;
  text-align: center;
}

/* PHONE STYLE */
.phone {
  color: #1e73be;
  font-weight: bold;
  font-size: 16px;
}

/* HAMBURGER */
.menu-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.menu-icon span {
  width: 28px;
  height: 3px;
  background: #fff;
}

/* ============================
   RESPONSIVE BEHAVIOR
   ============================ */

/* Desktop: show logo */
@media(min-width: 769px) {
  .logo-center { display: block; }
}

/* Mobile: hide logo, keep phone + hamburger */
@media(max-width: 768px) {
  .logo-center { display: none; }
  .phone { font-size: 14px; }
}

/* Hero */
.hero {text-align:center; padding:100px 20px}
.hero h1 {font-size:64px; font-weight:900; margin-bottom:20px}
.subtitle {color:#9aa3ad; font-size:18px; margin-bottom:40px}
.cta-wrapper {display:flex; align-items:center; justify-content:center; gap:15px; margin-bottom:20px}
.line {flex:1; height:2px; background:#f39c12; max-width:100px}
.cta-btn {padding:15px 30px; border:2px solid #f39c12; color:#000000; text-decoration:none; font-weight:bold; transition:.3s}
.cta-btn:hover {background:#f39c12; color:#000}
.note {color:#f39c12; font-weight:bold}

/* Awards */
.awards {background:#fff; padding:60px 20px}
.awards__grid img {max-width:100%}


/* Our work */

.our-work {
  background: #f5f5f5;
  padding: 80px 40px; /* padding instead of container */
  text-align: center;
}

.our-work__subtitle {
  color: #f39c12;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.our-work__title {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 20px;
  color: black;
}

.our-work__desc {
  font-size: 18px;
  color: #000;
  max-width: 900px;
  margin: 0 auto 40px;
}

/* Full width grid */
.our-work__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* exactly 4 cards per row */
  gap: 20px;
  width: 100%;
}

.case-card {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.case-card img {
  width: 100%;
  height: 220px; /* adjust height */
  object-fit: cover; /* keep aspect ratio, crop */
}

.case-card .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.case-card:hover .overlay {
  opacity: 1;
}

/* Responsive: 2 per row on tablets, 1 per row on mobile */
@media(max-width: 1024px) {
  .our-work__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media(max-width: 600px) {
  .our-work__grid {
    grid-template-columns: 1fr;
  }
}

/*buisness owneer */

.business-owner {
  background: #fff;
  color: #000;
  padding: 80px 20px;
  line-height: 1.7;
}

.business-owner .mFessage {
  max-width: 900px;
  margin: auto;
  font-size: 25px;
}

/* Animation base */
.fade-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 1s ease;
}

/* Active class when in view */
.fade-in-left.show {
  opacity: 1;
  transform: translateX(0);
}

/* CTA inside business owner */
.cta-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 40px 0 20px;
}

.line {
  flex: 1;
  height: 2px;
  background: #f39c12;
  max-width: 120px;
}

.cta-btn {
  padding: 15px 30px;
  border: 2px solid #f39c12;
  color: #f39c12;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.cta-btn:hover {
  background: #f39c12;
  color: #000;
}

.note {
  color: #f39c12;
  font-weight: bold;
  text-align: center;
  font-size: 14px;
}


/*Visitors secotion */
.visitors-section {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
  color: #fff;
  text-align: center;
}

.visitors-section .overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6); /* dark overlay */
}

.visitors-section .container {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: auto;
}

.visitors-content h2 {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 20px;
}
.visitors-content h2 span {
  color: #f39c12; /* orange highlight */
}

.visitors-content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.steps-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 20px;
}

.step-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 6px;
  padding: 25px;
  transition: transform .3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
}

.step-card .icon {
  font-size: 28px;
  margin-bottom: 15px;
}

.step-card h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 14px;
  line-height: 1.6;
}

/* Fade-in animation */
.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}
.fade-in-up.show {
  opacity: 1;
  transform: translateY(0);
}



/*custom stratergy offer */
.custom-strategy {
  background: #fff;
  color: #000;
  padding: 80px 20px;
  text-align: center;
}

.custom-strategy .container {
  max-width: 800px;
  margin: auto;
}

.custom-strategy h2 {
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 40px;
  line-height: 1.4;
  text-transform: uppercase;
}

.custom-strategy p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: left;
}

/* CTA wrapper */
.cta-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 40px 0 20px;
}

.line {
  flex: 1;
  height: 2px;
  background: #f39c12;
  max-width: 120px;
}

.cta-btn {
  padding: 15px 30px;
  border: 2px solid #f39c12;
  color: #f39c12;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  border-radius: 3px;
  background: #fff;
}

.cta-btn:hover {
  background: #f39c12;
  color: #000;
}



.reviews-section {
  position: relative;
  background-size: cover;
  background-position: top;
  padding: 100px 20px;
  color: #333;
  text-align: center;
}


.reviews-section .container {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: auto;
}

.reviews-section h2 {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 15px;
  color: #2d2d2d;
}

.reviews-section .subtitle {
  font-size: 14px;
  color: #555;
  margin-bottom: 40px;
  line-height: 1.6;
}

.reviews-box {
  display: flex;
  justify-content: center;
  gap: 40px;
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.review-item {
  flex: 1;
  min-width: 150px;
}

.review-item img {
  width: 60px;
  margin-bottom: 10px;
}



.review-item p {
  font-weight: bold;
  color: #333;
}

/* Featured */
.featured-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 30px;
  color: #2d2d2d;
}

.featured-logos {
  display: flex;
  
  justify-content: center;


}





/*Audit Forn*/
.audit-form {
  background: #2d67a3;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.audit-form h2 {
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: 900;
}

.audit-form p {
  margin-bottom: 30px;
  font-size: 14px;
}

#auditForm {
  max-width: 900px;
  margin: auto;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 15px;
}

#auditForm input,
#auditForm textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 3px;
  font-size: 14px;
}

#auditForm textarea {
  grid-column: 1 / -1;
  min-height: 80px;
  margin-bottom: 15px;
}

#auditForm button {
  background: #f39c12;
  border: none;
  padding: 14px 25px;
  color: #fff;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  transition: background .3s;
}

#auditForm button:hover {
  background: #d8890f;
}

#formMessage {
  margin-top: 15px;
  font-size: 14px;
}
#formMessage.error { color: #ff6b6b; }
#formMessage.success { color: #2ecc71; }


/* Additional feature */

.features {
  background: #0d1b47; /* dark blue */
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.features h2 {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 50px;
  text-transform: uppercase;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.feature-card {
  text-align: center;
  padding: 20px;
}

.feature-card img {
  width: 60px;
  margin-bottom: 15px;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #ddd;
}


/* Possiblities secotion*/
/* Discover Section */
.discover {
  background: #f9f9f9;
  padding: 80px 20px;
  text-align: center;
}

.discover-logo {
  width: 80px;
  margin-bottom: 20px;
}

.discover h2 {
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 40px;
  line-height: 1.5;
}

.discover h2 .orange { color: #f39c12; }
.discover h2 .green { color: #7ac142; }
.discover h2 .blue { color: #1e73be; }

.discover-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
  text-align: left;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.discover-grid ul {
  list-style: none;
  padding: 0;
}

.discover-grid li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #333;
}

/* CTA Section */
.cta-revenue {
  background: #1d1f2f;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.cta-revenue h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 20px;
}

.cta-revenue p {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 15px;
  line-height: 1.6;
  color: #ccc;
}

/* Reuse CTA wrapper */
.cta-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 40px 0 20px;
}

.line {
  flex: 1;
  height: 2px;
  background: #f39c12;
  max-width: 120px;
}

.cta-btn.dark {
  padding: 15px 30px;
  border: 2px solid #f39c12;
  color: #fff;
  background: #f39c12;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.cta-btn.dark:hover {
  background: transparent;
  color: #f39c12;
}


/* Footer */
/* Last CTA */
.last-cta {
  background: #fff;
  text-align: center;
  padding: 60px 20px;
}

.last-cta .subtext {
  color: #f39c12;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

.last-cta h2 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 25px;
  color: #1e3a8a;
}

.last-cta h2 span {
  color: #1e73be;
}

.last-cta .cta-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 15px;
}

.last-cta .line {
  flex: 1;
  height: 2px;
  background: #f39c12;
  max-width: 120px;
}

.last-cta .cta-btn {
  padding: 12px 25px;
  border: 2px solid #f39c12;
  background: #f39c12;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  transition: .3s;
}

.last-cta .cta-btn:hover {
  background: transparent;
  color: #f39c12;
}

.last-cta .note {
  font-size: 13px;
  color: #f39c12;
  margin-top: 10px;
}

/* Footer */
.footer {
  background: #2f5f92;
  color: #fff;
  padding: 50px 20px 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.footer-logo {
  width: 150px;
  margin-bottom: 15px;
}

.footer-about p {
  font-size: 14px;
  margin-bottom: 15px;
}

.phone-btn {
  padding: 10px 15px;
  background: #fff;
  border: none;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
}

.footer-links h4 {
  font-size: 15px;
  margin-bottom: 10px;
  font-weight: 700;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  color: #f39c12;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
}

.footer-bottom .policies {
  margin: 10px 0;
}

.footer-bottom a {
  color: #fff;
  text-decoration: none;
  margin: 0 5px;
  font-size: 13px;
}

.footer-bottom a:hover {
  color: #f39c12;
}

.socials a {
  margin: 0 5px;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
}

.socials a:hover {
  color: #f39c12;
}




/* NEW WEBSAIET */
/* Hero Section */
.hero-section {
  background: #e6b100;
  padding: 60px 80px;
  color: #fff;
}

.hero-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

/* Left Side */
.hero-left {
  flex: 1;
}

.hero-left .badge {
  display: inline-block;
  background: #fff;
  color: #e6b100;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 15px;
}

.hero-left h1 {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-left p {
  font-size: 18px;
  margin-bottom: 25px;
}

.call-btn {
  display: inline-block;
  background: #fff;
  color: #000;
  font-weight: bold;
  padding: 15px 25px;
  border-radius: 8px;
  text-decoration: none;
  margin-bottom: 20px;
}

.rating {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 14px;
  color: #222;
  font-weight: 600;
}
.stars {
  color: gold;
}

/* Right Side */
.hero-right {
  flex: 1;
  background: transparent;
  color: #000;
}

.hero-right h3 {
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: bold;
}

/* Product Cards */
.product-card {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.2);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 15px;
  backdrop-filter: blur(4px);
}

.product-card .icon {
  background: rgba(255,255,255,0.6);
  font-size: 24px;
  padding: 15px;
  border-radius: 12px;
  margin-right: 15px;
}

.product-card .details h4 {
  font-size: 18px;
  margin-bottom: 5px;
}

.product-card .details p {
  font-size: 14px;
  margin-bottom: 8px;
}

.price {
  display: flex;
  align-items: center;
  gap: 8px;
}
.price strong {
  font-size: 20px;
  color: #000;
}
.price .old {
  text-decoration: line-through;
  color: #555;
  font-size: 14px;
}
.price .discount {
  background: #e53935;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 6px;
}
.price .small {
  font-size: 14px;
  color: #333;
}

/* Yellow Background Icon Carousel */
.icon-carousel {
  background: #e5b516;
  min-height: 180px;   /* allows shrink */
  padding: 40px 20px;  /* breathing space */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
}


.icon-carousel .carousel-item {
  position: absolute;
  opacity: 0;
  transition: opacity 0.8s ease;
  color: #000; /* black icon + text */
}

.icon-carousel .carousel-item.active {
  opacity: 1;
}

.icon-carousel i {
  font-size: 70px;
  margin-bottom: 15px;
  display: block;
}

.icon-carousel p {
  font-size: 22px;
  font-weight: bold;
}





/* Global fix: prevent right-side scrolling */
html, body {
  width: 100%;
  overflow-x: hidden;
}

/* Navbar responsive */
/* Mobile menu hidden by default */
.mobile-menu {
  max-height: 0;
  overflow: hidden;
  flex-direction: column;
  background: #111;
  padding: 0 20px;   /* padding only for left/right */
  list-style: none;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

/* Links inside */
.mobile-menu li {
  margin: 12px 0;
}
.mobile-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  display: block;
  transition: color 0.3s;
}
.mobile-menu a:hover {
  color: #f39c12;
}

/* Show when active */
.mobile-menu.show {
  max-height: 300px;   /* enough height to show links */
  padding: 20px;       /* padding visible only when open */
}

/* Desktop hides mobile menu */
@media(min-width: 769px) {
  .mobile-menu { max-height: none !important; display: none !important; }
}


/* Hero Responsive */
@media(max-width: 900px) {
  .hero-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .hero-left h1 {
    font-size: 28px;
  }
  .hero-left p {
    font-size: 16px;
  }
}

/* Icon Carousel Responsive */
@media(max-width:768px){
  .icon-carousel i { font-size: 45px; }
  .icon-carousel p { font-size: 16px; }
}

/* Mobile menu hidden by default */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #111;
  padding: 20px;
  list-style: none;
}

.mobile-menu li {
  margin: 10px 0;
}

.mobile-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  transition: color 0.3s;
}

.mobile-menu a:hover {
  color: #f39c12;
}

/* Show when active */
.mobile-menu.show {
  display: flex;
}

/* Responsive behavior */
@media(min-width: 769px) {
  .mobile-menu { display: none !important; }
}


