/* Reset default margin/padding */
* {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}
html, body {
  overflow-x: hidden;
}
/* Body */
body {
  line-height: 1.6;
  color: #333;
  font-family: 'Poppins', sans-serif;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 79px;
  background: linear-gradient(to right, #ffe5d1, #fff);
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.logo img {
  height: 150px;
}

.hero-heading {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  color: #ff6600;
  padding-bottom: 30px;

}

.hero-heading-text2 {
  
  font-weight: 700;
  line-height: 1.4;
  color: #333;
  padding-bottom: 10px;
  font-style: italic;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

.navbar a {
  text-decoration: none;
  color: #101010BD;
  font-weight: 500;
}

.navbar a.active {
  color: #ff6600;
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to right, #ffe5d1, #fff);
  max-width: 2000px;
  margin: 0 auto;
  box-sizing: border-box;
}

.hero-text {
  flex: 1;
  max-width: 50%;
}

.hero-text h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}

.btn {
  padding: 12px 25px;
  background: #ff6600;
  color: #fff;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
  box-shadow: 0 8px 20px rgba(1, 81, 115, 0.3);
}

.btn:hover {
  background: #e25500;
}

.about-button1 {
  padding-top: 60px;
}

.hero-image img {
  width: 100%;
  height: 617px;
  max-width: 686px;
  border-radius: 10px;
}

/* About Section */
.about {
  display: flex;
  align-items: center;
  padding: 32px 50px 20px 6px;
  gap: 40px;
  @media (min-width: 1900px) {
  
  }
}

.about-text {
  flex: 1;
}

.about-heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px; 
}

.about-heading div {
  font-weight: 700;
  font-size: 40px;
  line-height: 56px;
  color: #333;
}

.about-heading div span {
  color: #ff6600;
}

.about-text p {
  margin-bottom: 15px;
  font-size: 16px;
}

.about-text p span {
  color: #ff6600;
  font-weight: bold;
}

.about-image > img {
  max-width: 575px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* WHY Section */
.why {
    padding: 80px 59px 80px 33px;
  background: #f9f9f9;
}

.why-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 40px;
  margin-left: 37px;
}

.why-heading h2 {
  font-size: 32px;
  line-height: 1.2;
}

.why-heading span {
  color: #ff6600;
}
.why-heading-text span {
    font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  color: #ff6600;
 
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 30px;
  justify-items: center;
}

.why-card {
  background: #F6F6F6CC;
  padding: 4px 20px 0px 31px;
  border-radius: 12px;
}

.why-card img {
  width: 100%;
  height: auto;  
  object-fit: contain;
  border-radius: 8px;
  display: block;   
}

.why-card .customer-why {
  font-size: 23px;
  font-weight: 600;
  color: #333;
  display: flex;
  justify-content: center;
  padding-top: 30px;
}

/* .why-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.5;
} */
.why-card p {
 font-size: 15px;
 color: #666;
 line-height: 1.5;
  width: 300px;
    margin: 0 auto;
    padding-top: 11px;
    text-align: center;
}
/* Process Section */
.process {
  padding: 80px 60px 80px 77px;
  color: #333;
}

.process-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
  flex-wrap: wrap;
  background-color: white;
}

.process-image img {
  width: 450px;
  border-radius: 10px;
}

.process-text {
  flex: 1;
  margin-left: 65px;
}

.process-text h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.4;
}

.process-text div span {
  color: #ff6600;
}

.buildYourFuture {
  font-size: 40px;
  font-weight: 600;
  width: 75%;
}

.process-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

.process-subtext {
  font-size: 18px;
  font-weight: 500;
  width: 75%;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(288px, 1fr)); 
  gap: 30px;
  background-color: white;
  justify-items: center;
}

.step {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-sizing: border-box;
}

.step img {
  width: 100%;
  max-height: 140px;
  object-fit: cover;
  margin-bottom: 15px;
}

.step-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-number {
  display: inline-block;
  background: #ff6600;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  padding: 6px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
}

.step h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #222;
}

