@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");

:root {
    /* font-size */
    --big-font-size: 5rem;
    --h1-font-size: 1.5rem;
    --h2-font-size: 1.25rem;
    --h3-font-size: 1.125rem;
    --medium-font-size: 0.9rem;
    --normal-font-size: .938rem;
    --small-font-size: .813rem;
    --smaller-font-size: .75rem;
    --font-medium: 500;
    --font-semi-bold: 600;

    /* color */

     
     /*Aaru*/
     --theme-color:#0078D7;   
}

/*scrollbar style*/
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    cursor: pointer;
}

/* Track */
::-webkit-scrollbar-track {
    background: white;
    cursor: pointer;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background-color: var(--scrollbar-thumb-color); 
    border-radius: 6px; 
    height: 2px;
    cursor: pointer;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background-color: var(--scrollbar-thumb-color);
    cursor: pointer;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-style: normal;
    font-family: 'Inter', sans-serif;
  }
  body{
      width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  

.container {
  width: 100%;
  max-width: 1500px;
  margin: auto;
  padding: 0 20px;
}

.hero-container{
    width: 100%;
    max-width: 1600px;
    margin: auto;
    padding: 0 20px;
}

/* ======================
   NAVBAR
====================== */

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;

  height: 90px;

  position: relative;
}

/* Center Menu */

.menu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);

  display: flex;
  gap: 80px;
}

.menu a {
  text-decoration: none;
  color: black;
  font-weight: 700;
}

.menu a{
  position: relative;
  text-decoration: none;
  color: black;
  padding: 8px 0;
  transition: 0.3s;
}

/* ACTIVE LINK */
.menu a.active{
  color: var(--theme-color);
  font-weight: 600;
}

.menu a:hover{
    color: var(--theme-color);
}

/* ACTIVE LINK */
.nav-actions a.active{
  color: var(--theme-color);
  font-weight: 600;
}

.nav-actions a:hover{
    color: var(--theme-color);
}

/* Right Actions */

.nav-actions {
  display: flex;
  align-items: center;
  gap: 60px;
}

.login {
  text-decoration: none;
  color: #333;
  font-weight: 600;
}


.desktop-login,
.desktop-btn {
  display: inline-block;
}

.desktop-btn:hover{
    color: whitesmoke !important;
}

/* Mobile buttons hidden */

.mobile-login,
.mobile-btn {
  display: none;
}

/* BUTTONS */

.btn {
  padding: 10px 50px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 12px;
  width: 12em !important;
}

.primary {
  background: var(--theme-color);
  color: white;
  width: 9em;
  text-align: center;
  font-weight: bold;
  padding: 0.8em;
}

.secondary {
  background: white;
  color: var(--theme-color);
  width: 9em;
   padding: 0.8em;
  text-align: center;
}

/* HAMBURGER */

.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
  font-weight: bold;
}

/* Sticky Header */

/* Sticky Navbar */

.navbar.sticky {

  position: fixed;
  top: 0;
  left: 0;

  width: 100%;

  background: white;

  z-index: 999;

  box-shadow: 0 4px 12px rgba(0,0,0,0.08);

  animation: slideDown 0.3s ease;

}

/* Add space when sticky */

.navbar.sticky + .hero {

  margin-top: 90px; /* navbar height */

}

/* Slide animation */

@keyframes slideDown {

  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }

}

/* ======================
   HERO
====================== */

.hero {
  background: linear-gradient(
    to bottom,
    var(--theme-color),
    #FFFFFF
  );
  
  padding: 80px 0;
}

.hero-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  height: 70vh;
}

/* LEFT */

.hero-content {
  flex: 1.3;
}

.hero-content h1 {
  font-size: 3.5em;
  color: white;
  line-height: 1;
  margin-bottom: 25px;
  letter-spacing: 0.2px;
}

