@import url(variables.css);

main{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.hero{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    flex-wrap: wrap;
    min-height: 600px;
    max-height: 900px;
    margin-top: 70px;
    position: relative;

}


.hero .left{
    max-width: 100%;
    width: 500px;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.hero .left h1{
    font-size: 40px;
}

.hero .left p{
  font-family: Manrope;
}
.rotating-text {
    font-size: 1.5rem;
    margin-top: 1rem;
    height: 3.5rem; /* fixed height to avoid jump */
    color: #0f172a; /* Navy */
    position: relative;
    overflow: hidden;
}

.rotating-text span {
    position: absolute;
    opacity: 0;
    left: 0;
    right: 0;

}

.hero .main-ctas{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.hero .main-ctas a{
    max-width: 70%;
    width: 200px;
    padding: 14px;
    text-decoration: none;
    border-radius: 3px;
    text-align: center;
    font-family: Manrope;
    transition: all .3s ease-in-out;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero .main-ctas a:nth-child(1){
    background-color: var(--primary-color);
    color: #fff;
}
.hero .main-ctas a:nth-child(1) span{
    z-index: 1;
    position: relative;
}
.hero .main-ctas a:nth-child(1):hover{
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}
.hero .main-ctas a:nth-child(1):hover span{
    color: var(--primary-color);
}
.hero .main-ctas a:nth-child(1)::before, .hero .main-ctas a:nth-child(2)::before{
    content: '';
    position: absolute;
    left: -100%;
    top: 100%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    transition: all .5s ease-in-out;
}
.hero .main-ctas a:nth-child(1)::before{
    background-color: #fff;
    z-index: 0;
}

.hero .main-ctas a:nth-child(2)::before{
    background-color: var(--primary-color);
    z-index: -1;
}

.hero .main-ctas a:nth-child(2){
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.hero .main-ctas a:nth-child(2):hover{
    color: #fff;
}

.hero .main-ctas a:nth-child(2):hover::before, .hero .main-ctas a:nth-child(1):hover::before{
    left: -30%;
    top: -100%;
}


.hero .right{
    max-width: 100%;
    width: 600px;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}


.hero .right img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(3px 3px 15px rgba(0,0,0,0.1));
    animation: enterIn 1s ease-in;
}

@keyframes enterIn{
  from{
    opacity: 0;
  }
  to{
    opacity: 1;
  }
}


.main-content, .services, .services-container{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-content{
    gap: 50px;
    flex-direction: column;
    padding: 50px 0;
}

.main-content h2{
    text-align: center;
}


.home-intro {
  background: linear-gradient(145deg, #0a0f2c, #0f1a3e);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
  position: relative;
  overflow: hidden;
}

.home-intro::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  background: #00aaff33;
  top: -40px;
  left: -40px;
  border-radius: 50%;
  filter: blur(40px);
}

.home-intro::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  background: #00aaff22;
  bottom: -60px;
  right: -60px;
  border-radius: 50%;
  filter: blur(60px);
}

.home-intro h2 {
  font-size: 2.6rem;
  color: #00aaff;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.home-intro p {
  font-size: 1.15rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  color: #cbd9f5;
  position: relative;
  z-index: 1;
}



.sect-desc{
    font-family: Manrope;
    max-width: 95%;
    width: 800px;
    text-align: center;
}

.services{
    gap: 50px;
    flex-direction: column;
}   

.services-container{
    gap: 20px;
    background-color: #c8d8ff17;
    flex-wrap: wrap;
    padding: 50px 10px;
}

.services-container .service-card{
    max-width: 100%;
    width: 500px;
    height: 500px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    font-family: Manrope;
    position: relative;
    overflow: hidden;
}

.services-container .service-card::before{
    content: '';
    background: linear-gradient(to bottom right, #79bcff2d, transparent);
    width: 750px;
    height: 750px;
    border-radius: 50%;
    position: absolute;
    left: -100%;
    top: -100%;
    z-index: -1;
    transition: all .5s ease-in-out;
}

.services-container .service-card:hover::before{
    top: -30%;
    left: -30%;
}


.services-container .service-card:nth-child(2), .services-container .service-card:nth-child(4){
    margin-top: 50px;
}

.services-container .service-card .head{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.services-container .service-card i{
    font-size: 50px;
    color: var(--primary-color);
}

.services-container .service-card a{
    color: var(--dark-text-col);
    text-decoration: none;
    padding: 10px;
    font-size: 13px;
    position: relative;
    overflow: hidden;
}

.services-container .service-card a::before{
    content: '';
    width: 300px;
    height: 250px;
    rotate: 10deg;
    background-color: var(--primary-color);
    position: absolute;
    left: -50%;
    bottom: -670%;
    transition: all .4s ease-in-out;
}

.services-container .service-card a::after{
    content: '';
    width: 300px;
    height: 250px;
    rotate: 10deg;
    background-color: var(--primary-color);
    position: absolute;
    right: -50%;
    top: -670%;
    transition: all .4s ease-in-out;
}

.services-container .service-card a:hover::before{
    bottom: -600%;
}
.services-container .service-card a:hover::after{
    top: -600%;
}

.why-us-section {
  background: #ffffff;
  padding: 80px 20px;
  font-family: Manrope;
  color: #333;
  width: 100%;
}
.why-us-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: #111;
}
.why-us-section .container {
  max-width: 100%;
  width: 900px;
  margin: 0 auto;
  position: relative;
}

.timeline {
  border-left: 4px solid var(--primary-color);
  padding-left: 30px;
  position: relative;
}

.timeline-item {
  position: relative;
  margin-bottom: 50px;
  padding-left: 30px;
}

.timeline-item .circle {
  width: 16px;
  height: 16px;
  background-color: var(--primary-color);
  border-radius: 50%;
  position: absolute;
  left: -10px;
  top: 5px;
  box-shadow: 0 0 0 4px #fff;
}

.timeline-item:hover .circle{
    animation: pulse .6s infinite linear alternate;
}

@keyframes pulse{
    0%{
        transform: translateX(-5px);
    }
    50%{
      transform: translateX(5px);
    }
    100%{
        transform: translateX(0);
    }
}

.timeline-item .content h3 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--primary-color);
}

.timeline-item .content p {
  margin-top: 8px;
  line-height: 1.6;
  font-size: 1rem;
}

/*PROJECTS*/

.projects-section {
  padding: 80px 20px;
  background-color: #f9fafb;
  text-align: center;
  max-width: 100%;
  width: 1200px;
  border-radius: 10px;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #0F172A;
}

.section-subtitle {
  font-size: 1rem;
  color: #475569;
  margin-bottom: 40px;
  font-family: Manrope;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 100%;
  width: 1000px;
  margin: 0 auto;
}

.project-card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: space-between;
}

.project-card:hover {
  transform: translateY(-5px);
}

.project-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.project-info {
  padding: 20px;
  text-align: left;
  font-family: Manrope;
}

.project-info h3 {
  font-size: 1.25rem;
  color: #0F172A;
  margin-bottom: 8px;
}

.project-info p {
  font-size: 0.95rem;
  color: #64748B;
  margin-bottom: 12px;
}

.project-links a {
  margin-right: 15px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #0A84FF;
  text-decoration: none;
}

.project-links a:hover {
  text-decoration: underline;
}


/* CTA Section Styling */
.cta-section {
  width: 100%;
  background-color: #0F172A; /* Midnight navy */
  color: #fff;
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section  img{
  width: 600px;
  height: 600px;
  object-fit: cover;
  position: absolute;
  right: -20%;
  top: 0;
  opacity: 0.8;
  filter: drop-shadow(4px 4px 10px #0a84ff8f);
}

.cta-content {
  max-width: 100%;
  width: 700px;
  margin: 0 auto;
  font-family: Manrope;
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #e2e8f0;
}

.cta-btn {
  display: inline-block;
  padding: 14px 32px;
  max-width: 200px;
  width: 200px;
  margin: 10px;
  background-color: var(--primary-color);
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 rgba(10,132,255,0);
}

.cta-btn:hover {
  background-color: #0077e6;
  box-shadow: 0 0 15px rgba(10,132,255,0.6);
}

.alt-contact {
  margin-top: 20px;
  font-size: 0.95rem;
  color: #94a3b8;
}

.alt-contact a {
  color: #38bdf8;
  text-decoration: underline;
}


/*HOW IT WORKS*/

.how-it-works {
  width: 100%;
  padding: 4rem 2rem;
  background: #f9f9f9;
  text-align: center;
  font-family: Manrope;
}

.how-it-works h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #111;
}

.how-it-works .subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2.5rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.step {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}


.step .icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: navy;
}

.step h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #222;
}

.step p {
  font-size: 0.95rem;
  color: #555;
}


/*BONUS*/

.ecommerce-service {
  background-color: var(--dark-text-col); /* midnight navy */
  color: #ffffff;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
  border-radius: 20px;
  width: 95%;
}

.ecommerce-service .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 95%;
  width: 1200px;
  margin: auto;
}

