  /* Global Styles & Reset */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-orange: #ff6b00;
--secondary-orange: #ff9d4d;
--dark-bg: #121212;
--darker-bg: #0a0a0a;
--light-text: #f5f5f5;
--gray-text: #a0a0a0;
--primary-color: #ff6b00;
--primary-dark: #e05600;
--primary-light: #ff8c3f;
--accent-color: #ffad76;
--text-color: #ff8400;
--text-light: #ffffff;
--background-color: #0b0101;
--background-alt: #040000;
--border-color: #020000;
--shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
--transition: all 0.3s ease;

}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-color);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0.5em;
  line-height: 1.2;
  font-weight: 600;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.section-header {
  margin-top: 1.2rem;
  text-align: center;
  margin-bottom: 2rem;
}

.section-title {
  font-size: 3rem;
  color: var(--text-color);
  margin-bottom: 0.5rem;
  position: relative;
  font-weight: 700;
  margin-top: 2.5rem;
}

.section-subtitle {
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.section-description {
  max-width: 800px;
  margin: 0 auto;
  color: var(--text-light);
}

.underline {
  height: 4px;
  width: 70px;
  background: var(--primary-color);
  margin: 0 auto 1.5rem;
  display: block;
}

/* Loader Styles */
.loader {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: #000000;
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9999;
      transition: opacity 1s ease-out;
    }

    .loader-content {
      text-align: center;
    }

    .loader h2 {
      font-size: 4rem;
      font-weight: 900;
      background: linear-gradient(45deg, #ff3700, #ff0000);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      letter-spacing: 8px;
      margin-bottom: 20px;
      animation: pulse 2s infinite alternate;
    }

    @keyframes pulse {
      0% { transform: scale(1); }
      100% { transform: scale(1.05); }
    }

    .progress-bar {
      width: 300px;
      height: 2px;
      background-color: #333;
      margin: 0 auto;
      position: relative;
      overflow: hidden;
      border-radius: 4px;
    }

    .progress {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 0;
      background: linear-gradient(45deg, #ff3366, #ff3366);
      transition: width 0.3s ease;
      box-shadow: 0 0 10px rgba(255, 51, 102, 0.6);
    }
    @media screen and (max-width: 768px) {
    .loader h2 {
        font-size: 2.5rem;
        letter-spacing: 4px;
        line-height: 1.2;
        padding: 0 15px;
    }

    .progress-bar {
        width: 80%;
        max-width: 250px;
    }
}

@media screen and (max-width: 480px) {
    .loader h2 {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .progress-bar {
        width: 70%;
        height: 1.5px;
    }
}

@media screen and (max-width: 360px) {
    .loader h2 {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
}

/* Header & Navigation */
header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  transition: var(--transition);
  width: 90%;
  max-width: 1200px;
  background: rgba(20, 20, 20, 0.6);
  backdrop-filter: blur(15px);
  border-radius: 50px;
  padding: 0;
  border: 1px solid rgba(255, 107, 0, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

header.scrolled {
  background-color: rgba(0, 0, 0, 0.8);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 107, 0, 0.3);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  width: 100%;
}

.logo-container {
  z-index: 1001;
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 1px;
}

.logo:hover {
  color: var(--primary-dark);
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 2rem;
}

.nav-links a {
  color: var(--text-color);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 1px;
  position: relative;
  padding: 5px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--primary-color);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: var(--text-color);
  margin: 5px;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: #000;
  overflow: hidden;
}

#hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.7;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
  padding: 0 20px;
  max-width: 900px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.hero-title span {
  color: var(--primary-color);
  display: block;
  margin-top: 0.5rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.btn {
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
  border: none;
  box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(255, 107, 0, 0.4);
}

/* About Section */
.about-section {
  padding: 6rem 0 8rem;
  background-color: var(--background-alt);
}

.about-actions {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 4rem;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
}

.image-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

.image-container::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--primary-color);
  border-radius: 8px;
  z-index: -1;
}

.about-text h3 {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.about-text h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
}

.about-text p {
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.about-text .btn {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(to right, var(--primary-orange), var(--secondary-orange));
    color: white;
    text-decoration: none;
    border-radius: 30px;
    
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top:0;
    position: relative;
    overflow: hidden;
}

.about-text .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.about-text .btn:hover::before {
    left: 100%;
}

.about-text .btn:hover {
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.3);
    transform: translateY(-3px);
}


/* Responsive Adjustments */
@media screen and (max-width: 992px) {
  .about-actions {
      margin-top: 2rem;
  }
  
  .about-section {
      padding: 6rem 0;
  }
}

@media screen and (max-width: 576px) {
  .about-actions {
      margin-top: 1.5rem;
  }
  
  .about-actions .btn {
      width: 100%;
      padding: 12px 20px;
  }
}

/* Stats Section */
.stats-section {
  padding: 5rem 0;
  background-color: rgb(29, 29, 29);
}

.section-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.stat-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: 8px;
  background-color: rgb(0, 0, 0);
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: var(--primary-light);
  opacity: 0.1;
  transition: var(--transition);
  z-index: -1;
}

.stat-card:hover {
  transform: translateY(-10px);
}

.stat-card:hover::before {
  height: 100%;
}

.stat-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.stat-desc {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Featured Forts Carousel */
.featured-section {
    padding: 120px 0;
    background-color: #000000; /* Changed to strict black */
    position: relative;
    overflow: hidden;
}

.featured-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 107, 0, 0.05) 0%, transparent 70%);
}