.hero-content p {
  color: #e8f1f9;
  font-size: 1.5em;
  margin-bottom: 50px;
  width: 28em;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

/* RIGHT */

.hero-image {
  position: relative;
  display: inline-block;
}

.hero-image img {
  width: 100%;
  border-radius: 24px;
}

/* Glass Card */
.glass-card {
  position: absolute;
  background: #FFFFFF4D;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 16px;

  padding: 14px 18px;
  min-width: 220px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  display: grid;
  justify-items: right;
}

/* Top Right Alignment */
.top-card {
  top: -30px;
  right: -30px;
}

/* Bottom Left Alignment */
.bottom-card {
  bottom: -40px;
  left: -40px;
  justify-items: left;
}

/* Text Styles */
.title {
  font-size: 18px;
  font-weight: 500;
   color: var(--theme-color);
  margin: 0.5em 0em;
}

.subtitle {
  font-size: 14px;
  color: var(--theme-color);
  margin: 0.5em;
  font-weight: 600;
}

.amount {
  font-size: 20px;
  font-weight: 600;
  color: var(--theme-color);
  margin: 0.2em;
}

/* Bottom Line */
.line {
  margin-top: 8px;
  height: 4px;
  width: 60%;
  background: var(--theme-color);
  border-radius: 2px;
}

.hero-users {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 3em;
}

.hero-users span{
    font-size: 1.3em;
}

/* Avatar Container */

.user-icons {
  display: flex;
}

/* Avatar Style */

.user-icons img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  /*border: 3px solid white;*/

  /* Overlap effect */
  margin-left: -12px;

  object-fit: cover;
}

/* First image normal */

.user-icons img:first-child {
  margin-left: 0;
}

.section-tag {
  color: var(--theme-color);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 1px;
  opacity: 0.8;
  margin-bottom: 10px;

}

.product-tag{
    color: white !important;
}

/* ======================
PROBLEM   SECTION
====================== */

.problem-section {
  padding: 80px 0;

  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    #F2F4F6 100%
  );
}

.problem-wrapper {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 70px;
}

/* ======================
   LEFT SIDE
====================== */

.problem-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.section-label {
  color: var(--theme-color);
  font-weight: 600;
  font-size: 25px;
  margin-bottom: 10px;
}

.section-title {
  font-size: 3em;
  font-weight: 700;
  margin-bottom: 70px;
  line-height: 1.3;
  width: 15em;

}

/* Cards */

.problem-card {
  display: grid;
  gap: 18px;
  align-items: flex-start;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 0px;
  border: 2px solid #e6e6e6;
}

.problem_head{
   display: flex;
   align-items: center;
   gap: 1em;
}

/* Icon */

.problem-icon-box {
  width: 45px;
  height: 45px;

  background: #e6f2ff;

  border-radius: 10px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 20px;
}

.problem-icon-box img{
    width : 20px;
    height : 20px;
}


.empty-div{
     width: 45px;
  height: 45px;

  border-radius: 10px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 20px;
}

/* Card Text */

.problem-card h4 {
  font-size: 23px;
}

.problem-card p {
  font-size: 20px;
  color: #666;
  font-weight: 400;
  line-height: 1.6;

}

/* ======================
   RIGHT SIDE
====================== */

.problem-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--theme-color);
  color: white;
  padding: 40px;
  border-radius: 16px;
}

.problem-right h3 {
    width: 90%;
  font-size: 2.5em;
  margin-bottom: 20px;
}

.solution-text {
  width: 70%;
  font-size: 18px;
  margin-bottom: 25px;
  color: #dfefff;
  font-weight: normal;
}

/* List */

.solution-list {
  list-style: none;
  padding: 0;
}

.solution-list li {
    display: flex;
    align-items: center;
    gap: 1em;
  margin-bottom: 12px;
  padding-bottom: 15px;

  position: relative;
}


/* ======================
   FEATURES SECTION
====================== */

.features-section {
  min-height: 100vh;
  display: flex;
  align-items: center;

  padding: 60px 0;

  background: #F2F4F6;
}

/* HEADER */

.features-header {
  max-width: 800px;
  margin: 0px;
}

.section-label {
  color: var(--theme-color);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
}

.features-header h2 {
  font-size: 2.4rem;

  margin-top: 15px;
  margin-bottom: 20px;
}

.features-header p {
  color: #45464D;
  font-size: 1.3rem;
  margin-bottom: 1.5em;
  font-weight: 500;
}

/* ======================
   GRID LAYOUT
====================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  grid-auto-rows: minmax(180px, auto);
}

/* ======================
   CARD
====================== */

.feature-card {
  background: white;
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 5px 18px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  min-height: 300px;
}

/* BIG CARD */
.feature-large {
  grid-column: span 2;
}

/* ======================
   IMAGE
====================== */

.feature-image-wrap {
  margin-top: auto;
}

