/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

body{
    background-color: white;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Navbar Styles */
.navbar {
    position: sticky;
    top: 0;
    width: 80%;
    Height: 60px ;
    background-color: white;
    color: #ff0100;
    padding: 1rem 2rem;
    z-index: 1000;
    border-radius: 100px;
    border: 2px solid #ff0100;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
}

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

.nav-links a {
    color: #ff0100;
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: background 0.3s;
}

.nav-links a:hover {
    background-color: #ff0100;
    color: white;
    border: 2px solid #ff0100;
    border-radius: 30px;
}

/* Hamburger Menu Styles */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #ff0100;
}

/* Hero Section Styles */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
    background-color: white;
}

.hero-content {
    max-width: 50%;
    padding: 5%;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-align: left;
    
}

.hero p {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: justify;
    color: #ff0100;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn-primary, .btn-secondary {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 25px;
}

.btn-primary {
    background-color: white;
    color: #ff0100;
    border-color: #0056b3;
    border: 2px solid #ff0100;
}

.btn-secondary {
    background-color: #6c757d;
    color: #fff;
}

.btn-primary:hover {
    border-color: #ff0100; /* Change this color for hover state */
    background-color: #ff0100;
    color: #fff;
}

/* Image Frame Styles */
.hero-image {
    padding: 20px 0;
    max-width: 50%;
}

.image-frame {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 8px #ff0100;
    border: 2px solid #ff0100;
}

.image-frame img {
    width: 100%;
    display: block;
}

/* Responsive Styles */
@media (max-width: 1210px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 150%;
        right: 0;
        background-color: white;
        height: 240px;
        width: 200px;
        border: 2px solid #ff0100;
        border-radius: 5px;
    }

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

    .hamburger {
        display: flex;
    }

    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-content, .hero-image {
        max-width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons button {
        width: 100%;
        margin-top: 0.5rem;
    }
}

/* Code Block For the logo slider */

.wrapper {
		background-color: white;
		height: 130px;
		overflow: hidden;
		position: relative;
		width: 100%;
		display: flex;
		align-items: center;
		padding: 0 20px;
	}

	.wrapper:before, .wrapper:after {
		content: "";
		position: absolute;
		height: 130px;
		width: 150px;
		z-index: 2;
	}

	.wrapper:after {
		right: 0;
		top: 0;
		transform: rotateZ(180deg);
	}

	.wrapper:before {
		left: 0;
		top: 0;
	}

	.wrapper .track {
		display: flex;
		width: calc(150px * 10);
		animation: scroll 15s 0.5s linear infinite;
	}

	.wrapper .logo {
		width: 190px;
	}

	.wrapper .logo img {
		height: 80px;
	}

	@keyframes  scroll {
		from {
			transform: translateX(0);
		}
		to {
			transform: translateX(calc(-150px * 5));
		}
	}


/* Code Block For the Service Section */

.services {
	  max-width: 1200px;
	  margin: 0 auto;
	  padding: 20px;
	  display: flex;
	  flex-wrap: wrap;
	  gap: 20px;
	}

	.service-card {
	  flex: 1 1 300px;
	  background-color: #ffefcc;
	  border-radius: 10px;
	  padding: 20px;
	  display: flex;
	  flex-direction: column;
	  transition: transform 0.3s ease;
	  border: 2px solid #ff0100;
	}

	.service-card:hover {
	  transform: translateY(-5px);
          color: #ff0100;
          border: 2px solid #ff0100;
	}

	.service-icon {
	  width: 50px;
	  height: 50px;
	  background-color: #ff0100;
	  border-radius: 50%;
	  display: flex;
	  justify-content: center;
	  align-items: center;
	  margin-bottom: 15px;
	}

	.service-icon svg {
	  width: 24px;
	  height: 24px;
	  color: #fff;
	}

	h2 {
	  font-size: 1.5em;
	  margin-bottom: 1rem;
	}

	p {
	  font-size: 0.9em;
	  line-height: 1.5;
	  color: black;
	  text-align; justify;
	}

	@media (max-width: 768px) {
	  .service-card {
	    flex-basis: 100%;
	  }
	}  

/* Code Block For the About Section */

@import url('https://fonts.googleapis.com/css2 family=Inter:wght@400;700&display=swap');
.about {
	    min-height: 100vh;
	    display: flex;
	    align-items: center;
	    justify-content: center;
	    text-align: center;
	    padding: 2rem;
	}

	.container {
	    max-width: 800px;
	}

	.feature-tag {
	    display: inline-block;
	    background-color: #ff0100;
	    color: white;
	    padding: 0.5rem 1rem;
	    border-radius: 20px;
	    font-weight: bold;
	    font-size: 0.8rem;
	    margin-bottom: 1rem;
	}

	h1 {
	    font-size: 4rem;
	    margin-bottom: 1rem;
	}

	p {
	    font-size: 1.2rem;
	    max-width: 600px;
	    margin: 0 auto;
	}

	@media (max-width: 768px) {
	    h1 {
		font-size: 3rem;
	    }
	    
	    p {
		font-size: 1rem;
	    }
	}

