* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: #e0e0e0;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.header {
  background: #0f0f1a;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo  {
text-decoration: none;
}
.logo span{
  list-style: none;
  color: #ff0000;
  text-decoration: none;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  padding: 0.5rem 1rem;
  font-weight: 700;
  border-radius: 5px;
  transition: background 0.3s ease, transform 0.3s ease;
}
.logo img:hover {
  transform: rotate(0deg) scale(1.1);
}

.nav-menu ul {
  display: flex;
  list-style: none;
  transform: skewX(-10deg);
}

.nav-menu li {
  margin-left: 2rem;
}

.nav-menu a {
  color: #ff0000;
  text-decoration: none;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.nav-menu a:hover {
  background: #ff0000;
  color: #fff;
  transform: skewX(10deg);
}

.contact-info a {
  color: #ff0000;
  text-decoration: none;
  margin-left: 1rem;
}

.contact-info a:hover {
  color: #ff3333;
}

.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.burger span {
  width: 25px;
  height: 3px;
  background: #ff0000;
  margin: 2px 0;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.slider {
  width: 100%;
  height: 100%;
}

.slide {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide.active {
  opacity: 1;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  text-shadow: 0 0 10px #ff0000;
}

.hero-content h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

 .btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: #ff0000;
  color: #fff;
  text-decoration: none;
  font-family: 'Orbitron', sans-serif;
  border-radius: 5px;
  margin: 0 0.5rem;
  animation: pulse 2s infinite;
}

 .btn:hover {
  background: #ff3333;
  transform: scale(1.1);
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(255, 0, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0); }
}

/* About Section */
.about {
  padding: 5rem 0;
  background: rgba(255, 255, 255, 0.1);
}

.about_content {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.about_image img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

.about_details {
  flex: 1;
}

.about_details h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  color: #ff0000;
  margin-bottom: 1rem;
}

.about_details p {
  margin-bottom: 2rem;
}

.progress_bars .progress_bar {
  margin-bottom: 1rem;
}

.progress_bars span {
  display: block;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.progress {
  height: 10px;
  background: #ff0000;
  border-radius: 5px;
  animation: grow 2s ease-out;
}

@keyframes grow {
  from { width: 0; }
  to { width: var(--width); }
}

/* Services Section */
.services {
  padding: 5rem 0;
}

.services h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  color: #ff0000;
  text-align: center;
  margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  justify-items: center;
  margin-bottom: 70px;
}

.service_item {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.service_item:hover {
  transform: translateY(-10px);
}

.service_icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.service_item h3 {
  font-family: 'Orbitron', sans-serif;
  color: #ff0000;
  margin-bottom: 0.5rem;
}

.services-slider {
  margin-top: 3rem;
  overflow: hidden;
  display: flex;
  gap: 1rem;
}

.slider-item {
  background: #ff0000;
  color: #fff;
  padding: 1rem;
  border-radius: 5px;
  flex-shrink: 0;
}

/* Experience Section */
.experience {
  padding: 5rem 0;
  background: rgba(255, 255, 255, 0.1);
}

.experience h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  color: #ff0000;
  text-align: center;
  margin-bottom: 3rem;
}

.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.timelineitems{
display: flex;
align-items: center;
justify-content: center;
}
.timelineitem {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.timelineitem {
flex: 1;
}
.timelineitem span{
  font-family: 'Orbitron', sans-serif;
  color: #ff0000;
}
.timeline_time{
  font-size: 28px;
  font-family: 'Orbitron', sans-serif;
  color: #ff0000;
  margin-bottom: 0.5rem;
flex: 1;
text-align: center;
}
.experience{
  position: relative;
}
h2 span{
  color: #16213e;
}
.experience::before {
  content: '';
  position: absolute;
  top: 40px;
  bottom: 40px;
  left: 50%;
  /* height: 90%; */
  width: 2px;
  background: #ff0000;
  transform: translateX(-50%);
}

.timelineitem.left {
  justify-content: flex-end;
  width: 45%;
}

.timelineitem.right {
  justify-content: flex-start;
  width: 45%;
}

.timelineitem h3 {
  font-family: 'Orbitron', sans-serif;
  color: #ff0000;
  margin-bottom: 0.5rem;
}

/* CTA Section */
.cta {
  padding: 5rem 0;
  background: radial-gradient(circle, #ff0000 0%, #cc0000 100%);
}

.cta h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  color: #fff;
  text-align: center;
  margin-bottom: 1rem;
}

.cta p {
  text-align: center;
  margin-bottom: 2rem;
}

/* Portfolio Section */
.portfolio {
  padding: 5rem 0;
}

.portfolio h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  color: #ff0000;
  text-align: center;
  margin-bottom: 3rem;
}

.portfolio_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.portfolio_item {
  text-align: center;
  overflow: hidden;
  border-radius: 10px;
}

.portfolio_item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.portfolio_item:hover img {
  transform: scale(1.1);
}

.portfolio_item p {
  font-family: 'Orbitron', sans-serif;
  color: #ff0000;
  margin-top: 0.5rem;
}

/* Discount Section */
.discount {
  padding: 5rem 0;
  background: #ff0000;
}

.discount h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  color: #fff;
  text-align: center;
  margin-bottom: 1rem;
}

