* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  color: #111827;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

section {
  padding: 90px 0;
}

.section-tag {
  color: #2563eb;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.section-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 15px;
}

.section-desc {
  color: #6b7280;
  max-width: 650px;
  margin: auto;
}

/* HEADER */
.header-section {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 999;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

}

/* Logo */
.logo {
  font-size: 28px;
  font-weight: 800;
  color: #2563eb;
  margin-right: 40px;
  flex-shrink: 0;
}

/* Desktop Menu */
.desktop-menu {
  margin: 0 auto;
}

.nav-menu {
    gap: 40px;
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
}

.nav-menu li a{
    color: #0f172a;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
}

.nav-menu li a:hover{
    color: #2563eb;
}

/* RIGHT */
.desktop-right{
    flex-shrink: 0;
}

.phone-box {
  font-weight: 600;
  font-size: 14px;
  color: #111827;
  white-space: nowrap;
}

.phone-box a{
    color: #111827;
}
.phone-box a:hover{
  color: #2563eb;
}
/* Button */
.quote-btn {
  background: #2563eb;
  color: #fff;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 600;
  transition: 0.3s;
  text-decoration: none;
  white-space: nowrap;
}

.quote-btn:hover {
  background: #1d4ed8;
  color: #fff;
}

/* Mobile */
.mobile-toggle {
  border: none;
  background: transparent;
  font-size: 30px;
  display: none;
}

.mobile-call-btn {
  width: 42px;
  height: 42px;
  background: #2563eb;
  color: #fff;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-decoration: none;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  padding-top: 20px;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.mobile-menu li {
  margin-bottom: 14px;
}

.mobile-menu a {
  color: #111827;
  font-weight: 600;
  text-decoration: none;
}
/* HERO SECTION */
.hero-section{
    padding: 70px 0;
    min-height: calc(100vh - 90px);
    display: flex;
    align-items: center;
    background: linear-gradient(135deg,#0f172a,#1d4ed8);
    overflow: hidden;
}

/* LEFT CONTENT */
.hero-title{
    font-size: 72px;
    line-height: 1.1;
    font-weight: 800;
    color: #fff;
    margin: 25px 0;
}

.hero-title span{
    color: #38bdf8;
}

.hero-desc{
    font-size: 22px;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
    max-width: 650px;
    margin-bottom: 35px;
}

/* BADGE */
.hero-badge{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 12px 22px;
    border-radius: 50px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}

/* BUTTONS */
.hero-btns{
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.call-btn{
    height: 62px;
    padding: 0 30px;
    background: #2563eb;
    color: #fff;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    transition: .3s;
}

.call-btn:hover{
    background: #1d4ed8;
    color: #fff;
}

.learn-btn{
    height: 62px;
    padding: 0 30px;
    background: #fff;
    color: #0f172a;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
}

/* FEATURES */
.hero-features{
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.feature-item{
    color: rgba(255,255,255,0.9);
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-item i{
    color: #22c55e;
}

/* FORM BOX */
.quote-form-box{
    background: #fff;
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.18);
}

.quote-form-box h3{
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}

.quote-form-box p{
    color: #64748b;
    font-size: 16px;
    margin-bottom: 28px;
}

/* FORM */
.quote-form-box label{
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
}

.quote-form-box .form-control,
.quote-form-box .form-select{
    height: 44px;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    box-shadow: none;
    padding: 0 16px;
    font-size: 15px;
}

.quote-form-box textarea.form-control{
    height: auto;
    padding-top: 15px;
    resize: none;
}

.quote-form-box .form-control:focus,
.quote-form-box .form-select:focus{
    border-color: #2563eb;
    box-shadow: none;
}

/* SUBMIT */
.submit-btn{
    width: 100%;
    height: 56px;
    border: none;
    border-radius: 12px;
    background: #2563eb;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    transition: .3s;
}

.submit-btn:hover{
    background: #1d4ed8;
}

/* SERVICES SECTION */
.services-section {
  padding: 100px 0;
  background: #ffffff;
}

/* Heading */
.services-heading {
  margin-bottom: 70px;
}

.section-subtitle {
  display: inline-block;
  color: #2563eb;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.section-title {
  font-size: 58px;
  line-height: 1.1;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 18px;
}

.section-description {
  font-size: 18px;
  color: #64748b;
  max-width: 700px;
  margin: auto;
  line-height: 1.7;
}

/* Card */
.service-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 40px;
  height: 100%;
  transition: 0.35s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

/* Top Area */
.service-top {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 22px;
}

/* Icon */
.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  flex-shrink: 0;
}

/* Title */
.service-card h3 {
  font-size: 24px;
  line-height: 1.3;
  font-weight: 500;
  color: #0f172a;
  margin-bottom: 0;
}

/* Text */
.service-card p {
  color: #475569;
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 30px;
}

/* List */
.service-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #334155;
  font-size: 17px;
  margin-bottom: 18px;
}

.service-list li span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #eff6ff;
  color: #2563eb;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Link */
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #2563eb;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.service-link:hover {
  gap: 14px;
  color: #1d4ed8;
}

