/* RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}
body {
  background: #fff;
  color: #111;
  line-height: 1.6;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 60px;
  border-bottom: 1px solid #eee;
  z-index: 1000;
}
.logo {
  height: 50px;
}
.nav-center ul {
  list-style: none;
  display: flex;
  gap: 30px;
}
.nav-center ul li a {
  font-weight: 500;
  font-size: 13px;
}
.btn.get-in-touch {
  background: #00aff0;
  color: white;
  padding: 10px 16px;
  border-radius: 35px;
  font-weight: 600;
  transition: transform 0.2s ease, background-color 0.3s ease;
  display: inline-block;
  font-size: 13px;
}
.btn.get-in-touch:hover {
  background: #000;
  transform: scale(0.95);
}
.btn.get-in-touch i{
  font-size: 18px;
  margin-left: 8px;
  margin-right: 10px;
}
/* HERO SECTION */
.hero {
  padding-top: 50px;
  padding-bottom: 80px;
  padding-left: 20px;
}
.hero-content {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  padding: 0 40px;
}
.hero-text {
  padding-top: 150px;
  padding-left: 50px;
  flex: 1;
  text-align: left;
}
.hero-text h1 {
  font-size: 25px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 30px;
}
.sketch-underline {
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
}

.sketch-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 100%;
  height: 25px;
  background-image: url('images/underline.png');
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  pointer-events: none;

  mask-image: linear-gradient(to right, black 0%, black 100%);
  mask-size: 0% 100%;
  mask-repeat: no-repeat;
  -webkit-mask-image: linear-gradient(to right, black 0%, black 100%);
  -webkit-mask-size: 0% 100%;
  -webkit-mask-repeat: no-repeat;

  animation: drawUnderline 9s ease-in-out infinite;
}

@keyframes drawUnderline {
  0% {
    mask-size: 0% 100%;
    -webkit-mask-size: 0% 100%;
  }
  6% {
    mask-size: 100% 100%;  /* fast draw */
    -webkit-mask-size: 100% 100%;
  }
  61% {
    mask-size: 100% 100%;  /* hold for ~5s */
    -webkit-mask-size: 100% 100%;
  }
  67% {
    mask-size: 0% 100%;    /* fast erase */
    -webkit-mask-size: 0% 100%;
  }
  100% {
    mask-size: 0% 100%;    /* stay erased ~3s */
    -webkit-mask-size: 0% 100%;
  }
}



.hero-text p {
  font-size: 13px;
  margin-bottom: 15px;
}
.btn.skype {
  margin-top: 50px;
  background: #00aff0;
  color: white;
  padding: 10px 18px;
  border-radius: 35px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  font-size: 12px;
}
.btn.skype:hover {
  background: #000;
  transform: scale(0.95);
}
.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  filter: brightness(1.2) contrast(1.15) saturate(1.3);
}

/* SECTION WRAPPER */

.section h2 {
  font-size: 28px;
  font-weight: 700;
}
.section h2 .sketch-underline::after {
  height: 25px;
  bottom: -5px;
}

/* SERVICES SECTION */
#services{
    padding: 100px 100px;
}
#services .container h2{
    margin-bottom: 80px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Always 2 columns */
  gap: 30px;
}


.service-card {
  position: relative;
  overflow: hidden;
  background: white;
  border: 1px solid #000;
  aspect-ratio: 4 / 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
  padding: 80px 30px;
  transition: all 0.4s ease;
  transform: none;

}

.service-card::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 0%;
  background: #C9BEEE;
  z-index: 0;
  transition: height 0.6s ease, top 0.6s ease;
}

.service-card:hover::before {
  height: 100%;
  top: 0;
}

.service-card:hover {
  transform: skewX(-5deg) scale(0.95);
  border-color: #C9BEEE;
  border: 1px solid #000;
}

/* Content inside the card */
.service-card i,
.service-card h3,
.service-card h4,
.service-card p {
  position: relative;
  z-index: 1;
  transition: transform 0.4s ease, opacity 0.4s ease;
  text-align: left;
}

.service-card i {
  font-size: 30px;
  margin-bottom: 30px;
}

/* Hover effects */
.service-card:hover i {
  transform: translateY(-250px);
}

.service-card:hover h3,
.service-card:hover h4,
.service-card:hover p {
  transform: translateY(-60px);
}
.service-card h3{
    font-size: 18px;
    font-weight: 600;
    margin-top: 20px;
}
.service-card p{
  font-size: 13px;
}



/* --------------work------------- */
#work{
    padding: 100px 100px;
}
#work h2 {
  font-size: 28px;
  font-weight: 700;
  overflow: visible;
}

