img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --bg: #05070a;
  --bg-dark: #020305;
  --bg-card: rgba(10, 15, 25, 0.8);
  --text: #ffffff;
  --muted: #a0a0a0;
  --accent: #f6b952;
  --accent-hover: #f8b42d;
  --bord: rgba(243, 166, 31, 0.2);
  --bord-bright: rgba(243, 166, 31, 0.5);
  --nav-height: 75px;
}
html, body {
  overflow-x: hidden;
  width: 100%;
}
body {
  font-family: 'Inter', 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: linear-gradient(135deg, #01060C 0%, #171B26 50%, #01060C 100%);
  background-attachment: fixed;
  min-height: 100vh;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}
a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}
.top-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 3px solid var(--accent);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 60px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1100;
}
.hamburger span {
  width: 100%;
  height: 3px;
  background-color: #fff;
  border-radius: 10px;
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-main {
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: 0.5px;
  color: #fff;
}
.logo-sub {
  font-size: 0.7rem;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.menu {
  display: flex;
  align-items: center;
}
.menu a {
  margin-left: 30px;
  font-size: 0.9rem;
  color: #fff;
  font-weight: 500;
  opacity: 0.8;
}
.menu a:hover, .menu a.active-nav {
  opacity: 1;
  color: var(--accent);
}
.menu .cta {
  background: var(--accent);
  color: #000;
  padding: 10px 22px;
  border-radius: 4px;
  font-weight: 700;
  margin-left: 30px;
  opacity: 1;
}
.menu .cta:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}
.hero-slider {
      position: relative;
      min-height: calc(100vh - var(--nav-height));
      width: 100%;
      overflow: hidden;
      padding: 0;
    }
   .slider-container {
     position: relative;
     width: 100%;
     height: calc(100vh - var(--nav-height));
   }
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
  display: flex;
  align-items: center;
  padding: 0 80px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
   z-index: 1;
 }
 .slide.active {
   opacity: 1;
   z-index: 2;
   transform: scale(1);
 }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 2;
  border-bottom: 2px solid var(--bord-bright);
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 700px;
  transform: translateY(20px);
  transition: transform 0.8s ease-out;
}
.slide.active .hero-content {
  transform: translateY(0);
}
.hero-slider h1 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
}
.accent-text {
  color: var(--accent);
}
.hero-text {
  font-size: 1.5rem;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}
