@import url(https://fonts.google.com/share?selection.family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900|Roboto:ital,wght@0,100..900;1,100..900);
@import url(https://fonts.google.com/share?selection.family=Poetsen+One);


*{
   margin:0;
   padding:0;
   box-sizing: border-box;

}

:root {
   --primary-text-color:#183b56;
   --secondary-text-color:#577592;
   --accent-color:#2294ed;
   --accent-color-dark:#1d69a3;
   --padding-inline-section:20px
}

body{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color:var(--primary-text-color);
    background: linear-gradient(45deg, rgb(255, 255, 255),rgb(240, 245, 238)
    );
    
    /* min-height: 100vh; */
  
}

h1{
    font-size: 3rem;

}
h2{
    font-size: 2rem;
}

h3{
    font-size: 1.5rem;
}

p{
    font-family: 'Roboto' , sans-serif;
    font-size: 1.25rem;
    color: var(--secondary-text-color);
    line-height: 1.8rem;
}

a{
    text-decoration: none;
    display: inline-block;
}
.upper-text{
    font-size: 1rem;
    font-weight: 700;
}

.container{
    max-width: 1180px;
    margin-inline:auto;
    padding-inline: var(--padding-inline-section);
}

.flex{
   display: flex;
   align-items: center;
 
   
}
 .title {
      font-size: 2.5rem;
      margin-bottom: 30px;
      margin-top: 40px;
    }
.title:hover{
        cursor: pointer;
        color: rgb(15, 110, 154);
    }

.title2 {
      font-size: 2.5rem;
      margin-bottom: 30px;
      
    }
.title2:hover{
        cursor: pointer;
        color: rgb(15, 110, 154);
    }


/* navbar an top banner */
.hover-links{
    color:var(--primary-text-color);
}
.hover-links:hover{
    color:var(--accent-color);
    transition: 0.2s step-end;
}

.top-banner{
    /* background-color: #4fb3d4; */
    background: linear-gradient(to left top , rgb(24, 173, 218),rgb(6, 145, 120));
    
    
}
.banner{
    color:white;
    padding: 15px 30px;
    text-align: center;
}
ul{
    list-style: none;
   
}
.logo img{
    width: 100px;
    align-items: flex-start;
    
}



.main-nav{
    justify-content:space-between;
    margin-right: 20px;
    margin-top: 20px;
   align-items: flex-start;
}
.links{
    flex-basis: 730px;
}
.links ul{
    justify-content: end;
    gap:30px;
    margin-top: 10px;
    
}

#webName{
    font-size: 2rem;
  
    font-family: 'Poetsen One', cursive;
    color:rgb(12, 100, 110) ;
    display:inline-block;
    margin-top: 20px;
    margin-right: 500px;
    font-weight:900;
    
}

.primary-button
{
background-color: var(--accent-color);
border-radius: 6px;
font-weight: 500;
color:white !important;
padding:8px 16px;
box-shadow: 0 0 2px var(--secondary-text-color);

}
.primary-button:hover
{
    background-color: var(--accent-color-dark);
    transition: 0.3s ease-out;
}
.secondary-button{
    border: 0.5px solid var(--secondary-text-color);
    border-radius: 6px;
    font-weight: 500;
    color:var(--primary-text-color);
    padding: 8px 16px;
    
    
}

.secondary-button:hover
{
    background-color: var(--accent-color);
    transition: 0.3s ease-out;
    color:white;
    border-color: var(--accent-color);
}

/* header section */
header{
    padding: 50px var(--padding-inline-section) 0;
   
}

.header-section{
    justify-content: center;
    gap:90px;
   
}
.header-left{
    max-width:80vw;
}

.header-left p{
   margin-top: 20px;
   margin-bottom: 20px;
}

.header-right img{
    height:500px;
    /* border-bottom-left-radius: 80px;
     border-top-right-radius: 80px; */
     
}

/* services section */

.services-section {
      max-width: 1200px;
      margin:auto;
      text-align: center;
      margin-bottom: 50px;
    }
  
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      
    }
    .service-card {
      background: #ffffff;
      padding: 20px;
      border-radius: 15px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      transition: transform 0.2s ease;
    }
    .service-card:hover {
      transform: translateY(-5px);
    }
    .service-icon {
      font-size: 50px;
      margin-bottom: 15px;
      color: #444;
    }
    .service-title {
      font-size: 1.2rem;
      font-weight: bold;
      margin-bottom: 10px;
      color: rgb(4, 125, 125);
    }
    .service-desc {
      font-size: 0.95rem;
      color: #666;
      margin-bottom: 15px;
    }
    .learn-more {
      text-decoration: none;
      color: #3b024a;
      font-weight: 700;
      
    }
    .learn-more:hover {
      text-decoration: underline;
      color:#2294ed
    }

