@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,100..900&display=swap');

body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  overflow-x: hidden;
}

header {
  background-color: #fff;
  position: fixed;
  width: 100%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 10000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  z-index: 10001;
}

.logo img {
  width: 150px;
  height: auto;
}

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

.nav-links li {
  margin-right: 20px;
}

.nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

.nav-links li a:hover {
  color: #000;
}

/* Dropdown Styles */
.sec-center {
  position: relative;
  display: inline-block;
}

.for-dropdown {
  cursor: pointer;
  font-weight: bold;
  background-color: #000;
  color: #fff;
  padding: 10px;
  border-radius: 5px;
  display: block;
  text-align: center;
}

.section-dropdown {
  display: none;
  position: absolute;
  background-color: #000;
  color: #fff;
  min-width: 150px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
  border-radius: 5px;
  margin-top: 10px;
}

.section-dropdown a {
  display: block;
  color: white;
  padding: 10px;
  text-decoration: none;
}

.section-dropdown a:hover {
  background-color: #333;
}

.show {
  display: block;
}

.for-sub-dropdown {
  cursor: pointer;
  padding: 10px;
  color: white;
}

.for-sub-dropdown:hover {
  background-color: #333;
}

.hamburger {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  color: #333;
  cursor: pointer;
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links li {
    margin: 10px 0;
    text-align: center;
    width: 100%;
  }

  .hamburger {
    display: block;
    align-self: flex-end;
  }

  .for-dropdown {
    width: 100%;
  }

  .section-dropdown {
    position: relative;
    width: 100%;
  }
}

.home {
  position: relative;
  width: 100%;
  min-height: 100vh;
  color: #000000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.text {
  font-family: monospace;
  width: 100%;
  overflow: hidden;
  animation: typing 1s steps(13), cursor 4s step-end infinite alternate;
}

@keyframes typing {
  from { width: 0; }
}

.home .content {
  z-index: 10; 
  margin-top: 50px;
  font-size: 10px;
  width: 70%;
}

.home .content h1 {
  font-size: 5em; 
  font-weight: 900;
  text-transform: uppercase;
  line-height: 75px;
  margin-bottom: 100px;
  letter-spacing: 2rem;
  color: white;
  margin-left: 30px;
}

.media-icons {
  position: absolute;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 10; 
  bottom: 250px;
}

.media-icons a {
  color: white;
  font-size: 2rem;
  transition: 0.3s ease;
  text-decoration: none;
}

.media-icons a:hover {
  color: #f39c12;
  transform: scale(1.3);
}

.slider-navigation {
  z-index: 10; 
  position: relative;
  display: flex;
  margin-top: 300px;
  margin-left: 658px;
  transform: translateY(80px);
  margin-bottom: 12px;
}

.slider-navigation .nav-btn {
  width: 12px;
  height: 12px;
  background: black;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s ease;
}

.slider-navigation .nav-btn.active {
  background: #f39c12;
}

.slider-navigation .nav-btn:not(:last-child) {
  margin-right: 20px;
}

.slider-navigation .nav-btn:hover {
  transform: scale(1.3);
}

/* Video Slides */
.video-slide,
.video-slide2,
.video-slide3,
.video-slide4,
.video-slide5 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1; 
  opacity: 1;
}

@media(min-aspect-ratio:16/9) {
  .video-slide,
  .video-slide2,
  .video-slide3,
  .video-slide4,
  .video-slide5 {
    width: 100%;
    height: auto;
  }
}

@media(max-aspect-ratio:16/9) {
  .video-slide,
  .video-slide2,
  .video-slide3,
  .video-slide4,
  .video-slide5 {
    width: auto;
    height: 100%;
  }
}

@media (max-width: 768px) {
  .home .content h1 {
    font-size: 2.5em;
    line-height: 45px;
    letter-spacing: 1.5rem;
    margin-bottom: 50px;
  }

  .media-icons {
    right: 15px;
    bottom: 150px;
  }

  .slider-navigation {
    transform: translateY(60px);
    margin-left: 0;
  }

  .slider-navigation .nav-btn {
    width: 8px;
    height: 8px;
  }

  .video-slide,
  .video-slide2,
  .video-slide3,
  .video-slide4,
  .video-slide5 {
    object-fit: cover;
    width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .home .content h1 {
    font-size: 2em;
    line-height: 35px;
    letter-spacing: 1rem;
    margin-bottom: 30px;
  }

  .media-icons {
    bottom: 100px;
  }

  .video-slide,
  .video-slide2,
  .video-slide3,
  .video-slide4,
  .video-slide5 {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
  }
}

.abou {
    background-color: #fff;
}

.ab {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    background-color: #fff;
    z-index: 1;
}

.image-section {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.image-stack {
    position: relative;
    z-index: 1;
    margin-left: 160px;
}

.image-stack::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: 40%;
    height: 100%;
    background-color: #002447;
    z-index: 0;
}

.image-stack::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40%;
    height: 100%;
    background-color: #e51e2a;
    z-index: -1;
}

.image {
    max-width: 40%;
    display: block;
    border-radius: 8px;
    position: relative;
    z-index: 1;
}