.work-list{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px, 1fr));
    grid-gap: 40px;
    margin-top: 100px;
}
.work{
    position: relative;
    overflow:hidden;
}
.work img{
    width: 100%;
    display: block;
    transition: transform 0.5s;
}
.layer{
    color: black;
    width: 100%;
    height: 0;
    background: #C9BEEEB3;
    position: absolute;
    left: 0;
    bottom: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 40px;
    text-align: center;
    font-size: 13px;
    transition: height 0.5s;
}
.layer h3{
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 20px;
}
.layer p{
  font-size: 11px;
}

.work:hover{
    transform: scale(1.1);
}

.work:hover .layer{
    height: 100%;
}
/* Results Scroll Section */
#results{
  padding: 100px 80px;
}
#results h2{
  font-size: 28px;
  margin-bottom: 80px;
}
#results h2 .sketch-underline::after{
  bottom: -5px;
}


.result-scroll-wrapper {
  position: relative;
  overflow: hidden;
  padding: 0 40px;
} 

.result-scroll {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  gap: 15px;
  padding: 0;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* IE/Edge */
  position: relative;
}

.result-scroll::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}


.result-card {
  background: #fff;
  padding: 0;
  width: 250px;
  flex-shrink: 0;
  cursor: pointer;
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.result-card:hover {
  transform: scale(1.02);
}

.result-img {
  height: 500px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.result-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.result-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0, 0.25);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.result-card:hover .result-img::after {
  opacity: 1;
}


/* Scroll Arrows */
.scroll-arrow {
  position: absolute;
  top: 50%;
  color: #000;
  transform: translateY(-50%);
  z-index: 10;
  background: none;
  border: none;
  font-size: 25px;
  cursor: pointer;
  padding: 10px;
  transition: background 0.2s;
}
.scroll-arrow:hover{
  color: #00aff0;
}
.scroll-arrow.left {
  left: -10px;
  display: none;
    margin: 0 10px;
}

.scroll-arrow.right {
  right: -10px;
  margin: 0 10px;
}
/* --------------------about--------------------- */
#about{
    padding: 150px 100px;
}
.row{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.about-col-1{
    flex-basis: 45%;
}
.about-col-1 img{
    width: 100%;
    border-radius: 15px;
    height: auto;
    object-fit: cover;
}
.about-col-2{
    flex-basis: 50%;
    margin-top: 5px;
    padding-left: 15px;
}

.about-col-2 p{
  margin-bottom: 15px;
  font-size: 13px;
}
.about-col-2 h2{
  font-weight: 600;
  margin-bottom: 30px;
  line-height: 1.1;
  font-size: 28px;
}
.about-col-2 h2 .sketch-underline::after{
  bottom: -15px;
}
/* --------------contact-------------- */
#contact .container{
    padding: 100px 130px;
    background-color:white;
    color: black;
} 

.contact-left .sub-title{
  line-height: 1.4;
  margin-bottom: 30px;
  font-size: 30px;
}
.contact-left{
    flex-basis: 35%;
}
.contact-right{
    padding-left: 100px;
    flex-basis: 55%;
}
.contact-left p{
    margin-top: 30px;
    font-size: 12px;
} 
.contact-left p a:hover{
 color: #333;
}
.contact-left p a i{
    color: #00aff0;
    margin-right: 10px;
    font-size: 15px;
    cursor: pointer;
}
.contact-left p a i:hover{
    color:black;
}
.social-icons{
    margin-top: 30px
}
.social-icons a{
    text-decoration: none;
    font-size: 20px;
    margin-right: 15px;
    color: black;
    display: inline-block;
    transition: transform 0.5s;
}
.social-icons a:hover{
    color: #00aff0;
    transform: translateY(-5px);
}

.contact-right form{
    width: 100%;
}
form input, form textarea{
    width: 100%;
    outline: none;
    background: #eee;
    padding: 12px;
    margin: 10px 0;
    border-radius: 15px;
    font-size: 12px;
    color: #333;
    border: none;
}
.btn-contact-form{
  background: #00aff0;
  color: white;
  padding: 8px 22px;
  border-radius: 28px;
  font-weight: 600;
  transition: transform 0.2s ease, background-color 0.3s ease;
  display: inline-block;
  border: none;
  font-size: 12px;
  cursor: pointer;
}
.btn-contact-form:hover{
  background: #000;
  transform: scale(0.95);

}
.copyright{
    width: 100%;
    text-align: center;
    padding: 10px 0;
    background-color: black;
    color: white;
    font-size: 10px;
    font-weight: 100;
}

/* -------calendly--------- */
#calendly {
  text-align: center;
  color: white;
  background-image: url('images/contact-background.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 1;
  margin-top: 100px;
}