.ecommerce-service .text-content {
  max-width: 100%;
  width: 500px;
  display: flex;
  flex-direction: column;
  padding-right: 40px;
}

.ecommerce-service h2 {
  font-size: 2.5rem;
  color: #00aaff; /* electric blue */
  margin-bottom: 20px;
  text-align: left;
}

.ecommerce-service .highlight {
  font-weight: bold;
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.ecommerce-service p {
  line-height: 1.6;
  margin-bottom: 20px;
}

.ecommerce-service .features {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 10px;
  padding: 0;
  margin-bottom: 30px;
}

.ecommerce-service .features li {
  margin-bottom: 10px;
  color: var(--dark-text-col);
  max-width: 100%;
  width: 200px;
  font-size: 15px;
}


.ecommerce-service .image-content {
  max-width: 100%;
  width: 400px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ecommerce-service img {
  max-width: 100%;
  height: 400px;
  border-radius: 12px;
  object-fit: contain;
}

.store-note {
  background-color: #11173d;
  color: #ffffff;
  padding: 25px;
  margin: 40px auto;
  border-left: 6px solid #00aaff;
  font-size: 1rem;
  line-height: 1.6;
  border-radius: 8px;
  max-width: 100%;
  width: 400px;
  text-align: left;
}


/*FAQS*/

.faq-section{
  width: 100%;
  padding: 30px 10px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: center;
  justify-content: center;
}

.faqs{
  max-width: 100%;
  width: 1000px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-evenly;
}

.faqs .faq{
  max-width: 95%;
  width: 450px;
  height: 110px;
  background-color: #f8f8f8;
  padding: 0px 10px 10px 10px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  overflow: hidden;
  transition: all .4s ease-in-out;

}

.faq.extended{
  height: 300px;
}

.faqs .faq .faq-header{
  width: 100%;
  padding: 20px 0;
  display: flex;
  gap: 20px;
  align-items: center;
}
.faqs .faq .faq-header div{
  width: 10%;
}
.faqs .faq-circle{
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  border-radius: 50%;
  cursor: pointer;
}

.faq-circle .icon{
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faqs .faq-body{
  padding-left: 55px;
  font-family: Manrope;
  overflow-y: scroll;
}

.faqs .faq a{
  color: var(--primary-color);
  text-decoration: none;
}

.faqs .faq-body::-webkit-scrollbar{
  appearance: none;
  -webkit-appearance: none;
  background-color: #f8fbff;
  width: 5px;
  border-radius: 10px;
}

.faqs .faq-body::-webkit-scrollbar-thumb{
  appearance: none;
  background-color: #e9f3ff;
}


/*blogs section*/

.latest-blog-posts{
  width: 100%;
  background-color: #fafcff;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 100px 10px;
}

.latest-blog-posts h2{
  font-size: 34px;
  margin: 40px 0;
}

.latest-blog-posts .blog-posts{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.latest-blog-posts .blog-posts .blog-card{
  max-width: 100%;
  width: 320px;
}

.latest-blog-posts .blog-posts .blog-card img{
  height: 250px;
}

.latest-blog-posts .blog-posts .blog-card h3{
  font-size: 23px;
}
.latest-blog-posts .blog-posts .blog-card a{
  font-family: Manrope;
}


/*SERVICES PAGE*/

.services-intro .title {
    font-size: 2.5rem;
    color: #0f172a; /* Midnight Navy */
  }

.services-sect-desc{
  width: 100%;
  padding: 100px 10px;
  text-align: center;
  background-color: #f8fafc;
  display: flex;
  flex-direction: column;
  gap: 30px;  
  align-items: center;
  justify-content: center;
}

.services-sect-desc p{
  max-width: 100%;
  width: 800px;
}
.services-intro .subtitle {
  font-size: 1.2rem;
  color: #64748b;
  margin-top: 1rem;
  font-family: Manrope;
}

.services-grid {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 2rem 1rem 4rem;
  background-color: #f8fafc;
}

.service-card {
  max-width: 100%;
  width: 380px;
  min-height: 280px;
  background-color: #fff;
  border-left: 5px solid var(--dark-text-col); /* Electric Blue */
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  text-align: left;
  transition: transform 0.3s ease;
  font-family: Manrope;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card h3 {
  color: #0f172a;
  margin-bottom: 1rem;
}

.service-card p {
  color: #334155;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.price {
  font-weight: bold;
  color: #0284c7;
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  background-color: #0f172a;
  color: #fff;
  padding: 13px;
  border-radius: 0.5rem;
  text-decoration: none;
  font-size: 0.9rem;
  max-width: 80%;
  width: 150px;
  text-align: center;
}

.btn.primary {
  background-color: #0284c7;
}

.services-cta {
  background-color: #0f172a;
  color: #fff;
  text-align: center;
  padding: 3rem 1rem;
}

.services-cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.services-cta p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #cbd5e1;
}

.pricing-note {
  max-width: 95%;
  width: 800px;
  background-color: #0d1333;
  color: #a3d4ff;
  padding: 20px;
  border-left: 4px solid #00aaff;
  margin: 40px auto;
  font-size: 1rem;
  border-radius: 6px;
}

.pricing-note a {
  color: #00aaff;
  text-decoration: underline;
  font-weight: bold;
}



/*PROJECTS PAGE*/

.projects-page {
  background-color: #f9f9f9;
  padding: 50px 10px;
}

.projects-page .container {
  max-width: 1200px;
  margin: auto;
}

.section-title {
  text-align: center;
  color: #0a1128; /* midnight navy */
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 3rem;
}

.projects-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.project-card-wide {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.project-card-wide:hover {
  transform: translateY(-8px);
}

.project-card-wide img {
  width: 100%;
  height: 350px;
  object-fit: cover;

}

.project-content {
  padding: 1.5rem;
  font-family: Manrope;
}

.project-content .project-top-content{
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.project-title {
  font-size: 1.4rem;
  color: #0a1128;
  margin-bottom: 0.5rem;
}

.project-description {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 1rem;
}

.project-tags span {
  display: inline-block;
  background-color: #e5f0ff;
  color: #007bff; /* electric blue */
  padding: 4px 10px;
  font-size: 0.8rem;
  border-radius: 12px;
  margin-right: 6px;
  margin-bottom: 6px;
}

.project-page-links {
  margin-top: 1rem;
  display: flex;
  gap: 0.8rem;
}

.project-card-wide .btn {
  text-decoration: none;
  padding: 13px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-live {
  background-color: #007bff;
  color: #fff;
}

.btn-live:hover {
  background-color: #0056b3;
}

.btn-case {
  background-color: #f0f0f0;
  color: #333;
}

.btn-case:hover {
  background-color: #ddd;
  color: #fff;
}



/* Pricing Page */

.pricing-section {

  padding: 50px 20px;
}

.pricing-section h2{
  text-align: center;
  margin: 100px 0;
}

.pricing-section .pricing-desc2{
  text-align: center;
  font-family: Manrope;
  margin: 30px auto;
  max-width: 95%;
  width: 800px;
}


.currency-toggle{
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  padding: 30px 0;
  margin: 40px 0;
}

.currency-cont{
  max-width: 95%;
  width: 300px;
  position: relative;
}

.currency-cont .cur-field{
  width: 100%;
  border: 1px solid var(--primary-color);
  border-radius: 5px;
  padding: 25px;
  font-family: Manrope;
  cursor: pointer;
}

.currency-cont .currencies{
  position: absolute;
  left: 0;
  top: 110%;
  background-color: #fff;
  width: 100%;
  display: none;
  flex-direction: column;
  gap: 10px;
  border-radius: 5px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  z-index: 15;
  font-family: Manrope;
}

.currencies.active{
  display: flex;
}

.currencies span{
  padding: 10px;
  border-radius: 3px;
  cursor: pointer;
}

.currencies span:hover{
  background-color: #e6e6e6;
}

/* Pricing Cards Section */
.pricing-tiers {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
  flex-wrap: wrap;
  font-family: Manrope;
}

.pricing-card {
  background-color: #f1f1f1;
  padding: 30px;
  width: 280px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.pricing-card:hover {
  transform: translateY(-10px);
}

.pricing-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  height: 130px;
}

.pricing-card .details{
  width: 100%;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.pricing-card .price {
  font-size: 20px;
  color: #0099ff; /* Electric Blue */
  margin-bottom: 15px;
}

.pricing-card ul {
  list-style-type: none;
  padding: 0;
  margin-bottom: 30px;
}

.pricing-card ul li {
  font-size: 14px;
  color: #333;
  margin-bottom: 10px;
  line-height: 20px;
  position: relative;
  padding-left: 20px;
}

.pricing-card ul li::before{
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  position: absolute;
  left: 2px;
  top: 5px;
  background-color: var(--primary-color);
}

.pricing-ctas{
  width: 100%;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-whatsapp-link{
    color: var(--primary-color);
}

.cta-button {
  background-color: #0099ff; 
  color: #fff;
  border: none;
  padding: 12px 25px;
  font-size: 1rem;
  margin: 5px 0;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
  text-align: center;
}

.cta-button:hover {
  background-color: #007acc;
}

.cta-button.secondary {
  background-color: #555;
}

.cta-button.secondary:hover {
  background-color: #444;
}


.final-cta {
  background-color: #001f3d; 
  color: #fff;
  padding: 50px 20px;
}

.final-cta h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.final-cta p {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 40px;
}

.final-cta .cta-button.primary {
  background-color: #0099ff; 
  font-size: 1.2rem;
  padding: 15px 30px;
}


/*CONTACT PAGE*/

.contact-section{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 30px;
  padding: 50px 10px;
  flex-wrap: wrap;
  margin: 100px 0;
}

.contact-section .form-side{
  max-width: 100%;
  width: 500px;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
  font-family: Manrope;
}

.form-side form, .form-side form .form-grp{
  display: flex;
  flex-direction: column;
  width: 100%;
}

.form-side form{
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  padding: 30px 10px;
  gap: 20px;
}

.form-side form .form-grp{
  gap: 10px;
}

.form-side form .inputs, .form-side form select, .form-side form textarea{
  width: 90%;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 3px;
  padding: 13px;
}

.form-side form .inputs:focus, .form-side form select:focus, .form-side form textarea:focus{
  outline: none;
}

.form-side form .inputs::-webkit-input-placeholder, .form-side form textarea::-webkit-input-placeholder{
  font-family: Manrope;
}

.form-side form select{
  cursor: pointer;
}

.form-side form textarea{
  height: 150px;
  resize: none;
}

.form-side form .error{
  font-size: 13px;
  color: red;
}

.form-side form input[type='submit']{
  max-width: 90%;
  width: 200px;
  padding: 14px;
  cursor: pointer;
  border: none;
  border-radius: 3px;
  background-color: var(--primary-color);
  color: #fff;
  font-family: Manrope;
  transition: all .2s ease;
}

.form-side form input[type='submit']:hover{
  box-shadow: 3px 3px 10px #0077e677;
}

.contact-section a{
  text-decoration: none;
  color: var(--primary-color);
}

.contact-section .text-side{
  max-width: 100%;
  width: 400px;
  gap: 20px;
  font-family: Manrope;
}

.contact-section .text-side, .text-side .form-ctas{
  display: flex;
  flex-direction: column;
}
.text-side .form-ctas{
  width: 100%;
  gap: 10px;
}

.text-side .form-ctas .socials a{
  font-size: 25px;
}

.text-side .form-ctas .socials a:nth-child(3){
  color: hotpink;
}

.welcoming-emoji{
  font-size: 100px;
  margin: 20px auto;
  color: var(--primary-color);
  filter: drop-shadow(2px 2px 10px rgba(0,0,0,0.05));
}


/*CASE STUDIES*/

.case-studies-main section{
  padding: 50px 20px;
}

.case-studies-main section .container{
  padding: 70px 0;
  font-family: Manrope;
}

/* Project Overview Section */
.overview {
    padding: 40px 0;
    background-color: #f4f4f4;
}

.overview h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #0A1C2E; /* Midnight Navy */
}

.project-details {
    list-style: none;
    font-size: 1.1rem;
}

.project-details li {
    margin-bottom: 10px;
    display: flex;
    
    gap: 10px;
}

.project-details a{
  text-decoration: none;
  color: var(--primary-color);
  display: flex;
  gap: 5px;
  align-items: center;
  width: 100px;
}

.project-details a:hover{
  text-decoration: underline;
}

.full_body{
  width: 100%;
  padding: 100px 10px;
  background-color: var(--dark-text-col);
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 20px;
  flex-wrap: wrap;

}

.full_body .left-side{
  max-width: 100%;
  width: 500px;
}

.full_body ol, .full_body ul{
  padding: 20px;
  color: #fff;
  font-family: Manrope;
}

.full_body h3{
    color:#fff;
}

.full_body .right-side{
  max-width: 100%;
  width: 400px;
}

.full_body .right-side img{
  width: 100%;
  height: 400px;
  object-fit: contain;
  filter: drop-shadow(3px 3px 15px #00b3ff50);
}

.full_body h2, .full_body p{
  color: #fff;
  margin-bottom: 30px;
  max-width: 100%;
  width: 600px;
}


.features {
    padding: 40px 0;
}
.features .container{
  max-width: 100%;
  width: 1100px;
  margin: auto;
}
.features h2 {
    font-size: 2rem;
    color: #0A1C2E;
    margin-bottom: 15px;
}

.features ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.features li {
    font-size: 1.1rem;
    margin-bottom: 10px;
    max-width: 100%;
    width: 350px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f6faff;
    border: 1px solid #007acc5b;
    border-radius: 5px;
}

/* Visual Preview Section */
.visual-preview {
    padding: 40px 0;
    background-color: #f2f8ff;
}

.visual-preview h2{
  margin-bottom: 40px;
}

.visual-preview .image-gallery {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.gallery-image {
    max-width: 95%;
    width: 350px;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all .3s ease-in-out;
}

.gallery-image:hover{
  transform: translateY(-5px);
}

.image-zoom{
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s;
}

.image-zoom.active{
  opacity: 1;
  visibility: visible;
}

.image-zoom img{
  max-width: 100%;
  width: 1000px;
  height: 80%;
  object-fit: contain;
}

.image-zoom .zoom-closer{
  position: absolute;
  top: 5%;
  right: 5%;
  cursor: pointer;
  font-size: 40px;
  color: #fff;
}


/*ALL CASE STUDIES*/

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 30px 10px;
}

.case-study-card {
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1.5rem;
  transition: box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.case-study-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.case-study-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 1rem;
}

.case-study-card h2 {
  margin-top: 0;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.case-study-card p {
  font-size: 0.95rem;
  line-height: 1.5;
}

.case-study-card .btn {
  display: inline-block;
  margin-top: 10px;
  padding: 13px;
  background-color: #007BFF;
  color: white;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.2s ease;
  font-family: Manrope;
}

.btn:hover {
  background-color: #005dc5;
}



/*ABOUT PAGE*/

/* Core Layout */
.about-page section {
  padding-left: 20px;
  padding-right: 20px;
  margin: 40px 0;
}
.about-page .container {
  max-width: 100%;
  width: 1100px;
  margin: 0 auto;
}

.about-page .skills-container{
  display: flex;
  flex-direction: column;
  gap: 30px;
}


/* Mission Section Grid */
.mission-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: stretch;
}

.mission-card {
  flex: 1 1 45%;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  padding: 40px 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.mission-card h2 {
  font-size: 1.8rem;
  color: #007acc;
  margin-bottom: 15px;
}

.mission-card p {
  color: #444;
  font-size: 1rem;
  line-height: 1.7;
}

/*STORY AND FOUNDER MSG*/
.about-page .about-story, .about-page .founder-section{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 20px;
  flex-wrap: wrap;
}

.about-story .details, .founder-section .details{
  max-width: 100%;
  width: 400px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.about-story img, .founder-section img{
  max-width: 100%;
  width: 500px;
  object-fit: contain;
  filter: drop-shadow(5px 5px 15px #03b8ff25);
}

/* Headings and Paragraphs */
.about-page section:not(.cta-section) h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #1a1a1a;
}
.about-page section:not(.cta-section) p, .about-page section ul li {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

/* Core Values List */
.about-values ul {
  list-style: none;
  padding: 0;
  font-family: Manrope;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.about-values li {
  max-width: 100%;
  width: 500px;
  margin-bottom: 12px;
  padding-left: 10px;
  border-left: 4px solid #3498db;
  height: 100px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  justify-content: center;
}


.about-skills{
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: center;
}

.about-skills .stacks{
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.about-skills .stacks img{
  width: 100px;
  height: 100px;
  object-fit: contain;
  opacity: 0.8;
}

/* Trust & CTA */

/* Trusted by Clients Section */
.trusted-by-section {
  padding: 80px 20px;
  background-color: #f9fbfc;
  text-align: center;
}

.trusted-title {
  font-size: 2rem;
  color: #222;
  margin-bottom: 10px;
}

.trusted-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.trusted-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.logo-box {
  width: 140px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.04));
  transition: transform 0.3s ease;
}

.logo-box img {
  max-width: 100%;
  max-height: 60px;
}

.logo-box:hover {
  transform: translateY(-5px);
}

@media (max-width: 600px) {
  .trusted-logos {
    gap: 20px;
  }

  .logo-box {
    width: 100px;
    height: 60px;
  }
}


.about-trust,
.about-cta {
  background: #eaf6ff;
  text-align: center;
}
.about-cta .btn-secondary,
.about-trust .btn-primary {
  margin-top: 20px;
  padding: 12px 30px;
  display: inline-block;
  background: #007acc;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}
.about-cta .btn-secondary:hover,
.about-trust .btn-primary:hover {
  background: #005e99;
}

/*BLOGS*/

/* Blog List */


.blog-section {
  padding: 60px 10px;
  background: #f9f9f9;
  font-family: 'Segoe UI', sans-serif;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #222;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}


.blog-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: 50% 25%;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-img img {
  transform: scale(1.05);
}

.blog-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-category {
  font-size: 0.8rem;
  color: #007BFF;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
}

.blog-title {
  font-size: 1.3rem;
  margin: 0 0 10px;
  color: #333;
}

.blog-excerpt {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  flex: 1;
}

.read-more {
  margin-top: 20px;
  text-decoration: none;
  font-weight: 600;
  color: #007BFF;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: #0056b3;
}

.blog-section .pagination{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 50px 0;
}




/*individual services*/

.intro{
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: center;
  background-color: #f2f8ff;
  align-items: center;
  justify-content: center;
}

.ind-services{
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.ind-services section{
    width: 100%;
  padding: 40px 20px;
}

.ind-services section .container{
  width: 100%;
}

.service-intro {
  padding: 4rem 1rem;
  background-color: #f9f9f9;
  text-align: center;
}

.service-intro .container {
  max-width: 100%;
  width: 900px;
  margin: auto;
}

.service-intro .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 1rem;
}

.service-intro .section-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 1.2rem;
}


.service-features {
  width: 100%;
  padding: 60px 20px;
  background: #ffffff;
}

.ind-services h2, .service-features h2{
  margin: 40px auto;
  text-align: center;
  font-size: 1.8rem;
  color: #0074D9;

}

.grid {
  display: flex;
  flex-wrap:wrap;
  align-items:center;
  gap: 30px;
}

.feature-card {
    max-width: 100%;
    width: 260px;
  padding: 30px 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background: #fafafa;
  transition: transform 0.3s ease;
}

.feature-card  i{
  font-size: 70px;
  color: var(--primary-color);
  margin-bottom: 30px;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.feature-card h3 {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 1rem;
  color: #666;
}

.service-cta {
  padding: 70px 20px;
  text-align: center;
  background-color: #f0f4ff;
}

.service-cta h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.service-cta p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: #333;
}

.btn-primary {
  background: #0066ff;
  color: white;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: #004ccc;
}



.webapp-benefits .container{
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.webapp-benefits ul {
  list-style: none;
  padding: 0;
  font-family: Manrope;
}

.webapp-benefits li {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  position: relative;
  padding-left: 1.5rem;
}

.webapp-benefits li::before {
  content: "✓";
  color: green;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.webapp-services .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  font-family: Manrope;
}

.webapp-services .card {
  max-width: 100%;
  background: #fff;
  border: 1px solid #ddd;
  padding: 30px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transition: 0.3s ease;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}

.webapp-services .card:hover {
  background: #f0f8ff;
  border-color: #4e91fc;
  transform: translateY(-4px);
}

.webapp-clients p, .webapp-contact-cta p {
  font-size: 1.1rem;
  color: #555;
}

.webapp-contact-cta {
  background: #eef6ff;
  text-align: center;
}

.webapp-contact-cta a {
  color: #0073e6;
  font-weight: bold;
  text-decoration: underline;
}


/*ecomm*/

.features-highlight {
  padding: 4rem 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  position: relative;
}

.features-highlight .highlight-bg{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(60%);
  z-index: -1;
}

.features-highlight .container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  z-index: 2;
}

.feature-block {
  background: #ffffff3d;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.07);
  transition: transform 0.3s ease;
  border: 1px solid #ddd;
  backdrop-filter: blur(4px);
}

.feature-block:hover {
  transform: translateY(-5px);
}

.feature-block h2 {
  font-size: 1.75rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.feature-block p {
  color: #ffffff;
  font-size: 1.05rem;
  line-height: 1.8;
}

/*maintenance*/
.overview{
  width: 100%;
  padding: 100px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}



.fancy-box {
  max-width: 95%;
  width:1100px;
  background-color: #ffffff;
  border-left: 6px solid #0f172a;
  padding: 50px 30px;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
}

.fancy-box h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 10px;
}

.fancy-box p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
}

.fancy-box ul {
  list-style: none;
  padding: 0;
  margin-bottom: 15px;
  font-family: Manrope;
}

.fancy-box ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

.fancy-box ul li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

.fancy-box .subtle {
  font-style: italic;
  color: #666;
  margin-top: 15px;
}

.fancy-box.alt {
  background-color: #f9fafb;
  border-left-color: var(--primary-color);
}

.fancy-box .btn.secondary {
  background-color: var(--primary-color);
  width: 200px;
  font-family: Manrope;
  padding: 14px 20px;
  color: #fff;
  border-radius: 4px;
  display: inline-block;
  font-weight: 600;
  margin-top: 10px;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.fancy-box .btn.secondary:hover {
  background-color: #0e111a;
}

.inf-links{
  color: var(--primary-color);
}


.maintenance-pricing {
  background-color: #0a0f2c;
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.maintenance-pricing h2 {
  font-size: 2.4rem;
  color: #00aaff;
  margin-bottom: 10px;
}

.maintenance-pricing .section-intro {
  font-size: 1.1rem;
  color: #a3d4ff;
  margin-bottom: 40px;
}

.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.card {
  background-color: #11173d;
  border-radius: 10px;
  padding: 30px 25px;
  flex: 1 1 320px;
  max-width: 400px;
  text-align: left;
  box-shadow: 0 0 20px rgba(0, 170, 255, 0.1);
}

.card h3 {
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.card .price {
  color: #00aaff;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.card ul li {
  margin-bottom: 10px;
  color: #a3d4ff;
}

.cta-button {
  display: inline-block;
  background-color: var(--primary-color);
  color: #fff;
  padding: 14px;
  border-radius: 3px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #0090dd;
}

.disclaimer {
  margin-top: 50px;
  font-size: 0.95rem;
  color: #87a9cc;
}


/*seo*/

.why-seo{
  padding: 150px 10px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.why-seo p{
  max-width: 100%;
  width: 1000px;
}

.why-seo, .seo-process, .note-policy {
  background: white;
  border-radius: 8px;
  margin-top: 40px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.seo-process, .note-policy{
  padding: 40px;
}

.why-seo h2, .seo-process h2, .note-policy h2, .seo-features h2 {
  font-size: 1.8rem;
  color: #0074D9;
  margin-bottom: 20px;
}

.seo-process-visual {
  background: #ffffff;
  padding: 60px 20px;
  text-align: center;
  border-radius: 10px;
  margin-top: 60px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.seo-process-visual h2 {
  font-size: 2rem;
  color: #0074D9;
  margin-bottom: 40px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.step {
  background-color: #f4faff;
  border: 1px solid #dbefff;
  padding: 25px;
  border-radius: 10px;
  position: relative;
  transition: transform 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #0074D9;
}

.step h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #333;
}

.step p {
  font-size: 0.95rem;
  color: #555;
}


.note-policy {
  max-width: 95%;
  width: 1100px;
  margin: auto;
  background: #fffae6;
  border-left: 6px solid #f39c12;
  font-size: 0.95rem;
}