@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;700&family=Great+Vibes:wght@400;700&display=swap');

:root{
    --primary: #00B2A9;
    --white: #fff;
    --black: #000000;
    --orange: #FF6600;
    --Blue: #0066CC;
    --Lime: #A7D100;
    --Teal: #00B2A9;
    --Dark: #333333;
    --Charcoal: #2D2D2D;
    --Gray: #E0E0E0;

}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: all 0.4s;
    text-decoration: none;
    list-style: none;
}
html{
  box-sizing: border-box;
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 8.5rem;
}
html::-webkit-scrollbar {
  width: 0.3rem;
}

html::-webkit-scrollbar-track {
  background: #fff;
}

html::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 5rem;
}
body {
  font-size: 1.8rem;
  background-image: url('../images/ground.jpg'); /* Replace with your background image */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--black);
  font-weight: 400;
  overflow-x: hidden;
  font-family: 'Pacifico'; /* Dancing Script as the primary font */
}

p {
  font-size: 2rem;
}

section{
    padding:2rem 5%;
}

.sub-heading{
    text-align: center;
    color:var(--primary);
    font-size: 2rem;
    padding-top: 1rem;
    margin-bottom: 1rem;
}

.heading{
  text-align: center;
  color:var(--black);
  text-transform: uppercase;
  padding:1rem;
  font-size: 3.5rem;
  padding-bottom: 2rem;
}

.heading span{
  color:var(--color-primary);
  text-transform: uppercase;
}
.btn{
    display: inline-block;
    width: fit-content;
    padding: 12px 28px;
    background: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 2rem .4rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    color: var(--Charcoal);
    letter-spacing: .4px;
    font-weight: 600;
    transition: .4s ease;
}
.btn:hover{
    background: transparent;
    color: var(--Teal);
}
.container{
    max-width: 1620px;
    width: 90%;
    margin: 0 auto;
}


/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  color: var(--Dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  padding:2rem 5%;
}

.navbar .logo {
  font-size: 25px;
  font-weight: bold;
}

.navbar .logo img {
    width: 30px;
    height: 30px;
} 

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links li a {
  text-decoration: none;
  color: var(--black);
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: var(--primary);
}

.nav-links li .active{
    color: var(--primary);
}
/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--Dark);
}
 
.social-icons a{
    height: 40px;
    width: 40px; 
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    transform: rotate(45deg);
    transition: .4s ease;    
}

.social-icons a:hover{
    border-color: var(--white);
}
.social-icons a i{
    transform: rotate(-45deg);
    font-size: 20px;
    color: var(--black);
}


/* Responsive Styles */
@media screen and (max-width: 768px) {
  .navbar {
    position: absolute;
    left: 0;
    right: 0;
  }
  .navbar .logo {
  font-size: 15px;
  font-weight: bold;
}
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #333;
    position: absolute;
    top: 60px;
    right: 20px;
    width: 200px;
    padding: 10px;
    border-radius: 5px;
  }

  .nav-links li {
    margin-bottom: 10px;
  }

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

  .social-icons a{
    height: 20px;
    width: 20px;    
}

  .hamburger {
    display: flex;
  }
}



/* General Styling */
.hero-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.8s ease;
  opacity: 0;
}

.hero-slide.active {
  left: 0;
  opacity: 1;
}

.container.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  height: 100%;
  z-index: 2;
}

.header-left {
  max-width: 50%;
  text-align: justify;
}

.header-left h1 {
  font-size: 48.2px;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--Teal);
}

.header-left p {
  margin: 15px 0 30px;
  line-height: 150%;
  font-size: 16px;
  color: var(--Charcoal) ;
}


.header-right {
  position: relative;
  width: 410px;
  height: 410px;
  right: 3%;
  border-radius: 20%;
}

.header-right img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  z-index: 2;
}