/* Code Block For the Working process section */

.our-process {
	  max-width: 900px;
	  margin: 0 auto;
	  padding: 2rem;
	  /*max-height: 80vh;  Limit height to 80% of viewport height */
          overflow-y: auto; /* Make it scrollable */
	}

	h2 {
	  /*display: flex;*/
	  align-items: center;
	  font-size: 1.5rem;
	  margin-bottom: 0.5rem;
	  color: black;
	}

	h2 .icon {
	  margin-right: 0.5rem;
	}

	.timeline {
	  position: relative;
	  padding-left: 25px;
	}

	.timeline::before {
	  content: '';
	  position: absolute;
	  left: 0;
	  top: 0;
	  bottom: 0;
	  width: 2px;
	  background-color: #ff0100;
	  height: 100%; /* Ensure it covers the full height */
	}

	.timeline-item {
	  position: relative;
	  margin-bottom: 2rem;
	}

	.timeline-icon {
	  position: absolute;
	  left: -40px;
	  width: 30px;
	  height: 30px;
	  background-color: #ffefcc;
	  border-radius: 30%;
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  font-size: 1.2rem;
	  border: 2px solid #ff0100;
	}

	.timeline-content {
	  background-color: #ffefcc;
	  padding: 1rem;
	  border-radius: 6px;
	  color: black;
	  border: 2px solid #ff0100;
	}

	h3 {
	  margin: 0;
	  font-size: 1.2rem;
	}

	.subtitle {
	  color: #ff0100;
	  margin: 0.25rem 0 0.5rem;
	  font-size: 0.9rem;
	}

	.description {
	  font-size: 0.9rem;
	  line-height: 1.4;
	  margin: 0;
	}

	@media (max-width: 768px) {
	  .our-process {
	    padding: 1rem;
	  }
	  
	  .timeline-icon {
	    left: -36px;
	    width: 24px;
	    height: 24px;
	    font-size: 1rem;
	  }
	}
	.timeline-item {
	  opacity: 0;
	  transform: translateY(20px);
	  transition: opacity 0.5s, transform 0.5s;
	}

	.timeline-item.visible {
	  opacity: 1;
	  transform: translateY(0);
	}

/* Code Block For the projects worked section */

.pro-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.project-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 2px solid #ff0100;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.project-info {
    padding: 20px;
    text-align: center;
}

