
/* ===============================
   Brand-Updated CSS (Full File)
   Only Fonts & Colors updated as requested.
   Palette + Typography:
   - Headers: Montserrat
   - Body: Open Sans
   - Accent: Georgia
   - Colors: Ochre (#CC6600), Forest Green (#2D5016),
             Warm Cream (#F5F1E8), Dusty Blue (#5B7C99),
             Charcoal (#333333), Urgent Mid-Dark Green (#4A7C59)
   =============================== */


/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Open+Sans:wght@400;600&display=swap');

/* CSS Variables for easy theming */
:root {
  --color-ochre: #CC6600;
  --color-forest-green: #2D5016;
  --color-cream: #F5F1E8;
  --color-dusty-blue: #5B7C99;
  --color-charcoal: #333333;
  --color-urgent-green: #4A7C59;

  --font-header: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --font-accent: Georgia, 'Times New Roman', serif;

  /* Derived tokens (kept close to original structure) */
  --link: var(--color-dusty-blue);
  --heading: var(--color-charcoal);
  --subheading: var(--color-charcoal);
  --hr: var(--color-urgent-green);
  --chip-bg: var(--color-cream);

  /* Primary gradient used across sections/buttons (replacing old blue gradient) */
  --grad-1: var(--color-ochre);
  --grad-2: var(--color-dusty-blue);
  --grad-3: var(--color-forest-green);
}

/* Base */
body,
html {
  font-family: var(--font-body);
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  color: #777;
  font-weight: 400;
  width: 100% !important;
  height: 100% !important;
  background: var(--color-cream);
}

h2,
h3,
h4 {
  font-family: var(--font-header);
  color: var(--heading);
}

h2 {
  text-transform: uppercase;
  margin: 0 0 20px;
  font-weight: 800;
  font-size: 36px;
}

h3 {
  font-size: 20px;
  font-weight: 600;
}

h4 {
  font-size: 18px;
  font-weight: 600;
}

h5 {
  text-transform: uppercase;
  font-weight: 700;
  line-height: 20px;
  font-family: var(--font-header);
  color: var(--subheading);
}

p {
  font-size: 15px;
  font-family: var(--font-body);
}

p.intro {
  margin: 12px 0 0;
  line-height: 24px;
}

a {
  color: var(--link);
  font-weight: 400;
}

a:hover,
a:focus {
  text-decoration: none;
  color: var(--link);
}

ul,
ol {
  list-style: none;
  padding: 0;
  webkit-padding: 0;
  moz-padding: 0;
}

hr {
  height: 2px;
  width: 70px;
  text-align: center;
  position: relative;
  background: var(--hr);
  margin-bottom: 20px;
  border: 0;
}

/* Navigation */
#menu {
  padding: 15px;
  transition: all 0.8s;
}

#menu.navbar-default {
  background-color: #fff;
  border-color: rgba(231, 231, 231, 0);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

#menu a.navbar-brand {
  font-family: var(--font-header);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-charcoal);
  text-transform: uppercase;
}

#menu.navbar-default .navbar-nav > li > a {
  font-family: var(--font-header);
  text-transform: uppercase;
  color: #555;
  font-size: 15px;
  font-weight: 400;
  padding: 8px 2px;
  border-radius: 0;
  margin: 9px 8px 0;
  position: relative;
}

#menu.navbar-default .navbar-nav > li > a:after {
  display: block;
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--grad-1) 0%, var(--grad-2) 100%);
  content: "";
  transition: width 0.2s;
}

#menu.navbar-default .navbar-nav > li > a:hover:after {
  width: 100%;
}

.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
  background-color: transparent;
}

.navbar-default .navbar-nav > .active > a:after,
.navbar-default .navbar-nav > .active > a:hover:after,
.navbar-default .navbar-nav > .active > a:focus:after {
  display: block !important;
  position: absolute !important;
  left: 0 !important;
  bottom: -1px !important;
  width: 100% !important;
  height: 2px !important;
  background: linear-gradient(to right, var(--grad-1) 0%, var(--grad-2) 100%) !important;
  content: "" !important;
  transition: width 0.2s !important;
}