.step p {
  font-size: 14px;
  line-height: 1.5;
  color: #666;
  padding-top: 16px;
  text-align: left;
}
/* ============Footer Section============= */
.footer-content { position: relative; z-index: 1; }

.footer-logo {
  position: absolute;
  right: 30px;
  bottom: -37px;
  opacity: 0.25;        /* watermark look */
  pointer-events: none; /* don’t block clicks */
  z-index: 0;           /* sit behind text */
}

.footer {
  background: linear-gradient(135deg, #c48c70, #e8a87c);
  color: #fff;
  padding: 60px 100px;
  position: relative;   /* anchor for the watermark */
  opacity: 1;           /* visible! */
  pointer-events: auto; /* clickable text/links */
  overflow: hidden;     /* keep watermark clipped inside */
}

/* .footer-detailstop{
     display: flex;
    justify-content: space-between;
    align-items: center;
    width: 1053px;
} */
.footer-detailstop {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 1053px;
} 
@media (max-width: 768px) {
  .footer-detailstop {
    width: 100%;      
    max-width: 100%;   
  }
}

 .footer-detailsOptions {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 500px;
  justify-content: flex-start;
}
@media (max-width: 768px) {
  .footer-detailsOptions {
    width: 100%;       
    max-width: 100%;   
  }
}
.footer-content {
  display: flex;
 flex-direction: column;
  align-items: flex-start;
}

.footer-text {
  max-width: 680px;
}
@media (max-width: 768px) {
  .footer-text {
    width: 100%;       
    max-width: 100%; 
  }
}

.footer-text p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 10px;
}

.footer-text a {
  color: #fff;
  text-decoration: none;
}

.footer-social {
  margin-top: 30px;
}

.footer-social a {
  display: inline-block;
  margin-right: 15px;
  font-size: 22px;
  color: #fff;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #fdbb39; 
}


.footer-logo img {
  width: 280px;      /* adjust size to taste */
  height: auto;
}


.about-text-content {
  max-width: 626px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.about-text-content div {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  color: #333;
}

.about-text-content div span {
  color: #ff6600; 
  font-weight: 500;
  font-size: 20px;
}

.why-card-title {
  font-weight: 600;
  font-size: 28px;
  margin-bottom: 12px;
  color: #333;
}

.why-card-text {
  font-weight: 500;
  font-size: 18px;
  color: #666;
}

.step-number-outer {
  width: 46px;
  height: 45px;
  background-color: rgba(255, 98, 1, 0.3);
  border-radius: 50%; 
  display: flex;
  justify-content: center;
  align-items: center;
}

.step-number-inner {
  width: 38px;
  height: 37px;
  background-color: #FF6201;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  color: white;
}

.step-number-text {
      width: 100%;
    display: flex;
    justify-content: flex-start;
    text-align: center;
}

.fontstyle1 {
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  padding-left: 4px;
}

/* ========= MEDIA QUERIES ========= */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
    padding: 20px;
    gap: 30px;
  }

  .hero-text {
    max-width: 100%;
    margin: 0;
  }

  .hero-image img {
    max-width: 546px;
    width: 100%;
    height: auto;
  }

  .hero-text button {
    margin-top: 20px;
  }

  .about {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
    padding: 20px;
    gap: 30px;
  }

  .about-text {
    margin: 0;
    max-width: 100%;
  }

  .about-image > img:not(.slide){
    max-width: 505px;
    width: 100%;
    height: auto;
  }

  .process-container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .process-image img {
    max-width: 100%;
    height: auto;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr); 
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr); 
  }
}

@media (max-width: 900px) {
  .navbar ul {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .why-grid,
  .steps {
    grid-template-columns: 1fr; 
  }

  .about-heading div {
    font-size: 28px;
    line-height: 1.4;
  }

  .buildYourFuture {
    font-size: 28px;
    font-weight: 600;
    width: 100%;
  }

  .process-text {
    margin-left: 0;
  }
}


@media (min-width: 1800px) {
  .hero,
  .about {
    gap: 80px; 
  }

  .hero-text,
  .about-text {
    margin-left: 86px;
    width: 100%;
    max-width: 979px;
  }
}
@media (min-width: 1900px) {
  .hide-on-large {
    display: none; 
  }
}
@media (max-width: 768px) {
  .about-text-content div {
    font-size: 13px;
  }
}
@media (max-width: 1900px) {
  .about-text-content {
    width: 100%;
    max-width: 974px;
  }
}
/* ================= HAMBURGER MENU ================= */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #333;
  border-radius: 2px;
  transition: 0.3s;
}

