

@import url('https://fonts.googleapis.com/css2?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&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --primary-text-color: #FFFFFF;
    --secondary-text-color:#9B96B0;
    --padding-inline-section:15px;
}

body{
    font-family: 'poppins', sans-serif;
}

h1{
    font-size: 3rem;
}

h2{
    font-size: 2rem;
}

h3{
    font-size: 1.5rem;
}

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

a{
    text-decoration: none;
    cursor: pointer;
    color: var(--primary-text-color);
    display: inline-block;

}

ul{
    list-style: none;
}

/* utility */

.flex{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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



/* Header */

.header {
    width: 100%;
    background-color: black;
    position: sticky;
    top: 0;
    left: 0;
    border-bottom: white 1px;
    /* opacity: 0.9; */
    z-index: 1000;
}

.logo {
    width: 3rem;
    border-radius: 50%;
}

.dropdown {
    display: none;
}

.nav {
    margin-right: 28px;
}

.nav-links {
    gap: 28px;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}


.nav-links .active {
    color: #d66c2a;
}

.get-started {
    font-size: 14px;
    /* /* background: linear-gradient(to right, rgb(255, 0, 221),rgb(187, 74, 187)); */
    background: linear-gradient(to right, #aa6642, #834d2b);
    padding: 8px 28px;
    border-radius: 23px;
    transition: all 0.2s;
}

.get-started:hover {
    /* box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px;
       */
    background: linear-gradient(90deg, #C87C50, #A8653E);
}

.get-started:active {
    background: linear-gradient(90deg, #A8653E, #8B4D31);
    /* Even darker gradient for active state */
    transform: scale(0.95);
}

.hamburger {
    display: none;
}

@media only screen and (max-width:909px) {

    .header {
        background-color: #A8653E;
    }

    .nav {
        position: absolute;
        left: 0;
        top: 100%;
        flex-direction: column;
        width: 100%;
        transform: translate(-100%);
        transition: all 0.2s;

    }

    .active {
        transform: translatex(0);
    }

    .nav-links {
        flex-direction: column;
        background-color: black;
        width: 100%;
        padding-block: 20px;

    }



    .hamburger {
        display: block;
        color: var(--primary-text-color);
        font-size: 28px;
        margin-right: 18px;
    }

    .get-started {
        display: none;
    }
}



/* Hero Section - Dark Gradient + Animations */
.hero-section {
  background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
  color: white;
  text-align: center;
  padding: 100px 16px;
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Container */
.hr-container {
  max-width: 900px;
  margin: auto;
}

/* Subheading */
.subheading {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 10px;
}

/* Main Heading */
.main-heading {
  font-size: 63px;
  font-weight: 400;
  margin-bottom: 20px;
}

/* Description */
.description {
  font-size: 18px;
  color: #b3b3b3;
  line-height: 1.6;
  max-width: 700px;
  margin: auto;
}

/* Buttons */
.buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

/* Secondary Button */
.secondary-btn {
  border: 2px solid white;
  color: white;
  padding: 12px 30px;
  border-radius: 8px;
  font-size: 16px;
  background: linear-gradient(90deg, #A8653E, #8B4D31);
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s ease;
}

.secondary-btn:hover {
  background: #d66c2a;
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
  .main-heading {
    font-size: 36px;
  }

  .description {
    font-size: 16px;
  }

  .buttons {
    flex-direction: column;
  }

  .secondary-btn {
    width: 100%;
    text-align: center;
  }
}


.our-services {
    padding: 60px 0px;
    display: flex;
    justify-content: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.our-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    padding: 16px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.our-services-container {
    text-align: center;
}

.our-services-container h2 {
    color: #d66c2a; /* Updated to white */
}

.our-services-container p {
    font-size: 1.3rem;
    color: var(--secondary-text-color); /* Updated to secondary color */
    margin-bottom: 50px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* responsive columns */
    gap: 30px;
    justify-items: center;
    align-items: stretch;
    width: 100%;
}

.service-card {
    padding: 40px 30px;
    border-radius: 20px;
    width: 100%;
    max-width: 100%;
    text-align: center;
    cursor: default;
    position: relative;
    border: #d96b26 2px groove;
    overflow: hidden;
}

.service-card i {
    font-size: 40px;
    color: #d66c2a;
    margin-bottom: 25px;
    display: block;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: #ffffff;
}

.service-card p {
    color: white;
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.9;
    margin: 0;
    /* color: var(--secondary-text-color); */
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .our-services {
        padding: 40px 0px;
    }

    .our-services-container h2 {
        font-size: 2rem;
    }

    .our-services-container p {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .service-card i {
        font-size: 40px;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .our-services-container h2 {
        font-size: 1.8rem;
    }

    .service-card {
        padding: 25px 15px;
    }

    .service-card i {
        font-size: 35px;
    }
}

/* price section */

 .our-pricing {
  padding: 50px 0;
  display: flex;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.our-pricing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: radial-gradient(circle at 30% 70%, rgba(214, 108, 42, 0.15) 0%, transparent 50%); */
  pointer-events: none;
}

.pricing-container {
  text-align: center;
}

.pricing-container h2 {
 padding: 10px;
   color: #d66c2a;
 
}

.pricing-container p {
  font-size: 1.2rem;
  color: white;
  margin-bottom: 50px;
  opacity: 0.9;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.pricing-plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  justify-items: center;
  align-items: stretch;
}

.pricing-card {
  /* background: linear-gradient(145deg, #1e293b, #334155); */
  padding: 30px 20px 25px;
  border-radius: 18px;
  width: 100%;
  max-width: 320px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  border: 2px solid  #d66c2a;;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
   box-shadow: none;
}

.pricing-card.popular {
  border-color: #cf6342;
  transform: scale(1.02);
  /* box-shadow: 0 10px 25px rgba(214, 108, 42, 0.2); */
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  opacity: 0;
  transition: opacity 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-6px) scale(1.01);
  /* box-shadow: 0 15px 30px rgba(214, 108, 42, 0.2); */
  border-color: #8F5240;
}

.pricing-card:hover::before {
  opacity: 1;
}

.popular-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(45deg, #8F5240, #8F5240);
  color: white;
  padding: 6px 20px;
  border-radius: 0 0 15px 15px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 3px 10px rgba(214, 108, 42, 0.3);
}

.plan-icon {
  font-size: 40px;
  color: #8F5240;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  display: block;
}

.pricing-card:hover .plan-icon {
  transform: scale(1.05) rotate(-5deg);
  color: #8F5240;
}

.plan-name {
  font-size: 1.6rem;
  margin-bottom: 12px;
  font-weight: 700;
  color: #ffffff;
  transition: color 0.3s ease;
}

.pricing-card:hover .plan-name {
  color: #8F5240;
}

.plan-price {
  font-size: 2.4rem;
  font-weight: 800;
  color: #8F5240;
  margin-bottom: 6px;
  position: relative;
}

.plan-price .currency {
  font-size: 1.3rem;
  vertical-align: top;
}

.plan-duration {
  font-size: 0.95rem;
  color: #94a3b8;
  margin-bottom: 24px;
  font-weight: 500;
}

.plan-features {
  list-style: none;
  margin-bottom: 28px;
  text-align: left;
  padding: 0;
}

.plan-features li {
  padding: 8px 0;
  font-size: 0.9rem;
  color: #e2e8f0;
  position: relative;
  padding-left: 28px;
  line-height: 1.4;
}

.plan-features li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 10px;
  color: #8F5240;
  font-size: 12px;
}

.plan-features li.unavailable {
  color: #64748b;
  text-decoration: line-through;
}

.plan-features li.unavailable::before {
  content: '\f00d';
  color: #64748b;
}

.plan-button {
  background: linear-gradient(45deg, #8F5240, #8F5240);
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 40px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 6px 15px rgba(214, 108, 42, 0.25);
  width: 100%;
}

.plan-button:hover {
  background: linear-gradient(45deg, #8F5240, #8F5240);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(214, 108, 42, 0.3);
}

.pricing-card.popular .plan-button {
  background: linear-gradient(45deg, #ffffff, #f8fafc);
  color: #8F5240;
  font-weight: 800;
}

.pricing-card.popular .plan-button:hover {
  background: linear-gradient(45deg, #f8fafc, #ffffff);
  color: #8F5240;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .our-pricing {
    padding: 50px 0;
  }

  .pricing-container h2 {
    font-size: 2.2rem;
  }

  .pricing-container > p {
    font-size: 1.1rem;
    margin-bottom: 35px;
  }

  .pricing-plans {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pricing-card {
    padding: 25px 18px 20px;
    max-width: 100%;
  }

  .plan-icon {
    font-size: 36px;
    margin-bottom: 16px;
  }

  .plan-name {
    font-size: 1.4rem;
  }

  .plan-price {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .pricing-container h2 {
    font-size: 2rem;
  }

  .pricing-card {
    padding: 22px 16px 18px;
  }

  .plan-price {
    font-size: 2rem;
  }

  .plan-price .currency {
    font-size: 1.5rem;
  }
}

/* footer-sections */


.footer {
    background-color: black;
    color: #4b5563;
    padding: 40px 0;
}

.wrapper {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.brand {
    width: 20%;
    text-align: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo img {
    text-align: center;
    border-radius: 50%;
    width: 40px;
    height: 40px;

}


.brand-name {
    font-size: 25px;
    font-weight: bold;
    display: block;
    color: var(--primary-text-color);
    margin-top: 5px;
}

.brand-description {
    font-size: 14px;
    color: var(--secondary-text-color);
}

.footer-links {
    display: flex;
    width: 75%;
    justify-content: space-between;
}

.column {
    width: 22%;
}

.column h3 {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-text-color);
    margin-bottom: 10px;
}

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

.column ul li {
    margin-bottom: 8px;
}

.column ul li a {
    text-decoration: none;
    color: white;
    font-size: 14px;
    transition: color 0.3s;
}



.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
}

.footer-bottom p {
    font-size: 14px;
    color: white;
}

.footer-bottom a {
    text-decoration: none;
    color: white;
    transition: color 0.3s;
}



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

.social-icons img {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
}

.social-icons img:hover {
    transform: scale(1.1);
}



/* media query for footers */

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

    .brand {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* Logo और description को center करने के लिए */
        margin-bottom: 20px;
    }

    .logo {
        display: flex;
        align-items: center;
        justify-content: center;
        /* Logo और Text दोनों को center करने के लिए */
        gap: 10px;
    }

    .brand-name {
        margin-top: 0;
        /* Extra space remove करने के लिए */
        font-size: 20px;
    }

    .brand-description {
        max-width: 80%;
        /* Text width को adjust करने के लिए */
        text-align: center;
        /* Center alignment */
        margin-top: 8px;
    }

    .footer-links {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }

    .column {
        width: 100%;
        margin-bottom: 20px;
        text-align: center;
    }
}