/* Bottom Button */
.all-services-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 30px;
  border-radius: 12px;
  background: #2563eb;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.all-services-btn:hover {
  background: #1d4ed8;
  color: #fff;
}

/* WHY CHOOSE */

.why-card {
  background: #fff;
  border-radius: 18px;
  padding: 35px;
  text-align: center;
  border: 1px solid #e5e7eb;
  height: 100%;
}

.why-icon {
  width: 70px;
  height: 70px;
  background: #2563eb;
  color: #fff;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin: auto auto 25px;
}

.why-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.why-card p {
  color: #6b7280;
}

/* BRANDS */

.brand-box {
    height: 220px;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px;
    text-align: center;
    transition: .3s;
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

.brand-box:hover{
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* BRAND IMAGE */
.brand-box img{
    width: 100%;
    max-width: 130px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 25px;
    display: block;
}

/* BRAND NAME */
.brand-box h4{
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0;
}

/* STATS */

/* STATS SECTION */
.stats-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
}

/* Heading */
.stats-heading {
  margin-bottom: 70px;
}

.stats-heading h2 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 15px;
}

.stats-heading p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
}

/* Stat Box */
.stat-box {
  text-align: center;
}

.stat-box h3 {
  font-size: 40px;
  line-height: 1;
  font-weight: 800;
  margin-bottom: 18px;
  color: #fff;
}

.stat-box span {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
}

/* CTA */

.cta-section {
  text-align: center;
}

.cta-section h2 {
  font-size: 54px;
  font-weight: 800;
  margin-bottom: 20px;
}

.cta-section p {
  color: #6b7280;
  margin-bottom: 35px;
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.green-btn {
  background: #16a34a;
  color: #fff;
  padding: 15px 28px;
  border-radius: 10px;
  font-weight: 600;
}

/* FOOTER */

.footer-section {
  background: #08142d;
  color: rgba(255, 255, 255, 0.8);
  padding-top: 80px;
}

.footer-title {
  color: #fff;
  font-weight: 700;
  margin-bottom: 25px;
  font-size: 20px;
}

.footer-links {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 60px;
  padding: 25px 0;
}
/* Service Page * /
/* HERO */
.service-hero-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
}

.service-hero-content h1 {
  font-size: 54px;
  font-weight: 800;
  margin-bottom: 20px;
}

.service-hero-content p {
  font-size: 20px;
  max-width: 700px;
  margin: auto;
  color: rgba(255, 255, 255, 0.9);
}

/* PROBLEMS */
.problems-section {
  padding: 90px 0;
  background: #f8fafc;
}

.problem-card {
  background: #fff;
  border-radius: 18px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.problem-icon {
  width: 55px;
  height: 55px;
  border-radius: 14px;
  background: #fee2e2;
  color: #ef4444;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 22px;
}

.problem-card h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.problem-card p {
  color: #64748b;
  line-height: 1.8;
  font-size: 15px;
}
.service-cta-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
}

.service-cta-content h2 {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 20px;
}

.service-cta-content p {
  font-size: 18px;
  margin-bottom: 35px;
  color: rgba(255, 255, 255, 0.9);
}

.white-btn {
  background: #fff;
  color: #2563eb;
  padding: 15px 28px;
  border-radius: 10px;
  font-weight: 700;
}