/* Square Box Styling */
.sq-box2 {
  position: absolute;
  width: 1050px;
  height: 700px;
  background: darkcyan;
  top: -20%;
  left: 50%;
  z-index: 1;
  clip-path: polygon(0% 0%, 0% 82.5%, 1.69492% 84.3293%, 3.38983% 86.1385%, 5.08475% 87.9078%, 6.77966% 89.6179%, 8.47458% 91.25%, 10.1695% 92.7862%, 11.8644% 94.2098%, 13.5593% 95.505%, 15.2542% 96.6578%, 16.9492% 97.6555%, 18.6441% 98.487%, 20.339% 99.1435%, 22.0339% 99.6176%, 23.7288% 99.9041%, 25.4237% 100%, 27.1186% 99.9041%, 28.8136% 99.6176%, 30.5085% 99.1435%, 32.2034% 98.487%, 33.8983% 97.6555%, 35.5932% 96.6578%, 37.2881% 95.505%, 38.9831% 94.2098%, 40.678% 92.7862%, 42.3729% 91.25%, 44.0678% 89.6179%, 45.7627% 87.9078%, 47.4576% 86.1385%, 49.1525% 84.3293%, 50.8475% 82.5%, 52.5424% 80.6708%, 54.2373% 78.8616%, 55.9322% 77.0922%, 57.6271% 75.3821%, 59.322% 73.75%, 61.017% 72.2138%, 62.7119% 70.7902%, 64.4068% 69.495%, 66.1017% 68.3422%, 67.7966% 67.3446%, 69.4915% 66.513%, 71.1864% 65.8565%, 72.8814% 65.3824%, 74.5763% 65.0959%, 76.2712% 65%, 77.9661% 65.0959%, 79.661% 65.3824%, 81.3559% 65.8565%, 83.0509% 66.513%, 84.7458% 67.3446%, 86.4407% 68.3422%, 88.1356% 69.495%, 89.8305% 70.7902%, 91.5254% 72.2138%, 93.2203% 73.75%, 94.9153% 75.3821%, 96.6102% 77.0922%, 98.3051% 78.8616%, 100% 80.6708%, 100% 0%);
    shape-outside: polygon(0% 0%, 0% 82.5%, 1.69492% 84.3293%, 3.38983% 86.1385%, 5.08475% 87.9078%, 6.77966% 89.6179%, 8.47458% 91.25%, 10.1695% 92.7862%, 11.8644% 94.2098%, 13.5593% 95.505%, 15.2542% 96.6578%, 16.9492% 97.6555%, 18.6441% 98.487%, 20.339% 99.1435%, 22.0339% 99.6176%, 23.7288% 99.9041%, 25.4237% 100%, 27.1186% 99.9041%, 28.8136% 99.6176%, 30.5085% 99.1435%, 32.2034% 98.487%, 33.8983% 97.6555%, 35.5932% 96.6578%, 37.2881% 95.505%, 38.9831% 94.2098%, 40.678% 92.7862%, 42.3729% 91.25%, 44.0678% 89.6179%, 45.7627% 87.9078%, 47.4576% 86.1385%, 49.1525% 84.3293%, 50.8475% 82.5%, 52.5424% 80.6708%, 54.2373% 78.8616%, 55.9322% 77.0922%, 57.6271% 75.3821%, 59.322% 73.75%, 61.017% 72.2138%, 62.7119% 70.7902%, 64.4068% 69.495%, 66.1017% 68.3422%, 67.7966% 67.3446%, 69.4915% 66.513%, 71.1864% 65.8565%, 72.8814% 65.3824%, 74.5763% 65.0959%, 76.2712% 65%, 77.9661% 65.0959%, 79.661% 65.3824%, 81.3559% 65.8565%, 83.0509% 66.513%, 84.7458% 67.3446%, 86.4407% 68.3422%, 88.1356% 69.495%, 89.8305% 70.7902%, 91.5254% 72.2138%, 93.2203% 73.75%, 94.9153% 75.3821%, 96.6102% 77.0922%, 98.3051% 78.8616%, 100% 80.6708%, 100% 0%);
    border-radius: 99% 1% 100% 0% / 100% 96% 4% 0% ;
  transform: rotate(90deg);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .header-left h1 {
    font-size: 36px;
  }

  .header-right {
    width: 320px;
    height: 320px;
  }

  .sq-box2 {
    width: 800px;
    height: 550px;
  }
}

@media (max-width: 768px) {
  .container.header-container {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .header-left,
  .header-right {
    max-width: 100%;
  }

  .header-left {
    text-align: center;
  }

  .header-right {
    width: 390px;
    height: 450px;
    right: 0;
    margin-top: 2rem;
  }

  .header-left {
    margin-top: 7rem;
  }

  .header-left h1 {
    font-size: 30px;
  }

  .header-left p {
    font-size: 16px;
    text-align: justify;
  }

  .sq-box2 {
    display: none; /* Optional for mobile – removes heavy visuals */
  }
}

@media (max-width: 480px) {
  
  .header-left h1 {
    font-size: 26px;
  }

  .header-right {
    width: 360px;
    height: 420px;
  }
}


/* About Section */
.about-section {
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  gap: 20px;
  align-items: center;
}

.about-left {
  flex: 1;
  padding: 20px;
  text-align: justify;
}

.about-left h2 {
  font-size: 3.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.about-left p {
  font-size: 1.6rem;
  color: var(--Dark);
  padding: 1rem 0;
  line-height: 1.5;
}

.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
}

.feature i {
  font-size: 2.5rem;
  color: var(--Teal);
}

.feature h3 {
  font-size: 1.5rem;
  margin: 0;
  color: var(--Dark);
}

.feature p {
  font-size: 1.5rem;
  margin: 0;
  color: #777;
}

.about-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-right img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
  }

  .features {
    grid-template-columns: 1fr;
  }
}

