/* Body Styles */
body {
  font-family: 'Roboto', sans-serif;
  background-color: #12191f;
  color: #ffffff;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

/* Header Layout */
header {
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}

header .site-title { 
  margin: 0; 
  padding: 0; 
}

header .site-title a { 
  color: #00ff88; 
  font-size: 1.8rem; 
  text-decoration: none; 
  font-family: 'Inter', sans-serif; 
  font-weight: 700; 
  letter-spacing: -0.5px; 
  transition: all 0.3s ease; 
  display: inline-block; 
  line-height: 1.2; 
}

header .site-title a:hover { 
  transform: scale(1.05); 
  text-shadow: 0 0 20px rgba(0, 255, 136, 0.3); 
}

/* Desktop Nav Layout */
.desktop-nav,
nav {
  display: flex;
  gap: 2rem;
  align-items: center;
  position: relative;
}

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

.dropdown-toggle {
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.dropdown-toggle::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 50%;
  background: linear-gradient(135deg, #00ff88, #00cc6a);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.dropdown:hover .dropdown-toggle {
  color: #00ff88;
  transform: translateY(-2px);
}

.dropdown:hover .dropdown-toggle::after {
  width: 100%;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #1a1f25;
  border: 1px solid #2a3441;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  z-index: 100;
  flex-direction: column;
  min-width: 250px;
}

.dropdown-menu a {
  display: block;
  padding: 0.5rem 0;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.dropdown-menu a:hover {
  color: #00ff88;
}

.dropdown:hover .dropdown-menu {
  display: flex;
}

/* Desktop nav links */
.desktop-nav > a,
nav > a,
.dropdown-toggle {
  position: relative;
  text-decoration: none;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
}

.desktop-nav > a::after,
nav > a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 50%;
  background: linear-gradient(135deg, #00ff88, #00cc6a);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.desktop-nav > a:hover,
nav > a:hover {
  color: #00ff88;
  transform: translateY(-2px);
}

.desktop-nav > a:hover::after,
nav > a:hover::after {
  width: 100%;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 101;
  padding: 4px;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: white;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* Hamburger Animation */
.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Nav Menu */
.mobile-nav {
  display: none;
  flex-direction: column;
  background-color: #1a1f25;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 1rem 2rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  z-index: 100;
  border-top: 1px solid #2a3441;
  width: 100%;
  align-items: flex-start;
}

.mobile-nav a {
  color: white;
  text-decoration: none;
  padding: 0.75rem 0;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border-bottom: 1px solid #2a3441;
  width: 100%;
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav a:hover {
  color: #00ff88;
  padding-left: 0.5rem;
}

/* Mobile Dropdown */
.mobile-dropdown {
  position: relative;
}

.mobile-dropdown-toggle {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-dropdown-toggle::after {
  content: '▼';
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-toggle::after {
  transform: rotate(180deg);
}

.mobile-dropdown-menu {
  display: none;
  flex-direction: column;
  padding-left: 1rem;
  background: #12191f;
  margin-top: 0.5rem;
  border-radius: 4px;
}

.mobile-dropdown.active .mobile-dropdown-menu {
  display: flex;
}

.mobile-dropdown-menu a {
  font-size: 0.9rem;
  color: #cccccc;
  border-bottom: 1px solid #1a1f25;
  padding: 0.5rem 0;
}

.mobile-dropdown-menu a:hover {
  color: #00ff88;
}

/* Show mobile nav when active */
.mobile-nav.active {
  display: flex;
}

/* Responsive Breakpoints */
@media (max-width: 768px) {
  .desktop-nav,
  nav {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
  
  header {
    padding: 1rem 2rem;
  }
  
  .mobile-nav {
    width: 100%;
    left: 0;
    right: 0;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  header h1 a {
    font-size: 1.4rem;
  }
  
  header {
    padding: 1rem;
  }
  
  .mobile-nav {
    padding: 1rem;
  }
  
  .mobile-nav a {
    font-size: 0.9rem;
  }
}


/* Updated Hero Section */
.hero {
  display: flex;
  align-items: center;
  min-height: 70vh;
  padding: 0;
  max-width: 100%;
  margin: 0;
  position: relative;
}

.hero-content {
  display: flex;
  width: 100%;
  align-items: center;
  min-height: 70vh;
}

.hero-text {
  flex: 1;
  max-width: 600px;
  padding: 4rem 6rem;
  z-index: 2;
  position: relative;
}

.hero-text h1 {
  font-size: 3.2rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
}

.accent {
  color: #00ff88;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #b8c5d1;
  line-height: 1.6;
}

.cta-button {
  background-color: #00ff88;
  color: #12191f;
  padding: 1rem 2rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  display: inline-block;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 255, 136, 0.2);
}

.cta-button:hover {
  background-color: #00e673;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 255, 136, 0.3);
}

/* Hero Image */
.hero-image {
  position: absolute;
  left: 50%;
  top: 55%;
  transform: translateY(-50%);
  width: 450px;
  height: 450px;
  z-index: 1;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  border: 3px solid #00ff88;
  box-shadow: 0 15px 40px rgba(0, 255, 136, 0.2);
}

.services-section {
 padding: 6rem 3rem;
 background-color: #0f1419;
 position: relative;
}

.services-container {
 max-width: 90%;
 margin: 0 auto;
}

.services-header {
 text-align: center;
 margin-bottom: 4rem;
}

.services-header h2 {
 font-size: 2.5rem;
 font-weight: 700;
 margin-bottom: 1rem;
 color: #ffffff;
}

.services-header .accent {
 color: #00ff88;
}

.services-header p {
 font-size: 1.1rem;
 color: #b8c5d1;
 max-width: 600px;
 margin: 0 auto;
}

.services-grid {
 display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  justify-content: center;
}

.service-card {
 background: linear-gradient(135deg, #1a2530 0%, #0f1419 100%);
 border: 1px solid #2a3441;
 border-radius: 12px;
 padding: 2.5rem;
 text-align: center;
 transition: all 0.3s ease;
 position: relative;
 overflow: hidden;
 width: 90%;
  box-sizing: border-box;
}

.service-card::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 height: 3px;
 background: linear-gradient(90deg, #00ff88, #00cc6a);
 transform: scaleX(0);
 transition: transform 0.3s ease;
}

.service-card:hover {
 transform: translateY(-5px);
 border-color: #00ff88;
 box-shadow: 0 10px 30px rgba(0, 255, 136, 0.1);
}

.service-card:hover::before {
 transform: scaleX(1);
}

.service-icon {
 width: 60px;
 height: 60px;
 border-radius: 12px;
 margin: 0 auto 1.5rem;
 display: flex;
 align-items: center;
 justify-content: center;
 font-size: 1.5rem;
 color: #12191f;
}

.service-card h3 {
 font-size: 1.5rem;
 font-weight: 600;
 margin-bottom: 1rem;
 color: #ffffff;
}

.service-card p {
 color: #b8c5d1;
 line-height: 1.6;
 margin-bottom: 1.5rem;
}

.service-features {
 list-style: none;
 text-align: left;
 margin-bottom: 2rem;
 padding: 0;
}

.service-features li {
 color: #b8c5d1;
 margin-bottom: 0.5rem;
 position: relative;
 padding-left: 1.5rem;
}

.service-features li::before {
 content: '✓';
 position: absolute;
 left: 0;
 color: #00ff88;
 font-weight: bold;
}

.service-cta {
 background: transparent;
 color: #00ff88;
 border: 1px solid #00ff88;
 padding: 0.75rem 1.5rem;
 border-radius: 6px;
 text-decoration: none;
 font-weight: 500;
 display: inline-block;
 transition: all 0.3s ease;
}

.service-cta:hover {
 background: #00ff88;
 color: #12191f;
 transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .hero-text {
    padding: 2rem 1rem;
  }
  
  .hero-image {
    display: none;
  }
  
  .services-section {
    padding: 4rem 1.5rem;
  }   
    
  .services-header h2 {
    font-size: 2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-card {
    padding: 2rem;
  }
}

@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.why-choose-section {
  padding: 1rem 2rem;

  text-align: center;
}

.why-choose-container {
  max-width: 900px;
  margin: 0 auto;
}

.why-choose-container h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;

}

.why-choose-container .accent {
  color: #00ff88;
}

.why-choose-container p {
  font-size: 1.1rem;
  color: #b8c5d1;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}


.about-section {
  padding: 6rem 3rem;
  background-color: #12191f;
  color: #ffffff;
  text-align: center;
}

.about-container {
  max-width: 900px;
  margin: 0 auto;
}

.about-section h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  font-weight: 700;
}

.about-section p {
  font-size: 1.1rem;
  color: #b8c5d1;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-highlights {
  list-style: none;
  padding: 0;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.about-highlights li {
  font-size: 1rem;
  color: #b8c5d1;
}

@media (min-width: 768px) {
  .about-highlights {
    flex-direction: row;
    justify-content: center;
  }

  .about-highlights li {
    margin: 0 1.5rem;
  }
}

/* ================================
   Simplified Service Page Styles
   ================================ */

.service-page {
  background: #0f1419;
  color: #e2e8f0;
  padding: 4rem 0;
  min-height: 100vh;
}

.service-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.service-page h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-align: center;
  letter-spacing: -0.02em;
  font-family: 'Inter', sans-serif;
}

.service-page .intro {
  font-size: 1.25rem;
  color: #b8c5d1;
  text-align: center;
  margin-bottom: 3rem;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
}

.service-section {
  padding: 0rem 0;
  margin-bottom: 0rem;
}

.service-section h2 {
  font-size: 1.875rem;
  font-weight: 600;
  color: #00ff88;
  margin-bottom: 1rem;
  font-family: 'Inter', sans-serif;
}

.service-section p {
  color: #cbd5e1;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  line-height: 1.7;

}

.service-section blockquote {
  border-left: 4px solid #00ff88;
  color: #e2e8f0;
  font-style: bold;
  margin: 2rem 0;
  font-size: 1.1rem;
}

.service-section ul,
.service-section ol {
  padding-left: 1.5rem;
  margin: 1.5rem 0;
font-size: 1.25rem;
}

.service-section li {
  margin-bottom: 0.75rem;
  line-height: 1.6;
  color: #cbd5e1;
}

.service-section strong {
  color: #00ff88;
  font-weight: 600;
}

.service-section em {
  color: #b8c5d1;
  font-style: bold;
  border-radius: 4px;
}

.service-page-cta {
  border-top: 2px solid #00ff88;
  margin-top: 4rem;
  padding-top: 2rem;
  text-align: center;
 background: transparent;
 color: #00ff88;
 border: 1px solid #00ff88;
 padding: 0.75rem 1.5rem;
 border-radius: 6px;
 text-decoration: none;
 font-weight: 500;
 display: inline-block;
 transition: all 0.3s ease;
}

.service-page-cta h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.service-page-cta p {
  font-size: 1.1rem;
  color: #cbd5e1;
}

.service-page-cta:hover {
 color: #12191f;
 transform: translateY(-10px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .service-page .container {
    padding: 0 1rem;
  }

  .service-page h1 {
    font-size: 2.5rem;
  }

  .service-section h2 {
    font-size: 1.5rem;
  }
}

.footer {
  width: 100%;
  text-align: center;
  position: relative;
}

.Blog-page h1{
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-align: center;
  letter-spacing: -0.02em;
  font-family: 'Inter', sans-serif;

}




