* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  background: #272526;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

.cursor {
  width: 20px;
  height: 20px;
  background: #C2171E;
  border-radius: 50%;
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  z-index: 999999;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.8);
  transition: all 0.1s ease;
}

.btn {
  padding: 12px 28px;
  background: linear-gradient(135deg, #C2171E, #7B1219);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.6);
}
.btn:active {
  transform: translateY(0);
}

.container {
  width: 95% !important;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 15px 0;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(194, 23, 30, 0.2);
}
.header .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* Important for spacing */
  gap: 15px;
}
.header .logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.header .logo img {
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}
.header .logo span {
  font-size: 24px;
  font-weight: 700;
  background: #ffffff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}
.header .menu {
  display: flex;
  gap: 30px;
  list-style: none;
  margin-left: auto;
}
.header .menu a {
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}
.header .menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #C2171E, #7B1219);
  transition: width 0.3s ease;
}
.header .menu a:hover {
  color: #C2171E;
}
.header .menu a:hover::after {
  width: 100%;
}

/* ================= HAMBURGER ================= */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  flex-shrink: 0;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #fff;
  transition: all 0.3s ease;
}

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

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

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

/* ================= MOBILE MENU ================= */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  .header .logo span {
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
  }
  .logo img {
    width: 40px;
    height: 40px;
  }
  .header .menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.95) 100%);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: center;
    padding: 30px 0 40px;
    gap: 22px;
    border-top: 1px solid rgba(194, 23, 30, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 999;
  }
  .header .menu.active {
    display: flex !important;
  }
  .header .menu li a {
    font-size: 18px;
    padding: 10px 20px;
    width: 100%;
    text-align: center;
  }
}
/* Hide Cursor on Mobile */
@media (max-width: 992px), (hover: none) and (pointer: coarse) {
  .cursor {
    display: none !important;
  }
}
.hero {
  margin-top: 60px;
  height: 100vh;
  position: relative;
}
.hero .swiper {
  height: 100%;
  width: 100%;
}
.hero .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}
.hero .slide1 {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(194, 23, 30, 0.15)), url("../images/hero-slide-1.jpg") center center/cover no-repeat;
}
.hero .slide2 {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(194, 23, 30, 0.15)), url("../images/hero-slide-2.jpg") center center/cover no-repeat;
}
.hero .content {
  max-width: 800px;
  padding: 0 20px;
  z-index: 10;
  animation: slideInUp 0.8s ease;
}
.hero .content h1 {
  font-size: 62px;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 800;
  color: #ffffff;
}
.hero .content p {
  color: #fcfcfc;
  font-size: 22px;
  margin-bottom: 30px;
  font-weight: 300;
  letter-spacing: 0.5px;
}
.hero .content .btn {
  display: inline-block;
  background: #ffffff;
  color: #C2171E;
  border: 2px solid #ffffff;
  box-shadow: none;
}
.hero .content .btn:hover {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
  transform: translateY(-2px);
}
.hero .swiper-pagination {
  bottom: 30px !important;
}
.hero .swiper-pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5);
  width: 12px;
  height: 12px;
  transition: all 0.3s;
}
.hero .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #C2171E;
  width: 30px;
  border-radius: 6px;
}

.stats {
  padding: 100px 0;
  background: rgba(15, 23, 42, 0.95);
  position: relative;
}
.stats::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
  pointer-events: none;
}
.stats .stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}
.stats .stat-box {
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(194, 23, 30, 0.2);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  transform: translateY(0);
}
.stats .stat-box:hover {
  transform: translateY(-10px);
  background: rgba(31, 41, 55, 0.9);
  border-color: #C2171E;
  box-shadow: 0 20px 40px rgba(194, 23, 30, 0.2);
}
.stats .stat-box h3 {
  color: #C2171E;
  font-size: 48px;
  margin-bottom: 15px;
  font-weight: 700;
}
.stats .stat-box p {
  color: #fcfcfc;
  font-size: 16px;
  font-weight: 500;
}

.about {
  padding: 120px 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.95) 100%);
}
.about .about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about .about-content span {
  color: #C2171E;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 15px;
}
.about .about-content h2 {
  font-size: 48px;
  line-height: 1.3;
  margin-bottom: 25px;
  color: #ffffff;
  font-weight: 700;
}
.about .about-content p {
  color: #fcfcfc;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 30px;
}
.about .about-image {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
}
.about .about-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.about .about-image:hover img {
  transform: scale(1.05);
}

.section-title {
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 60px;
  color: #ffffff;
  position: relative;
  display: inline-block;
  width: 100%;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, #C2171E, #7B1219);
  border-radius: 2px;
}

.services {
  padding: 120px 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.95) 100%);
}
.services .service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(194, 23, 30, 0.2);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 16px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #C2171E, #7B1219);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover {
  background: rgb(15, 23, 42);
  border-color: #C2171E;
  box-shadow: 0 20px 40px rgba(194, 23, 30, 0.2);
  transform: translateY(-10px);
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-card:hover h3 {
  color: #7B1219;
}
.service-card h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #C2171E;
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 700;
  transition: all 0.3s ease;
}
.service-card h3 img {
  width: 32px;
  height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
  flex-shrink: 0;
}
.service-card h3 span {
  line-height: 1.2;
}
.service-card p {
  color: #fcfcfc;
  line-height: 1.8;
  font-size: 16px;
}

.technologies {
  padding: 120px 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.95) 100%);
}
.technologies .tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
}