/* General CTA Styling */
.cta-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  text-align: center;
  color: white;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* Eye-Catching CTA */
.cta-1 {
  background-image: url('../images/cta1.jpg'); /* Replace with your image */
}

.cta-2 {
  background-image: url('../images/cta2.jpg'); /* Replace with your image */
}

/* Content Styling within the CTA */
.cta-content {
  max-width: 900px;
  margin: 0 auto;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background for text to stand out */
  padding: 30px;
  border-radius: 10px;
}

.cta-title {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.cta-subtitle {
  font-size: 1.6rem;
  margin-bottom: 20px;
}

/* Responsive Design for Smaller Screens */
@media (max-width: 768px) {
  .cta-title {
    font-size: 2rem;
  }

  .cta-subtitle {
    font-size: 1.1rem;
  }

  .cta-button {
    font-size: 1rem;
    padding: 12px 25px;
  }
}


/* Services Section */
.services-section {
  padding: 80px 20px;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.services-container .section-title {
  font-size: 4.5rem;
  margin-bottom: 40px;
  color: var(--Teal);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.service {
  padding: 30px;
  border-radius: .5rem 4.5rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transform: skewX(3deg);
  transition: transform 0.3s ease-in-out;
}

.service:hover {
  transform: translateY(-10px);
}

.service::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--primary);
  opacity: 0.4;
  transition: height 0.3s ease-in-out;
}

.service:hover::before {
  height: 100%;
}

.service i {
  font-size: 5rem;
  color: var(--Teal);
  margin-bottom: 20px;
}

.service h3 {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.service p {
  font-size: 1.5rem;
  color: var(--Charcoal);
  text-align: justify;
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* Portfolio Section */
.portfolio-section {
  padding: 80px 20px;
}

.portfolio-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.portfolio-container .section-title {
  font-size: 4.5rem;
  margin-bottom: 40px;
  color: var(--primary);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.portfolio-item {
  position: relative;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
}

.portfolio-item:hover {
  transform: translateY(-10px);
}

.portfolio-img {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 200px; /* Control the initial size */
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-img img {
  transform: scale(1.2); /* Scale the image when hovered */
}

.portfolio-info {
  padding: 20px;
  width: 100%;
  text-align: center;
}

.portfolio-info h3 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: var(--Dark);
}

.portfolio-info p {
  font-size: 1.5rem;
  color: var(--Charcoal);
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}


/* General Banner Styling */

.banner-container{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
}

.banner-1 {
  flex: 1;
  padding: 20px;  
  background-image: url('../images/banner1.jpg');
  opacity: 0.9;
}

.banner-2 {
  flex: 1;  
  padding: 20px;
  background-image: url('../images/banner2.jpg');
  opacity: 0.9;
}

.banner-content {
  max-width: 800px;
  margin: 0 auto;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 30px;
  border-radius: 10px;
}

.banner-title {
  font-size: 3rem;
  margin-bottom: 15px;
  font-family: 'Arial', sans-serif;
  font-weight: bold;
}

.banner-subtitle {
  font-size: 1.7rem;
  margin-bottom: 20px;
  font-weight: 300;
  font-family: cursive;
}



/* Responsive Design for Smaller Screens */
@media (max-width: 768px) {
  .banner-title {
    font-size: 2.5rem;
  }

  .banner-subtitle {
    font-size: 1.2rem;
  }

  .btn {
    font-size: 1rem;
    padding: 12px 25px;
  }
}

/* Process Section Styling */
.process-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 2rem 5%;
}

.process-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: 100%;

}

.process-left {
  flex: 1;
  position: relative;
  margin-right: 2rem;
}

.process-image-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--Teal);
  transform: skewX(-8deg);
  z-index: -1;
}

.process-image {
  width: 100%;
  height: 70vh;
  border-radius: 10px;
}

.process-right {
  flex: 1;
}

.process-right h2 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.process-right p {
  font-size: 1.5rem;
  color: var(--Dark);
  margin-bottom: 2rem;
}

.process-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.process-card {
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
  padding: 2rem;
  border-radius: 32px 8px;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-basis: 48%; /* Ensure cards take equal space */
  margin-right: 2%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;

}