.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 10;
}
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(243, 166, 31, 0.3);
}
.dot.active {
  background: var(--accent);
  width: 30px;
  border-radius: 10px;
}
.btn {
  display: inline-block;
  font-weight: 700;
  background: var(--accent);
  color: #000;
  border: 0;
  border-radius: 4px;
  padding: 14px 32px;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.btn:hover {
  background: var(--accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(243, 166, 31, 0.2);
}
section {
  padding: 100px 80px;
  background: transparent;
}
section h2 {
  color: var(--accent);
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 50px;
  text-align: left;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.card {
  background: linear-gradient(90deg, #01060C 0%, #171B26 50%, #01060C 100%);
  border: 1px solid var(--bord);
  border-radius: 8px;
  padding: 40px 30px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  backdrop-filter: blur(5px);
}
.card:hover {
  border-color: var(--accent);
  transform: translateY(-10px);
  background: linear-gradient(135deg, #01060C 0%, #171B26 50%, #01060C 100%);
}
.card-title {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  width: 100%;
  padding-bottom: 15px;
  justify-content: center;
  border-bottom: 2px solid var(--bord);
}
.service-icon {
  width: 60px;
  height: 60px;
}
.card h3 {
  font-size: 1.5rem;
  color: #fff;
}
.card p {
  color: var(--muted);
  margin-bottom: 30px;
  font-size: 1rem;
}
.small {
  padding: 10px 20px;
  font-size: 0.9rem;
}
.blog-card {
  background: linear-gradient(90deg, #01060C 0%, #171B26 50%, #01060C 100%);
  border: 1px solid var(--bord);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}
.blog-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent);
  background: linear-gradient(135deg, #01060C 0%, #171B26 50%, #01060C 100%);
}
.blog-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.blog-content {
  padding: 25px;
}
.blog-card h3 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 12px;
}
.blog-card p {
  color: var(--muted);
  margin-bottom: 20px;
  font-size: 0.95rem;
}
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.contact-left {
  background: linear-gradient(90deg, #01060C 0%, #171B26 50%, #01060C 100%);
  padding: 40px;
  border-radius: 8px;
  border: 1px solid var(--bord);
  backdrop-filter: blur(10px);
}
.contact-left h2, .contact-right h2 {
  margin-bottom: 10px;
}
.contact-left p {
  color: var(--muted);
  margin-bottom: 40px;
}
.contact-left form input,
.contact-left form select,
.contact-left form textarea {
  width: 100%;
  margin-bottom: 20px;
  padding: 15px;
  border: 1px solid #222;
  border-radius: 4px;
  background: #0a0a0a;
  color: #fff;
  font-family: inherit;
}
.contact-left form input:focus,
.contact-left form select:focus {
  border-color: var(--accent);
  outline: none;
}
.contact-right {
  background: transparent;
  padding: 0;
}
.contact-info {
  margin-bottom: 40px;
}
.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid #111;
}
.contact-item:last-child {
  border-bottom: none;
}
.contact-item-icon {
  color: var(--accent);
  font-size: 1.4rem;
  width: 24px;
}
.contact-item h4 {
  color: var(--accent);
  margin-bottom: 8px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.contact-item p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-size: 0.95rem;
}
.map {
  width: 100%;
  height: 300px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--bord);
}
.map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
footer {
  padding: 40px 80px;
  border-top: 1px solid rgba(243, 166, 31, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.4);
}
footer p {
  color: var(--muted);
  font-size: 0.9rem;
}
.footer-links a {
  color: var(--muted);
  margin-left: 30px;
  font-size: 0.9rem;
}
.footer-links a:hover {
  color: var(--accent);
}
/* Responsive Adjustments */
@media (max-width: 1200px) {
  .hero-slider { padding: 0; }
  .slide { padding: 0 60px; }
  section { padding: 80px 40px; }
  footer { padding: 40px; }
}

@media (max-width: 992px) {
  .hero-slider h1 { font-size: 3.2rem; }
  .cards { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .contact { grid-template-columns: 1fr; gap: 50px; }
  .contact-left { padding: 30px; }
}

@media (max-width: 768px) {
  .nav-container { padding: 15px 20px; }
  .hamburger { display: flex; }
  .menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: rgba(5, 7, 10, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    padding: 100px 20px 40px;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1050;
    gap: 30px;
    overflow-y: auto;
  }
  .menu.active { right: 0; }
  .menu a { margin: 0; font-size: 1.2rem; }
  .menu .cta { margin: 0; padding: 12px 30px; }
  
  .hero-slider { min-height: 60vh; }
  .slider-container { height: 60vh; }
  .slide { padding: 0 20px; text-align: center; justify-content: center; }
  .hero-content { max-width: 100%; }
  .hero-slider h1 { font-size: 2.5rem; }
  .hero-text { font-size: 1.2rem; margin-bottom: 30px; }
  .hero-overlay { background: rgba(0, 0, 0, 0.8); }
  
  section { padding: 60px 20px; }
  section h2 { font-size: 1.8rem; margin-bottom: 30px; text-align: center; }
  
  .cards { grid-template-columns: 1fr; max-width: 450px; margin: 0 auto; }
  
  .contact-info { margin-bottom: 30px; }
  .map { height: 250px; }
  
  footer { flex-direction: column; gap: 20px; text-align: center; }
  .footer-links a { margin: 0 10px; }
}

@media (max-width: 480px) {
  .logo-main { font-size: 1.3rem; }
  .logo-sub { font-size: 0.6rem; }
  
  .hero-slider { min-height: 50vh; }
  .slider-container { height: 50vh; }
  .hero-slider h1 { font-size: 2rem; }
  .hero-text { font-size: 1rem; }
  .btn { width: 100%; padding: 12px 20px; }
  .slider-dots { bottom: 20px; }
}
.blog-hero {
            padding: 120px 80px 60px;
            text-align: center;
            background: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
        }
        .blog-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
        }
        .blog-grid {
            padding: 40px 80px 100px;
        }
        .pagination {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 60px;
        }
        .page-link {
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--bord);
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        .page-link.active, .page-link:hover {
            background: var(--accent);
            color: #000;
            border-color: var(--accent);
        }

        @media (max-width: 768px) {
            .blog-hero { padding: 100px 20px 40px; }
            .blog-hero h1 { font-size: 2.5rem; }
            .blog-grid { padding: 40px 20px 80px; }
        }
 .blog-details {
            padding: 120px 20px 100px;
            max-width: 900px;
            margin: 0 auto;
        }
        .details-header {
            text-align: center;
            margin-bottom: 50px;
        }
        .details-header h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            color: var(--accent);
        }
        .details-meta {
            color: var(--muted);
            display: flex;
            justify-content: center;
            gap: 20px;
            font-size: 0.9rem;
            margin-bottom: 30px;
        }
        .details-hero-img {
            width: 100%;
            height: 450px;
            object-fit: cover;
            border-radius: 12px;
            margin-bottom: 50px;
            border: 1px solid var(--bord);
        }
        .details-content {
            font-size: 1.1rem;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.9);
        }
        .details-content p {
            margin-bottom: 25px;
        }
        .details-content h2, .details-content h3 {
            color: var(--accent);
            margin-top: 40px;
            margin-bottom: 20px;
        }
        .details-content blockquote {
            border-left: 4px solid var(--accent);
            padding: 20px 30px;
            background: rgba(243, 166, 31, 0.05);
            font-style: italic;
            margin: 40px 0;
            border-radius: 4px;
        }
        .details-footer {
            margin-top: 80px;
            padding-top: 40px;
            border-top: 1px solid var(--bord);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .share-links {
            display: flex;
            gap: 15px;
        }
        .share-btn {
            padding: 8px 15px;
            border: 1px solid var(--bord);
            border-radius: 4px;
            font-size: 0.85rem;
            transition: all 0.3s ease;
        }
        .share-btn:hover {
            border-color: var(--accent);
            color: var(--accent);
        }
        .back-btn {
            color: var(--accent);
            font-weight: 700;
        }

        @media (max-width: 768px) {
            .blog-details { padding: 100px 20px 80px; }
            .details-header h1 { font-size: 2.2rem; }
            .details-hero-img { height: 300px; }
            .details-footer { flex-direction: column; gap: 30px; align-items: flex-start; }
        }
.page-numbers {
    padding: 8px 12px;
    margin: 5px;
    display: inline-block;
}

.page-numbers.current {
    background: #000;
    color: #fff;
}