#calendly .container{
   position: relative;
   z-index: 2;
   background-color: rgba(0, 0, 0, 0.5); 
   padding: 100px;
}
.calendly-scroll-wrapper {
  height: 600px; /* Adjust this value based on your layout */
  overflow-y: auto;
  overflow-x: hidden;
}
.calendly-scroll-wrapper::-webkit-scrollbar {
  width: 8px;
}
.calendly-scroll-wrapper::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}
.calendly-scroll-wrapper::-webkit-scrollbar-track {
  background: transparent;
}

#calendly h2 {
  font-size: 35px;
  margin-bottom: 60px;
  line-height: 1.3;
}
#calendly h2 span{
  display: block;
}

.calendly-container {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  max-height: 600px; /* Match Calendly widget height */
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  background: white;
}

/* Left Side */
.calendly-left {
  min-width: 300px;
  max-width: 400px;
  padding: 40px;
  text-align: left;
  border-right: 1px solid #ddd;
  background: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-sizing: border-box;
  flex-basis: 50%;
}

/* Left Text Styling */
.calendly-left h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #111;
  line-height: 1.3;
}

.calendly-left p {
  font-size: 16px;
  margin-bottom: 10px;
  color: #444;
}

/* Right Side */
.calendly-right {
  flex-basis: 50%;
  min-width: 400px;
  height: 100%; /* Match container */
  box-sizing: border-box;
}

.calendly-inline-widget {
  width: 100%;
  height: 100%;
  border: none;
}
.calendly-info p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0;
  color: #555;
  font-size: 15px;
}

.calendly-info i {
  font-size: 16px;
  color: #333;
}
.calendly-left img{
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: contain;
  margin-bottom: 10px;
  border: 1px solid #555;
  padding: 2px;
}
/* ---------testimonial------- */

#testimonials {
  padding: 80px 80px;
  text-align: left;
  background-image: url('images/testimonial-background.png');
  background-size: cover;
  z-index: 1;
  background-position: center;
}
#testimonials .container{
  position: relative;
  z-index:2;
}

#testimonials .container h2 {
  font-size: 28px;
  font-weight: 600;
  color: #111;
  margin-bottom: 10px;
  position: relative;
}

#testimonials .container h2 span {
  position: relative;
}

#testimonials .container p {
  color: #444;
  margin-bottom: 50px;
  font-size: 16px;
}

.testimonial-list {
  display: block;
}

.testimonial-card {
  padding: 30px 25px;
  width: 100%;
  text-align: left;
}

.testimonial-card img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 3px;
  border: 1px solid #000;
  padding: 2px;
}
.testimonial-card img:hover{
  transform: scale(1.1);
}

.testimonial-card h3 {
  font-size: 22px;
  font-weight: 600;

}

.testimonial-card span {
  font-size: 12px;
  color: #333;
}

.testimonial-card p {
  font-size: 13px;
  color: #333;
  line-height: 1.6;
  margin-top: 15px;
}
.testimonial-card img, .client-info{
  display: inline-block;
}
.client-info{
  position: relative;
  padding-left: 10px;
  line-height: 1.2;
  transform: translateY(-8px);
}
/* ----------------css for small screens----------- */
html, body {
  overflow-x: hidden;
  width: 100%;
}
/* -----navbar------ */

nav .fa-solid{
    display: none;
}

@media only screen and ( max-width: 767px){

.navbar{
  padding: 5px 20px;
}

nav .fa-solid{
  display: block;
  font-size: 20px;
}
nav ul{
    background: #333;
    position:fixed;
    top: 0;
    left: -200px;
    width: 200px;
    height: 100vh;
    padding-top: 50px;
    z-index: 2;
    transition: left 0.5s;
    display: flex;
    flex-direction: column; /* This forces items to stack vertically */
    align-items: flex-start; 
}
  nav ul li{
     width: 100%;
  }
  nav ul li a{
  display: block;
  width: 100%;
  color: white;
  padding: 0 20px;
  text-align: left;
  text-decoration: none;
  }
  nav ul li a:hover{
    color: #000;
  }
  nav ul .fa-solid{
    position: absolute;
    top: 25px;
    right: 25px;
    cursor: pointer;
  }
  .fa-solid.fa-bars{
   margin-right: 10px;
   cursor: pointer;
  }
  .fa-solid.fa-xmark{
    color: white;
  }
  .fa-solid:hover{
    color: #000;
  }
  .nav-right{
    display: none;
  }
  /* -------header--------- */
  .hero{
    padding: 80px 0;
  }
  
  .hero-content {
    flex-direction: column;
  }

  .hero-image {
    order: -1; /* Moves the image above the text */
    width: 100%;
    text-align: center;
  }

  .hero-image img {
    width: 100%;
    max-width: 100%;
  }

  .hero-text {
    padding: 1rem;
  }
  /* -------services--------- */
 #services {
    padding: 30px;
  }

  #services h2 {

  }
  #services .container h2{
    margin-bottom: 30px;
    font-size: 25px;
}

  .services-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .service-card {
    padding: 100px 10px;
    width: 100%;
  }

  .service-card h3 {
    font-size: 13px;
    margin-top: 0;
  }

  .service-card p {
    font-size: 10px;
    margin-top: 0;
  }

  .service-card i {
    font-size: 24px;
    margin-bottom: 5px;
    display: block;
  }
  /* -------work--------- */
  #work {
    padding: 20px;
    margin: 50px 0;
  }

  #work .container {
    padding: 0 10px;
  }

  #work .container h2 {
    font-size: 25px;
    margin-bottom: 40px;
    line-height: 1.3;
  }

  .work-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top:0;
  }
  .work:hover{
    transform: scale(1.03);
}
/* ------results---------- */
#results {
  padding: 10px;
  overflow: hidden;
}
#results h2{
margin-left: 20px;
margin-bottom: 20px;
}

