:root {
    --maximum-yellow-red: hsl(37, 100%, 68%);
    --royal-blue-dark: hsl(231, 61%, 22%);
    --silver-chalice: hsl(0, 0%, 70%);
    --oxford-blue: hsl(231, 100%, 8%);
    --bittersweet: hsl(2, 100%, 69%);
    --french-rose: hsl(342, 90%, 61%);
    --davys-gray: hsl(180, 3%, 28%);
    --cool-gray: hsl(240, 13%, 62%);
    --platinum: hsl(0, 0%, 92%);
    --white-2: hsl(0, 0%, 98%);
    --white: hsl(0, 0%, 100%);
    --black: hsl(0, 0%, 0%);
    --rythm: hsl(240, 9%, 53%);

    --ff-poppins: "Poppins", sans-sarif;

    --fs-1: 32px;
    --fs-2: 26px;
    --fs-3: 22px;
    --fs-4: 18px;
    --fs-5: 15px;
    --fs-6: 14px;

    --fw-700: 700;
    --fw-600: 600;
    --fw-500: 500;

    --transition: 0.25s ease-in-out;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
li { list-style: none; }
a { text-decoration: none; }
a, img, button, span, ion-icon, label, input, textarea { display: block; }

button {
    font: inherit;
    background: none;
    border: none;
    cursor: pointer;
}

textarea, input { 
    font: inherit;
    background: none;
    border: none;
    width: 100%;
}

    :is(input, textarea):focus { outline: none; }
:focus { outline-offset: 4px; }
html { font-family: var(--ff-poppins); scroll-behavior: smooth; }
body { background: var(--white); overflow-x: hidden; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--white); }
::-webkit-scrollbar-thumb { background: hsl(0, 0%, 50%); border-radius:10px; }

.container { padding: 0px 15px; }

.h1, .h2, .h3 { font-weight: var(--fw-600); line-height: 1.3; text-transform: capitalize; }
    .h1 { color: var(--oxford-blue); font-size: var(--fs-1); }
    .h2 { font-size: var(--fs-2); }
    .h3 { color: var(--oxford-blue); font-size: var(--fs-3); }
    .h4 { color: var(--royal-blue-dark); font-size: var(--fs-5); font-weight: var(--fw-600); }

.btn {
    font-size: var(--fs-6);
    text-transform: uppercase;
    font-weight: var(--fw-600);
    padding: 10px 40px;
    border: 1px solid;
    border-radius: 6px;
}

.btn-primary{ background: var(--bittersweet); border-color: var(--bittersweet); color: var(--white); }
    .btn-primary:is(:hover, :focus) { --bittersweet: hsl(2, 90%, 65%); }
    .btn-secondary:is(:hover, :focus) { background: hsla(0, 0%, 100%, .1); }

/*HEADER*/
.logo {
  text-decoration:none;
  font-weight:900;
  font-size:28px;
  color:hsl(231, 61%, 22%);
  
}
header { position: relative; padding: 35px 0; z-index: 2; }
    header .container { display: flex; justify-content: space-between; align-items: center; }

.navbar-menu-btn { font-size: 30px; padding: 5px; }

.navbar {
    position: absolute;
    top: calc(100% - 15px);
    left: 15px;
    right: 15px;
    background: var(--maximum-yellow-red);
    max-height: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--transition);
    transform-origin: top;
    overflow: hidden;
}

    .navbar.active { visibility: visible; pointer-events: all; max-height: 280px; }
    .navbar .btn-primary { display: none; }

.navbar-list { padding: 10px; }
.nav-item:not(:last-child) { border-bottom: 1px solid hsla(0, 0%, 100%, .2); }

.nav-link {
    font-size: var(--fs-6);
    color: var(--royal-blue-dark);
    font-weight: var(--fw-600);
    padding: 15px 10px;
    opacity: 0;
    transition: opacity var(--transition);
}

    .nav-link:is(:hover, :focus) { background: hsla(0, 0%, 100%, .2);}
    .navbar.active .nav-link { transition-delay: .2s; opacity: 1; }

/*HERO*/

.hero { position: relative; padding: 130px 0px 140px; z-index: 1; }
    .hero .btn-primary { margin-inline: auto; }
.hero-content { text-align: center; }
.hero-title, .hero-text { margin-bottom: 40px; }
    .hero-text { font-size: var(--fs-4); color: var(--oxford-blue); }