/* Mobile */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .navbar {
    display: none;
    position: absolute;
    top: 70px;
    right: 20px;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-radius: 10px;
    padding: 20px;
  }

  .navbar ul {
    flex-direction: column;
    gap: 20px;
  }

  .navbar.active {
    display: block;
  }
}

/* Hamburger animation */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
@media (max-width: 768px) {
  .process-text {
    text-align: center;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .process-subtext {
        margin-left: 37px;
        font-size: 12px;
        padding-top: 10px;
  }
}



@media (max-width: 768px) {
  .hero-heading {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
    .hero-image img {
        max-width: 445px;
        width: 100%;
        height: auto;
    }
}
@media (max-width: 768px) {
    .buildYourFuture {
        font-size: 22px;
        font-weight: 600;
        width: 100%;
    }
}
@media (max-width: 768px) {
.logo img {
    height: 137px;
    width: 233px;
}
}

@media (max-width: 768px) {
footer-logo img {
    width: 343px;
    height: 123px;
    object-fit: contain;
}
}

@media (max-width: 1024px) {
.buildYourFuture {
    font-size: 36px;
    font-weight: 600;
    width: 75%;
    margin-left: 66px;
}}

@media (max-width: 1024px) {
.process-subtext {
    font-size: 18px;
    font-weight: 500;
    width: 75%;
    margin: auto;
}
}

@media (max-width: 768px) {
    .buildYourFuture {
        font-size: 20px;
        font-weight: 600;
        width: 75%;
        margin-left: 36px;
    }
}
@media (max-width: 768px) {
    .process-subtext {
        font-size: 11px;
        font-weight: 500;
        width: 75%;
        margin: auto;
    }
}
@media (max-width: 768px) {
.why-card h3 {
    font-size: 15px;
    color: #333;
    margin: 30px 0 12px 17px;
}
}

@media (max-width: 768px) {
.why-card p {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
    margin-left: 17px;
}
}
@media (max-width: 768px) {
.footer-logo img {
    width: 372px;
    height: 123px;
    object-fit: contain;
}
}

@media (max-width: 768px) {
.why-heading {
          display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 40px;
        justify-content: center;
        width: 100%;
        max-width: 838px;
       padding-top: 20px;
}}

@media (max-width: 768px) {
    .header {
    padding: 15px 14px;
}
}
@media (max-width: 500px) {
  .why-card {
    padding: 0;   /* ✅ remove padding */
  }
}
@media (max-width: 768px) {
  .footer-logo {
    display: none;
  }
}
@media (max-width: 768px) {
  .footer {
    padding: 40px 20px; 
  }

  .footer-detailsOptions {
    width: 100%;  
    max-width: 200px
  }

  .footer-text {
    width: 100%;
    max-width:  200px 
  }
}
.footer-detailstop{
  width: 100%;
/* max-width: 200px; */
}

@media (max-width: 768px) {
.why {
    padding: 0;
}}
.footer-detailstop,
  .footer-detailsOptions,
  .footer-text {
    width: 100%;
    /* max-width: 900px;  */
  }
  @media (max-width: 1800px) {
  .hero-text,
  .about-text {
    margin-left: 60px;
  }
}
@media (max-width: 768px) {
    .hero-text, .about-text {
        margin-left: 13px;
    }
}
  @media (max-width: 1024px) {
.footer-logo img {
  display: none;
}}
/* ================= CONTACT SECTION ================= */
.contact {
  padding: 80px 20px;
  background: #f9f9f9;
  text-align: center;
}

.contact-container {
  max-width: 600px;
  margin: 0 auto;
}

.contact h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #333;
}

.contact form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.contact label {
  text-align: left;
  font-weight: 500;
  color: #333;
  margin-bottom: 5px;
}

.contact input {
  padding: 12px 15px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.3s;
}

.contact input:focus {
  border-color: #ff6600;
  box-shadow: 0 0 5px rgba(255,102,0,0.3);
}

.contact button {
  padding: 14px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 25px;
  background: #ff6600;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  box-shadow: 0 8px 20px rgba(1, 81, 115, 0.3);
}

.contact button:hover {
  background: #e25500;
  transform: translateY(-2px);
}

/* Success & Error Messages */
#form-success {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 500;
  color: green;
}