.tech-card {
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(194, 23, 30, 0.2);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  color: #ffffff;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}
.tech-card:hover {
  background: rgba(99, 102, 241, 0.1);
  transform: translateY(-8px);
  border-color: #C2171E;
  box-shadow: 0 15px 30px rgba(194, 23, 30, 0.2);
  color: #C2171E;
}

.portfolio {
  padding: 120px 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.95) 100%);
}
.portfolio .swiper {
  width: 100%;
}
.portfolio .swiper-slide {
  padding: 10px;
}

.portfolio-card {
  overflow: hidden;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(194, 23, 30, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
}
.portfolio-card:hover {
  transform: translateY(-10px);
  border-color: #C2171E;
  box-shadow: 0 20px 40px rgba(194, 23, 30, 0.2);
}
.portfolio-card:hover img {
  transform: scale(1.08);
}
.portfolio-card:hover h3 {
  color: #7B1219;
}
.portfolio-card img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.portfolio-card h3 {
  padding: 25px;
  font-size: 20px;
  color: #ffffff;
  font-weight: 600;
  transition: color 0.3s ease;
  text-align: center;
}

.testimonials {
  padding: 120px 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.95) 100%);
}
.testimonials .testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(194, 23, 30, 0.2);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 16px;
  position: relative;
  transition: all 0.3s ease;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 25px;
  font-size: 60px;
  color: #C2171E;
  opacity: 0.3;
}
.testimonial-card:hover {
  transform: translateY(-10px);
  border-color: #C2171E;
  box-shadow: 0 20px 40px rgba(194, 23, 30, 0.2);
}
.testimonial-card p {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-card h4 {
  color: #C2171E;
  font-size: 16px;
  font-weight: 700;
}

.why-us {
  padding: 120px 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.95) 100%);
}
.why-us .service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.contact {
  padding: 120px 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.95) 100%);
  position: relative;
}
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.95) 100%);
  pointer-events: none;
}
.contact .contact-wrapper {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 40px;
  align-items: stretch;
}

.contact-info {
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(194, 23, 30, 0.2);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
}
.contact-info h3 {
  color: #ffffff;
  font-size: 30px;
  margin-bottom: 15px;
}
.contact-info > p {
  color: #fcfcfc;
  margin-bottom: 30px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}
.info-item i {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #C2171E, #7B1219);
  border-radius: 12px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.info-item h4 {
  color: #ffffff;
  margin-bottom: 5px;
}
.info-item p {
  color: #fcfcfc;
}

.contact-form {
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(194, 23, 30, 0.2);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 18px;
  margin-bottom: 18px;
  border-radius: 12px;
  border: 1px solid rgba(194, 23, 30, 0.2);
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.95) 100%);
  color: white;
}
.contact-form textarea {
  min-height: 180px;
}
.contact-form .btn {
  width: 100%;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}
.social-links a {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: #1f1d1e;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid rgba(194, 23, 30, 0.2);
  transition: 0.3s;
}
.social-links a:hover {
  background: linear-gradient(135deg, #C2171E, #7B1219);
  transform: translateY(-5px);
}

@media (max-width: 991px) {
  .contact-wrapper {
    grid-template-columns: 1fr !important;
  }
}
.policy {
  margin-top: 60px;
  padding: 100px 0 120px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.95) 100%);
  color: #fcfcfc;
  min-height: 80vh;
}
.policy h1 {
  font-size: 42px;
  margin-bottom: 10px;
  color: #ffffff;
}
.policy .updated {
  color: #C2171E;
  font-weight: 600;
  margin-bottom: 40px;
  display: block;
}
.policy h2 {
  font-size: 26px;
  margin: 40px 0 15px;
  color: #C2171E;
}
.policy p,
.policy li {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #fcfcfc;
}
.policy ul {
  padding-left: 22px;
  margin-bottom: 15px;
}
.policy a {
  color: #ffffff;
}
.policy .back-link {
  margin-top: 30px;
}

.footer {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.95) 100%);
  border-top: 1px solid rgba(194, 23, 30, 0.2);
  color: #fcfcfc;
}
.footer p {
  margin: 0;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
[data-aos] {
  visibility: hidden;
}

[data-aos].aos-animate {
  visibility: visible;
  animation: fadeInUp 0.8s ease forwards;
}

[data-aos=fade-up].aos-animate {
  animation: fadeInUp 0.8s ease forwards;
}

[data-aos=fade-down].aos-animate {
  animation: fadeInDown 0.8s ease forwards;
}

[data-aos=zoom-in].aos-animate {
  animation: zoomIn 0.8s ease forwards;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@media (max-width: 992px) {
  .hero .content h1 {
    font-size: 42px;
  }
  .stats-grid,
  .service-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .about-grid {
    grid-template-columns: 1fr !important;
  }
  .section-title {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .hero {
    margin-top: 70px;
  }
  .hero .content h1 {
    font-size: 32px;
  }
  .hero .content p {
    font-size: 16px;
  }
  .stats-grid,
  .service-grid,
  .testimonial-grid {
    grid-template-columns: 1fr !important;
  }
  .section-title {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  .container {
    width: 95%;
  }
  .hero .content h1 {
    font-size: 24px;
  }
}
/* ================= CRITICAL FIX FOR SMALL MOBILE (375px) ================= */
@media (max-width: 380px) {
  .container {
    width: 100% !important;
    padding-left: 12px;
    padding-right: 12px;
  }
  .header .nav {
    padding: 0 12px;
  }
  .hero,
  .stats,
  .about,
  .services,
  .technologies,
  .portfolio,
  .testimonials,
  .why-us,
  .contact,
  .policy {
    padding-left: 0;
    padding-right: 0;
  }
  .header .menu {
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
  }
  .swiper {
    width: 100% !important;
  }
  .portfolio-card img {
    width: 100% !important;
  }
  .section-title {
    padding: 0 15px;
  }
}/*# sourceMappingURL=style.css.map */