.hero-banner { display: none; }

.shape-content {
    position: absolute;
    width: 60vw; /* Set relative width instead of fixed px */
    max-width: 900px; /* Prevent excessive width */
    
    z-index: -1;
}

@media (max-width: 768px) {
    .shape-content {
      display:none;
	  overflow:hidden;
    }
  .hero { position: relative; padding: 80px 0px 120px; z-index: 1; }
  
   .hero-text { font-size: var(--fs-4); color: var(--oxford-blue); }
  
}

/*ABOUT*/

.about {
    position: relative;
    z-index: 1;
    background: url('https://i.ibb.co/rRbkKfLj/about-bg.png') no-repeat;
    background-position: center;
    background-size: cover;
    padding: 120px 0;
    text-align: center;
}

    .about .h2 { color: var(--white); }

.about-top { margin-bottom: 120px; }
    .about-top .section-title { margin-bottom: 20px; }
    .about-top .section-text { color: var(--white); font-size: var(--fs-4); margin-bottom: 60px; }

.about-list { display: grid; grid-template-columns: 1fr; gap: 30px; }
.about-card { background: var(--white); padding: 40px; border-radius: 12px; box-shadow: 0 2px 4px hsla(0, 0%, 0%, .1); }
    .about-card .card-title { margin-bottom: 15px; }
    .about-card .card-text { color: var(--davys-gray); }

.card-icon {
    color: var(--bittersweet);
    font-size: 45px;
    width: max-content;
    margin-inline: auto;
    margin-bottom: 15px;
}

.about-bottom-banner { margin-bottom: 120px; }
    .about-bottom-banner img { width: 100%; height: 100%; }

.about-bottom .section-title { margin-bottom: 20px; }
.about-bottom .section-text { color: var(--white); font-size: var(--fs-4); margin-bottom: 40px; }
.about-bottom .btn-secondary { color: var(--white); margin-inline: auto; }

/*FEATURES*/

.features { padding: 120px 0; text-align: center; margin-bottom:0px; }
    .features .section-title { color: var(--royal-blue-dark); margin-bottom: 20px; margin-top: 20px; }
    .features .section-text { color: var(--rythm); font-size: var(--fs-4); margin-bottom: 70px; }

.features-item:first-child { margin-bottom: 100px; }
.features-item-banner { max-width: 350px; margin-inline: auto; margin-bottom: 60px; }
    .features-item-banner img { width: 100%; }
.features-item .item-title { color: var(--royal-blue-dark); margin-bottom: 20px; }
.features-item .item-text { color: var(--rythm); font-size: var(--fs-4); }


/*CTA*/

.cta { padding: 120px 0;}
    .cta input { color: var(--white); padding: 10px 15px; border-bottom: 1px solid; margin-bottom: 30px; }
        .cta input::placeholder { color: inherit; }
    .cta .btn-secondary { color: var(--white); margin-inline: auto; }

.cta-card { 
    background: linear-gradient(to top, var(--bittersweet) 0, var(--french-rose));
    padding: 80px 36px;
    border-radius: 20px;
    text-align: center;
}

.cta-title {
    color: var(--white);
    font-size: var(--fs-1);
    font-weight: var(--fw-600);
    line-height: 1.3;
    margin-bottom: 20px;
}

.cta-text { color: var(--white); font-size: var(--fs-6); margin-bottom: 50px; }

/*CONTACT*/

.contact { margin-bottom: 120px; }
.contact-content { margin-bottom: 50px; }
.contact-title { color: var(--royal-blue-dark); margin-bottom: 60px; text-align: center; font-weight: var(--fw-500) !important; }
.contact-banner img { width: 100%; }
.input-wrapper { margin-bottom: 30px; }
.input-label { color: var(--oxford-blue); font-size: var(--fs-6); font-weight: var(--fw-600); margin-bottom: 10px; }
.input-field { border-bottom: 1px solid var(--platinum); padding: 7px 0; font-size: var(--fs-6); }
    .input-field::placeholder { color: var(--silver-chalice); }
textarea { max-height: 300px; min-height: 100px; height: 100px; resize: vertical; }

/*FOOTER*/

footer { background: var(--white-2); }
    footer .logo { margin-bottom: 30px; }