.process-card i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.process-card h3 {
  font-size: 2rem;
  color: var(--Dark);
  margin-bottom: 10px;
}

.process-card p {
  font-size: 1.3rem;
  color: var(--Charcoal);
}

/* Order Adjustment for Cards */
.card-1 {
  order: 1;
}

.card-2 {
  order: 2;
}

.card-3 {
  order: 3;
}

.card-4 {
  order: 2; /* This makes card 4 appear in the second row, after card 2 */
}

/* Responsive Design */
@media (max-width: 768px) {
  .process-section {
    flex-direction: column;
    padding: 3rem 1rem;
  }

  .process-container {
    flex-direction: column;
  }

  .process-left {
    margin-right: 0;
    margin-bottom: 2rem;
  }

  .process-cards {
    flex-direction: column;
  }

  .process-card {
    margin-bottom: 1rem;
    flex-basis: 100%;
  }
}


/* Blog Section */
.blog-section {
  padding: 80px 20px;
}

.blog-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.blog-container .section-title {
  font-size: 4.5rem;
  margin-bottom: 40px;
  color: var(--Teal);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.blog-item {;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  transform: skewX(-3deg);
  transition: transform 0.3s ease-in-out;
}

.blog-item:hover {
  transform: translateY(-10px);
}

.blog-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-info {
  padding: 20px;
  width: 100%;
  text-align: center;
}

.blog-info h3 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: var(--primary);
}

.blog-info p {
  font-size: 1.3rem;
  color: var(--Dark);
  margin-bottom: 15px;
  text-align: justify;
}

.blog-meta {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 15px;
}

.blog-meta .category,
.blog-meta .date,
.blog-meta .tags {
  margin-right: 10px;
}

.blog-meta .category {
  font-weight: bold;
  color: var(--Teal);
}

.blog-meta .tags {
  font-style: italic;
}

.blog-meta .date {
  color: #888;
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}


/* Testimonial Section */
.testimonial-section {
  padding: 80px 20px;
}

.testimonial-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-container  .section-title {
  font-size: 4.5rem;
  margin-bottom: 40px;
  color: var(--primary);
}

.testimonial-slider {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}

/* Adjust translation for responsive design */
.testimonial-slider.translate-x {
  transform: translateX(-100% / 3);
}

.testimonial-item {
  flex: 0 0 33%; /* Each item takes 1/3 of the available space */
  padding: 20px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  transform: skewX(3deg);
  text-align: center;

}

.testimonial-item img {
  border-radius: 50%;
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
}

.quote-icon {
  margin-bottom: 20px;
}

.quote-icon i {
  color: var(--primary);
  font-size: 2.5rem;
}

.quote-icon .fa-quote-right {
  float: right;
  margin-bottom: 20px;
}

.quote-icon .fa-quote-left {
  float: left;
  margin-bottom: 20px;
}

.testimonial-item .quote {
  font-size: 2rem;
  font-style: italic;
  color: var(--Dark);
  margin-bottom: 10px;
}

.testimonial-item .client-name {
  font-size: 2.2rem;
  font-weight: bold;
  color: var(--primary);
}

.testimonial-item .client-position {
  font-size: 1.9rem;
  color: var(--Dark);
}

.testimonial-item .rating {
  margin-bottom: 15px;
}

.testimonial-item .rating .fa {
  color: #f39c12;
  font-size: 2.2rem;
}

.testimonial-item .rating .fa-star-o {
  color: #ccc;
}

@media (max-width: 768px) {
  .testimonial-item {
    flex: 0 0 50%; /* On smaller screens, show 2 testimonials at a time */
  }
}

@media (max-width: 480px) {
  .testimonial-item {
    flex: 0 0 100%; /* On mobile screens, show 1 testimonial at a time */
  }
}


/* FAQ Section */
.faq-section {
  padding: 80px 20px;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.faq-container .section-title {
  font-size: 4.5rem;
  margin-bottom: 40px;
  color: var(--primary);
}

.faq-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.faq-item {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
}

.faq-image img {
  width: 100%;  
  height: 60vh;
  border-radius: 8px;
}

.faq-content {  
  text-align: left;
  position: relative;
}

.question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  cursor: pointer;
  font-family: 'Lust';
}

.question:hover {
  background-color: #f5f5f5;
}

.question span {
  margin-right: 10px;
}

.answer {
  display: none;
  padding: 10px;
}

.question.active .fa-angle-down {
  transform: rotate(180deg);
}

.fa-angle-down {
  transition: transform 0.3s ease-in-out;
}

@media (max-width: 768px) {
  .faq-items {
    grid-template-columns: 1fr; /* Stack the items vertically on smaller screens */
  }
}

