@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Montserrat:wght@400;500;600;700&display=swap");

:root {
  --primary-red: #ff0000; /* PURE RED */
  --primary-red-dark: #cc0000; /* Darker red for hovers */
  --golden: #ffd700; /* GOLDEN */
  --golden-light: #fff8dc; /* Light golden for highlights */
  --dark-bg: #000000; /* Pure black */
  --dark-bg-light: #0a0a0a; /* Very dark, almost black */
  --dark-bg-lighter: #111111; /* Slightly lighter black */
  --text-light: #ffffff; /* Pure white */
  --text-gray: #e5e5e5; /* Light gray, almost white */
  --footer-text: #cccccc; /* Light grey for footer text */
  --accent-orange: #ff8c00; /* Orange accent - Dark Orange */

  /* Adding standard sizes for consistency */
  --navbar-height: 80px;
  --footer-padding: 50px;
  --navbar-text-size: 15px;
  --footer-text-size: 14px;
  --footer-heading-size: 17px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #000000; /* Pure black */
  color: #ffffff; /* Pure white */
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1 {
  color: var(--primary-red);
  font-weight: 700;
}

h2 {
  color: var(--golden);
  font-weight: 600;
}

h3 {
  color: var(--golden);
  font-weight: 600;
}

h4 {
  color: var(--accent-orange);
  font-weight: 500;
}

/* Full-width container for proper layout */
.container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}

/* Added red line at top instead of full top bar */
.top-bar-line {
  height: 4px;
  background: linear-gradient(90deg, var(--primary-red) 0%, var(--accent-orange) 100%);
  position: relative;
}

.top-bar-line::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 200px;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, white 50%, transparent 100%);
  clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
}

/* Header Styles */
.top-bar {
  background-color: #0a0a0a; /* Very dark */
  padding: 10px 0;
  font-size: 14px;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.top-bar-left {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.top-bar-left span {
  color: #e5e5e5; /* Light gray */
}

.top-bar-left span i {
  color: var(--golden); /* Light golden */
  margin-right: 5px;
}

.top-bar-right a {
  color: #ffffff; /* Pure white */
  text-decoration: none;
  transition: color 0.3s;
}

.top-bar-right a:hover {
  color: var(--golden); /* Light golden */
}

.top-bar-right i {
  margin-right: 5px;
}

/* Professional navbar with standard height and full-width layout */
.navbar {
  background-color: #000000; /* Pure black */
  padding: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

/* Full-width nav content with proper alignment */
.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--navbar-height);
  width: 100%;
}

/* Logo stays on the left */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.logo-text h1 {
  font-size: 22px;
  color: var(--primary-red); /* Pure red */
  margin: 0;
  font-weight: 700;
  line-height: 1.2;
}

.logo-text p {
  font-size: 12px;
  color: var(--golden); /* Light golden */
  margin: 0;
  line-height: 1;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: #ffffff; /* Pure white */
  margin: 3px 0;
  transition: 0.3s;
}

/* Menu stays on the right with consistent text size */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 35px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  color: #ffffff; /* Pure white */
  text-decoration: none;
  font-weight: 500;
  font-size: var(--navbar-text-size);
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--golden); /* Light golden */
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #0a0a0a; /* Very dark */
  list-style: none;
  padding: 15px 0;
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.7);
  border-radius: 8px;
  margin-top: 10px;
  border: 1px solid #333333;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu a {
  padding: 12px 25px;
  display: block;
  color: #ffffff; /* Pure white */
  transition: all 0.3s;
  font-size: 14px;
}

.dropdown-menu a:hover {
  background-color: #111111;
  color: var(--golden); /* Light golden */
  padding-left: 30px;
}

/* ============================================
   BLOGS PAGE - EXACT IMAGE INTERFACE
   ============================================ */

/* Blogs Hero Section */
.page-hero {
  background-color: #1a1a1a;
  padding: 60px 0;
  text-align: center;
  border-bottom: 1px solid #333;
  margin-bottom: 40px;
}

.page-title {
  font-size: 2.8rem;
  color: var(--primary-red);
  font-weight: 800;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-subtitle {
  font-size: 1.1rem;
  color: var(--text-gray);
  font-weight: 400;
}

/* Blogs Content - Exact Image Style */
.blogs-section {
  padding: 0 0 80px;
  background-color: #000000;
}

.blogs-content {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.blog-post {
  background-color: #0a0a0a;
  padding: 30px 35px;
  border-left: 5px solid var(--primary-red);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border-radius: 0 8px 8px 0;
  transition: all 0.3s ease;
}

.blog-post:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 25px rgba(255, 0, 0, 0.2);
}

.blog-post-title {
  font-size: 1.6rem;
  color: var(--golden);
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-post-client {
  font-size: 1.1rem;
  color: var(--primary-red);
  font-weight: 600;
  margin-bottom: 5px;
}

.blog-post-subtitle {
  font-size: 1rem;
  color: var(--golden);
  font-weight: 500;
  margin-bottom: 15px;
  font-style: italic;
}

.blog-post-description {
  font-size: 1rem;
  color: var(--text-gray);
  line-height: 1.7;
  text-align: justify;
}

.highlight-post {
  border-left-color: var(--golden);
  background-color: #111111;
}

.highlight-post .blog-post-title {
  color: var(--golden);
}

/* ============================================
   UPDATED FOOTER - FIXED FOR MOBILE
   ============================================ */

.footer {
  background-color: #000000;
  padding: 60px 0 20px;
  border-top: 3px solid var(--primary-red);
  color: #fff;
  width: 100%;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 40px;
}

/* Company Info - Left Section */
.footer-company {
  flex: 2;
  min-width: 300px;
}

.footer-company h2 {
  color: var(--primary-red);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.footer-company h3 {
  color: var(--golden);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.company-tagline {
  color: var(--footer-text);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 300px;
}

/* Footer Columns */
.footer-column {
  flex: 1;
  min-width: 200px;
}

.footer-column h4 {
  color: var(--golden) !important;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
}

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

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s;
  display: inline-block;
}

.footer-column a:hover {
  color: var(--golden);
  padding-left: 5px;
}

/* Contact Column */
.footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  gap: 10px;
}

.footer-contact .contact-item i {
  color: var(--primary-red);
  font-size: 1rem;
  margin-top: 3px;
  min-width: 16px;
}

.footer-contact .contact-item a,
.footer-contact .contact-item span {
  color: #ffffff;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.3s;
  line-height: 1.6;
}

.footer-contact .contact-item a:hover {
  color: var(--golden);
}

.footer-contact .contact-address {
  align-items: flex-start;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #333;
  width: 100%;
}

.footer-bottom p {
  color: #aaa;
  font-size: 0.9rem;
}

/* Added image carousel styles */
.hero-carousel {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 500px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(255, 0, 0, 0.4);
}

.carousel-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.carousel-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 0, 0, 0.9); /* Pure red */
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  z-index: 10;
  transition: all 0.3s;
}