.white-outline-btn {
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  padding: 15px 28px;
  border-radius: 10px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
/* About page */
/* STORY SECTION */
.story-section {
  padding: 100px 0;
  background: #fff;
}

/* Image Box */
.story-image-box {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.story-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay */
.story-overlay {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 40px;
  background: linear-gradient(
    to top,
    rgba(29, 78, 216, 0.85),
    rgba(29, 78, 216, 0.05)
  );
  color: #fff;
}

.story-overlay h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 4px;
}

.story-overlay span {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
}

/* Content */
.story-content {
  padding-left: 20px;
}

.story-subtitle {
  display: inline-block;
  color: #2563eb;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 18px;
}

.story-content h2 {
  font-size: 34px;
  line-height: 1.2;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 35px;
}

.story-content p {
  font-size: 16px;
  line-height: 1.4;
  color: #475569;
  margin-bottom: 28px;
}

/* TRUSTED SECTION */
.trusted-section {
  padding: 100px 0;
  background: #f8fafc;
}

/* Heading */
.trusted-heading {
  margin-bottom: 60px;
}

.trusted-subtitle {
  display: inline-block;
  color: #2563eb;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 18px;
}

.trusted-heading h2 {
  font-size: 56px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0;
}

/* Card */
.trusted-card {
  background: #fff;
  border-radius: 24px;
  padding: 45px 30px;
  text-align: center;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
}

.trusted-card:hover {
  transform: translateY(-6px);
}

/* Icon */
.trusted-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  font-size: 40px;
}

.blue-bg {
  background: #dbeafe;
  color: #2563eb;
}

.green-bg {
  background: #dcfce7;
  color: #16a34a;
}

.purple-bg {
  background: #f3e8ff;
  color: #9333ea;
}

.orange-bg {
  background: #ffedd5;
  color: #ea580c;
}

/* Number */
.trusted-card h3 {
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 18px;
}
.contact .trusted-card h3{
 font-size:  21px;
}
.blue-text {
  color: #2563eb;
}

.green-text {
  color: #16a34a;
}

.purple-text {
  color: #9333ea;
}

.orange-text {
  color: #ea580c;
}

/* Text */
.trusted-card p {
  font-size: 16px;
  font-weight: 600;
  color: #475569;
  margin-bottom: 0;
}
.trusted-card .trusted-icon{
    font-size: 24px;
}

/* SERVICE AREA SECTION */
.service-area-section{
    padding: 100px 0;
    background: #fff;
}

/* Heading */
.service-area-heading{
    max-width: 1050px;
    margin: 0 auto 60px;
}

.service-area-subtitle{
    display: inline-block;
    color: #2563eb;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 18px;
}

.service-area-heading h2{
    font-size: 56px;
    line-height: 1.2;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 28px;
}

.service-area-heading p{
    font-size: 18px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 0;
}

/* Box */
.service-area-box{
    background: #eff6ff;
    border-radius: 34px;
    padding: 55px 50px;
    max-width: 1150px;
    margin: auto;
}