.content-section {
    flex: 1;
    position: relative;
    padding-left: 0;
    z-index: 2;
    background-color: #fff;
    margin-left: -300px;
}

.content-section h1 {
    color: #002447;
    font-size: 2.5rem;
    margin-top: 0;
    position: relative;
}

.content-section span {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .ab {
        flex-direction: column;
        padding: 20px;
    }

    .image-section {
        margin: 0;
    }

    .image {
        max-width: 80%;
        margin: 0 auto; 
    }

    .content-section {
        padding-left: 0;
        text-align: center; 
        margin-left: 0;
    }

    .content-section h1,
    .content-section span {
        margin-left: 0;
        font-size: 1.5rem;
    }
}

.chart {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    z-index: 1;
}

.chart-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 90%;
    padding: 20px;
    gap: 30px;
}

.chart-section {
    width: 48%;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.1);
}
.about .heading{
  text-align: center;
  font-size: 60px;
}
 .title{
  text-align: center;
}
.chart-section h2 {
    font-size: 1.5rem;
    text-align: center;
}

.pie-chart-wrapper {
    display: flex;
    justify-content: flex-start;
    width: 300px;
    height: 310px;
}

.pie-chart-container {
    flex-grow: 1;
    width: auto;
    height: 100%;
}

.pie-chart-legend {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-left: 20px;
    width: auto;
    font-size: 15px;
    position: relative;
}