.result-scroll-wrapper {
  position: relative;
  overflow: hidden;
  padding: 0 40px;
}

.result-scroll {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.result-card {
  flex: 0 0 calc(100vw - 80px);
  scroll-snap-align: start;
  box-sizing: border-box;
}

.result-img {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.result-img img {
  width: 70%;
  height: auto;
  object-fit: contain;
}
.scroll-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.8); /* or transparent */
  border: none;
  font-size: 24px;
  cursor: pointer;
}

.scroll-arrow.left {
  left: 0;
}

.scroll-arrow.right {
  right: 0;
}


/* ------about------ */
#about{
  padding: 80px 20px;
}
#about .container .row{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-col-1 img{
    height: 350px;
}

.about-col-2 p{
  margin-bottom: 15px;
  font-size: 13px;
}
.about-col-2 h2{
  font-weight: 600;
  margin-bottom: 30px;
  line-height: 1.3;
  font-size: 25px;
}
/* -------testimonials------- */
#testimonials{
  padding: 30px;
}
#testimonials .container h2{
  font-size: 25px;
}
#testimonials .container p{
  font-size: 14px;
}
.client-info{
  padding-left: 10px;
}
.client-info h3{
  font-size: 18px;
}
.client-info span{
  font-size: 12px;
}
/* ------calendly----- */
#calendly .container{
   padding: 80px 10px;
}

#calendly h2 {
  font-size: 25px;
  margin: 0 30px 50px;
}
#calendly h2 span{
  display: inline;
}
.calendly-left{
  display: none;
}
.calendly-right{
  padding-right: 50px;
  padding-left: 10px;
}
/* ------contact------- */
#contact{
padding: 100px 40px;
}
#contact .container .row{
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#contact .container{
  padding: 0;
}
.contact-left{
  width: 100%;
}
.contact-right{
  padding: 0;
}
}
@media (min-width: 767.1px) and (max-width: 1024px) {
  .navbar {
  padding: 7px 20px;
}
.nav-center ul {
  gap: 18px;
}
.nav-center ul li a {
  font-size: 12px;
}
.btn.get-in-touch {
  padding: 8px 13px;
  font-size: 12px;
}
.btn.get-in-touch i{
  font-size: 15px;
  margin-left: 5px;
  margin-right: 5px;
}
.hero{
  padding: 20px;
}
.hero-content{
  padding: 0;
}
.hero-image{
  margin-top: 50px;
}
#services{
  padding: 50px;
  margin-top: 50px;
}
.service-card{
 padding: 60px 20px;
}
.service-card h3{
  font-size: 15px;
}
.service-card p{
  font-size: 10px;
}
#services .container h2{
  margin-bottom: 30px;
}
#work{
  margin-top: 50px;
  padding: 50px;
}
#work .container h2{
  margin-bottom: 30px;
}
.work-list{
  margin-top: 20px;
}
#results{
  padding: 50px;
  margin-top: 50px;
}
#results h2{
  margin-bottom: 20px;
}
#about{
  padding: 50px;
  margin-top: 80px;
}
#calendly .container{
  padding: 80px 20px;
}
#calendly .container h2{
  margin-bottom: 20px;
}
#contact .container{
  padding: 50px;
}
.contact-left{
  flex-basis: 45%;
}
.contact-right{
  flex-basis: 45%;
  padding-left: 0;
}
}
@media (min-width: 435px) and (max-width: 767px) {
.about-col-1 img {
    object-fit: contain;
    width: 100%;
    height: auto;
  }
  .result-img img{
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block; 
  }
  .result-img{
    width: 100%;
    height: auto;
    display: block;
  }
}

