:root {
    --primary-color: #007bff; /* Blue */
    --secondary-color: #183884; /* Dark Blue */
    --text-color: #555;
    --heading-color: #333;
    --light-bg: #f9f9f9;
    --white: #ffffff;
    --font-main: 'Roboto', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
padding: 0px;
margin: 0px;
 font-family: 'Poppins' !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* Header */
.main-header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.main-header .main-nav ul {
	margin: 0px;
	padding: 0px;
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}
.main-nav ul li {
	list-style: none;
}
.main-nav ul li a {
	text-decoration: none;
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
}
.logo img {
    height: 80px;
    width: auto;
}

.main-nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

.main-nav a {
    color: var(--heading-color);
    font-weight: 500;
}

.main-nav a:hover, .main-nav a.active {
    color: var(--primary-color);
}

.btn-nav {
    background: var(--primary-color);
    color: white !important;
    padding: 8px 20px;
    border-radius: 4px;
}

.mobile-menu-icon {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 75vh;
  overflow: hidden;
}

/* Slides wrapper */
.slides {
  display: flex;
  height: 100%;
  transition: transform 0.6s ease-in-out;
}

/* Individual slide */
.slide {
  min-width: 100%;
  height: 100%;
  flex-shrink: 0;
}

/* Image */
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  font-size: 22px;
  padding: 10px 14px;
  cursor: pointer;
  z-index: 10;
}

.prev { left: 15px; }
.next { right: 15px; }

.slider-btn:hover {
  background: rgba(0,0,0,0.8);
}
@media (max-width: 991px) {
  .hero-slider {
    height: 40vh;
  }
}

@media (max-width: 768px) {
  .hero-slider {
    height: 30vh;
  }

  .slider-btn {
    font-size: 18px;
    padding: 8px 12px;
  }
}

@media (max-width: 480px) {
  .hero-slider {
    height: 20vh;
  }
}

/*services*/
/* Services */
.services {
    padding: 80px 0;
    background: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.service-card {
    background: var(--white);
    padding: 40px 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 50px;
    margin: 0 auto 20px;
}

.service-card h3 {
	margin-bottom: 15px;
	color: var(--secondary-color);
	font-size: 22px;
}
.services .section-title {
	text-align: center;
	margin-bottom: 29px;
	font-weight: 600;
	font-size: 35px;
}
/* About Section */
.about {
  padding: 80px 0;
}

/* Desktop */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--primary-color);
  color: white;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.experience-badge .years {
  display: block;
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1;
}