.navbar-toggle {
  border-radius: 0;
}

.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
  background-color: #fff;
  border-color: var(--link);
}

.navbar-default .navbar-toggle:hover > .icon-bar {
  background-color: var(--link);
}

/* Section Title */
.section-title {
  margin-bottom: 70px;
}

.section-title h2 {
  position: relative;
  margin-top: 10px;
  margin-bottom: 15px;
  padding-bottom: 15px;
}

.section-title h2::after {
  position: absolute;
  content: "";
  background: linear-gradient(to right, var(--grad-2) 0%, var(--grad-1) 100%);
  height: 4px;
  width: 60px;
  bottom: 0;
  margin-left: -30px;
  left: 50%;
}

.section-title p {
  font-size: 18px;
}

/* Buttons (kept structure, updated colors) */
.btn-custom {
  font-family: var(--font-header);
  text-transform: uppercase;
  color: #fff;
  background-color: var(--grad-1);
  background-image: linear-gradient(to right, var(--grad-1) 0%, var(--grad-2) 100%);
  padding: 14px 34px;
  letter-spacing: 1px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  border-radius: 25px;
  transition: all 0.5s linear;
  border: 0;
}

.btn-custom-login {
  font-family: var(--font-header);
  text-transform: uppercase;
  color: #fff;
  background-color: var(--grad-1);
  background-image: linear-gradient(to right, var(--grad-1) 0%, var(--grad-2) 100%);
  padding: 14px 34px;
  letter-spacing: 1px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  border-radius: 25px;
  transition: all 0.5s linear;
  border: 0;
}
.btn-custom-login :hover{
   color: #fff; 
}
.btn-custom:hover,
.btn-custom:focus,
.btn-custom.focus,
.btn-custom:active,
.btn-custom.active {
  color: #fff;
  background-image: none;
  background-color: var(--color-forest-green);
}

.btn:active,
.btn.active {
  background-image: none;
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

a:focus,
.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
  outline: none;
  outline-offset: none;
}

/* Header Section */
.intro {
  display: table;
  width: 100%;
  height: 100vh;
  padding: 0;
  /* background: url(../img/Blog-Image-003.png) center center no-repeat; */
  background-color: #4A7C59;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
}

.intro .overlay {
  background: rgba(0, 0, 0, 0.5);
}
.intro h1 {
  font-family: var(--font-header);
  color: #fff;
  font-size: 42px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 10px;
}

.intro h1 span {
  font-weight: 800;
  color: var(--grad-2);
}

.intro p {
  color: #fff;
  font-size: 22px;
  font-weight: 300;
  line-height: 30px;
  margin: 0 auto;
  margin-bottom: 60px;
}

header .intro-text {
  padding-top: 173px;
  padding-bottom: 200px;
  text-align: center;
}

/* Features Section */
#features {
  background: #f6f6f6;
}

#features i.fa {
  font-size: 38px;
  margin-bottom: 20px;
  transition: all 0.5s;
  color: #fff;
  width: 100px;
  height: 100px;
  padding: 30px 0;
  border-radius: 50%;
  background: linear-gradient(to right, var(--grad-1) 0%, var(--grad-2) 100%);
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.05);
}

/* About Section */
#about {
  padding: 100px 0;
}

#about h3 {
  font-size: 22px;
  margin: 0 0 20px;
}

#about h2 {
  position: relative;
  margin-bottom: 15px;
  padding-bottom: 15px;
}

#about h2::after {
  position: absolute;
  content: "";
  background: linear-gradient(to right, var(--grad-2) 0%, var(--grad-1) 100%);
  height: 4px;
  width: 60px;
  bottom: 0;
  left: 0;
}

#about .about-text li {
  margin-bottom: 6px;
  margin-left: 6px;
  list-style: none;
  padding: 0;
}