.footer-top { padding: 50px 0px 50px; display:flex; justify-content:space-around; text-align:center; align-content: center;}
.footer-brand { margin-bottom: 20px; }
.footer-text { color: var(--rythm); font-size: var(--fs-6); margin-bottom: 20px; }
.social-list { display: flex; justify-content: center; align-content: center; text-align:center; gap: 20px;  margin: 0 auto; }
.social-link { color: var(--rythm); font-size: var(--fs-4); margin-bottom: 10px;  text-align:center;}
    .social-link:is(:hover, :focus) { color: var(--french-rose); }
.footer-link-list:not(:last-child) { margin-bottom: 30px; }
.footer-link-list .link-title { margin-bottom: 15px; }
.footer-link { color: var(--cool-gray); font-size: var(--fs-6); margin-bottom: 10px; max-width: 150px; }
    .footer-link:is(:hover, :focus) { color: var(--french-rose); }
.footer-bottom { padding: 20px 15px; border-top: 1px solid hsla(0, 0%, 18%, .2); }
.copyright { color: var(--cool-gray); text-align: center; font-size: var(--fs-6); }
    .copyright a { display: inline-block; color: var(--cool-gray); }
        .copyright a:is(:hover, :focus) { color: var(--french-rose); }

/*GO-TOP*/

.go-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 5;
    width: 50px;
    height: 50px;
    background: linear-gradient(-45deg, var(--maximum-yellow-red), var(--french-rose));
    box-shadow: 0 2px 4px hsla(0, 0%, 0%, .25);
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    font-size: 22px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--transition);
}

    .go-top.active { opacity: 1; visibility: visible; pointer-events: all; }

/*MEDIA QUERIES*/

@media(min-width: 450px) {
    :root {
        --fs-1: 60px;
    }
  
    .h1, .h2 { font-weight: var(--fw-700); }
    .btn { padding-block: 15px; }

    .navbar { left: auto; width: 300px; }

    .hero { padding: 140px 0 160px; }
    .shape-content { top: -70px; right: -260px; }

    .about-card .card-title { padding-inline: 40px; }
    .about-bottom-banner { max-width: 400px; margin-inline: auto; margin-bottom: 40px; }
    .about-bottom-content { padding-inline: 50px; }

    .features .h2 { --fs-2: 32px; }

    .cta-title { --fs-1: 42px; }
    .cta-form { display: flex; justify-content: center; align-items: flex-end; gap: 30px; }
    .cta input { margin-bottom: 0; }
    .cta .btn-secondary { min-width: max-content; }

    .contact-title { --fs-2: 32px; }
    .contact-banner { max-width: 300px; margin-inline: auto; }
  
  
}

@media(min-width: 560px) {
  .container { max-width: 550px; margin-inline: auto;}
    .navbar-wrapper { position: relative; }
    .navbar { top: calc(100% + 15px); right: 0; }

    .hero-content, .about-bottom-content { text-align: left; }
    .hero .btn-primary, .about-bottom .btn-secondary { margin-inline: 0; }
    .shape-content { top: -156px; right: -152px;  width: 100%;
  overflow: hidden;
  }

    .footer-brand { margin-bottom: 40px; }
    .footer-link-box { display: grid; grid-template-columns: 1fr 1fr; }
  
 
  
}

@media(min-width: 768px) {
    :root {
        --fs-2: 35px;
        --fs-4: 20px;
    }

    .container { max-width: 740px; }

    .about-list { grid-template-columns: 1fr 1fr; }

    .about-card {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }

        .about-card .card-title { padding-inline: 0; }

    .contact-title { --fs2: 42px; }
}