.feature-image {
  width: 100%;
  display: block;
  max-height: 170px;
  object-fit: fill;
  border-radius: 12px;
}

/* ======================
   TEXT
====================== */

.feature-card p {
  color: #45464D;
  font-size: 1.3rem;
  padding: 0.6em 0;
  font-weight: 400;
  /*width: 70%;*/
  line-height: 1.6;
}

/* ======================
   ICON + HEADING
====================== */

.feature-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.feature-head.large{
    dislay: flex;
    flex-direction: row !important;
}

.feature-head h3 {
  margin: 0.7em 0;
}

/* ======================
   HIGHLIGHT CARD
====================== */

.feature-highlight {
  background: var(--theme-color);
  color: white;
}

.feature-highlight ul {
  margin-top: 12px;
}

.feature-highlight li {
  margin-bottom: 6px;
  list-style: none;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 1.5em;
}
.feature-highlight li p{
    color: white;
}

/* =========================
  PRODUCT  SECTION
========================= */
.product-section {

  background:
    radial-gradient(
      circle at center,
      #57B4FD 0%,
      rgba(87,180,253,0.5) 30%,
      rgba(87,180,253,0.15) 55%,
      transparent 75%
    ),
    linear-gradient(
      135deg,
      var(--theme-color),
      #1565c0
    );

  padding: 80px 20px;
  text-align: center;
  color: white;
  height: 100vh;

}



.product-section h2{
    font-size: 2em;
    padding: 0.6em;
    color: white;
}

.section-subtitle {
  font-size: 16px;
  max-width: 520px;
  margin: auto;
  opacity: 0.9;
  color: white;
}

.product-tabs {
  margin-top: 25px;
  background: white;
  display: inline-flex;
  border-radius: 12px;
  padding: 5px;
  gap: 5px;
}

.tab-btn {
  border: none;
  padding: 10px 24px;
  border-radius: 12px;
  background: transparent;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  color: #333;
}

.tab-btn.active {
  background: #1e88e5;
  color: white;
}

.product-image-box {
  margin-top: 40px;
  border-radius: 16px;
  padding: 40px;
  display: flex;
  justify-content: center;
}

.product-image-box img {
  max-width: 1000px;
  height: 500px;
  transition: opacity 0.25s ease;
}
/* ======================
   PROCESS SECTION
====================== */

.process-section {
   background: linear-gradient(
    to bottom,
    #F2F4F6 0%,
    #ffffff 100%
  );
  padding: 150px 20px;
  text-align: center;
}

.process-section p{
    color: var(--theme-color);
}

.process-section h2{
    text-align: center;
    padding: 0.6em;
}
.process-section h5{
    text-align: center;
    padding: 0.6em;
    font-weight: 400;
    font-size: 1.3em;
}

/* Steps Layout */

.process-steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}

/* Dotted Line */

.process-steps::before {
  content: "";
  position: absolute;

  top: 25px;

  left: calc(12.5% + 25px);
  right: calc(12.5% + 25px);

  border-top: 2px dashed #cfcfcf;

  z-index: 0;
}

.step {
  width: 30%;
  position: relative;
  z-index: 1;
}

.circle {
  width: 50px;
  height: 50px;
  background: #1e88e5;
  color: white;
  font-weight: 600;
  font-size: 18px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  margin: 0 auto 20px;
}

.step h3 {
  font-size: 20px;
  font-weight: 600;
  color: #111;
  margin-bottom: 10px;
}

.step p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  font-weight: 500;
  font-size: 1.3em;
}

.benefits-section {

  padding: 100px 20px;
  background: white;

}

.benefits-container {

  max-width: 1700px;
  margin: auto;

  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 60px;
  align-items: center;

}

/* LEFT */
.benefits-title {

  font-size: 50px;
  font-weight: 700;

  margin: 15px 0 40px;

}

/* BENEFIT ITEM */

.benefit-item {
  display: grid;
  gap: 18px;
  align-items: center;
  margin-bottom: 28px;
}


.benefit_icon_sect{
    display: flex;
    gap: 2em;
    align-items: center;
}