/* Progress Section Styling */
.progress-section {
  padding: 3rem 9%;
  text-align: center;

}

.progress-section .container{
  padding: 1.2rem;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);

}

.progress-section h2 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.progress-section p {
  font-size: 1.4rem;
  color: var(--Charcoal);
  margin-bottom: 2rem;
}

.progress-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.stat-item {
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  width: 250px;
}

.stat-item i {
  font-size: 3.5rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-item h3 {
  font-size: 2.5rem;
  color: var(--Dark);
  margin-bottom: 0.5rem;
}

.stat-item p {
  font-size: 1.5rem;
  color: var(--Charcoal);
}

/* Responsive Design */
@media (max-width: 768px) {
  .progress-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .stat-item {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}



/* Contact Section */
.contact-section {
  padding: 80px 20px;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact-container .section-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: var(--primary);
}

.contact-details {
  margin-bottom: 40px;
  width: 100%;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-item i {
  font-size: 3.5rem;
  color: var(--primary);
}

.contact-item a {
  text-decoration: none;
  color: var(--primary); /* Nexori theme color */
  font-weight: bold;
}

.contact-item p {
  font-size: 1.9rem;
  color: var(--Dark);
}

.contact-bottom {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.contact-form {
  flex: 1;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.contact-form label {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1.5rem;
  color: #333;
}

.map-container iframe {
  flex: 1; 
  height: 320px;
  border: none;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .contact-info {
    flex-direction: column;
    align-items: center;
  }

  .map-container iframe {
    height: 350px;
  }
}

/* template Styling */
.template {
  text-align: center;
  padding: 50px 20px;
}

.template h1 {
  font-size: 4.5rem;
  margin-bottom: 20px;
  color: var(--primary);
}

.template p {
  font-size: 1.8rem;
  margin-bottom: 40px;
}

.template-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

.template-item {
  padding: 5px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.template-item .image-container {
  position: relative;
  max-height: 500px; /* Initial height */
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.template-item .image-container img {
  width: 100%;
  height: 100%;
  display: block;
  cursor: pointer;
}

.template-item .image-container.expanded {
  max-height: 100%; /* Full height */
  height: 100%;
}

.price {
  margin-top: 10px;
  font-size: 1.2rem;
  font-weight: bold;
}

/* Pagination Styling */
.pagination1 {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.page-number1 {
  margin: 0 5px;
  cursor: pointer;
  color: var(--white);
  background-color: var(--primary);
  border-radius: 50%;
  padding: 10px;
  transition: background-color 0.3s ease;
}

.page-number1:hover {
  background-color: var(--orange);
}

.active {
  color: var(--orange);
}

/* Footer Styling */
.footer {
  color: var(--primary);
  padding: 40px 20px;
  font-family: Arial, sans-serif;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.newsletter {
  text-align: center;
  margin-bottom: 40px;
}

.newsletter h3 {
  font-size: 2.5rem;
  color: var(--Teal);
  margin-bottom: 10px;
}

.newsletter p {
  font-size: 1.5rem;
  color: var(--Dark);
  margin-bottom: 20px;
}

.newsletter form {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.newsletter input {
  padding: 10px;
  width: 200px;
  font-size: 1.5rem;
  border: 2px solid var(--Dark);
  border-radius: 20px;
}

.newsletter button {
  padding: 10px 20px;
  color: #fff;
  border: none;
  background-color: var(--primary);
  border-radius: 5px 30px;
  font-size: 1rem;
}

.newsletter button:hover {
  background-color: #0056b3;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.footer-left, .footer-middle, .footer-right, .footer-hours {
  width: 22%;
  padding: 20px;
}

.footer-left img {
    width: 90px;
    height: 90px;
}

.footer-title {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.footer-left p, .footer-middle ul, .footer-right p, .footer-hours ul {
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--Dark);
  margin-bottom: 15px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-icon {
  color: var(--Charcoal);
  font-size: 1.5rem;
  text-decoration: none;
}

.social-icon:hover {
  color: var(--primary);
}

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

.footer-middle ul li {
  margin: 10px 0;
}

.footer-middle ul li a {
  color: var(--Charcoal);
  text-decoration: none;
  font-size: 1.6rem;
}

.footer-middle ul li a:hover {
  color: var(--primary);
}

.footer-right p i, .footer-hours ul li i {
  margin-right: 10px;
  color: var(--Teal);
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 1.2rem;
  color: var(--Teal);
}

.footer-bottom p {
  margin: 0;
}

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

.footer-hours ul li {
  margin: 10px 0;
}

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

  .footer-left, .footer-middle, .footer-right, .footer-hours {
    width: 100%;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }
}