/* Item */
.area-item h4{
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.area-item span{
    font-size: 14px;
    line-height: 1.2;
    color: #475569;
}

/* Bottom */
.service-area-bottom{
    margin-top: 45px;
}

.service-area-bottom p{
    font-size: 24px;
    color: #475569;
    margin-bottom: 0;
}

/* contact page */
/* CONTACT SECTION */
.contact-section{
    padding: 90px 0;
    background: #fff;
}

/* FORM BOX */
.contact-form-box{
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.contact-form-box h2{
    font-size: 42px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 35px;
}

/* Labels */
.contact-form-box label{
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 10px;
}

/* Inputs */
.contact-form-box .form-control,
.contact-form-box .form-select{
    height: 58px;
    border-radius: 12px;
    border: 1px solid #cbd5e1;
    box-shadow: none;
    font-size: 16px;
    padding: 0 18px;
}

.contact-form-box textarea.form-control{
    height: auto;
    padding-top: 18px;
    resize: none;
}

.contact-form-box .form-control:focus,
.contact-form-box .form-select:focus{
    border-color: #2563eb;
    box-shadow: none;
}

/* Button */
.contact-btn{
    width: 100%;
    height: 60px;
    border: none;
    border-radius: 12px;
    background: #2563eb;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    transition: 0.3s;
}

.contact-btn:hover{
    background: #1d4ed8;
}

/* INFO CARD */
.info-card{
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    padding: 32px;
    margin-bottom: 25px;
}

.info-card h3{
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #0f172a;
}

/* Info Item */
.info-item{
    display: flex;
    gap: 18px;
    margin-bottom: 28px;
}

.info-icon{
    color: #2563eb;
    font-size: 26px;
    flex-shrink: 0;
}

.info-content h4{
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0f172a;
}

.info-content a{
    color: #2563eb;
    text-decoration: none;
    font-size: 18px;
}

.info-content p{
    color: #475569;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 0;
}

/* Hours */
.hours-item{
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 17px;
    color: #334155;
}

.hours-item strong{
    color: #0f172a;
}

.hours-divider{
    height: 1px;
    background: #e5e7eb;
    margin: 25px 0;
}

.emergency-text{
    color: #16a34a;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 0;
}

/* WHY CARD */
.why-card-contact{
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 22px;
    padding: 32px;
}

.why-card-contact h3{
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #0f172a;
}

.why-card-contact ul{
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.why-card-contact li{
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: #334155;
    font-size: 17px;
}

.why-card-contact li i{
    color: #2563eb;
    font-size: 18px;
}
/* Page Privacy */
/* PRIVACY POLICY */
.privacy-policy-section{
    padding: 90px 0;
    background: #f8fafc;
}

/* Box */
.privacy-policy-box{
    background: #fff;
    border-radius: 24px;
    padding: 50px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Header */
.privacy-header{
    margin-bottom: 50px;
    text-align: center;
}

.privacy-subtitle{
    display: inline-block;
    color: #2563eb;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 18px;
}

.privacy-header h1{
    font-size: 34px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 15px;
}

.privacy-header p{
    font-size: 18px;
    color: #64748b;
}

/* Item */
.privacy-item{
    margin-bottom: 45px;
}

.privacy-item:last-child{
    margin-bottom: 0;
}

.privacy-item h2{
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
}

.privacy-item h3{
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
    margin-top: 25px;
}

.privacy-item p{
    font-size: 18px;
    line-height: 1.9;
    color: #475569;
    margin-bottom: 18px;
}

/* List */
.privacy-item ul{
    padding-left: 22px;
    margin-bottom: 0;
}

.privacy-item ul li{
    font-size: 18px;
    line-height: 1.9;
    color: #475569;
    margin-bottom: 12px;
}

/* Contact */
.privacy-contact{
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 18px;
    padding: 25px;
    margin-top: 20px;
}

.privacy-contact p{
    margin-bottom: 10px;
}

.privacy-contact a{
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}
/* COMMON BUTTON TRANSITION */
.quote-btn,
.call-btn,
.learn-btn,
.submit-btn,
.all-services-btn,
.white-btn,
.white-outline-btn,
.green-btn,
.contact-btn{
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
}

/* Hover Lift */
.quote-btn:hover,
.call-btn:hover,
.learn-btn:hover,
.submit-btn:hover,
.all-services-btn:hover,
.white-btn:hover,
.white-outline-btn:hover,
.green-btn:hover,
.contact-btn:hover{
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(37,99,235,0.22);
}

/* Shine Effect */
.quote-btn::before,
.call-btn::before,
.learn-btn::before,
.submit-btn::before,
.all-services-btn::before,
.white-btn::before,
.white-outline-btn::before,
.green-btn::before,
.contact-btn::before{
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.22);
    transform: skewX(-25deg);
    transition: 0.6s;
}

/* Hover Shine */
.quote-btn:hover::before,
.call-btn:hover::before,
.learn-btn:hover::before,
.submit-btn:hover::before,
.all-services-btn:hover::before,
.white-btn:hover::before,
.white-outline-btn:hover::before,
.green-btn:hover::before,
.contact-btn:hover::before{
    left: 120%;
}

/* ICON ANIMATION */
.call-btn i,
.service-link i,
.white-outline-btn i,
.all-services-btn i{
    transition: transform 0.3s ease;
}

.call-btn:hover i,
.service-link:hover i,
.white-outline-btn:hover i,
.all-services-btn:hover i{
    transform: translateX(4px);
}

/* SERVICE LINK */
.service-link{
    transition: 0.3s;
}

.service-link:hover{
    color: #1d4ed8;
    gap: 12px;
}

/* Placeholder Color */
.form-control::placeholder,
.form-select{
    color: #94a3b8 !important;
    opacity: 1;
}

/* Textarea Placeholder */
textarea::placeholder{
    color: #94a3b8 !important;
    opacity: 1;
}

/* Select First Option */
.form-select option{
    color: #0f172a;
}

.form-select option:first-child{
    color: #94a3b8;
}

/* RESPONSIVE */
/* LARGE SCREEN HEIGHT FIX */
@media(min-width:1200px){

    .hero-section{
        min-height: 920px;
    }

    .quote-form-box{
        max-width: 500px;
        margin-left: auto;
    }
}
/* 
@media (max-width: 1199px) {
  .section-title {
    font-size: 48px;
  }

  .service-card h3 {
    font-size: 28px;
  }

  .service-card p {
    font-size: 17px;
  }
  .stats-heading h2 {
    font-size: 36px;
  }

  .stats-heading p {
    font-size: 17px;
  }

  .stat-box h3 {
    font-size: 44px;
  }

  .stat-box span {
    font-size: 17px;
  }
  .story-content h2 {
    font-size: 52px;
  }

  .story-content p {
    font-size: 20px;
  }

  .story-overlay h3 {
    font-size: 34px;
  }

  .story-overlay span {
    font-size: 22px;
  }
       .trusted-heading h2{
        font-size: 46px;
    }

    .trusted-card h3{
        font-size: 52px;
    }

    .trusted-card p{
        font-size: 22px;
    }
         .service-area-heading h2{
        font-size: 52px;
    }

    .service-area-heading p{
        font-size: 20px;
    }

    .area-item h4{
        font-size: 28px;
    }

    .area-item span{
        font-size: 20px;
    }

    .service-area-bottom p{
        font-size: 20px;
    }
} */

@media (max-width: 991px) {
    .desktop-menu,
    .desktop-right{
        display: none !important;
    }


  .mobile-toggle,
  .mobile-call-btn {
    display: flex;
  }

  .header-inner {
    gap: 15px;
  }

   .hero-section{
        min-height: auto;
        padding: 80px 0;
    }

    .hero-title{
        font-size: 54px;
    }

    .hero-desc{
        font-size: 18px;
    }

    .quote-form-box{
        margin-top: 20px;
    }
  .section-title {
    font-size: 40px;
  }
  .services-section {
    padding: 80px 0;
  }

  .section-title {
    font-size: 40px;
  }

  .section-description {
    font-size: 18px;
  }

  .story-section {
    padding: 80px 0;
  }

  .story-content {
    padding-left: 0;
  }

  .story-content h2 {
    font-size: 42px;
    margin-bottom: 25px;
  }

  .story-content p {
    font-size: 18px;
    line-height: 1.8;
  }
      .contact-form-box,
    .info-card,
    .why-card-contact{
        padding: 30px;
    }

    .contact-form-box h2{
        font-size: 34px;
    }

    .info-card h3,
    .why-card-contact h3{
        font-size: 22px;
    }
    .privacy-policy-box{
        padding: 40px;
    }

    .privacy-header h1{
        font-size: 44px;
    }

    .privacy-item h2{
        font-size: 28px;
    }

    .privacy-item p,
    .privacy-item ul li{
        font-size: 16px;
    }
}
@media(min-width:992px){

    .mobile-call-btn,
    .mobile-toggle{
        display: none !important;
    }
}

@media (max-width: 767px) {
  section {
    padding: 70px 0;
  }

  .hero-section{
        padding: 60px 0;
    }

    .hero-title{
        font-size: 38px;
        margin: 20px 0;
    }

    .hero-desc{
        font-size: 16px;
        margin-bottom: 25px;
    }

    .hero-badge{
        font-size: 13px;
        padding: 10px 16px;
    }

    .hero-btns{
        gap: 12px;
        margin-bottom: 25px;
    }

    .call-btn,
    .learn-btn{
        width: 100%;
        justify-content: center;
        height: 54px;
        font-size: 15px;
    }

    .hero-features{
        gap: 14px;
    }

    .feature-item{
        font-size: 14px;
    }

    .quote-form-box{
        padding: 24px;
        border-radius: 18px;
    }

    .quote-form-box h3{
        font-size: 28px;
    }

  .section-title {
    font-size: 32px;
  }
  .services-heading {
    margin-bottom: 50px;
  }

  .section-title {
    font-size: 34px;
  }

  .section-description {
    font-size: 16px;
  }

  .service-card {
    padding: 28px;
  }

  .service-card h3 {
    font-size: 24px;
  }

  .service-card p {
    font-size: 15px;
    line-height: 1.7;
  }

  .service-list li {
    font-size: 15px;
  }

  .all-services-btn {
    width: 100%;
    justify-content: center;
  }

  /* STATS SECTION */
  .stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
  }

  /* Heading */
  .stats-heading {
    margin-bottom: 50px;
  }

  .stats-heading h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.2;
  }

  .stats-heading p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
  }

  /* Stat Box */
  .stat-box {
    text-align: center;
  }

  .stat-box h3 {
    font-size: 52px;
    line-height: 1;
    font-weight: 800;
    margin-bottom: 12px;
    color: #fff;
  }

  .stat-box span {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
  }

  .cta-section h2 {
    font-size: 38px;
  }

  .stat-box h2 {
    font-size: 42px;
  }

     .brand-box{
        height: 170px;
        padding: 18px;
        border-radius: 18px;
    }

    .brand-box img{
        max-width: 95px;
        height: 50px;
        margin-bottom: 18px;
    }

    .brand-box h4{
        font-size: 18px;
    }

  /* service page */
  .service-hero-section,
  .services-section,
  .problems-section,
  .service-cta-section {
    padding: 70px 0;
  }

  .service-hero-content h1,
  .service-cta-content h2 {
    font-size: 34px;
  }
  .problem-card {
    padding: 25px;
  }
  .cta-btns {
    flex-direction: column;
  }
  .white-outline-btn {
    width: 100%;
    justify-content: center;
  }
  .story-section {
    padding: 65px 0;
  }

  .story-image-box {
    border-radius: 22px;
  }

  .story-overlay {
    padding: 25px;
  }

  .story-overlay h3 {
    font-size: 28px;
  }

  .story-overlay span {
    font-size: 18px;
  }

  .story-content h2 {
    font-size: 34px;
  }

  .story-content p {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .trusted-section {
    padding: 70px 0;
  }

  .trusted-heading {
    margin-bottom: 40px;
  }

  .trusted-heading h2 {
    font-size: 34px;
  }

  .trusted-card {
    padding: 35px 25px;
  }

  .trusted-icon {
    width: 75px;
    height: 75px;
    font-size: 32px;
    margin-bottom: 22px;
  }

  .trusted-card h3 {
    font-size: 42px;
  }

  .trusted-card p {
    font-size: 18px;
  }

    .service-area-section{
        padding: 70px 0;
    }

    .service-area-heading{
        margin-bottom: 40px;
    }

    .service-area-heading h2{
        font-size: 36px;
        margin-bottom: 20px;
    }

    .service-area-heading p{
        font-size: 16px;
        line-height: 1.7;
    }

    .service-area-box{
        padding: 30px 25px;
        border-radius: 24px;
    }

    .area-item h4{
        font-size: 22px;
        margin-bottom: 10px;
    }

    .area-item span{
        font-size: 16px;
    }

    .service-area-bottom{
        margin-top: 30px;
    }

    .service-area-bottom p{
        font-size: 16px;
    }

    .contact-section{
        padding: 70px 0;
    }

    .contact-form-box,
    .info-card,
    .why-card-contact{
        padding: 24px;
        border-radius: 18px;
    }

    .contact-form-box h2{
        font-size: 28px;
        margin-bottom: 25px;
    }

    .contact-form-box .form-control,
    .contact-form-box .form-select{
        height: 52px;
        font-size: 15px;
    }

    .contact-btn{
        height: 54px;
        font-size: 16px;
    }

    .info-card h3,
    .why-card-contact h3{
        font-size: 20px;
    }

    .info-content h4{
        font-size: 17px;
    }

    .info-content a,
    .info-content p,
    .hours-item,
    .why-card-contact li{
        font-size: 15px;
    }

    .hours-item{
        flex-direction: column;
        gap: 5px;
    }

    .emergency-text{
        font-size: 16px;
    }
     .privacy-policy-section{
        padding: 70px 0;
    }

    .privacy-policy-box{
        padding: 25px;
        border-radius: 18px;
    }

    .privacy-header{
        margin-bottom: 35px;
    }

    .privacy-header h1{
        font-size: 34px;
    }

    .privacy-header p{
        font-size: 15px;
    }

    .privacy-item{
        margin-bottom: 35px;
    }

    .privacy-item h2{
        font-size: 22px;
        margin-bottom: 15px;
    }

    .privacy-item h3{
        font-size: 18px;
    }

    .privacy-item p,
    .privacy-item ul li{
        font-size: 15px;
        line-height: 1.8;
    }

    .privacy-contact{
        padding: 18px;
    }
}