.benefit-icon-box {
  width: 50px;
  height: 50px;
  background: #A9DBFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.empty-box{
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit_icon_sect h4{
    font-size: 2em;
}
.benefit_icon_sect p{
    font-size: 1.3em;
    font-weight: 500;
    margin-left: 1em;
}

.benefits-left{
    /*margin: 0em 8em;*/
    margin: 0  6em;
}
/* RIGHT IMAGE */

.team-card {

  position: relative;

  /*background: linear-gradient(*/
  /*  135deg,*/
  /*  #1e88e5,*/
  /*  #1565c0*/
  /*);*/

  border-radius: 20px;

  padding: 30px;

}

.team-card img {

  width: 100%;
  height: auto;

}

/* BADGE */

.badge {
  position: absolute;
  bottom: 70px;
  right: 30px;
  background: #b3d5f2;
  padding: 23px 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.badge h3 {
  font-size: 32px;
  margin: 0;
  text-align: left;
}

.badge span {
    font-size: 14px;
    font-weight: bold;
}


/*Pricing section*/

.pricing-section {

  padding: 100px 20px;
  background: #FFFFFF;

}

.pricing-container {
  max-width: 1300px;
  margin: auto;
}

/* HEADER */

.pricing-header {
  text-align: center;
  margin-bottom: 60px;
} 

.pricing-header h2 {
  font-size: 40px;
  margin: 20px 0;
  font-weight: 500;
}

.blue {
  color: var(--theme-color);
  font-weight: bold;
}

.pricing-header p{
    font-size: 1.3em;
    font-weight: 500;
}
/* GRID */

.pricing-grid {
  display: grid;
  grid-template-columns:repeat(3, 1fr);
  gap: 80px;
  align-items: stretch;
  margin: 3em 1em;
}

/* CARD */

.pricing-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
}

/* POPULAR CARD */

.popular {
  background: var(--theme-color);
  color: white;
  transform: scale(1.05);
}

/* POPULAR BADGE */

.popular-badge {
  position: absolute;
  background: white;
  color: #1e73be;
  padding: 6px 14px;
   border-top-left-radius: 50px;
  border-bottom-left-radius: 20px;
  font-size: 13px;
  top: 20px;
  right: 0px;
}

/* PRICE */

.price {
  display: flex;
  align-items: baseline; 
  gap: 8px;
  margin: 15px 0;
}


.price .amount {
  font-size: 32px;
  font-weight: 700;
  color: var(--theme-color);
}


.price .duration {
  font-size: 18px;
  color: var(--theme-color);
}

.pricing-card:nth-child(2) .price .duration, .pricing-card:nth-child(2) .price .amount{
  color: #ffffff;
}

.price .gst {
  font-size: 16px;
  color: #777;
}
.pricing-card:nth-child(2) .price .gst {
  color: #A9DBFF;
}

.tick-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tick-list li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 12px;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
}

/* Green Round Tick */
.tick-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 2px;
  width: 24px;
  height: 24px;
  background-color: #22c55e;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
}


/* LIST */
.pricing-card h3 {
    font-size: 2em;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  flex-grow: 1;
}

.pricing-card li {
  margin-bottom: 12px;
}

/* BUTTON */

.pricing_btn {
  padding: 14px;
  border-radius: 10px;
  border: none;
  background: var(--theme-color);
  color: white;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
}

.pricing_btn.light {
  background: white;
  color: #1e73be;
}

/* ======================
   FAQ SECTION
====================== */

.faq-section {
  padding: 80px 20px;

  background: linear-gradient(
    to bottom,
    #FFFFFF 0%,
    #F2F4F6 100%
  );
}

.faq-container {
  max-width: 850px;
  margin: 0 auto;
}

/* Headings */

.faq-tag {
  text-align: center;
  color: #1e88e5;
  font-weight: 600;
  margin-bottom: 10px;
}

.faq-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
}

/* FAQ Item */

.faq-item {
  border-bottom: 1px solid #dcdcdc;
  padding: 18px 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;

  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
}

/* Icon */

.faq-icon {
  width: 36px;
  height: 36px;

  background: #d6e9ff;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* Answer */

/* Answer hidden */

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  font-weight: 500;
  margin-top: 0.3em;
  margin-bottom: 0.3em;
  margin-right: 3em;
  color: #45464D;
  line-height: 1.6;
}

/* When open */

.faq-item.active .faq-answer {

  max-height: 200px;

}


/* Arrow animation */

.faq-icon {

  width: 36px;
  height: 36px;

  background: #d6e9ff;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: transform 0.3s ease;

}

/* Rotate when open */