#about .about-text li:before {
  content: "\f00c";
  font-family: "FontAwesome";
  color: var(--grad-2);
  font-size: 11px;
  font-weight: 300;
  padding-right: 8px;
}

#about img {
  width: 520px;
  margin-top: 10px;
  background: #fff;
  border-right: 0;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.06);
}

#about p {
  line-height: 24px;
  margin: 30px 0;
}

/* Services Section */
#services {
  padding: 100px 0;
  background: linear-gradient(to right, var(--grad-1) 0%, var(--grad-2) 100%);
  color: #fff;
}

#services .service-desc {
  margin: 10px 10px 20px;
}

#services h2 {
  color: #fff;
}

#services .section-title h2::after {
  position: absolute;
  content: "";
  background: rgba(255, 255, 255, 0.3);
  height: 4px;
  width: 60px;
  bottom: 0;
  margin-left: -30px;
  left: 50%;
}

#services i.fa {
  font-size: 42px;
  width: 120px;
  height: 120px;
  padding: 40px 0;
  background: linear-gradient(to right, var(--grad-1) 0%, var(--grad-2) 100%);
  border-radius: 50%;
  color: #fff;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.05);
}

#services h3 {
  font-weight: 500;
  padding: 5px 0;
  color: #fff;
}

#services p {
  color: rgba(255, 255, 255, 0.85);
}

#services .service-desc {
  margin-bottom: 40px;
}

/* Portfolio Section */
#portfolio {
  padding: 100px 0;
}

.portfolio-item {
  margin: 1px -15px 0 -14px;
  padding: 0;
}

.portfolio-item .hover-bg {
  overflow: hidden;
  position: relative;
  margin: 0;
}

.hover-bg .hover-text {
  position: absolute;
  text-align: center;
  margin: 0 auto;
  color: #fff;
  background: linear-gradient(
    to right,
    color-mix(in oklab, var(--grad-1) 80%, #000 0%) 0%,
    color-mix(in oklab, var(--grad-2) 80%, #000 0%) 100%
  );
  padding: 30% 0 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: all 0.5s;
}

.hover-bg .hover-text > h4 {
  opacity: 0;
  color: #fff;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  transition: all 0.3s;
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 500;
  text-transform: uppercase;
}

.hover-bg:hover .hover-text > h4 {
  opacity: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.hover-bg:hover .hover-text {
  opacity: 1;
}

/* Testimonials Section */
#testimonials {
  padding: 100px 0;
  background: #f6f6f6;
}

#testimonials i {
  color: #e6e6e6;
  font-size: 32px;
  margin-bottom: 20px;
}

.testimonial {
  position: relative;
  padding: 20px;
}

.testimonial-image {
  float: left;
  margin-right: 15px;
}

.testimonial-image,
.testimonial-image img {
  display: block;
  width: 64px;
  height: 64px;
  border-radius: 50%;
}

.testimonial-content {
  position: relative;
  overflow: hidden;
}

.testimonial-content p {
  margin-bottom: 0;
  font-size: 14px;
  font-style: italic;
}

.testimonial-meta {
  margin-top: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #666;
}

/* Team Section */
#team {
  padding: 100px 0;
}

#team h4 {
  margin: 5px 0;
}

#team .team-img {
  width: 240px;
}

#team .thumbnail {
  background: transparent;
  border: 0;
}

#team .thumbnail .caption {
  padding: 10px 0 0;
  color: #888;
}

/* Contact Section */
#contact {
  position: relative;
  padding: 100px 0 60px;
  background: url("/img/contact-bg.jpg") no-repeat center center/cover; /* background image */
  color: rgba(255, 255, 255, 0.9);
}

#contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, var(--grad-1) 0%, var(--grad-2) 100%);
  opacity: 0.8; /* gradient overlay */
  z-index: 1;
}

#contact .container {
  position: relative;
  z-index: 2; /* overlay ke upar content */
}

#contact .section-title {
  margin-bottom: 40px;
  text-align: center;
}