#form-error {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 500;
  color: red;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .contact form {
    padding: 20px;
  }
  .contact h2 {
    font-size: 24px;
  }
} 
  /* =====================
   MOBILE/TABLET OVERRIDES
   ===================== */

/* Tablets */
@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps {
    flex-wrap: wrap;
  }
}

/* Mobile Phones */
@media (max-width: 768px) {
  /* Hero section stacks */
  .hero {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 40px 20px;
  }
  .hero-text {
    max-width: 100%;
  }
  .hero-heading span,
  .hero-title {
    font-size: 42px !important;
  }
  .hero-heading-text2 {
    font-size: 16px;
  }
  .slideshow {
    max-width: 100%;
    height: 250px;
  }

  /* About stacks */
  .about {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  /* Why grid → single column */
  .why-grid {
    grid-template-columns: 1fr;
  }

  /* Process stacks */
  .process-container {
    flex-direction: column;
    text-align: center;
  }
  .steps {
    flex-direction: column;
    gap: 20px;
  }

  /* Contact form full width */
  .contact-container {
    padding: 0 15px;
  }
  .contact form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .contact input,
  .contact textarea,
  .contact button {
    width: 100%;
  }

  /* Footer stacks */
  .footer-detailstop {
    flex-direction: column;
    gap: 15px;
  }

  /* Navbar collapses */
  .hamburger {
    display: flex;
  }
  .navbar {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    padding: 20px 0;
    border-top: 1px solid #eee;
  }
  .navbar.active {
    display: flex;
  }
  .navbar a {
    padding: 12px 0;
    font-size: 18px;
  }
}
  /* =====================
   STICKY CONTACT BUTTON
   ===================== */
.sticky-contact {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ff6600;
  color: #fff;
  padding: 12px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  z-index: 2000;
  cursor: pointer;
  transition: background 0.3s ease;
}
.sticky-contact:hover {
  background: #e25500;
}
@media (min-width: 769px) {
  .sticky-contact {
    display: none; /* Show only on mobile */
  }
}

/* Global slideshow core (used by Hero, About, etc.) */
.slideshow {
  position: relative;
  width: 100%;
  max-width: 686px;   /* hero size; About will override below */
  height: 617px;
  overflow: hidden;
  border-radius: 10px;
}
.slideshow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.slideshow img.active { opacity: 1; }

/* Put this near the bottom of style.css */
.about-image .slideshow {
  position: relative;     /* ensure stacking context */
  width: 100%;
  max-width: 575px;       /* aligns with your about-image sizing */
  height: 617px;          /* same as hero, tweak if you want */
  overflow: hidden;
  border-radius: 10px;
}

.about-image .slideshow .slide {
  position: absolute;     /* force absolute inside About */
  inset: 0;               /* top/right/bottom/left: 0 */
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;             /* start hidden */
  transition: opacity 1s ease-in-out;
}

.about-image .slideshow .slide.active {
  opacity: 1;             /* visible one */
}

/* Mobile height (match your hero mobile rule) */
@media (max-width: 768px) {
  .about-image .slideshow {
    height: 250px;
    max-width: 100%;
  }
}

.rotating-text {
  position: relative;
  display: inline-block;
}

.rotating-text .phrase {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  font-size: 75px;
  font-weight: 800;
  line-height: 1.2;
}

.rotating-text .phrase.active {
  opacity: 1;
  position: relative; /* keep current phrase in normal flow */
}