.faq-item.active .faq-icon {

  transform: rotate(180deg);

}


/* =========================
   CTA SECTION
========================= */

.cta-section {

  background:
    radial-gradient(
      circle at center,
      #57B4FD 0%,
      rgba(87, 180, 253, 0.6) 35%,
      rgba(87, 180, 253, 0.2) 55%,
      transparent 70%
    ),
    linear-gradient(
      135deg,
      var(--theme-color),
      #1565c0
    );

  padding: 120px 20px;
  text-align: center;
  color: white;

}

/* Container */

.cta-container {

  max-width: 700px;

  margin:  50px auto;

}

/* Title */

.cta-title {

  font-size: 34px;

  font-weight: 700;

  line-height: 1.4;

  margin-bottom: 15px;

}

/* Subtitle */

.cta-subtitle {

  font-size: 20px;

  opacity: 0.9;
  
  margin-top: 40px;

  margin-bottom: 60px;
  
  font-weight: 400;

}

/* Button */

.cta-btn {

  display: inline-flex;

  align-items: center;

  gap: 10px;

  background: white;

  color: var(--theme-color);

  padding: 14px 50px;

  border-radius: 8px;
  
  font-size: 20px;

  font-weight: 600;

  text-decoration: none;

  transition: 0.3s;

}

.cta-btn:hover {

  background: #f1f5ff;

}

.cta-arrow {

  transition: 0.3s;

}

.cta-btn:hover .cta-arrow {

  transform: translateX(5px);

}

/*Scroll-top */

/* =========================
        SCROLL BUTTON
========================= */

/* Wrapper */
.scroll-top-wrap {
  position: fixed;
  right: 25px;
  bottom: 25px;

  width: 80px;
  height: 80px;

  display: flex;
  justify-content: center;
  align-items: center;

  z-index: 999;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* Show state */
.scroll-top-wrap.show {
  opacity: 1;
  pointer-events: auto;
}


/* SVG Circle */
.progress-ring {
  position: absolute;

  top: 37%;
  left: 63%;

  transform: translate(-50%, -50%) rotate(-90deg);

  width: 80px;
  height: 80px;

  pointer-events: none;
}


/* Background Circle */
.progress-ring-bg {
  fill: none;
  stroke: transparent;
  stroke-width: 8;
}


/* Progress Circle */
.progress-ring-circle {
  fill: none;
  stroke: #B8B8B8;
  stroke-width: 8;
  stroke-linecap: round;

  stroke-dasharray: 163;
  stroke-dashoffset: 163;

  transition: stroke-dashoffset 0.1s linear;
}


/* Button */
.scroll-top {
  position: absolute;
  z-index: 2; /* 🔥 ensure above SVG */

  width: 45px;
  height: 45px;

  border-radius: 50%;
  border: none;

  background: var(--theme-color);
  color: white;

  font-size: 18px;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 6px 16px rgba(0,0,0,0.2);

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


/* Hover */
.scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.25);
}

/* =========================
   FOOTER
========================= */

.footer {

  background: #f5f6f8;

  padding-top: 60px;

}

/* Container */

.footer-container {

  max-width: 80%;

  margin: auto;

  padding: 0 20px;

  display: grid;

  grid-template-columns:
    2fr 1fr 1fr 1.5fr;

  gap: 40px;

}

/* Logo */

.footer-logo {

  width: 120px;

  margin-bottom: 12px;

}

.footer-desc {

  font-size: 14px;

  color: black;

  margin-bottom: 20px;

  line-height: 1.6;
  
  font-weight: 500;

}

/* Social */
.footer-social {
  display: flex;
  gap: 20px;
  margin-top: 2em;
}