.discount p {
  text-align: center;
  margin-bottom: 2rem;
}

/* Pricing Section */
.pricing {
  padding: 5rem 0;
}

.pricing h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  color: #ff0000;
  text-align: center;
  margin-bottom: 3rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  justify-items: center;
}

.pricing-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  text-align: center;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.pricing-item:hover {
  transform: translateY(-10px);
}

.pricing-item h3 {
  font-family: 'Orbitron', sans-serif;
  color: #ff0000;
  margin-bottom: 1rem;
}

.pricing-item p strong {
  font-size: 1.5rem;
}

/* Testimonials Section */
.testimonials {
  padding: 5rem 0;
  background: rgba(255, 255, 255, 0.1);
}

.testimonials h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  color: #ff0000;
  text-align: center;
  margin-bottom: 3rem;
}

.testimonial_content {
  text-align: center;
  background: #ff0000;
  padding: 2rem;
  border-radius: 15px;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
}
.testimonial_img img{
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}
.testimonial_img {
  flex: 1;


}
.testimonial_wrap{
  display: flex;
  gap: 50px;
}
.testimonial_contents{
  flex: 1;
  display: flex;
  gap: 30px;
  flex-direction: column;
}
.testimonial__wrap {
  display: flex
;
  align-items: center;
  justify-content: center;
}
.testimonial__wrap span{
  font-weight: 700;
}
.testimonial_content p {
  margin-bottom: 1rem;
}

.testimonial_author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 1rem;
}

.stars {
  color: #08012c;
}

/* Team Section */
.team {
  padding: 5rem 0;
}

.team h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  color: #ff0000;
  text-align: center;
  margin-bottom: 3rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.team-member {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: rotate(5deg);
}

.team-member img {
  width: 100%;
  max-width: 200px;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.team-member h3 {
  font-family: 'Orbitron', sans-serif;
  color: #ff0000;
  margin-bottom: 0.5rem;
}

.social__icons a {
  font-size: 1.5rem;
  margin: 0 0.5rem;
  color: #ff0000;
}

/* Contact Form Section */
.contact-form {
  padding: 5rem 0;
  background: #ff0000;
}

.contact-form h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  color: #fff;
  text-align: center;
  margin-bottom: 3rem;
}

.contact-form form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid #ff0000;
  border-radius: 5px;
  color: #fff;
  transition: box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  box-shadow: 0 0 10px #ff0000;
}

.contact-form textarea {
  height: 150px;
  resize: none;
}

/* Accordion Section */
.accordion_section {
  padding: 5rem 0;
}

.accordion_section h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  color: #ff0000;
  text-align: center;
  margin-bottom: 3rem;
}

.accordion_item {
  margin-bottom: 1rem;
}

.accordion_header {
  width: 100%;
  padding: 1rem;
  background: #ff0000;
  color: #fff;
  font-family: 'Orbitron', sans-serif;
  border: none;
  text-align: left;
  cursor: pointer;
}

.accordion_content {
  display: none;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
}

/* Events Section */
.events {
  padding: 5rem 0;
}

.events h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  color: #ff0000;
  text-align: center;
  margin-bottom: 3rem;
}

.events_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.events_grid p{
  max-width: 700px;
}
.events_grids{
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.event-item {
  text-align: center;
  display: flex
;
  flex-direction: column;
  align-items: center;
}

.event-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.event-item h3 {
  font-family: 'Orbitron', sans-serif;
  color: #ff0000;
  margin-top: 0.5rem;
}

/* Blog Section */
.blog {
  padding: 5rem 0;
}

.blog h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  color: #ff0000;
  text-align: center;
  margin-bottom: 3rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.blog-item {
  text-align: center;
}

.blog-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.blog-item h3 {
  font-family: 'Orbitron', sans-serif;
  color: #ff0000;
  margin: 0.5rem 0;
}

/* Footer */
.footer {
  padding: 3rem 0;
  background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
}

.footer_content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.footer_contact h4,
.footer_links h4,
.footer_policies h4 {
  font-family: 'Orbitron', sans-serif;
  color: #fff;
  margin-bottom: 1rem;
}

.footer_links ul,
.footer_policies ul {
  list-style: none;
}

.footer_links a,
.footer_policies a {
  color: #fff;
  text-decoration: none;
}

.footer_links a:hover,
.footer_policies a:hover {
  color: #ff3333;
}

.copyright {
  text-align: center;
  color: #fff;
  margin-top: 2rem;
}

/* About Hero Section (about.html) */
.about__hero {
  position: relative;
margin-bottom: -8px;
}

.radial-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, #ff0000 0%, #1a1a2e 100%);
  opacity: 0.3;
}
.card-icon {
  font-size: 40px;
  color: #00bcd4;
  margin-bottom: 10px;
}
.service__hero-content {
  padding: 30px 0;
}
.card-item {
  text-align: center;
  padding: 20px;
}
.about__hero-content {
  flex: 1;
  display: flex
;
  left: 50%;
  margin: auto;
  /* transform: translate(-50%, -50%); */
  text-align: center;
  color: #fff;
  flex-direction: column;
}
.about__hero-contents{
  display: flex; gap: 50px;
}
.about__hero-img {
  flex: 1;
}
.about__hero-img img{
  width: 100%;
}
/* About Timeline (about.html) */
.about_timeline .timelineitem::before {
  left: 0;
  transform: none;
}