.carousel-container {
    position: relative;
    margin-top: 60px;
    padding: 0 60px;
}

.carousel {
    display: flex;
    overflow-x: scroll;
    scroll-behavior: smooth;
    scrollbar-width: none;
    gap: 35px;
    padding: 25px 10px 35px;
}

.carousel::-webkit-scrollbar {
    display: none;
}

.carousel-card {
    flex: 0 0 330px;
    height: 480px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}

.carousel-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.5);
}

.carousel-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.carousel-card:hover img {
    transform: scale(1.08);
}

.carousel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 25px;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0) 100%);
    color: var(--light-text);
    transform: translateY(30px);
    opacity: 0.9;
    transition: all 0.4s ease;
}

.carousel-card:hover .carousel-overlay {
    transform: translateY(0);
    opacity: 1;
}

.carousel-title {
    font-size: 1.7rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.carousel-location {
    color: var(--primary-orange);
    font-size: 1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.carousel-location i {
    font-size: 1.1rem;
}

.carousel-desc {
    color: var(--gray-text);
    font-size: 0.95rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(to right, var(--primary-orange), var(--secondary-orange));
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 10;
    font-size: 1.2rem; /* Add proper sizing for the arrow icons */
}

/* Fix for arrow display */
.carousel-nav i {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.carousel-nav:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.4);
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

/* Make sure arrows are visible inside the navigation circles */
.carousel-prev i:before {
    content: "<"; /* FontAwesome left arrow */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.carousel-next i:before {
    content: ">"; /* FontAwesome right arrow */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.featured-section .btn-container {
    text-align: center;
    margin-top: 50px;
}

.view-more-container {
  text-align: center;
  margin-top: 2.5rem;
  margin-bottom:4rem;
}

.view-more-btn {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: var(--transition);
  display: inline-block;
}

.view-more-btn:hover {
  background-color: var(--primary-color);
  color: white;
}

.view-more-btn:hover {
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.3);
    transform: translateY(-3px);
}

/* Featured Section Responsiveness */
@media screen and (max-width: 1200px) {
    .carousel-card {
        flex: 0 0 300px;
        height: 450px;
    }
    
    .carousel-title {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 992px) {
    .featured-section {
        padding: 90px 0;
    }
    
    .carousel-container {
        padding: 0 50px;
    }
    
    .carousel-card {
        flex: 0 0 280px;
        height: 420px;
    }
}

@media screen and (max-width: 768px) {
    .featured-section {
        padding: 70px 0;
    }
    
    .carousel-container {
        padding: 0 40px;
        margin-top: 40px;
    }
    
    .carousel {
        gap: 25px;
    }
    
    .carousel-card {
        flex: 0 0 260px;
        height: 400px;
    }
    
    .carousel-title {
        font-size: 1.4rem;
    }
    
    .carousel-nav {
        width: 45px;
        height: 45px;
    }
}

@media screen and (max-width: 576px) {
    .featured-section {
        padding: 60px 0;
    }
    
    .carousel-container {
        padding: 0 30px;
    }
    
    .carousel-card {
        flex: 0 0 240px;
        height: 360px;
    }
    
    .carousel-overlay {
        padding: 20px 15px;
    }
    
    .carousel-title {
        font-size: 1.3rem;
    }
    
    .carousel-location {
        font-size: 0.9rem;
    }
    
    .carousel-desc {
        font-size: 0.85rem;
    }
    
    .view-more-btn {
        padding: 12px 30px;
        font-size: 1rem;
        width: 80%;
    }
}

@media screen and (max-width: 400px) {
    .carousel-card {
        flex: 0 0 220px;
        height: 330px;
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
    }
}


/* Footer Styles */
.footer {
    background-color: #1a1a1a;
    color: #f5f5f5;
    padding-top: 4rem;
}

.footer-content {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-title {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.footer-about p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: #bbb;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 107, 0, 0.15);
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.social-icon {
    width: 20px;
    height: 20px;
    background-color: white;
}

.youtube-icon {
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512'%3E%3C!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--%3E%3Cpath d='M549.7 124.1c-6.3-23.7-24.8-42.3-48.3-48.6C458.8 64 288 64 288 64S117.2 64 74.6 75.5c-23.5 6.3-42 24.9-48.3 48.6-11.4 42.9-11.4 132.3-11.4 132.3s0 89.4 11.4 132.3c6.3 23.7 24.8 41.5 48.3 47.8C117.2 448 288 448 288 448s170.8 0 213.4-11.5c23.5-6.3 42-24.2 48.3-47.8 11.4-42.9 11.4-132.3 11.4-132.3s0-89.4-11.4-132.3zm-317.5 213.5V175.2l142.7 81.2-142.7 81.2z'/%3E%3C/svg%3E") no-repeat center center / contain;
}

.instagram-icon {
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3C!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--%3E%3Cpath d='M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z'/%3E%3C/svg%3E") no-repeat center center / contain;
}

.mail-icon {
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3C!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--%3E%3Cpath d='M48 64C21.5 64 0 85.5 0 112c0 15.1 7.1 29.3 19.2 38.4L236.8 313.6c11.4 8.5 27 8.5 38.4 0L492.8 150.4c12.1-9.1 19.2-23.3 19.2-38.4c0-26.5-21.5-48-48-48H48zM0 176V384c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V176L294.4 339.2c-22.8 17.1-54 17.1-76.8 0L0 176z'/%3E%3C/svg%3E") no-repeat center center / contain;
}

.footer-nav {
    list-style: none;
}

.footer-nav li {
    margin-bottom: 0.8rem;
}

.footer-nav a {
    color: #bbb;
    transition: var(--transition);
    position: relative;
    padding-left: 15px;
    display: inline-block;
}

.footer-nav a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.footer-nav a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.contact-info {
    list-style: none;
}

.contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #bbb;
}

.contact-icon {
    display: inline-block;
    width: 18px;
    height: 18px;
    background-color: var(--primary-color);
    margin-right: 10px;
}

.phone-icon {
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3C!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--%3E%3Cpath d='M164.9 24.6c-7.7-18.6-28-28.5-47.4-23.2l-88 24C12.1 30.2 0 46 0 64C0 311.4 200.6 512 448 512c18 0 33.8-12.1 38.6-29.5l24-88c5.3-19.4-4.6-39.7-23.2-47.4l-96-40c-16.3-6.8-35.2-2.1-46.3 11.6L304.7 368C234.3 334.7 177.3 277.7 144 207.3L193.3 167c13.7-11.2 18.4-30 11.6-46.3l-40-96z'/%3E%3C/svg%3E") no-repeat center center / contain;
}

.newsletter-form {
    display: flex;
    margin-top: 1.5rem;
}

.newsletter-form input {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    padding: 12px 15px;
    color: white;
    font-family: inherit;
    border-radius: 4px 0 0 4px;
}

.newsletter-form input::placeholder {
    color: #bbb;
}

.newsletter-form input:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.15);
}

.btn-submit {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.btn-submit:hover {
    background-color: var(--primary-dark);
}

.footer-bottom {
    background-color: #111;
    padding: 1.5rem 0;
    text-align: center;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright, .developer {
    color: #999;
    font-size: 0.9rem;
}

.heart {
    color: #ff4d4d;
    display: inline-block;
    animation: heartbeat 1.5s infinite;
}

.dev-name {
    color: var(--primary-color);
    font-weight: 600;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    25% { transform: scale(1.1); }
    50% { transform: scale(1); }
    75% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
    }
    
    .footer-bottom .container {
        justify-content: center;
        flex-direction: column;
    }
}

@media screen and (max-width: 576px) {
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        width: 100%;
        border-radius: 4px;
        margin-bottom: 0.5rem;
    }
    
    .btn-submit {
        width: 100%;
        padding: 12px;
        border-radius: 4px;
    }
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
  .section-title {
    font-size: 2.2rem;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .about-content {
    gap: 2rem;
  }
}

@media screen and (max-width: 992px) {
  .hamburger {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 100%;
    max-width: 350px;
    background-color: rgb(0, 0, 0);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links li {
    margin: 1.5rem 0;
  }
  
  .nav-links a {
    font-size: 1.1rem;
  }
  
  body.menu-open {
    overflow: hidden;
  }
  
  .hamburger.active .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
  }
  
  .hamburger.active .line2 {
    opacity: 0;
  }
  
  .hamburger.active .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  header {
    width: 95%;
    top: 15px;
  }

  nav {
    padding: 12px 20px;
  }

  .logo {
    font-size: 1.1rem;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-image {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .stat-label {
    font-size: 1.1rem;
  }
  
  .forts-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}

@media screen and (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .btn {
    padding: 10px 24px;
    font-size: 0.8rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .forts-grid {
    grid-template-columns: 1fr;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* For extra small devices */
@media screen and (max-width: 375px) {
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
}