.service-icon i:hover {
  transform: scale(1.2);
  transition: 0.3s ease;
}

/* portfolio */
.portfolio-preview-section {
  
  justify-content: space-between;
  gap: 50px;
  padding: 80px var(--padding-inline-section);
  flex-wrap: wrap;
}

.portfolio-text {
  flex: 1;
  min-width: 300px;
}



.portfolio-text p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}


.portfolio-carousel {
  flex: 1;
  overflow: hidden;
  min-width: 320px;
}

.carousel-container {
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.carousel-track {
  display: flex;
  animation: slide 14s infinite linear;
 
  gap: 20px;      
  width: calc(2 * 6 * (300px + 81px));

  
}

.carousel-track img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  
}




@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50%));
  }
}

/* testimonials */

.testimonial-container {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 20px;
}



.testimonial-card {
  display: flex;
  align-items: flex-start;
  max-width: 350px;
  gap: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #f7f9fc; /* Optional for visibility */
  border-radius: 20px;
  padding: 20px;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(90, 141, 238, 0.5); /* Glow effect */
}


.customer-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color:#50586C;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.speech-bubble {
  position: relative;
  background: #e7ebf5;
  color: white;
  padding: 15px 20px;
  border-radius: 25px;
  font-style: italic;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  flex: 1;
  
}

.speech-bubble::after {
  content: '';
  position: absolute;
  left: -15px;
  top: 20px;
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-right-color: #50586C;
  border-left: 0;
  margin-top: -10px;
}

.customer-name {
  display: block;
  margin-top: 8px;
  font-weight: 600;
  font-style: normal;
  font-size: 0.9rem;
  opacity: 0.85;
  color: rgb(75, 72, 72);
}



/* booking */

.book-session {
  text-align: center;
  padding: 60px 80px;
  background: linear-gradient(90deg, #5a8dee, #a1b7df);
  
  color: rgb(246, 242, 242);
  
  margin: 0px auto;
  max-width: 100%;
}

.book-session h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: white;
}

.book-session p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  font-weight: 500;
  color: antiquewhite;
}

.book-session .book-button {
  padding: 14px 32px;
  font-size: 1.1rem;
  background-color: white;
  color: #01050d;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  transition: background-color 0.3s ease;
}

.book-session .book-button:hover {
  background-color: #3d68c4;
  color: white;
}

/* footer */
.footer {
  color: #eee;
  padding: 10px 20px 20px;
  font-family: 'Arial', sans-serif;
  
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;

}

.footer-links {
  margin-top: 20px;
 
}

.footer-links a {
  display: inline-block;
  margin-left:50px;
  color: #aaa;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}


.footer-social a {
  display: inline-block;
  margin-right: 15px;
  margin-top: 20px;
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-social a:hover {
  color: #5a8dee;
}

.footer-social i {
  font-size: 1.2rem;
}

.footer-bottom {
  text-align: center;
  margin-top: 10px;
  font-size: 0.9rem;
  color: #777;
}