/* Service Hero Section (service.html) */
.service__hero {
  position: relative;
  height: 100%;
}

.wave-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"%3E%3Cpath fill="%23ff0000" fill-opacity="0.3" d="M0,64L48,80C96,96,192,128,288,138.7C384,149,480,139,576,128C672,117,768,107,864,117.3C960,128,1056,160,1152,176C1248,192,1344,192,1392,192L1440,192V320H1392C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320H0Z"%3E%3C/path%3E%3C/svg%3E');
  background-size: cover;
}
section.services-cards {
  padding: 40px 0;
}
/* Services Cards (service.html) */
.services-cards .cards-grid {
  display: grid;
  padding: 40px 0;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.card-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease;
}

.card-image {
  width: 100%;
  height: 150px;
  background: #333;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.card-item:hover {
  transform: rotate(-5deg);
}

/* Contact Hero Section (contact.html) */
.contact-hero {
  position: relative;
  height: 60vh;
}

.grid-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255, 0, 0, 0.1) 25%, transparent 25%, transparent 75%, rgba(255, 0, 0, 0.1) 75%, rgba(255, 0, 0, 0.1)),
              linear-gradient(45deg, rgba(255, 0, 0, 0.1) 25%, transparent 25%, transparent 75%, rgba(255, 0, 0, 0.1) 75%, rgba(255, 0, 0, 0.1));
  background-size: 20px 20px;
  opacity: 0.3;
}

.contact-hero-content {
  position: absolute;
  top: 50%;
  width: 100%;
  left: 50%;
  max-width: 700px;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
}
.contact-form-section {
  padding: 40px 15px;
}
/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
      display: none;
      position: absolute;
      top: 87px;
      left: 0;
      width: 100%;
      background: #0f0f1a;
      padding: 1rem 0;
      transform: skewX(0deg);
  }

  .nav-menu.active {
      display: flex;
      flex-direction: column;
  }

  .nav-menu li {
      margin: 1rem 0;
  }

  .burger {
      display: flex;
  }

  .about_content,
  .services-grid,
  .timeline,
  .portfolio_grid,
  .pricing-grid,
  .team-grid,
  .events_grid,
  .blog-grid {
      flex-direction: column;
  }

  .timelineitem {
      width: 100%;
  }

  .hero-content h1 {
      font-size: 2rem;
  }
}
html,body{
display: flex;
flex-direction: column;
height: 100%;
}
@media screen and (max-width:768px) {
  .header .container {
    display: flex
;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.header .container {
  display: flex
;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.timelineitems {
  display: flex
;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.experience::before{
  display: none;
}
.testimonial_wrap {
  display: flex
;
  gap: 50px;
  flex-direction: column;
}
.about__hero-contents {
  display: flex
;
  gap: 50px;
  flex-direction: column;
}
.contact-hero {
  position: relative;
  height: 100%;
  padding: 15px;
  min-height: 100%;
}
.contact-hero-content {
  position: absolute;
  top: 50%;
  width: 100%;
  padding: 15px;
  left: 50%;
  max-width: 700px;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
}
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 10px;
  width: 100%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  text-shadow: 0 0 10px #ff0000;
}
}
.ter .about__hero-contents {
  display: flex
;
flex-direction: column;
  gap: 10px;
}
.ter ul{
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-left: 10px;
}
section.about__hero.ter

 {
  padding: 40px 0;
}
.coieban {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #333;
  color: #fff;
  padding: 15px 20px;
  text-align: center;
  font-size: 14px;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.coieban a {
  color: #00ffff;
  text-decoration: underline;
}

.coieban button {
  background: #00ffff;
  border: none;
  padding: 8px 16px;
  cursor: pointer;
  color: #000;
  border-radius: 4px;
  font-weight: bold;
}

.coieban.hidden {
  display: none;
}