#contact h2 {
  color: #fff;
  margin-bottom: 15px;
  padding-bottom: 15px;
  font-size: 32px;
  font-weight: 700;
}

#contact .section-title h2::after {
  content: "";
  display: block;
  margin: 10px auto 0;
  background: rgba(255, 255, 255, 0.3);
  height: 4px;
  width: 60px;
}

#contact p {
  font-size: 16px;
}

#contact form {
  padding-top: 20px;
}

#contact .form-control {
  display: block;
  width: 100%;
  padding: 12px;
  font-size: 16px;
  color: #444;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-shadow: none;
}

#contact .form-control:focus {
  border-color: #999;
  outline: 0;
}

#contact .btn-custom {
  margin: 30px 0;
  background: #00aef0;
  color: #fff;
  font-weight: 600;
  border: none;
  padding: 14px 28px;
  border-radius: 6px;
  transition: 0.3s;
}

#contact .btn-custom:hover {
  background: #008ac1;
}

#contact .social {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 40px;
  margin-top: 50px;
  text-align: center;
}

#contact .social ul li {
  display: inline-block;
  margin: 0 15px;
}

#contact .social i.fa {
  font-size: 20px;
  width: 44px;
  height: 44px;
  line-height: 44px;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  transition: all 0.3s;
}

#contact .social i.fa:hover {
  color: var(--grad-2);
  background: #fff;
}

/* Footer */
#footer {
  background: #f6f6f6;
  padding: 30px 0;
  text-align: center;
}

#footer p {
  color: #888;
  font-size: 14px;
}

#footer a {
  color: var(--link);
}

#footer a:hover {
  border-bottom: 2px solid var(--link);
}


/* Media Queries */
@media (max-width: 768px) {
  #about img {
    margin: 50px 0;
  }
  .tech-box{
    margin-bottom: 10px;
  }
}

/* --- Optional helpers that keep structure identical but allow accent use --- */
.accent-text {
  font-family: var(--font-accent);
  color: var(--color-forest-green);
}

.badge-urgent {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 4px;
  background: var(--color-urgent-green);
  color: #fff;
  font-family: var(--font-header);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .5px;
}







.solution-section {
  padding: 80px 0;
  background: #F5F1E8; 
  overflow-x: hidden;
}

.solution-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #2D5016; 
  margin-bottom: 20px;
  margin-top: 20px;
}

.solution-intro {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.solution-text {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 30px;
}

.solution-image img {
  border-radius: 15px;
  max-width: 100%;
  transition: transform 0.3s ease-in-out;
}

.solution-image img:hover {
  transform: scale(1.03);
}

.solution-credentials {
  margin-top: 20px;
}

.credential-box {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 12px 15px;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0px 3px 8px rgba(0,0,0,0.08);
  transition: all 0.3s ease-in-out;
}

.credential-box:hover {
  background: #cc6600; 
  color: #fff;
}

.credential-box i {
  font-size: 18px;
  margin-right: 10px;
  color: #2D5016;
}

.credential-box:hover i {
  color: #fff;
}




.lead-section {
  padding: 80px 0;
  background: #2D5016;
}

.lead-section h2 {
  font-family: 'Montserrat', sans-serif;
  color: #F5F1E8;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.lead-section p {
  font-family: 'Open Sans', sans-serif;
  color: #F5F1E8;
  font-size: 16px;
  margin-bottom: 40px;
}

/* Icons */
.icon-grid {
  margin-bottom: 50px;
}
.icon-style {
  color: #CC6600;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}
.icon-style:hover {
  transform: scale(1.1);
  color: #F5F1E8;
}
.icon-grid p {
  color: #F5F1E8;
  font-size: 14px;
  margin-top: 5px;
}

/* Lists */
.lead-lists {
  margin: 50px 0;
}
.lead-lists h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #F5F1E8;
  border-left: 4px solid #CC6600;
  padding-left: 12px;
}
.lead-lists ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.lead-lists ul li {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  padding: 12px 18px;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  font-size: 17px;
  color: #F5F1E8;
  line-height: 1.5;
  transition: all 0.3s ease;
}
.lead-lists ul li:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}
.lead-lists ul li::before {
  content: "✔";
  color: #CC6600;
  font-weight: bold;
  margin-right: 10px;
  font-size: 18px;
}