.carousel-btn:hover {
  background: var(--primary-red-dark);
  transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
  left: 15px;
}

.carousel-next {
  right: 15px;
}

.carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  background: var(--primary-red); /* Pure red */
  width: 30px;
  border-radius: 6px;
}

/* ============================================
  HERO SECTION WITH RESPONSIVE BACKGROUND
   ============================================ */

/* Hero Section with Background Image */
.hero {
  position: relative;
  padding: 80px 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('public/images/firstone.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero-bg {
  display: none; /* Hide the old background */
}

.hero-title {
  font-size: 56px;
  color: var(--primary-red); /* ←  RED */
  margin-bottom: 40px;
  font-weight: 800;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3); /* ← Optional: lighter shadow for better visibility on dark background */
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero-text p {
  color: #ffffff; /* Pure white */
  margin-bottom: 20px;
  line-height: 1.8;
  text-align: justify;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-text .highlight {
  color: var(--primary-red); /* Pure red */
  font-weight: 600;
}

/* Added highlight golden class for company names */
.highlight-golden {
  color: var(--golden); /* Light golden */
  font-weight: 600;
}

/* hero buttons styling */
.hero-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.btn-primary {
  padding: 15px 40px;
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 0, 0, 0.5);
}

.btn-secondary {
  padding: 15px 40px;
  background: transparent;
  color: var(--golden); /* Light golden */
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s;
  border: 2px solid var(--golden);
}

.btn-secondary:hover {
  background: var(--golden); /* Light golden */
  color: #000000; /* Black on hover */
}

/* ============================================
   RESPONSIVE HERO SECTION - MOBILE, TABLET, DESKTOP
   ============================================ */

/* Tablet (1024px and below) */
@media (max-width: 1024px) {
  .hero {
    min-height: 500px;
    padding: 60px 0;
  }
  
  .hero-title {
    font-size: 48px;
  }
  
  .hero-grid {
    gap: 40px;
  }
}

/* Tablet (768px and below) */
@media (max-width: 768px) {
  .hero {
    min-height: 450px;
    padding: 50px 0;
    background-attachment: scroll; /* Better performance on mobile */
  }
  
  .hero-title {
    font-size: 36px;
    margin-bottom: 30px;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-carousel {
    max-width: 100%;
    height: 400px;
    order: -1; /* Move carousel above text on mobile */
  }
  
  .hero-buttons {
    justify-content: center;
  }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
  .hero {
    min-height: 400px;
    padding: 40px 0;
  }
  
  .hero-title {
    font-size: 32px;
    margin-bottom: 25px;
    text-align: center;
  }
  
  .hero-text p {
    font-size: 15px;
    text-align: left;
  }
  
  .hero-carousel {
    height: 300px;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 15px;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
    padding: 14px 30px;
  }
}

/* Small Mobile (360px and below) */
@media (max-width: 360px) {
  .hero {
    min-height: 350px;
    padding: 30px 0;
  }
  
  .hero-title {
    font-size: 28px;
  }
  
  .hero-carousel {
    height: 250px;
  }
}

/* Added icon grid section styling from target website */
.icon-grid-section {
  padding: 40px 0;
  background: #000000;
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.icon-grid-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 30px 20px;
  background: #0a0a0a;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.icon-grid-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary-red);
  box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}

.icon-grid-item i {
  font-size: 48px;
  color: var(--primary-red);
}

.icon-grid-item span {
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
}

/* Services Overview */
.services-overview {
  padding: 80px 0;
  background-color: #000000; /* Pure black */
}

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

.service-card {
  background: #0a0a0a; /* Very dark */
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-red); /* Pure red */
  box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--accent-orange) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon i {
  font-size: 36px;
  color: white;
}

.service-card h3 {
  color: var(--golden); /* Light golden */
  margin-bottom: 15px;
  font-size: 22px;
}

.service-card p {
  color: #ffffff; /* Pure white */
  margin-bottom: 20px;
}

.service-link {
  color: var(--primary-red); /* Pure red */
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s;
}

.service-link:hover {
  gap: 12px;
}

/* New home services grid with images */
.services-grid-home {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.service-card-home {
  background: #0a0a0a; /* Very dark */
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.service-card-home:hover {
  transform: translateY(-10px);
  border-color: var(--primary-red); /* Pure red */
  box-shadow: 0 15px 40px rgba(255, 0, 0, 0.4);
}

.service-image-home {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.service-image-home img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

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

.service-card-home h3 {
  color: var(--golden); /* Light golden */
  padding: 20px 25px 15px;
  font-size: 20px;
  line-height: 1.4;
}

.service-card-home p {
  color: #ffffff; /* Pure white */
  padding: 0 25px 20px;
  line-height: 1.6;
}

.service-card-home .service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 25px 25px;
  color: var(--primary-red); /* Pure red */
  text-decoration: none;
  font-weight: 600;
  transition: gap 0.3s;
}

.service-card-home .service-link:hover {
  gap: 12px;
}

/* Section Styles */
.section-title {
  font-size: 48px;
  color: var(--primary-red); /* Pure red */
  text-align: center;
  margin-bottom: 15px;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
}

.section-subtitle {
  text-align: center;
  color: var(--golden); /* Light golden */
  font-size: 24px;
  margin-bottom: 50px;
  font-weight: 600;
}

.section-heading {
  font-size: 36px;
  color: var(--primary-red); /* Pure red */
  margin-bottom: 30px;
  font-weight: 700;
}

/* Company Section */
.company-section {
  padding: 80px 0;
  background: #000000; /* Pure black */
}

.company-content {
  margin-top: 50px;
}

.vision-mission {
  margin-bottom: 80px;
}

.vm-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 60px;
}

.vm-card.reverse {
  direction: rtl;
}

.vm-card.reverse > * {
  direction: ltr;
}

.vm-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.vm-title {
  font-size: 48px;
  color: var(--golden); /* Light golden */
  margin-bottom: 20px;
  font-weight: 700;
}

.vm-content p {
  color: #ffffff; /* Pure white */
  font-size: 16px;
  line-height: 1.8;
}

.executive-summary {
  background-color: #0a0a0a; /* Very dark */
  padding: 50px;
  border-radius: 12px;
  border-left: 5px solid var(--primary-red); /* Pure red */
}

.summary-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: center;
}

.summary-text p {
  color: #ffffff; /* Pure white */
  margin-bottom: 20px;
  line-height: 1.8;
}

.summary-images {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.summary-images img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

/* Introduction Section */
.introduction-section {
  padding: 80px 0;
  background-color: #000000; /* Pure black */
}

.intro-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  align-items: start;
  margin-top: 50px;
}

.intro-text p {
  color: #ffffff; /* Pure white */
  margin-bottom: 25px;
  line-height: 1.8;
  text-align: justify;
}

.intro-text .highlight {
  color: var(--primary-red); /* Pure red */
  font-weight: 600;
}

.intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}