/* Icon circle */
.footer-social a {
  width: 50px;
  height: 50px;
  border: 1px solid grey;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

/* SVG */
.social-icon {
  width: 22px;
  height: 22px;
  fill: #888888;
  transition: fill 0.3s ease;
}

/* Instagram (stroke-based) */
.footer-social a:nth-child(2) .social-icon {
  fill: none;
  stroke: #888888;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Hover â€” circle becomes theme color */
.footer-social a:hover {
  background: var(--theme-color);
  transform: translateY(-4px);
   border: 1px solid var(--theme-color);
}

/* Hover â€” all icons turn white */
.footer-social a:hover .social-icon {
  fill: white;
  stroke: none;
}

.footer-social a:nth-child(2):hover .social-icon {
  fill: none;
  stroke: white;
}

/* Column Titles */

.footer-col h4 {

  font-size: 16px;

  margin-bottom: 12px;
  
  text-align: left;

}

/* Links */

.footer-col ul {


  padding: 0 1em;
  
  margin-top: 1.5em;

}

.footer-col ul li {

  margin-bottom: 8px;
  
  text-align: left;

}

.footer-col ul li a {

  text-decoration: none;

  color: black;

  font-size: 16px;
  font-weight: 500;
  text-align: left;

}

.footer-contact{
    list-style: none;
    
    padding: 0 !important;
}

.footer-contact li {

  font-size: 15px;

  color: black;
  
  display: flex;
  
  gap: 1em;
  
  padding: 0.5em 0em;
  
  font-weight: 500;

}

.footer-contact li p{
    text-align: left;
}

/* Bottom */

.footer-bottom {

  border-top: 1px solid #ddd;

  margin-top: 40px;

  padding: 15px;

  text-align: center;

  font-size: 14px;

  color: black;

}

.footer-bottom span{
    color: var(--theme-color);
    font-weight: 700;
}

.footer-brand h3{
    color: var(--theme-color);
    margin : 0.6em 0em;
}

@media (max-width: 767px) {

/* CTA */

.cta-title {

  font-size: 26px;

}

.cta-subtitle {

  font-size: 14px;

}

/* Footer */

.footer-container {

  grid-template-columns: 1fr;

  text-align: center;

}

.footer-social {

  justify-content: center;

}

.footer-contact li {

  text-align: center;

}

}

@media (max-width: 480px) {

.cta-section {

  padding: 60px 16px;

}

.cta-title {

  font-size: 22px;

}

.cta-btn {

  padding: 12px 22px;

}

} 
@media (width: 1024px) {
    
    .hero-content {
    flex: 1 1 0%;
}

    .hero-content h1 {
      font-size: 36px;
    }
    
    .hero-content p{
        width: 15em;
    }
    
    /* ðŸ”¥ Glass Card */
.glass-card {
  min-width: 100px;
}

/* Top Right Alignment */
.top-card {
  top: -30px;
  right: -10px;
}

/* Bottom Left Alignment */
.bottom-card {
  bottom: -40px;
  left: -40px;
  justify-items: left;
}

    .hero-image img {
      max-width: 480px;
    }
    .problem-card{
        display: grid;
        gap: 30px;
    }
    .problem-right h3{
        font-size: 1.7em;
    }
    
    .solution-text{
        margin-top: 1em;
        margin-bottom: 1em;
    }

 .features-grid {
    grid-template-columns:
      1fr 1fr;
  }

  .feature-large {
    grid-column: span 2;
  }
  
  .product-section{
      height: auto !important;
  }
  
  .product-image-box img {
    max-width: 700px;
    height: 400px;
  }
  
  .benefits-section{
      padding: 50px 20px !important; 
  }
  
  .benefits-title{
      font-size: 30px;
  }
  .benefit_icon_sect h4{
      font-size: 1.2em;
  }
  .benefit_icon_sect p{
      font-size: 1em;
  }
  .benefits-left {
      margin: 0em 1em !important;
  }
  .badge{
      width: 20em;
      right: 0;
      bottom: 0;
  }
  
  .tick-list li {
  white-space: normal; 
  font-size: 0.9em;
}

.pricing-grid{
    gap: 20px !important;
}

.pricing-card h3 {
  white-space: normal;
}
.price span{
    white-space: nowrap;
}
.price .amount{
    font-size: 1.4em;
}

.footer-container{
    margin: 2em;
}

.footer-col:nth-child(3){
    width: 10em;
}
.footer-col:nth-child(4){
    width: 15em;
}

.popular-badge {
    top: 0px;
}

}

/* ======================
   LAPTOP 992pxâ€“1199px
====================== */

@media (max-width: 1366px) {

.hero-content h1 {
  font-size: 36px;
}

    /* ðŸ”¥ Glass Card */
.glass-card {
  min-width: 100px;
}

/* Top Right Alignment */
.top-card {
  top: -30px;
  right: -10px;
}

/* Bottom Left Alignment */
.bottom-card {
  bottom: -40px;
  left: -40px;
  justify-items: left;
}

.hero-image img {
  max-width: 480px;
}
.problem-card{
    display: grid;
    gap: 30px;
}
.problem-right h3{
    font-size: 1.7em;
}

.solution-text{
    margin-top: 2em;
    margin-bottom: 2em;
}

  .product-section{
      height: auto !important;
  }
  
    .badge{
      width: 20em;
      right: 0;
      bottom: 20px;
  }
  
  .benefit_icon_sect p{
      padding: left:;
  }
  .benefits-left {
      margin: 0em 1em !important;
  }

}

/* ======================
   TABLET 768pxâ€“991px
====================== */

@media (max-width: 991px) {

.hero-wrapper {
  flex-direction: column;
  text-align: center;
}

.hero-image {
  text-align: center;
}

.hero-content h1 {
  font-size: 32px;
}

.menu {
  display: none;
}

.hamburger {
  display: block;
}


.user-icons img {
  width: 40px;
  height: 40px;

  margin-left: -12px;
}

.hero-users span {
  font-size: 15px;
}

.problem-wrapper {

  flex-direction: column;
}

.problem-left {
  justify-content: normal;
  gap: 18px;
}

.problem-left {
  justify-content: normal;
  gap: 18px;
}

.section-title {
  font-size: 30px;
}

  .product-section{
      height: auto !important;
  }
  .product-image-box {

    padding: 25px;

  }
    .benefits-container {

    grid-template-columns: 1fr;

    gap: 50px;

    text-align: center;

  }

  .benefit-item {
    justify-content: center;
    text-align: left;

  }

  .team-card {

    max-width: 500px;
    margin: auto;

  }
  
    .section-title {
    font-size: 30px;
  }

  .process-steps {
    gap: 30px;
  }

  .process-steps::before {
    left: 8%;
    right: 8%;
  }

  .step {
    width: 32%;
  }
  
  .pricing-grid {

    grid-template-columns: 1fr;

  }

  /* Move popular first */

  .popular {
    transform: scale(1);

  }
  
   .faq-section {
    padding: 60px 20px;
  }

  .faq-title {
    font-size: 30px;
  }

  .faq-question {
    font-size: 16px;
  }

  .faq-answer {
    font-size: 14px;
  }

  .faq-icon {
    width: 32px;
    height: 32px;
  }

 
}

/* ======================
   MOBILE 767px
====================== */

@media (max-width: 767px) {
    
.logo img{
    width: 80px;
    height: 30px;
}
    
/* Show hamburger */

.hamburger {
  display: block;
}

/* Hide desktop right buttons */

.desktop-login,
.desktop-btn {
  display: none;
}

/* Show mobile buttons */

.mobile-login,
.mobile-btn {
  display: block;
}

.mobile-btn{
    color: white !important;
}

/* Mobile menu */

.menu {
  position: absolute;

  top: 90px;
  left: 0;

  width: 100%;

  background: white;

  flex-direction: column;

  align-items: center;

  gap: 20px;

  padding: 25px 0;

  display: none;

  transform: none;

  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* Active menu */

.menu.active {
  display: flex;
}

/* Mobile button width */

.mobile-btn {
  width: 80%;
  text-align: center;
}


.hero {
    padding: 50px 0 30px;
  }

  .hero-wrapper {
    flex-direction: column;
    height: auto; /* remove fixed height */
    text-align: center;
    gap: 30px;
  }

  /* LEFT CONTENT */

  .hero-content h1 {
    font-size: 2.2em;
    line-height: 1.2;
    margin-bottom: 15px;
  }

  .hero-content p {
    font-size: 1.1em;
    width: 100%; /* remove fixed width */
    margin-bottom: 30px;
  }

  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  /* USER SECTION */

  .hero-users {
    justify-content: center;
    margin-top: 2em;
    flex-direction: column;
    gap: 10px;
  }

  .hero-users span {
    font-size: 1em;
  }

  /* AVATARS */

  .user-icons img {
    width: 40px;
    height: 40px;
    margin-left: -8px;
  }

  /* RIGHT IMAGE */

  .hero-image {
    text-align: center;
  }

  .hero-image img {
    width: 100%;
    max-width: 350px;
  }

.problem-section {

  padding: 60px 0;

}

.section-title {

  font-size: 20px;

}

.problem-card {

  padding: 16px;

}

.problem-right {

  padding: 25px;

}
.problem_head h4{
    font-size: 20px;
}

.problem-right h3 {

  font-size: 22px;

}

.solution-text {

  font-size: 14px;

}

 .features-section {

    padding: 60px 0;

  }

  .features-header h2 {

    font-size: 2rem;

  }

  .features-grid {

    grid-template-columns: 1fr;

  }

  .feature-large {

    grid-column: span 1;

  }
  
.product-section {
    height: 100vh;
    padding: 50px 12px;
  }

  /* ---------- Tabs single line ---------- */

  .product-tabs {
    display: flex;
    flex-wrap: nowrap;        
    overflow-x: auto;  
    justify-content: flex-start;
    gap: 6px;
    padding: 6px;
    max-width: 100%;
  }

  /* Hide scrollbar (optional) */
  .product-tabs::-webkit-scrollbar {
    display: none;
  }

  .tab-btn {
    flex: 0 0 auto;           /* prevent shrinking */
    white-space: nowrap;      /* text stays in one line */
    padding: 8px 18px;
    font-size: 14px;
  }

  /* ---------- Image bigger ---------- */

  .product-image-box {
    margin-top: 25px;
    padding: 10px;
  }

  .product-image-box img {
    width: 100%;              /* FULL WIDTH */
    max-width: 100%;
    height: auto;             /* keep ratio */
    object-fit: fill;
  }
  
  .process-steps {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }

  /* Remove horizontal line */

  .process-steps::before {
    display: none;
  }

  .step {
    width: 100%;
    max-width: 350px;
  }

  .section-title {
    font-size: 20px;
  }

  .section-subtitle {
    font-size: 15px;
    margin-bottom: 40px;
  }
  
  .benefits-title {

    font-size: 28px;

  }

  .benefit-item {

    flex-direction: row;

  }

  /* Fix badge position */

  .badge {

    position: static;

    margin-top: 20px;

    width: fit-content;

    margin-left: auto;
    margin-right: auto;

  }
  .pricing-card{
      width: 100%;
  }
  .tick-list li{
    white-space: wrap;
  }
  
  .price span{
    white-space: nowrap;
  }
  .pricing-card h3 {
    font-size: 1.7em;
    white-space: nowrap;
  }
   
  .popular {
    transform: scale(1);
  }
  
    .faq-section {
    padding: 50px 16px;
  }

  .faq-container {
    max-width: 100%;
  }

  .faq-title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .faq-question {

    font-size: 15px;

    gap: 10px;

    align-items: flex-start;

  }

  .faq-icon {

    width: 28px;
    height: 28px;

    min-width: 28px;

  }

  .faq-answer {

    font-size: 14px;

    line-height: 1.6;

  }

}

@media (max-width: 480px) {

  .hero-content h1 {
    font-size: 1.8em;
  }

  .hero-content p {
    font-size: 1em;
  }

  .hero-buttons {
    gap: 12px;
  }

  .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }
  
  .top-card .title,.bottom-card .title,.top-card .subtitle,.bottom-card .amount{
      font-size: small;
      margin: 0.1em;
  }
  
  .top-card{
    top: -20px;
    right: -10px;
  }
  
  .bottom-card{
    bottom: -40px;
    left: -10px;
  }
  
   .feature-card {

    padding: 20px;

  }

  .features-header h2 {

    font-size: 1.7rem;

  }

  .features-header p {

    font-size: 1rem;

  }
  
  .section-title {
    font-size: 20px;
  }

  .section-subtitle {

    font-size: 14px;

  }

  .product-tabs {

    border-radius: 16px;

  }
  
  .product-image-box{
    max-width: 100%;
    width: 300px;
    height: 200px;

  }
  
    .section-title {
        font-size: 20px;
    }

  .circle {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }
  
  .benefits-left{
      margin: 0 !important;
  }
  
   .benefits-title {

    font-size: 35px;

  }
  .benefit_icon_sect h4{
      font-size: 25px;
  }

  .benefit-item {

    gap: 12px;

  }
  
  .benefits-section {
    padding: 100px 10px;
  }
  
  .team-card{
      padding: 0;
  }
  
  .pricing-section {

    padding: 70px 15px;

  }

  .pricing-card {

    border-radius: 16px;

  }
  
    .faq-title {
    font-size: 22px;
  }

  .faq-question {
    font-size: 14px;
  }

  .faq-icon {
    width: 26px;
    height: 26px;
  }
  
}