/* Form */
.lead-form {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0px 4px 15px rgba(0,0,0,0.2);
}
.lead-form .form-control {
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 7px;
}
.lead-form button {
  width: 100%;
  background: #CC6600;
  color: #fff;
  font-size: 18px;
  padding: 14px;
  border: none;
  border-radius: 10px;
  transition: background 0.3s ease-in-out;
}
.lead-form button:hover {
  background: #b35400;
}
.form-note {
  margin-top: 15px;
  text-align: center;
  font-size: 14px;
  color: #333;
  font-style: italic;
}

/* Glass effect for form */
.glass-effect {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.transparent-input {
  background: rgba(255, 255, 255, 0.15) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  color: #fff !important;
  padding: 10px;
  border-radius: 8px;
  appearance: none;
}
.transparent-input option {
  background: rgba(30, 30, 30, 0.9);
  color: #fff;
}
.transparent-input::placeholder {
  color: #ddd !important;
}


/* pricing --------------------> */


.pricing-section {
  padding: 80px 0;
  background: #f5f5f5;
}

.pricing-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #2d5016;
}

.pricing-section p {
  font-size: 16px;
  color: #555;
  margin-bottom: 50px;
}

.pricing-card {
  margin-bottom: 30px;
}

.pricing-card .card {
  padding: 30px;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  color: #fff;
  background: linear-gradient(135deg, #cc6600, #2d5016); /* 🔥 SAME GRADIENT */
}

/* Hover effect */
.pricing-card .card:hover {
  transform: translateY(-6px);
  box-shadow: 0px 8px 20px rgba(0,0,0,0.25);
}

.pricing-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
}

.pricing-card .price {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.pricing-card ul li {
  font-size: 15px;
  color: #f0f0f0;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.pricing-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #fff;
  font-weight: bold;
}

/* Buttons */
.pricing-card .btn-custom {
  background: #fff;
  color: #2d5016;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 16px;
  border: none;
  transition: transform 0.3s ease, background 0.3s ease;
  width: 100%;
  font-weight: bold;
}

.pricing-card .btn-custom:hover {
  background: #f5f5f5;
  transform: scale(1.05);
}

.problem-section {
  background: #F5F1E8; 
  color: #fff;
  padding: 80px 0;
}
.card-res{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.problem-text h2 {
  font-size: 4rem;
  font-weight: 700;
  color: #ff9933; 
  margin-bottom: 20px;
}

.problem-text h3 {
  margin-top: 30px;
  font-size: 1.5rem;
  color: #333333;
}

.problem-text p {
  font-size: 2.1rem;
  line-height: 1.6;
  color: #333333;
}

.list-style ul {
  padding-left: 0;
  list-style: none;
}

.list-style li {
  margin-bottom: 12px;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #333333;
}

.list-style li .icon {
  color: #ff4d4d;
  font-size: 1.2rem;
}

.solution-image img {
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  transition: transform 0.4s ease;
}

.custom-image {
  height: 700px;
  width: 100%;
  object-fit: cover;
}

.solution-image img:hover {
  transform: scale(1.05);
}


.btn-custom {
  background: #ff9933;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  transition: all 0.3s ease;
  font-weight: 600;
}

.btn-custom:hover {
  background: #cc6600;
  transform: translateY(-3px);
}


@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  opacity: 0;
  animation: fadeUp 1s ease-out forwards;
}

.fade-up.delay-1 { animation-delay: 0.3s; }
.fade-up.delay-2 { animation-delay: 0.6s; }
.fade-up.delay-3 { animation-delay: 0.9s; }
.fade-up.delay-4 { animation-delay: 1.2s; }


.check-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px; 
}