/* Services Overview */
.services-overview {
  padding: 80px 0;
  background-color: #000000; /* Pure black */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--golden); /* Light golden */
  font-weight: 700;
}

/* For 4 cards in a row on desktop, 2 on tablet, 1 on mobile */
.services-grid-home {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Tablet: 2 cards per row */
@media (max-width: 1024px) {
  .services-grid-home {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile: 1 card per row */
@media (max-width: 768px) {
  .services-grid-home {
    grid-template-columns: 1fr;
  }

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

/* Your existing card styles - keep these */
.service-card-home {
  background: #0a0a0a; /* Very dark */
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.service-card-home:hover {
  transform: translateY(-10px);
  border-color: var(--primary-red); /* Pure red */
  box-shadow: 0 15px 40px rgba(255, 0, 0, 0.4);
}

.service-image-home {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.service-image-home img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

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

.service-card-home h3 {
  color: var(--golden); /* Light golden */
  padding: 20px 25px 15px;
  font-size: 20px;
  line-height: 1.4;
}

.service-card-home p {
  color: #ffffff; /* Pure white */
  padding: 0 25px 20px;
  line-height: 1.6;
}

.service-card-home .service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 25px 25px;
  color: var(--primary-red); /* Pure red */
  text-decoration: none;
  font-weight: 600;
  transition: gap 0.3s;
}

.service-card-home .service-link:hover {
  gap: 12px;
}
/* Why Choose Us */
.why-choose {
  padding: 80px 0;
  background: #000000; /* Pure black */
}

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

.feature-card {
  background: #0a0a0a; /* Very dark */
  padding: 35px 25px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.feature-card:hover {
  border-color: var(--golden); /* Light golden */
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--golden) 0%, var(--golden-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon i {
  font-size: 32px;
  color: #000000; /* Black */
}

.feature-card h4 {
  color: #ffffff; /* Pure white */
  margin-bottom: 12px;
  font-size: 20px;
}

.feature-card p {
  color: #ffffff; /* Pure white */
  font-size: 14px;
}

/* Consultation CTA */
.consultation-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--accent-orange) 100%);
  text-align: center;
}

.cta-content h2 {
  color: white;
  font-size: 42px;
  margin-bottom: 20px;
  font-weight: 700;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  margin-bottom: 30px;
}

.consultation-cta .btn-primary {
  background: white;
  color: var(--primary-red); /* Pure red */
}

.consultation-cta .btn-primary:hover {
  background: #000000; /* Black */
  color: white;
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  background-color: #000000; /* Pure black */
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  margin-top: 50px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-card {
  background: #0a0a0a; /* Very dark */
  padding: 30px;
  border-radius: 12px;
  border-left: 4px solid var(--primary-red); /* Pure red */
  transition: all 0.3s;
}

.contact-card:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 20px rgba(255, 0, 0, 0.3);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--accent-orange) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.contact-icon i {
  font-size: 22px;
  color: white;
}

.contact-card h4 {
  color: var(--golden); /* Light golden */
  margin-bottom: 10px;
  font-size: 18px;
}

.contact-card p {
  color: #ffffff; /* Pure white */
  margin: 5px 0;
}

.contact-card a {
  color: #ffffff; /* Pure white */
  text-decoration: none;
  transition: color 0.3s;
}

.contact-card a:hover {
  color: var(--golden); /* Light golden */
}

.contact-map {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.contact-map iframe {
  filter: grayscale(20%) contrast(1.2);
}

/* Scroll to Top */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-red);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background: var(--primary-red-dark);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 0, 0, 0.5);
}

/* Expertise Section */
.expertise-section {
  padding: 80px 0;
  background-color: #000000; /* Pure black */
}

.expertise-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
  margin-top: 50px;
}

.expertise-content p {
  color: #ffffff; /* Pure white */
  margin-bottom: 20px;
  line-height: 1.8;
  text-align: justify;
}

.expertise-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(255, 0, 0, 0.3);
}

.expertise-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Company Page Styles */
.company-page {
  padding: 80px 0;
  background: #000000; /* Pure black */
  position: relative;
}

.company-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("/placeholder.svg?height=800&width=1600") center / cover;
  opacity: 0.02;
  z-index: -1;
}

.vision-section,
.mission-section {
  padding: 60px 0;
}

.vision-content,
.mission-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.vision-text,
.mission-text {
  padding: 20px;
}

.vision-text h2,
.mission-text h2 {
  font-size: 48px;
  color: var(--primary-red); /* Pure red */
  margin-bottom: 25px;
  font-weight: 700;
}