.project-name {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.explore-btn a:link, .explore-btn a:visited {
    color: white;
}

.explore-btn {
    display: inline-block;
    background-color: white;
    color: #ff0100;
    padding: 8px 16px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border: 2px solid #ff0100;
}

.explore-btn:hover {
    background-color: #ff0100;
    color: white;
}

.explore-btn a:hover {
    background-color: #ff0100;
    color: white;
}

.show-more-btn {
    display: block;
    margin: 0 auto;
    background-color: white;
    color: #ff0100;
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border: 2px solid #ff0100;
    
}

.show-more-btn:hover {
    background-color: #ff0100;
    color: white;
    
}



/* Code Block For the Testimonial Section */


.testimonials {
	    padding: 4rem 2rem;
	}

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


	.slider {
	    display: flex;
	    overflow-x: hidden;
	    scroll-snap-type: x mandatory;
	    scroll-behavior: smooth;
	}

	.slide {
	    flex: 0 0 100%;
	    scroll-snap-align: start;
	    padding: 1rem;
	    background-color: #ffefcc;
	    border-radius: 10px;
	    margin-right: 1rem;
	    border: 2px solid #ff0100;
	}

	.quote {
	    font-size: 1.2rem;
	    margin-bottom: 1rem;
	    max-width: 1225px;
	    
	}

	.author {
	    display: flex;
	    align-items: center;
	}

	.author img {
	    width: 50px;
	    height: 50px;
	    border-radius: 50%;
	    margin-right: 1rem;
	}

	.author h3 {
	    font-size: 1rem;
	    margin-bottom: 0.25rem;
	}

	.author p {
	    font-size: 0.8rem;
	    color: black;
	    
	}

	@media (max-width: 768px) {
	    h2 {
		font-size: 2rem;
	    }
	    
	    .quote {
		font-size: 1rem;
	    }
	}



/* Code Block For the FAQ Section */
.faq-container {
	    max-width: 800px;
	    margin: 0 auto;
	}

	
	.faq-item {
	    border: 2px solid #ff0100;
	    background-color: #ffefcc;
	    border-radius: 5px;
	    margin-bottom: 10px;
	    overflow: hidden;
	}

	.faq-question {
	    padding: 20px;
	    cursor: pointer;
	    position: relative;
	    font-weight: bold;
	}

	.toggle-icon {
	    position: absolute;
	    right: 20px;
	    top: 50%;
	    transform: translateY(-50%);
	    font-size: 1.5em;
	}

	.faq-answer {
	    padding: 0 20px;
	    max-height: 0;
	    overflow: hidden;
	    transition: max-height 0.3s ease-out, padding 0.3s ease;
	}

	.faq-item.active .faq-answer {
	    padding: 20px;
	    max-height: 1000px;
	}

	.faq-item.active .toggle-icon {
	    transform: translateY(-50%) rotate(45deg);
	}
	
/* Code Block For the CTA Section */
.cta-container {
	  display: flex;
	  justify-content: space-between;
	  align-items: center;
	  background-color: #ffefcc;
	  padding: 40px;
	  border-radius: 10px;
	  max-width: 1000px;
	  margin: 0 auto;
	  border: 2px solid #ff0100;
	}

	.cta-content {
	  flex: 1;
	  padding-right: 115px;
	}

	.h2-content {
	  font-size: 2.5em;
	  margin-bottom: 20px;
	}

	p {
	  font-size: 1em;
	  margin-bottom: 30px;
	}

	#cta-button {
	  background-color: white;
	  color: black;
	  border: none;
	  padding: 15px 30px;
	  font-size: 1em;
	  border-radius: 25px;
	  cursor: pointer;
	  transition: background-color 0.3s;
	  border: 2px solid #ff0100;
	}

	#cta-button:hover {
	  color: white;
	  background-color: #ff0100;
	}

	.cta-image {
	  position: relative;
	  width: 200px;
	  height: 200px;
	}

	.bomb {
	  width: 80px;
	  height: 80px;
	  background-color: white;
	  border: 2px solid #ff0100;
	  border-radius: 50%;
	  position: absolute;
	  top: 50%;
	  left: 50%;
	  transform: translate(-50%, -50%);
	}

	.sparkle {
	  position: absolute;
	  background-color: #ff0100;
	}

	.sparkle-1 {
	  width: 40px;
	  height: 40px;
	  top: 0;
	  right: 30px;
	  background-color: #ff0100;
	  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
	}

	.sparkle-2 {
	  width: 30px;
	  height: 30px;
	  bottom: 20px;
	  left: 20px;
	  background-color: #ff0100;
	  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
	}

	.sparkle-3 {
	  width: 25px;
	  height: 25px;
	  bottom: 40px;
	  right: 10px;
	  background-color: #ff0100;
	  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
	}

	@media (max-width: 768px) {
	  .cta-container {
	    flex-direction: column;
	    text-align: center;
	  }
	  
	  .cta-content {
	    padding-right: 0;
	    margin-bottom: 30px;
	  }
	  
	  .cta-image {
	    width: 150px;
	    height: 150px;
	  }
	}



	
/* Code Block For the footer */

.footer {
	  display: flex;
	  flex-flow: row wrap;
	  padding: 30px 30px 20px 30px;
	  color: #2f2f2f;
	  background-color: #fff;
	  border-top: 2px solid #ff0100;
	}

	.footer > * {
	  flex:  1 100%;
	}

	.footer__addr {
	  margin-right: 1.25em;
	  margin-bottom: 3em;
	}

	.footer__logo {
	  font-family: 'Pacifico', cursive;
	  font-weight: 400;
	  text-transform: lowercase;
	  font-size: 1.5rem;
	  color:#ff0100;
	}


	.nav__title {
	  font-weight: 400;
	  font-size: 15px;
	  color: black;
	}

	.footer address {
	  font-style: normal;
	  color: #999;
	}

	.footer__btn {
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  height: 36px;
	  max-width: max-content;
	  background-color: #ff0100;
	  border-radius: 100px;
	  color: white;
	  line-height: 0;
	  margin: 0.6em 0;
	  font-size: 1rem;
	  padding: 0 1.3em;
	}

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

	.footer li {
	  line-height: 2em;
	}

	.footer a {
	  text-decoration: none;
	}

	.footer__nav {
	  display: flex;
	  flex-flow: row wrap;
	}

	.footer__nav > * {
	  flex: 1 50%;
	  margin-right: 1.25em;
	}

	.nav__ul a {
	  color: #ff0100;
	}

	.nav__ul--extra {
	  column-count: 2;
	  column-gap: 1.25em;
	}

	.legal {
	  display: flex;
	  flex-wrap: wrap;
	  color: #ff0100;
	}
	  
	
	@media screen and (min-width: 24.375em) {
	  .legal{
	    margin-left: auto;
	  }
	}

	@media screen and (min-width: 40.375em) {
	  .footer__nav > * {
	    flex: 1;
	  }
	  
	  .nav__item--extra {
	    flex-grow: 2;
	  }
	  
	  .footer__addr {
	    flex: 1 0px;
	  }
	  
	  .footer__nav {
	    flex: 2 0px;
	  }
	}
.footer-para{
font-size: 1em;
margin-top: 10px;
margin-bottom: 2px;
margin-left: 1px;
}