.about-text .subtitle {
  color: var(--primary-color);
  font-weight: bold;
  margin-bottom: 10px;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.check-list {
  margin: 30px 0;
  padding: 0;
}

.check-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.check-list i {
  color: var(--primary-color);
}
@media (max-width: 991px) {
  .about {
    padding: 60px 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-text h2 {
    font-size: 2.1rem;
  }

  .experience-badge {
    bottom: 15px;
    right: 15px;
    padding: 15px;
  }

  .experience-badge .years {
    font-size: 2rem;
  }
}
@media (max-width: 576px) {
  .about {
    padding: 50px 0;
  }

  .about-text h2 {
    font-size: 1.8rem;
  }

  .experience-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    padding: 12px;
    border-radius: 8px;
  }

  .experience-badge .years {
    font-size: 1.6rem;
  }

  .check-list li {
    font-size: 14px;
  }
}
/* Gallery */
.gallery {
	padding: 80px 0;
	background: #183884;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    transition: 0.3s;
}

.gallery-grid img:hover {
    opacity: 0.8;
}
.gallery .section-title {
	text-align: center;
	color: #fff;
	font-size: 35px;
	font-weight: 600;
}
.gallery .section-desc {
	text-align: center;
	color: #b7b7b7;
	margin-bottom: 30px;
	margin-top: 10px;
}
/* CTA Section */
.cta-section {
  padding: 80px 0;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.cta-content p {
  margin-bottom: 30px;
}

.cta-image img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 991px) {
  .cta-section {
    padding: 60px 0;
  }

  .cta-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .cta-content h2 {
    font-size: 2.1rem;
  }

  .cta-content p {
    margin-bottom: 25px;
  }
}
@media (max-width: 576px) {
  .cta-section {
    padding: 50px 0;
  }

  .cta-content h2 {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .cta-content p {
    font-size: 14px;
  }

  .cta-content .btn {
    padding: 10px 22px;
    font-size: 14px;
  }
}
/* Stats */
.stats {
	background: var(--secondary-color);
	color: white;
	padding: 60px 0;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
.stats-grid {
    display: flex;
    justify-content: space-around;
    text-align: center;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-item h2 {
    font-size: 3rem;
    color: #fff;
}
/* Support Banner */
.support-banner {
    text-align: center;
    padding: 50px 0;
}
.support-img img {
	width: 300px;
	object-fit: contain;
}
/* Footer */
.main-footer {
	background: #1c3c84;
	color: #bbb;
	padding: 70px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 00px;
    margin-bottom: 50px;
}

.footer-logo {
	max-width: 100px;
	margin-bottom: 20px;
}

.footer-col h3 {
    color: white;
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a:hover {
	color: #fff;
}
.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-list i {
    color: var(--primary-color);
    margin-top: 5px;
}

.social-icons {
    margin-top: 20px;
}

.social-icons a {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	background: #fff;
	color: #1c3c84;
	border-radius: 50%;
	margin-right: 10px;
	text-decoration: none;
}
.social-icons a:hover {
    background: var(--primary-color);
}

.copyright {
	text-align: center;
	border-top: 1px solid #c6c6c6;
	padding-top: 20px;
}
.footer-col ul {
	padding: 0px;
}
.footer-col ul li {
	list-style: none;
}
.footer-col ul li a {
    color: #fff;
    text-decoration: none;
}

.about-header {
	position: relative;
	padding: 150px 0;
	background-image: url("img/ABOUT-BACK.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	text-align: center;
}
.about-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55); /* overlay color */
  z-index: 1;
}
/* Content above overlay */
.about-header .container {
  position: relative;
  z-index: 2;
}

.about-title {
  color: #fff;
  font-size: 32px;
  font-weight: 600;
  margin: 0;
}
.about-title {
  margin: 0;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .about-title {
    font-size: 26px;
  }
}

@media (max-width: 576px) {
  .about-title {
    font-size: 22px;
  }
  .about-header {
	padding: 90px 0 !important;
}
}
.about-title {
	margin: 0;
	font-size: 50px;
	font-weight: 700;
	line-height: 1.2;
}

.mission-section {
	padding: 60px 20px;
	background-color: #183884;
	display: flex;
	justify-content: center;
}

.mission-content {
    text-align: center; 
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Typography */
.mission-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.mission-text {
	font-size: 1.1rem;
	line-height: 1.6;
	color: #bfbfbf;
}
@media (max-width: 768px) {
    .mission-title {
        font-size: 2rem;
    }
    .mission-section {
        padding: 40px 15px;
    }
}

.technicians-section {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.technicians-section .row-flex {
    display: flex;
    align-items: center;
    gap: 50px; 
}

.technicians-section .column {
    flex: 1; 
}

.technicians-section .responsive-img {
    width: 100%;
    height: auto;
    border-radius: 8px; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.technicians-section .section-title {
	font-size: 2.25rem;
	font-weight: 700;
	color: #183884;
	margin-bottom: 20px;
}
.technicians-section .section-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

@media (max-width: 992px) {
    .technicians-section .row-flex {
        flex-direction: column; 
        text-align: center;
        gap: 30px;
    }
    
    .technicians-section .section-title {
        font-size: 1.8rem;
    }
}

.our-team {
  padding: 60px 0;
  background: #f8f9fb;
}

.our-team .section-title {
  font-size: 36px;
  margin-bottom: 10px;
  text-align: center;
}

.our-team .section-subtitle {
  color: #666;
  margin-bottom: 40px;
  text-align: center;
}

.our-team .team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.our-team .team-card {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.our-team .team-card:hover {
  transform: translateY(-5px);
}

.our-team .team-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.our-team .team-card h3 {
  margin: 10px 0 5px;
  font-size: 20px;
}

.our-team .team-card span {
  font-size: 14px;
  color: #007bff;
  display: block;
  margin-bottom: 10px;
}

.our-team .team-card p {
  font-size: 14px;
  color: #555;
}


.gallery-section {
  padding: 60px 0;
  background: #f9f9f9;
}

.gallery-section .section-title {
  font-size: 36px;
  margin-bottom: 10px;
  text-align: center;
}

.gallery-section .section-subtitle {
  color: #666;
  margin-bottom: 40px;
  text-align: center;

}

.gallery-section .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.gallery-section .gallery-item {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.gallery-section .gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-section .gallery-item:hover img {
  transform: scale(1.1);
}



   .contact-header {
      background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                  url("img/contact-bg.jpg") center/cover;
      padding: 80px 20px;
      text-align: center;
      color: #fff;
    }

    .contact-header h1 {
      margin: 0;
      font-size: 36px;
    }

    .contact-section {
      padding: 60px 20px;
    }

    .contact-container {
      max-width: 1100px;
      margin: auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }

    .contact-box {
      background: #fff;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.08);
      text-align: center;
    }

    .contact-box i {
      font-size: 32px;
      color: #007bff;
      margin-bottom: 15px;
    }

    .contact-box h3 {
      margin-bottom: 10px;
      font-size: 20px;
    }

    .contact-box p,
    .contact-box a {
      color: #555;
      text-decoration: none;
      font-size: 16px;
    }

    .contact-box a:hover {
      color: #007bff;
    }

    .map-section {
      margin-top: 50px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    }

    iframe {
      width: 100%;
      height: 400px;
      border: 0;
    }

    @media (max-width: 600px) {
      .contact-header h1 {
        font-size: 28px;
      }
    }



.main-nav ul {
    display: flex;
    gap: 30px;
}

.mobile-menu-icon {
    display: none;
}
@media (max-width: 768px) {

    .mobile-menu-icon {
        display: block;
        font-size: 28px;
        cursor: pointer;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        display: none;
        z-index: 999;
    }

  .main-nav ul {
	flex-direction: column;
	padding: 15px 0;
	justify-content: left;
	gap: 0px !important;
    display: block !important;
}

.main-nav ul li {
	text-align: left;
	padding: 5px 15px;
}

    .main-nav.active {
        display: block;
    }
}