.check-icon {
  color: green;
  font-size: 1.4rem; 
  margin-right: 10px;
  flex-shrink: 0; 
}

@media (max-width: 576px) {
  .lead-form button {
   font-size: 15px;
  }
}



/* Technology Section */
.technology-section {
  padding: 60px 0;
  background: #f9f9f9;
}

.technology-section .section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #222;
}

.technology-section .section-title p {
  font-size: 18px;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

/* Tech Box */
.tech-box {
  background: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  transition: all 0.3s ease-in-out;
  border: 1px solid #eee;
}

.tech-box:hover {
  transform: translateY(-8px);
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.12);
}

/* Icons */
.tech-box .icon {
  margin-bottom: 15px;
}

.tech-box .icon svg {
  width: 50px;
  height: 50px;
}

/* Paragraph */
.tech-box p {
  font-size: 16px;
  color: #333;
  line-height: 1.5;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .technology-section .section-title h2 {
    font-size: 26px;
  }

  .technology-section .section-title p {
    font-size: 16px;
  }

  .tech-box {
    padding: 20px 15px;
  }

  .tech-box p {
    font-size: 15px;
  }
  .custom-image {
    height: auto;
  }
}


.howitworks-section {
  padding: 80px 0;
  background: #f5f5f5;
}

.howitworks-section h2 {
  font-size: 32px;
  font-weight: 700;
  color: #2d5016;
  margin-bottom: 20px;
}

.howitworks-section p {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

.step-box {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0px 6px 18px rgba(0,0,0,0.1);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 30px;
  height: 100%;
}

.step-box:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 20px rgba(0,0,0,0.15);
}

.step-number {
  width: 50px;
  height: 50px;
  background: #2d5016;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.step-box h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.step-box p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.step-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.step-box ul li {
  font-size: 15px;
  color: #444;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.step-box ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #2d5016;
  font-weight: bold;
}

.benefits-box {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0px 6px 18px rgba(0,0,0,0.1);
  margin-bottom: 25px;
}

.benefits-box h3 {
  font-size: 22px;
  font-weight: 700;
  color: #2d5016;
  margin-bottom: 20px;
}

.benefits-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits-box ul li {
  font-size: 15px;
  color: #444;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.benefits-box ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #cc6600;
  font-weight: bold;
}

.benefits-box.alt {
  background: #2d5016;
  color: #fff;
}

.benefits-box.alt h3 {
  color: #fff;
}

.benefits-box.alt ul li {
  color: #eee;
}

.benefits-box.alt ul li::before {
  color: #f5f1e8;
}
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #2d5016, #cc6600);
  color: #fff;
}

.cta-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-section .subtitle {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-buttons {
  margin-bottom: 30px;
}

.cta-buttons .btn-main {
  display: inline-block;
  margin: 10px;
  padding: 14px 26px;
  background: #fff;
  color: #2d5016;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.cta-buttons .btn-main:hover {
  background: #f5f1e8;
  transform: translateY(-4px);
}

.guarantee {
  margin: 20px 0 40px;
  font-size: 14px;
  font-style: italic;
  opacity: 0.9;
}

.quick-card {
  background: #fff;
  color: #333;
  padding: 25px;
  border-radius: 12px;
  margin: 15px;
  box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s, box-shadow 0.3s;
}

.quick-card:hover {
  transform: translateY(-8px);
  box-shadow: 0px 10px 22px rgba(0, 0, 0, 0.2);
}

.quick-card h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #2d5016;
}

.quick-card .price {
  font-size: 18px;
  font-weight: 700;
  color: #cc6600;
  margin-bottom: 8px;
}

.quick-card .desc {
  font-size: 14px;
  margin-bottom: 15px;
}