.vision-text p,
.mission-text p {
  color: #ffffff; /* Pure white */
  font-size: 16px;
  line-height: 1.8;
  text-align: justify;
}

.vision-image img,
.mission-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}

.blogs-container {
  padding: 60px 0;
}

.section-subtitle-red {
  text-align: center;
  color: var(--primary-red); /* Pure red */
  font-size: 20px;
  margin-bottom: 50px;
  font-weight: 500;
}

.blog-card-light {
  background: #0a0a0a; /* Very dark */
  padding: 30px;
  border-radius: 12px;
  transition: all 0.3s;
  border-left: 4px solid var(--golden); /* Light golden */
}

.blog-card-light:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.blog-icon-light {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--golden) 0%, var(--golden-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.blog-icon-light i {
  font-size: 28px;
  color: #000000; /* Black */
}

.blog-title-gold {
  color: var(--golden); /* Light golden */
  margin-bottom: 12px;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 600;
}

.blog-card-light p {
  color: #ffffff; /* Pure white */
  font-size: 14px;
  line-height: 1.6;
}

.blogs-image {
  margin-top: 50px;
  text-align: center;
}

.blogs-image img {
  max-width: 600px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}

.executive-summary-light {
  padding: 60px 0;
}

.summary-content {
  background: #0a0a0a; /* Very dark */
  padding: 40px;
  border-radius: 12px;
  border-left: 5px solid var(--primary-red); /* Pure red */
  margin-bottom: 40px;
}

.summary-content p {
  color: #ffffff; /* Pure white */
  margin-bottom: 20px;
  line-height: 1.8;
  text-align: justify;
}

.summary-content p:last-child {
  margin-bottom: 0;
}

/* Support Page */
.support-page {
  padding: 80px 0;
  background: #000000; /* Pure black */
}

/* Contact Page */
.contact-page {
  padding: 80px 0;
  background: #000000; /* Pure black */
}

.contact-page-title {
  font-size: 56px;
  color: var(--primary-red); /* Pure red */
  text-align: center;
  margin-bottom: 60px;
  font-weight: 800;
}

.contact-grid-page {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  margin-top: 50px;
}

.contact-info-box {
  background: #0a0a0a; /* Very dark */
  padding: 40px;
  border-radius: 12px;
  border-left: 5px solid var(--primary-red); /* Pure red */
}

.contact-info-box h3 {
  color: var(--golden); /* Light golden */
  margin-bottom: 30px;
  font-size: 28px;
}

.contact-detail {
  margin-bottom: 25px;
}

.contact-detail h4 {
  color: var(--primary-red); /* Pure red */
  margin-bottom: 10px;
  font-size: 18px;
}

.contact-detail p {
  color: #ffffff; /* Pure white */
  font-size: 16px;
  line-height: 1.6;
}

.contact-detail a {
  color: #ffffff; /* Pure white */
  text-decoration: none;
  transition: color 0.3s;
}

.contact-detail a:hover {
  color: var(--golden); /* Light golden */
}

.contact-form-box {
  background: #0a0a0a; /* Very dark */
  padding: 40px;
  border-radius: 12px;
  border-left: 5px solid var(--golden); /* Light golden */
}

.contact-form-box h3 {
  color: var(--golden); /* Light golden */
  margin-bottom: 30px;
  font-size: 28px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  color: #ffffff; /* Pure white */
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  background: #000000; /* Pure black */
  border: 1px solid #333333;
  border-radius: 8px;
  color: #ffffff; /* Pure white */
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-red); /* Pure red */
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 0, 0, 0.5);
}

/* Service Pages */
.service-page-container {
  padding: 80px 0;
  background: #000000; /* Pure black */
  min-height: 100vh;
  position: relative;
}