.data {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.data li {
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


@media (max-width: 768px) {
    .chart-container {
        flex-direction: column; 
        align-items: center; 
        gap: 20px; 
    }

    .chart-section h2 {
    font-size: larger;
    text-align: center; 
}

@media (max-width: 768px) {
   

    .chart-section h2 {
        text-align: center;
    }
}

    .pie-chart-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 300px;
    height: 260px;
}

.pie-chart-container {
    flex-grow: 1;
    width: auto;
    height: 100%;
}

.pie-chart-legend {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 20px;
    width: auto;
    font-size: 15px;
    position: relative;
}

@media (max-width: 768px) {
   

    .pie-chart-wrapper {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .pie-chart-legend {
        padding-left: 0;
        text-align: center;
    }
}
    .data li {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .chart-section h2 {
        font-size: 1.2rem; 
    }

    .pie-chart-container {
        height: 200px; 
    }
}
.heading2 {
    position: relative;
    left: 0; 
    margin-top: 50px; 
    color: #000;
    text-align: center;
    font-size: 40px;
}
.pothole-section {
    display: flex;
    flex-direction: column; 
    align-items: center;
    padding: 20px;
    gap: 20px;
    margin-bottom: 20px;
    width: 90%;
    position: relative;
    margin-left: 50px;
}

.pothole-container {
    display: flex;
    flex-direction: row; 
    justify-content: space-between;
    width: 90%;
    gap: 20px;
    border: 1px solid black;
    max-width: 1200px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 25px;
}

.report-pothole, .celebrate {
    flex: 1; 
    padding: 20px;
}

@media (max-width: 768px) {
    .pothole-container {
        flex-direction: column; 
    }
}
.steps {
    display: flex;
    justify-content: flex-start;
    gap: 90px;
    margin-left: 35px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80px;
}

.step img {
    width: 110px;
    height: 190px;
    margin-bottom: 10px;
}

@media (min-width: 768px) {
   
    .steps {
        flex-direction: row;
    }

    .step {
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    
    .steps .step:nth-child(3) {
        display: none;
    }
}
.report-pothole, .celebrate {
    padding: 20px;
}

.report-pothole h2 {
    font-size: 28px; /* Adjust font size for mobile */
    margin-left: 0; /* Center the heading on mobile */
}

.report-pothole p {
    font-size: 16px; /* Adjust font size for mobile */
    margin-left: 0; /* Center the paragraph on mobile */
}

.celebrate {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid #ccc;
    text-align: center;
    border-radius: 25px;
}

.celebrate h2 {
    font-size: 28px; /* Adjust font size for mobile */
}

.celebrate p {
    font-size: 16px; /* Adjust font size for mobile */
}

.celebrate span {
    color: red;
    font-weight: bold;
}

/* Responsive styles */
@media (max-width: 768px) {
    .heading2 {
        font-size: 32px; /* Further reduce font size for smaller screens */
    }

    .pothole-container {
        width: 100%;
    }

    .report-pothole h2 {
        font-size: 24px; /* Further reduce font size for smaller screens */
    }

    .report-pothole p {
        font-size: 14px; /* Further reduce font size for smaller screens */
    }

    .celebrate h2 {
        font-size: 24px; /* Further reduce font size for smaller screens */
    }

    .celebrate p {
        font-size: 14px; /* Further reduce font size for smaller screens */
    }
}
.button {
  position: relative;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  padding-block: 0.5rem;
  padding-inline: 1.25rem;
  background-color: rgb(0 107 179);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #ffff;
  gap: 10px;
  font-weight: bold;
  border: 3px solid #ffffff4d;
  outline: none;
  overflow: hidden;
  font-size: 15px;
  width: 40%;
  margin-left: 30%;

}

.icon {
  width: 24px;
  height: 24px;
  transition: all 0.3s ease-in-out;
}

.button:hover {
  transform: scale(1.05);
  border-color: #fff9;
}

.button:hover .icon {
  transform: translate(4px);
}

.button:hover::before {
  animation: shine 1.5s ease-out infinite;
}

.button::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100%;
  background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0) 70%
  );
  top: 0;
  left: -100px;
  opacity: 0.6;
}

@keyframes shine {
  0% {
    left: -100px;
  }

  60% {
    left: 100%;
  }

  to {
    left: 100%;
  }
}
.card-wrapper {
    max-width: 100%; /* Use full width on mobile */
    margin: 0 10px 20px;
    padding: 20px 10px;
    overflow: hidden;
}
card-list .card-item .card-link {
    padding: 15px; /* Reduce padding on mobile */
}

.card-list .card-link .card-title {
    font-size: 1.05rem; /* Reduce font size on mobile */
}

.card-list .card-link .card-button {
    margin: 25px 0 5px; /* Adjust margin on mobile */
}


.card-list .card-item {
  list-style: none;
}
.card-list .card-item .card-link {
  display: block;
  background: #fff;
  padding: 18px;
  user-select: none;
  border-radius: 12px;
  text-decoration: none;
  border: 2px solid transparent;
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.2);
  transition: 0.2s ease;
}
.card-list .card-item .card-link:active {
  cursor: grabbing;
}
.card-list .card-item .card-link:hover {
  border-color: #5372F0;
}
.card-list .card-link .card-image {
  width: 100%;
  border-radius: 10px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.card-list .card-link .badge {
  color: #5372F0;
  width: fit-content;
  padding: 8px 16px;
  font-size: 0.95rem;
  border-radius: 50px;
  font-weight: 500;
  background: #DDE4FF;
  margin: 16px 0 18px;
}
.card-list .card-link .badge-designer {
  color: #B22485;
  background: #F7DFF5;
}
.card-list .card-link .badge-marketer {
  color: #B25A2B;
  background: #FFE3D2;
}
.card-list .card-link .badge-gamer {
  color: #205C20;
  background: #D6F8D6;
}
.card-list .card-link .badge-editor {
  color: #856404;
  background: #fff3cd;
}
.card-list .card-link .card-title {
  color: #000;
  font-size: 1.19rem;
  font-weight: 600;
}
.card-list .card-link .card-button {
  height: 35px;
  width: 35px;
  color: #5372F0;
  margin: 30px 0 5px;
  background: none;
  cursor: pointer;
  border-radius: 50%;
  border: 2px solid #5372F0;
  transform: rotate(-45deg);
  transition: 0.4s ease;
}
.card-list .card-link:hover .card-button {
  color: #fff;
  background: #5372F0;
}
.card-wrapper .swiper-pagination-bullet {
  height: 13px;
  width: 13px;
  opacity: 0.5;
  background: #5372F0;
}
.card-wrapper .swiper-pagination-bullet-active {
  opacity: 1;
}
.card-wrapper .swiper-slide-button {
  color: #5372F0;
  margin-top: -35px;
}

@media (max-width: 768px) {
  .card-wrapper {
    margin: 0 10px 25px;
  }
  .card-wrapper .swiper-slide-button {
    display:none;}
}
.footer {
    background-color: #000000;
    color: #fff;
    padding: 20px;
    text-align: center;
    width: 100%;
    margin-top: auto;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100%;
    margin: auto;
    height: auto;
}

.footer-box {
    flex-basis: 100%;
    padding: 10px;
    min-width: auto;
}

.footer-logo {
    font-size: 24px;
    color: #ff5100;
}

.footer .logo1 {
    height: 70px;
    width: 200px;
    margin-left: 0;
    filter: drop-shadow(0px 0px 4px rgb(252, 251, 251));
}

.footer-box h3 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #ff5100;
}

.footer-box p {
    font-size: 14px;
    line-height: 1.6;
    color: #ddd;
}

.footer-box a {
    color: #ff5100;
    text-decoration: none;
    display: block;
    margin: 5px 0;
}

.footer-box ul {
    list-style: none;
    padding: 0;
}

.footer-box ul li {
    margin: 5px 0;
}

.footer-box ul li a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-box ul li a:hover {
    color: #07eafa;
}

.social-links a {
    margin: 5px;
    color: #ddd;
    font-size: 16px;
    text-decoration: none;
}

.social-links a:hover {
    color: #07eafa;
}

.footer-bottom {
    margin-top: 10px;
    border-top: 1px solid #444;
    padding-top: 10px;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: #bbb;
}

@media (min-width: 768px) {
    /* Adjust for larger screens */
    .footer-container {
        justify-content: space-between;
    }

    .footer-box {
        flex-basis: 25%;
    }

    .footer-logo {
        font-size: 24px;
    }

    .footer-box h3 {
        font-size: 20px;
    }

    .footer-box p {
        font-size: 16px;
    }

    .social-links a {
        font-size: 18px;
    }
}