.quick-card .btn-small {
  display: inline-block;
  padding: 10px 20px;
  background: #2d5016;
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.quick-card .btn-small:hover {
  background: #cc6600;
}


.final-reassurance {
  padding: 80px 20px;
  background: linear-gradient(135deg, #2d5016, #cc6600);
  color: #fff;
  text-align: center;
  border-radius: 16px;
  margin: 60px 0;
}

.final-reassurance h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.final-reassurance .subtitle {
  font-size: 18px;
  margin-bottom: 30px;
  
}

.final-reassurance .content {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: left;
}

.final-reassurance .point {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
  position: relative;
  padding-left: 24px;
}

.final-reassurance .point::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #f5f1e8;
  font-weight: bold;
}

.final-reassurance .closing {
  font-size: 18px;
  font-weight: 600;
  margin-top: 20px;
}















#transparent-section {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 120px 0 0 0 ;
  color: #fff;
}

#transparent-section .overlay {
  background: rgba(0, 0, 0, 0.65); /* black transparent overlay */
  padding: 60px 40px;
  border-radius: 12px;
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

#transparent-section .section-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #fff;
}

#transparent-section .section-subtitle {
  font-size: 18px;
  margin-bottom: 35px;
  color: rgba(255, 255, 255, 0.85);
}

.transparent-form {
  display: flex;
  flex-direction: column;
  gap: 20px;

}

.transparent-form .row {
  display: flex;
  gap: 15px;
}

.transparent-form .form-control {
  flex: 1;
  padding: 12px 15px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
}

.transparent-form .btn-custom {
  /* background: linear-gradient(90deg, #007bff, #00d4ff); */
  color: #fff;
  border: none;
  padding: 14px 20px;
  border-radius: 6px;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
}

.transparent-form .btn-custom:hover {
  background: linear-gradient(90deg, #CC6600, #b35400);
}

.auth-page {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
  padding: 100px 20px 40px; /* upar se 100px ka space */
  box-sizing: border-box;
}

.auth-container {
  display: flex;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  width: 900px;
  max-width: 95%;
  overflow: hidden;
}

.auth-left {
  flex: 1;
  padding: 2.5rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.auth-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #333;
}

.auth-subtitle {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  color: #666;
}

.auth-form .form-group {
  margin-bottom: 1rem;
}

.auth-form label {
  font-weight: 500;
  display: block;
  margin-bottom: 0.3rem;
  color: #444;
}

.auth-form input {
  width: 100%;
  padding: 0.75rem;
  border-radius: 8px;
  border: 1px solid #ddd;
  outline: none;
  transition: border 0.2s ease-in-out;
}

.auth-form input:focus {
  border-color: #4cafef;
}

.btn-custom {
  width: 100%;
  padding: 0.9rem;
  background: #CC6600;
  border: none;
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-custom:hover {
  background: #b35400;
}

.auth-text {
  margin-top: 1rem;
  font-size: 1.7rem;
  color: #666;
}

.auth-text a {
  color: #CC6600;
  font-weight: 600;
  text-decoration: none;
}

.auth-text a:hover {
  text-decoration: underline;
}

.auth-right {
  flex: 1;
  background: #f0f4f9;
}

.auth-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* Modal Overlay */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

/* Modal Box */
.modal-box {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  width: 400px;
  max-width: 90%;
  text-align: center;
  animation: fadeIn 0.3s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* Title */
.modal-box h2 {
  margin-bottom: 20px;
  color: rgb(204, 102, 0);
  font-weight: bold;
  font-size: 20px;
  text-transform: uppercase;
}

/* Buttons inside modal */
.modal-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-buttons button {
  padding: 12px;
  border-radius: 8px;
  background-color: rgb(204, 102, 0);
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.2s ease;
}

.modal-buttons button:hover {
  background-color: #a14d00;
}

/* Cancel button */
.modal-cancel {
  margin-top: 15px;
  background: transparent;
  border: none;
  color: gray;
  cursor: pointer;
  font-size: 14px;
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
.spinner {
  border: 4px solid #f3f3f3; 
  border-top: 4px solid #cc6600; 
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: 50px auto; /* center align */
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


.margin-b{
  margin-bottom: 15px;
}

.loader-spin {
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