@media(min-width: 1024px) {
    .container { max-width: 950px; }

    .navbar-menu-btn { display: none; }

    .navbar {
        max-height: unset;
        visibility: visible;
        position: static;
        width: auto;
        background: none;
        pointer-events: all;
        overflow: visible;
        display: flex;
    }

    .navbar-list {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-right: 20px;
    }

    .nav-link { opacity: 1; padding: 0 15px; }
    .navbar .btn-primary { display: block; }

    .hero-content { max-width: 550px; }

    .hero-banner {
        display: block;
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        width: 500px;
        padding-top: 500px;
        background: url('https://i.ibb.co/RpcckFLC/hero-banner.png') no-repeat;
        background-size: contain;
    }

    .about-top .section-text { max-width: 650px; margin-inline:  auto; }
    .about-list { grid-template-columns: repeat(3, 1fr); }
    .about-bottom { display: flex; justify-content: space-between; align-items: center; }
    .about-bottom-banner { margin-bottom: 0; height: 330px; }
    .about-bottom-content { padding-inline: 0; width: 50%; }

    .features :is(.section-title .section-text) { max-width: 650px; margin-inline: auto; }
    .features-item { display: flex; align-items: center; gap: 50px; }
        .features-item:last-child { flex-direction: row-reverse; }
    .features-item-banner { margin-inline: 0; margin-bottom: 0; }
    .feature-item-content { width: 50%; text-align: left; }

    .cta-card > * {max-width: 500px; margin-inline: auto; }

    .contact .container { display: flex; justify-content: space-between; align-items: center; gap: 50px; }
    .contact-content { max-width: 400px; }
    .contact-title { text-align: left; }
    .contact-form { width: 50%; }

    .footer-top .container { display: flex; justify-content: space-between; align-items: center; gap: 50px; }
    .footer-brand, .footer-link-list:not(:last-child) { margin-bottom: 0; }
    .footer-link-box { grid-template-columns: repeat(4, 1fr); gap: 50px; } 
}

@media(min-width: 1200px) {
    :root { --fs-2: 42px; }

    .container { max-width: 1150px; }

    .hero-banner { right: 100px; }

    .about-bottom-banner { height: 400px; }

    .features .h2 { --fs-2: 42px; }
    .features :is(.section-text, .section-title) { max-width: 850px; }
}