.service-main-title {
  font-size: 48px;
  color: var(--primary-red); /* Pure red */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-content-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.service-main-content {
  background: #0a0a0a; /* Very dark */
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 40px;
  border-left: 5px solid var(--primary-red); /* Pure red */
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.service-main-text {
  color: #ffffff; /* Pure white */
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

.service-main-text:last-child {
  margin-bottom: 0;
}

.service-section-header {
  font-size: 32px;
  color: var(--primary-red); /* Pure red */
  margin: 40px 0 20px;
  font-weight: 700;
  border-bottom: 2px solid var(--primary-red);
  padding-bottom: 10px;
}

.core-services-container {
  background: #0a0a0a; /* Very dark */
  border-radius: 12px;
  padding: 30px;
  margin: 30px 0;
  border-left: 5px solid var(--primary-red); /* Pure red */
}

.core-service-item {
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.core-service-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.core-service-title {
  font-size: 20px;
  color: var(--primary-red); /* Pure red */
  margin-bottom: 8px;
  font-weight: 600;
}

.core-service-desc {
  color: #ffffff; /* Pure white */
  font-size: 14px;
  line-height: 1.6;
}

.service-list-container {
  background: #0a0a0a; /* Very dark */
  border-radius: 12px;
  padding: 30px;
  margin: 30px 0;
  border-left: 5px solid var(--primary-red); /* Pure red */
}

.service-list-title {
  font-size: 24px;
  color: var(--primary-red); /* Pure red */
  margin-bottom: 20px;
  font-weight: 600;
}

.service-items-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-items-list li {
  color: #ffffff; /* Pure white */
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
  font-size: 15px;
  line-height: 1.6;
}

.service-items-list li:before {
  content: "•";
  color: var(--primary-red); /* Pure red */
  font-size: 20px;
  position: absolute;
  left: 0;
  top: -2px;
}

.checkmark-list-container {
  background: #0a0a0a; /* Very dark */
  border-radius: 12px;
  padding: 30px;
  margin: 30px 0;
  border-left: 5px solid var(--primary-red); /* Pure red */
}

.checkmark-list-title {
  font-size: 24px;
  color: var(--primary-red); /* Pure red */
  margin-bottom: 20px;
  font-weight: 600;
}

.checkmark-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.checkmark-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #ffffff; /* Pure white */
  font-size: 15px;
}

.checkmark-item i {
  color: var(--primary-red); /* Pure red */
  margin-top: 3px;
  flex-shrink: 0;
}

.service-columns-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin: 30px 0;
}

.service-column {
  background: #0a0a0a; /* Very dark */
  border-radius: 12px;
  padding: 30px;
  border-left: 5px solid var(--primary-red); /* Pure red */
}

.service-column h3 {
  font-size: 24px;
  color: var(--primary-red); /* Pure red */
  margin-bottom: 20px;
  font-weight: 600;
}

.service-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-column ul li {
  color: #ffffff; /* Pure white */
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
  font-size: 15px;
  line-height: 1.6;
}

.service-column ul li:before {
  content: "•";
  color: var(--primary-red); /* Pure red */
  font-size: 20px;
  position: absolute;
  left: 0;
  top: -2px;
}

/* Company page responsive */
@media (max-width: 768px) {
  .page-title {
    font-size: 36px;
  }

  .vision-content,
  .mission-content {
    grid-template-columns: 1fr;
  }

  .vision-text h2,
  .mission-text h2 {
    font-size: 36px;
  }

  .vision-image img,
  .mission-image img {
    height: 300px;
  }

  .summary-content {
    padding: 30px 20px;
  }

  .service-main-title {
    font-size: 32px;
  }

  .service-section-header {
    font-size: 26px;
  }

  .service-main-content,
  .core-services-container,
  .service-list-container,
  .checkmark-list-container,
  .service-column {
    padding: 25px 20px;
  }

  .checkmark-list,
  .service-columns-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .service-main-title {
    font-size: 26px;
  }

  .service-section-header {
    font-size: 22px;
  }

  .service-main-content,
  .core-services-container,
  .service-list-container,
  .checkmark-list-container,
  .service-column {
    padding: 20px 15px;
  }
}
/* Responsive Design */
@media (max-width: 1024px) {
  .container {
    padding: 0 30px;
  }

  .nav-menu {
    gap: 25px;
  }

  .nav-menu a {
    font-size: 14px;
  }

  .hero-grid,
  .expertise-grid,
  .contact-grid-page {
    grid-template-columns: 1fr;
  }

  .hero-carousel {
    max-width: 100%;
  }

  .services-grid-home {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Footer responsive for tablet */
  .footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
  }
}

/* ============================================
   MOBILE RESPONSIVE STYLES
   ============================================ */

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  /* Mobile navbar adjustments */
  :root {
    --navbar-height: 70px;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .logo-img {
    width: 45px;
    height: 45px;
  }

  .logo-text h1 {
    font-size: 18px;
  }

  .logo-text p {
    font-size: 11px;
  }

  /* Mobile menu slides from right */
  .nav-menu {
    position: fixed;
    top: var(--navbar-height);
    right: -100%;
    width: 280px;
    height: calc(100vh - var(--navbar-height));
    background: #000000;
    flex-direction: column;
    padding: 30px 20px;
    gap: 20px;
    transition: right 0.3s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.7);
    overflow-y: auto;
    align-items: flex-start;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu a {
    font-size: 16px;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    margin-top: 10px;
    display: none;
    box-shadow: none;
    padding: 10px 0 10px 20px;
  }

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

  .hero-title {
    font-size: 36px;
  }

  .services-grid-home {
    grid-template-columns: 1fr;
  }

  .icon-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 32px;
  }

  .contact-grid-page {
    gap: 30px;
  }

  .contact-info-box,
  .contact-form-box {
    padding: 30px 20px;
  }

  /* BLOGS PAGE MOBILE */
  .page-hero {
    padding: 40px 20px;
  }

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

  .page-subtitle {
    font-size: 1rem;
  }

  .blog-post {
    padding: 20px;
    margin: 0 10px;
  }

  .blog-post-title {
    font-size: 1.3rem;
  }

  .blog-post-client {
    font-size: 1rem;
  }

  .blog-post-description {
    font-size: 0.95rem;
  }

  /* FOOTER MOBILE FIX - STACKED LAYOUT */
  .footer {
    padding: 40px 0 20px;
  }

  .footer-content {
    flex-direction: column;
    gap: 35px;
    text-align: center;
  }

  .footer-company {
    order: 1;
    margin-bottom: 20px;
    text-align: center;
  }

  .company-tagline {
    margin: 0 auto;
  }

  .footer-column {
    order: 2;
    width: 100%;
    margin-bottom: 25px;
  }

  .footer-contact {
    order: 3;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-contact .contact-item {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 8px;
  }

  .footer-contact .contact-item i {
    margin-right: 0;
    margin-bottom: 5px;
  }

  .footer-contact .contact-address span {
    max-width: 280px;
    line-height: 1.5;
  }

  /* Center all footer links */
  .footer-column ul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-column ul li {
    margin-bottom: 15px;
  }

  .footer-column a {
    font-size: 1rem;
  }

  /* Company info adjustments */
  .footer-company h2 {
    font-size: 1.6rem;
  }

  .footer-company h3 {
    font-size: 1.2rem;
  }

  .company-tagline {
    font-size: 0.95rem;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Small mobile devices */
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  :root {
    --navbar-height: 65px;
  }

  .logo-img {
    width: 40px;
    height: 40px;
  }

  .logo-text h1 {
    font-size: 16px;
  }

  .logo-text p {
    font-size: 10px;
  }

  .hero-title {
    font-size: 28px;
  }

  .section-title {
    font-size: 26px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .contact-page-title {
    font-size: 30px;
  }

  /* Blogs Page Small Mobile */
  .page-title {
    font-size: 1.5rem;
  }

  .blog-post {
    padding: 18px 15px;
  }

  .blog-post-title {
    font-size: 1.2rem;
  }

  /* Footer Small Mobile */
  .footer {
    padding: 30px 0 20px;
  }

  .footer-content {
    gap: 30px;
  }

  .footer-contact .contact-address span {
    font-size: 0.9rem;
    max-width: 250px;
  }

  .footer-bottom p {
    font-size: 0.8rem;
    padding: 0 10px;
  }
}


/* ===============================
   SUPPORT PAGE STYLES
================================ */

.support-page {
  padding: 80px 0;
  background: #000000; /* Pure black */
}

/* Page Title */
.page-title {
  text-align: center;
  font-size: 56px;
  color: var(--primary-red); /* Pure red */
  font-weight: 800;
  margin-bottom: 60px;
  font-family: "Montserrat", sans-serif;
}

/* Availability Card with Background Image - UPDATED TO .jpg */
.support-availability {
  background: 
    linear-gradient(rgba(10, 10, 10, 0.45), rgba(10, 10, 10, 0.45)),
    url('public/images/supportbg.jpg') no-repeat center center;
  background-size: cover;
  background-color: #0a0a0a; /* Fallback color */
  border-radius: 12px;
  padding: 45px;
  max-width: 850px;
  margin: 0 auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
  border-left: 5px solid var(--primary-red); /* Pure red */
  position: relative;
  overflow: hidden;
  min-height: 400px; /* Ensure enough height for background image */
}

.service-availability-title {
  text-align: center;
  color: var(--golden); /* Light golden */
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 35px;
  position: relative;
  z-index: 2;
}

/* Info Grid */
.support-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}

.support-info-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.support-icon-large i {
  font-size: 26px;
  color: var(--primary-red); /* Pure red */
  margin-bottom: 6px;
}

.support-info-card h3 {
  font-size: 16px;
  color: #ffffff; /* Pure white */
  font-weight: 600;
}

.support-detail {
  font-size: 15px;
  color: var(--golden); /* Light golden */
}

/* ===============================
   SUPPORT SERVICES SECTION
================================ */

.support-services-section {
  background: #0a0a0a; /* Very dark */
  border-radius: 12px;
  padding: 45px;
  max-width: 850px;
  margin: 50px auto 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
}

.support-services-section .section-title {
  font-size: 26px;
  color: #ffffff; /* Pure white */
  margin-bottom: 30px;
  font-weight: 700;
  text-align: left;
}

.support-service-card {
  margin-bottom: 22px;
}

.support-service-title {
  font-size: 16px;
  color: var(--golden); /* Light golden */
  font-weight: 600;
  margin-bottom: 6px;
}

.support-service-card p {
  font-size: 14px;
  color: #ffffff; /* Pure white */
  line-height: 1.6;
}

/* ===============================
   RESPONSIVE – SUPPORT PAGE
================================ */

@media (max-width: 992px) {
  .support-availability {
    margin: 0 20px;
    max-width: calc(100% - 40px);
    min-height: 350px;
  }
}

@media (max-width: 768px) {
  .page-title {
    font-size: 38px;
  }

  .support-availability,
  .support-services-section {
    padding: 30px 25px;
    margin: 0 15px;
    max-width: calc(100% - 30px);
    min-height: 300px;
  }

  .support-info-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  /* Darker overlay on mobile for better readability */
  .support-availability {
    background: 
      linear-gradient(rgba(10, 10, 10, 0.45), rgba(10, 10, 10, 0.45)),
      url('public/images/supportbg.jpg') no-repeat center center;
    background-size: cover;
  }
}

@media (max-width: 480px) {
  .page-title {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .service-availability-title {
    font-size: 22px;
  }
  
  .support-availability,
  .support-services-section {
    padding: 25px 20px;
    margin: 0 10px;
    max-width: calc(100% - 20px);
    min-height: 280px;
  }
  
  .support-availability {
    background: 
      linear-gradient(rgba(10, 10, 10, 0.45), rgba(10, 10, 10, 0.45)),
      url('public/images/supportbg.jpg') no-repeat center center;
    background-size: cover;
  }
}
/* ===============================
   COMPANY PROFILE PAGE
================================ */

.company-page {
  padding: 80px 0;
  background: #000000; /* Pure black */
}

/* Page Title */
.company-page .page-title {
  text-align: center;
  font-size: 48px;
  font-weight: 800;
  color: var(--primary-red); /* Pure red */
  margin-bottom: 60px;
}

/* COMMON CARD STYLE */
.vision-section,
.mission-section,
.blogs-container,
.executive-summary-light {
  background: #0a0a0a; /* Very dark */
  border-radius: 12px;
  padding: 45px;
  max-width: 900px;
  margin: 0 auto 40px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7);
}

.section-heading {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-red); /* Pure red */
  margin-bottom: 15px;
  text-transform: capitalize;
}

/* Remove the dot at the end */
.section-heading::after {
  content: "";
}

/* TEXT */
.vision-text p,
.mission-text p,
.executive-summary-light p {
  color: #ffffff; /* Pure white */
  line-height: 1.8;
  font-size: 15px;
}

/* REMOVE SIDE IMAGES (IMAGE ME BHI NAHI) */
.vision-image,
.mission-image {
  display: block;
}

.vision-image img,
.mission-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Keep blogs and summary images hidden */
.blogs-image,
.summary-images {
  display: none;
}

/* BLOGS */
.blogs-container .section-title {
  color: var(--primary-red); /* Pure red */
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 5px;
}

.section-subtitle-red {
  color: var(--primary-red); /* Pure red */
  font-size: 15px;
  margin-bottom: 30px;
}

.blogs-grid {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.blog-card-light {
  display: flex;
  gap: 15px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-icon-light i {
  font-size: 20px;
  color: var(--primary-red); /* Pure red */
  margin-top: 4px;
}

.blog-title-gold {
  color: var(--golden); /* Light golden */
  font-size: 15px;
  font-weight: 600;
}

.blog-card-light p {
  color: #ffffff; /* Pure white */
  font-size: 14px;
  margin-top: 4px;
}

/* EXECUTIVE SUMMARY */
.executive-summary-light .section-title {
  color: var(--primary-red); /* Pure red */
  font-size: 28px;
  margin-bottom: 20px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .company-page .page-title {
    font-size: 36px;
  }

  .vision-section,
  .mission-section,
  .blogs-container,
  .executive-summary-light {
    padding: 30px 25px;
  }
}
/* ===============================
   SERVICE PAGES STYLES (EXACT UI/UX FROM IMAGES)
================================ */

/* Service Pages Container */
.service-page-container {
  padding: 60px 0;
  background: #000000; /* Pure black */
  min-height: 100vh;
}

/* Page Title (Red color like in images) */
.service-main-title {
  font-size: 48px;
  color: var(--primary-red); /* Pure red */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Service Content Container */
.service-content-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Main Service Paragraphs (like in images) */
.service-main-content {
  background: #0a0a0a; /* Very dark */
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 40px;
  border-left: 5px solid var(--primary-red); /* Pure red */
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.service-main-text {
  color: #ffffff; /* Pure white */
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.service-main-text:last-child {
  margin-bottom: 0;
}

/* Section Headers (Red like in images) */
.service-section-header {
  font-size: 32px;
  color: var(--primary-red); /* Pure red */
  margin: 40px 0 20px;
  font-weight: 700;
  border-bottom: 2px solid var(--primary-red);
  padding-bottom: 10px;
}

/* Core Services Grid (Corporate Services from image) */
.core-services-container {
  background: #0a0a0a; /* Very dark */
  border-radius: 12px;
  padding: 30px;
  margin: 30px 0;
  border-left: 5px solid var(--primary-red); /* Pure red */
}

.core-service-item {
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.core-service-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.core-service-title {
  font-size: 20px;
  color: var(--primary-red); /* Pure red */
  margin-bottom: 8px;
  font-weight: 600;
}

.core-service-desc {
  color: #ffffff; /* Pure white */
  font-size: 14px;
  line-height: 1.6;
}

/* Lists Styling (like in images) */
.service-list-container {
  background: #0a0a0a; /* Very dark */
  border-radius: 12px;
  padding: 30px;
  margin: 30px 0;
  border-left: 5px solid var(--primary-red); /* Pure red */
}

.service-list-title {
  font-size: 24px;
  color: var(--primary-red); /* Pure red */
  margin-bottom: 20px;
  font-weight: 600;
}

.service-items-list {
  list-style: none;
}

.service-items-list li {
  color: #ffffff; /* Pure white */
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
  font-size: 15px;
  line-height: 1.6;
}

.service-items-list li:before {
  content: "•";
  color: var(--primary-red); /* Pure red */
  font-size: 20px;
  position: absolute;
  left: 0;
  top: -2px;
}

/* Checkmark List (like in SOHO image) */
.checkmark-list-container {
  background: #0a0a0a; /* Very dark */
  border-radius: 12px;
  padding: 30px;
  margin: 30px 0;
  border-left: 5px solid var(--primary-red); /* Pure red */
}

.checkmark-list-title {
  font-size: 24px;
  color: var(--primary-red); /* Pure red */
  margin-bottom: 20px;
  font-weight: 600;
}

.checkmark-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.checkmark-list li {
  color: #ffffff; /* Pure white */
  padding-left: 30px;
  position: relative;
  font-size: 15px;
  line-height: 1.6;
}

.checkmark-list li:before {
  content: "✓";
  color: var(--primary-red); /* Pure red */
  font-size: 18px;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

/* Two Column Layout for Benefits/Additional Services */
.service-columns-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.service-column {
  background: #0a0a0a; /* Very dark */
  border-radius: 12px;
  padding: 30px;
  border-left: 5px solid var(--primary-red); /* Pure red */
}

/* Divider line like in images */
.content-divider {
  height: 2px;
  background: linear-gradient(90deg, var(--primary-red) 0%, transparent 100%);
  margin: 40px 0;
}

/* Simple section spacing */
.section-spacing {
  margin: 50px 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .service-main-title {
    font-size: 36px;
  }

  .service-section-header {
    font-size: 28px;
  }

  .service-main-content,
  .core-services-container,
  .service-list-container,
  .checkmark-list-container,
  .service-column {
    padding: 25px;
  }

  .checkmark-list {
    grid-template-columns: 1fr;
  }

  .service-columns-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .service-main-title {
    font-size: 28px;
  }

  .service-section-header {
    font-size: 24px;
  }

  .service-main-content,
  .core-services-container,
  .service-list-container,
  .checkmark-list-container,
  .service-column {
    padding: 20px;
  }
}

/* Global heading color scheme - Main: Red, Sub: Golden, Small: Orange */
h1 {
  color: var(--primary-red);
  font-weight: 700;
}

h2 {
  color: var(--golden);
  font-weight: 600;
}

h3 {
  color: var(--golden);
  font-weight: 600;
}

h4 {
  color: var(--accent-orange);
  font-weight: 600;
}

h5,
h6 {
  color: var(--accent-orange);
  font-weight: 500;
}

.footer-column h4 {
  /* Footer section headings stay white for contrast */
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-page-modern {
  position: relative;
  min-height: 100vh;
  padding: 100px 0 80px;
  background-color: var(--dark-bg);
  overflow: hidden;
}

.contact-page-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('public/images/map.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.3);
  z-index: 1;
}

.bahrain-map-background {
  display: none;
}

.contact-content-wrapper-modern {
  position: relative;
  z-index: 2;
  padding: 0 15px;
}

.contact-page-title-modern {
  font-size: 48px;
  color: var(--primary-red);
  text-align: center;
  margin-bottom: 15px;
  font-weight: 700;
}

.contact-page-subtitle-modern {
  font-size: 18px;
  color: var(--text-gray);
  text-align: center;
  margin-bottom: 60px;
  padding: 0 15px;
}

.contact-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.contact-info-box-modern,
.contact-form-box-modern {
  background: rgba(17, 17, 17, 0.95);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  padding: 40px;
  backdrop-filter: blur(10px);
}

.contact-box-title-golden {
  font-size: 28px;
  color: var(--golden);
  margin-bottom: 30px;
  font-weight: 600;
}

.contact-detail-item-modern {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-detail-item-modern:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-detail-icon-modern {
  width: 50px;
  height: 50px;
  background: var(--primary-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon-modern i {
  font-size: 22px;
  color: white;
}

.contact-detail-item-modern h4 {
  color: var(--accent-orange);
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
}

.contact-detail-item-modern p {
  color: var(--text-gray);
  margin: 5px 0;
  font-size: 14px;
  line-height: 1.6;
}

.contact-phone-golden,
.contact-email-golden,
.contact-address-golden {
  color: var(--accent-orange) !important;
  font-weight: 500;
}

.map-button-container {
  margin-top: 15px;
}

.map-open-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: transparent;
  border: 2px solid var(--golden);
  color: var(--golden);
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 14px;
}

.map-open-button:hover {
  background: var(--golden);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.map-open-button i {
  font-size: 16px;
}

.form-group-modern {
  margin-bottom: 25px;
}

.form-group-modern label {
  display: block;
  color: var(--golden);
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
}

.form-group-modern input,
.form-group-modern textarea {
  width: 100%;
  padding: 12px 15px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 6px;
  color: white;
  font-size: 14px;
  transition: all 0.3s;
}

.form-group-modern input:focus,
.form-group-modern textarea:focus {
  outline: none;
  border-color: var(--golden);
  background: rgba(0, 0, 0, 0.7);
}

.submit-btn-modern {
  width: 100%;
  padding: 15px;
  background: var(--primary-red);
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.submit-btn-modern:hover {
  background: var(--accent-orange);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

/* Enhanced Responsive Design */
@media (max-width: 1200px) {
  .contact-grid-modern {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
  }
  
  .contact-page-title-modern {
    font-size: 42px;
  }
}

@media (max-width: 992px) {
  .contact-grid-modern {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
  }
  
  .contact-page-modern {
    padding: 80px 0 60px;
  }
  
  .contact-page-title-modern {
    font-size: 38px;
  }
  
  .contact-info-box-modern,
  .contact-form-box-modern {
    padding: 35px 30px;
  }
  
  .contact-box-title-golden {
    font-size: 26px;
  }
}

@media (max-width: 768px) {
  .contact-grid-modern {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-page-modern {
    padding: 60px 0 40px;
  }
  
  .contact-page-title-modern {
    font-size: 32px;
    margin-bottom: 10px;
  }
  
  .contact-page-subtitle-modern {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .contact-info-box-modern,
  .contact-form-box-modern {
    padding: 25px 20px;
  }
  
  .contact-box-title-golden {
    font-size: 24px;
    margin-bottom: 25px;
  }
  
  .contact-detail-item-modern {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 25px;
  }
  
  .contact-detail-icon-modern {
    width: 45px;
    height: 45px;
  }
  
  .contact-detail-icon-modern i {
    font-size: 20px;
  }
  
  .contact-detail-item-modern h4 {
    font-size: 15px;
  }
  
  .contact-detail-item-modern p {
    font-size: 13px;
  }
  
  .map-open-button {
    padding: 10px 20px;
    font-size: 13px;
    width: 100%;
    justify-content: center;
  }
  
  .form-group-modern input,
  .form-group-modern textarea {
    padding: 10px 12px;
    font-size: 13px;
  }
  
  .submit-btn-modern {
    padding: 14px;
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .contact-page-modern {
    padding: 50px 0 30px;
  }
  
  .contact-page-title-modern {
    font-size: 28px;
  }
  
  .contact-page-subtitle-modern {
    font-size: 14px;
    margin-bottom: 30px;
  }
  
  .contact-info-box-modern,
  .contact-form-box-modern {
    padding: 20px 15px;
  }
  
  .contact-box-title-golden {
    font-size: 22px;
    margin-bottom: 20px;
  }
  
  .contact-detail-item-modern {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  
  .contact-detail-icon-modern {
    width: 40px;
    height: 40px;
  }
  
  .contact-detail-icon-modern i {
    font-size: 18px;
  }
  
  .map-open-button {
    padding: 9px 18px;
    font-size: 12px;
  }
}

/* ============================================
   SOHO PAGE - EXACT IMAGE LAYOUT
   ============================================ */

.content-with-image {
    display: flex;
    gap: 60px;
    align-items: center; /* Changed to center for better vertical alignment */
    margin-bottom: 60px;
}

.text-content {
    flex: 1;
}

.image-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-image {
    width: 100%;
    max-width: 450px; /* Slightly reduced max-width */
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); /* Enhanced shadow */
    object-fit: cover;
}

/* For the core services section specifically */
.core-services-section .section-image {
    max-width: 500px; /* Slightly larger for core services image */
    height: 400px; /* Fixed height for consistency */
    object-fit: contain; /* Changed to contain to see full image */
}

/* Adjust existing styles for new layout */
.service-main-content {
    margin-bottom: 0;
}

.service-section-header {
    margin-top: 0;
    margin-bottom: 30px;
    font-size: 2.2rem; /* Slightly larger for prominence */
}

.checkmark-list-container {
    margin-top: 20px;
}

/* Specific styling for the lists */
.checkmark-list {
    list-style-type: none;
    padding: 0;
}

.checkmark-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #e0e0e0; /* Changed to darker color for better readability */
}

.checkmark-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #e0e0e0; /* Brand color for checkmarks */
    font-weight: bold;
    font-size: 1.2rem;
}

/* Divider styling */
.content-divider {
    height: 2px;
    background-color: #e0e0e0;
    margin: 60px 0;
    width: 100%;
}

/* For mobile responsiveness */
@media (max-width: 992px) {
    .content-with-image {
        flex-direction: column;
        gap: 40px;
    }
    
    .text-content, .image-content {
        width: 100%;
    }
    
    .section-image {
        max-width: 100%;
        height: 300px; /* Fixed height on mobile */
    }
    
    .core-services-section .section-image {
        height: 350px; /* Taller for core services */
    }
    
    .content-divider {
        margin: 40px 0;
    }
}

@media (max-width: 768px) {
    .content-with-image {
        margin-bottom: 40px;
        gap: 30px;
    }
    
    .checkmark-list li {
        font-size: 1rem;
        padding-left: 30px;
    }
    
    .service-section-header {
        margin-bottom: 20px;
        font-size: 1.8rem;
    }
    
    .section-image {
        height: 250px;
    }
    
    .core-services-section .section-image {
        height: 300px;
    }
}

/* Additional styling for better text-image balance */
.service-main-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 25px;
}

.service-main-text:last-child {
    margin-bottom: 0;
}