.price {
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

*, *:before, *:after {
  box-sizing: inherit;
}

.background1 {
  padding: 0 25px 25px;
  position: relative;
  width: 100%;
}

.background1::after {
  content: '';
  background: #F74775;
  background: -moz-linear-gradient(top, #f54278 0%,	#ff6661 100%);
  background: -webkit-linear-gradient(top, #f54278 0%,#ff6661 100%);
  background: linear-gradient(to bottom, #ff6661 0%,	#f54278 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f54278', endColorstr='#ff6661',GradientType=0 );
  height: 350px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

@media (min-width: 900px) {
  .background1 {
    padding: 0 0 25px;
  }
}

.container1 {
  margin: 0 auto;
  padding: 60px 0 0;
  max-width: 960px;
  width: 100%;
}

.panel {
  background-color: #fff;
  border-radius: 10px;
  padding: 15px 25px;
  margin-bottom:30px;
  position: relative;
  width: 100%;
  z-index: 10;
}

.pricing-table {
  box-shadow: 0px 10px 13px -6px rgba(0, 0, 0, 0.08), 0px 20px 31px 3px rgba(0, 0, 0, 0.09), 0px 8px 20px 7px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  padding:20px;
  
}

@media (min-width: 900px) {
  .pricing-table {
    flex-direction: row;
  }
}

.pricing-table * {
  text-align: center;
  align-content: center;
 
}

.pricing-plan {
  border-bottom: 1px solid hsl(231, 61%, 22%);
  padding: 20px;
  margin-bottom:20px;
  justifycontent:center;
}

.pricing-plan:last-child {
  border-bottom: none;
}

@media (min-width: 900px) {
  .pricing-plan {
    border-bottom: none;
    border-right: 1px solid hsl(231, 61%, 22%);
    flex-basis: 100%;
    padding: 25px 50px;
  }

  .pricing-plan:last-child {
    border-right: none;
  }
}

.pricing-plan i{margin-bottom: 25px;
  font-size:70px;
  max-width: 100%;
color:hsl(342, 90%, 61%)}

.pricing-img1 {
  margin-bottom: 25px;
  max-width: 100%;
  
}

.pricing-header {
  color: hsl(231, 61%, 22%);
  font-weight: 600;
  letter-spacing: 1px;
}

.pricing-features {
  color: hsl(231, 100%, 8%);
  font-weight: 600;
  letter-spacing: 1px;
  margin: 50px 0 25px;
}

.pricing-features-item {
  border-top: 1px solid #e1f1ff;
  font-size: 13px;
  line-height: 1.5;
  padding: 15px 0;
}

.pricing-features-item:last-child {
  border-bottom: 1px solid #e1f1ff;
}

.pricing-price {
  color: hsl(231, 61%, 22%);
  display: block;
  font-size: 32px;
  font-weight: 700;
}

.pricing-button {
  border: 1px solid hsl(231, 61%, 22%);
  border-radius: 10px;
  color: #000;
  display: inline-block;
  margin: 25px 0;
  padding: 15px 28px;
  text-decoration: none;
  transition: all 150ms ease-in-out;
}

.pricing-button:hover,
.pricing-button:focus {
  background-color: #e1f1ff;
}

.pricing-button.is-featured {
  background-color: hsl(342, 90%, 61%);
  color: #fff;
}

.pricing-button.is-featured:hover,
.pricing-button.is-featured:active {
  background-color:  hsl(240, 9%, 53%);
}




  /* Portfolio Section */
    .portfolio-section {
     
      text-align: center;
      padding: 50px 20px;
      background: #f6ece3;
    }
    .portfolio-section h1 {
      font-size: 29px;
      margin-bottom: 20px;
      color: hsl(231, 61%, 22%);
    }

    /* Carousel Container */
    .carousel-container {
      position: relative;
  max-width: 1150px;
  margin: 0 auto;
  overflow: hidden; /* Hide extra slides */
  border-radius: 30px;
  background: white;
  box-shadow: 0px 5px 15px rgba(0,0,0,0.2);
         padding: auto;
      
  
     
      background: linear-gradient(to top, #ff6661,  #f54278);
     
      
    }

    /* Carousel Inner Wrapper */
    .carousel-wrapper {
display: flex;
  width: 100%; /* 100% * Number of Slides */
  transition: transform 0.5s ease-in-out;
    }

    /* Individual Slide */
    .carousel-slide {
  width: 100%;
  flex: 0 0 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: auto;
    }

    /* Image Styling */
    .carousel-slide img {
      max-width: 50%;
     
      height: auto;
      border-radius: 5px;
      margin-top:40px;
      margin-bottom:40px;
      box-shadow: 0px 5px 15px rgba(0,0,0,0.2);
       padding: 10px; 
      margin-left:20px;
    }

    /* Slide Content */
    .carousel-content {
      flex: 1;
      text-align: center;
      padding-left: 20px;
      margin-top:40px;
      display:flex;
      align-items:center;
      flex-direction:column;
    }

    .carousel-content h3 {
      font-family:system-ui;
      font-size: 25px;
      margin-bottom: 10px;
      color:#fff;
    }

    .carousel-content p {
      font-family:system-ui;
      font-size: 16px;
      letter-spacing:1px;
      line-height:25px;
      margin-bottom: 15px;
      color: #fff;
    }

    /* Buttons */
    .carousel-btn {
      position: absolute;
      top: 55%;
      transform: translateY(-50%);
      background: transparent;
      color: white;
      border: none;
      cursor: pointer;
      padding: 0px;
      font-size: 23px;
      border-radius: 50%;
    }

    .prev-btn {
      left: 10px;
    }

    .next-btn {
      right: 10px;
    }

    /* Dots */
    .carousel-dots {
      text-align: center;
      padding: 10px 0;
    }

    .dot {
      display: inline-block;
      width: 12px;
      height: 12px;
      background: #ccc;
      border-radius: 50%;
      margin: 0 5px;
      cursor: pointer;
      transition: background 0.5s;
    }

    .dot.active {
      background: hsl(231, 61%, 22%);
     
      text-align: center;
    }
    
    .ptbtn{
      padding:9px 15px;
font-size:12px; color:#fff; background:transparent; border-radius:5px; border:none;
border: 1px solid #fff; cursor:pointer; box-shadow: 0 8px 10px rgba(0, 0, 0, 0.1); margin-top:13px;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
		
		 .carousel-content h3 {
      font-family:system-ui;
      font-size: 20px;
      margin-bottom: 10px;
      color:#fff;
    }
      
      .ptbtn{margin-bottom:20px;}
      
      .carousel-btn {top:53%;}
      .carousel-slide {
        flex-direction: column;
        text-align: center;
      }
      .carousel-slide img {
        max-width: 90%;
        padding:0;
        margin-bottom:12px;
         margin-left:0px;
        
      }
      .carousel-content {
        padding-left: 0;
        margin-top: 10px;
      }
      .carousel-container {
      position: relative;
      max-width: 900px;
      margin: 0 auto;
      overflow: hidden;
      border-radius: 20px;
      
      box-shadow: 0px 5px 15px rgba(0,0,0,0.2);
      
      padding: 0px 5px 0px;
      
    }