

/* HEADER */
.header {
    background: #ffffff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 22px;
    font-weight: bold;
    color: #000;
}

.nav a {
    text-decoration: none;
    color: #000;
    font-weight: 600;
}

.service-btn {
    background: #ff0055;
    color: #fff;
    padding: 10px 22px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
}

/* HERO */
.hero {
    position: relative;
    height: 85vh;
    background: url("images/header.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.hero-content {
    position: relative;
    max-width: 650px;
    padding-left: 80px;
    color: #fff;
}

.sub-heading {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.hero-content h1 {
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: #f5b300;
}

.description {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.hero-btn {
    background: #ff0055;
    padding: 14px 30px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-content {
        padding-left: 30px;
    }

    .hero-content h1 {
        font-size: 42px;
    }
}



.service-section {
  padding: 80px 0;
  background: #ffffff;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.service-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
}

.service-content {
  flex: 1;
}

.service-content h2 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #0b1c39;
}

.service-desc {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
}

.service-features {
  margin-bottom: 30px;
}

.feature-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.feature-item .icon {
  font-size: 26px;
  color: #ff1744;
  line-height: 1;
}

.feature-item h4 {
  font-size: 18px;
  margin-bottom: 5px;
  color: #0b1c39;
}

.feature-item p {
  font-size: 14px;
  color: #666;
}

.btn-contact {
  display: inline-block;
  background: #ff1744;
  color: #fff;
  padding: 14px 30px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-contact:hover {
  background: #e0143b;
}

.service-image {
  flex: 1;
}

.service-image img {
  width: 100%;
  border-radius: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .service-wrapper {
    flex-direction: column;
  }

  .service-content h2 {
    font-size: 28px;
  }
}

.range-section {
  background: #f7f7fb;
  padding: 90px 0;
}

.range-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.range-image {
  flex: 1;
}

.range-image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.range-content {
  flex: 1;
}

.range-content h2 {
  font-size: 32px;
  font-weight: 800;
  color: #0b1c39;
  margin-bottom: 20px;
}

.range-content p {
  font-size: 15.5px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 18px;
}

.btn-range {
  display: inline-block;
  margin-top: 10px;
  background: #ff1744;
  color: #fff;
  padding: 14px 34px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-range:hover {
  background: #e0143b;
}

/* Responsive */
@media (max-width: 992px) {
  .range-container {
    flex-direction: column;
    text-align: left;
  }

  .range-content h2 {
    font-size: 28px;
  }
}


  * { box-sizing: border-box; margin: 0; padding: 0; font-family: Arial, Helvetica, sans-serif; }

    .why-choose-us {
      padding: 60px 8%;
      background: #ffffff;
    }

    .why-grid {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 40px;
      align-items: center;
    }

    .why-content h2 {
      font-size: 32px;
      margin-bottom: 15px;
      color: #000;
    }

    .why-content p.main-text {
      font-size: 15px;
      line-height: 1.7;
      color: #555;
      margin-bottom: 30px;
      max-width: 620px;
    }

    .features {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 25px;
    }

    .feature-box {
      background: #f6f6f8;
      padding: 22px 20px;
      border-radius: 12px;
      min-height: 150px;
    }

    .feature-icon {
      width: 36px;
      height: 36px;
      background: #ff2f7d;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 18px;
      margin-bottom: 12px;
    }

    .feature-box h4 {
      font-size: 16px;
      margin-bottom: 8px;
      color: #000;
    }

    .feature-box p {
      font-size: 14px;
      line-height: 1.6;
      color: #555;
    }

    .why-image img {
      width: 100%;
      border-radius: 10px;
      object-fit: cover;
    }

    @media (max-width: 991px) {
      .why-grid { grid-template-columns: 1fr; }
      .why-image { order: -1; }
    }

    @media (max-width: 600px) {
      .features { grid-template-columns: 1fr; }
      .why-content h2 { font-size: 26px; }
    }
    
    
    * { margin: 0; padding: 0; box-sizing: border-box; font-family: Arial, Helvetica, sans-serif; }

    .services {
      padding: 70px 8%;
      background: #f6f6f9;
      text-align: center;
    }

    .services h2 {
      font-size: 36px;
      font-weight: 700;
      margin-bottom: 12px;
      color: #1f2933;
    }

    .services p.subtitle {
      max-width: 780px;
      margin: 0 auto 50px;
      font-size: 15px;
      color: #6b7280;
      line-height: 1.7;
    }

    .service-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 25px;
    }

    .service-card {
      background: #ffffff;
      padding: 30px 22px;
      border-radius: 12px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .service-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 18px 35px rgba(0,0,0,0.12);
    }

    .service-icon {
      width: 64px;
      height: 64px;
      margin: 0 auto 18px;
      background: #eef2ff;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 30px;
    }

    .service-card h4 {
      font-size: 18px;
      margin-bottom: 12px;
      color: #111827;
    }

    .service-card p {
      font-size: 14px;
      line-height: 1.7;
      color: #6b7280;
    }

    @media (max-width: 992px) {
      .service-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 576px) {
      .service-grid { grid-template-columns: 1fr; }
      .services h2 { font-size: 28px; }
    }
    
      * { margin: 0; padding: 0; box-sizing: border-box; font-family: Arial, Helvetica, sans-serif; }

    .support-section {
      background: #f5f5f8;
      padding: 60px 8%;
    }

    .support-box {
      background: #ffffff;
      border-radius: 14px;
      padding: 35px;
    }

    .support-box h2 {
      font-size: 28px;
      margin-bottom: 25px;
      color: #111827;
    }

    .support-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 25px;
    }

    .support-card {
      background: #ffffff;
      border-radius: 12px;
      padding: 25px 30px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.08);
      display: flex;
      gap: 18px;
      align-items: flex-start;
    }

    .support-icon {
      width: 44px;
      height: 44px;
      border-radius: 10px;
      background: #ffe4ec;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      color: #ff2f7d;
      flex-shrink: 0;
    }

    .support-card h4 {
      font-size: 18px;
      margin-bottom: 6px;
      color: #111827;
    }

    .support-card p {
      font-size: 15px;
      color: #6b7280;
      line-height: 1.6;
    }

    /* Footer */
    .footer {
      background: #ffffff;
      padding: 60px 8% 30px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
      margin-bottom: 40px;
    }

    .footer h4 {
      font-size: 18px;
      margin-bottom: 18px;
      color: #111827;
    }

    .footer ul {
      list-style: none;
    }

    .footer ul li {
      font-size: 14px;
      color: #6b7280;
      margin-bottom: 12px;
    }

    .footer ul li a {
      color: inherit;
      text-decoration: none;
    }

    .footer ul li a:hover {
      color: #ff2f7d;
    }

    .footer-bottom {
      border-top: 1px solid #e5e7eb;
      padding-top: 20px;
      font-size: 13px;
      color: #9ca3af;
      text-align: center;
      line-height: 1.6;
    }

    @media (max-width: 768px) {
      .support-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
    }
    
    *{margin:0;padding:0;box-sizing:border-box;font-family:Arial,Helvetica,sans-serif}

    .hero-section{
      position:relative;
      min-height:85vh;
      background:url('../images/s1.jpg') center/cover no-repeat;
      display:flex;
      align-items:center;
      padding:0 8%;
      color:#fff;
    }

    .hero-section::before{
      content:'';
      position:absolute;
      inset:0;
      background:rgba(0,0,0,0.55);
    }

    .hero-content{
      position:relative;
      max-width:700px;
    }

    .hero-content h1{
      font-size:52px;
      line-height:1.2;
      margin-bottom:18px;
      font-weight:700;
    }

    .hero-content h1 span{
      color:#ff6a2d;
    }

    .hero-content p{
      font-size:17px;
      line-height:1.7;
      margin-bottom:30px;
      color:#eaeaea;
    }

    .hero-content p span{
      color:#3b82f6;
      font-weight:600;
    }

    .hero-actions{
      display:flex;
      gap:15px;
      flex-wrap:wrap;
    }

    .btn-call{
      background:#ff6a2d;
      color:#fff;
      padding:14px 28px;
      border-radius:6px;
      text-decoration:none;
      font-size:16px;
      font-weight:600;
      transition:background .3s ease;
    }

    .btn-call:hover{background:#e85c22}

    .btn-outline{
      border:2px solid #fff;
      color:#fff;
      padding:12px 26px;
      border-radius:6px;
      text-decoration:none;
      font-size:16px;
      font-weight:600;
      transition:all .3s ease;
    }

    .btn-outline:hover{
      background:#fff;
      color:#000;
    }

    @media(max-width:992px){
      .hero-content h1{font-size:42px}
    }

    @media(max-width:600px){
      .hero-section{min-height:75vh;padding:0 6%}
      .hero-content h1{font-size:32px}
    }
    
    *{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial, Helvetica, sans-serif;
}

header{
  width:100%;
  background:#fff;
  box-shadow:0 2px 10px rgba(0,0,0,0.08);
  position:sticky;
  top:0;
  z-index:1000;
}

.header-container{
  max-width:1200px;
  margin:auto;
  padding:12px 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.logo{
  display:flex;
  align-items:center;
  gap:10px;
}

.logo img{
  height:45px;
}

nav{
  display:flex;
  gap:28px;
}

nav a{
  text-decoration:none;
  color:#1a1a1a;
  font-weight:600;
  font-size:15px;
}

nav a:hover{
  color:#ff5a1f;
}

.header-right{
  display:flex;
  align-items:center;
  gap:18px;
}

.toll{
  color:#0b63ce;
  font-weight:700;
  text-decoration:none;
  font-size:15px;
}

.menu-toggle{
  display:none;
  font-size:26px;
  cursor:pointer;
}

/* Mobile */
@media(max-width:900px){
  nav{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#fff;
    flex-direction:column;
    gap:0;
    display:none;
    box-shadow:0 10px 20px rgba(0,0,0,0.1);
  }

  nav a{
    padding:14px 20px;
    border-bottom:1px solid #eee;
  }

  nav.active{
    display:flex;
  }

  .menu-toggle{
    display:block;
  }

  .header-right{
    gap:12px;
  }
}

#callme {
    position: fixed;
    right: 20px;
    bottom: 100px;
    width: 70px;
    height: 70px;
    cursor: pointer;
    z-index: 99990;
}
#callme #callmeMain {
    -moz-border-radius: 50% !important;
    -webkit-border-radius: 50% !important;
    border-radius: 50% !important;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    background-color: rgb(207,8,8);
    width: 70px;
    height: 70px;
    -webkit-animation: zcwmini2 1.5s 0s ease-out infinite;
    -moz-animation: zcwmini2 1.5s 0s ease-out infinite;
    animation: zcwmini2 1.5s 0s ease-out infinite;
}
#callme #callmeMain:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url(../images/cal.png);
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-animation: zcwphone2 1.5s linear infinite;
    -moz-animation: zcwphone2 1.5s linear infinite;
    animation: zcwphone2 1.5s linear infinite;
}

@-webkit-keyframes zcwphone {
    0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
    50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
    100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
}
@-moz-keyframes zcwphone {
    0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
    50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
    100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
}
@keyframes zcwphone {
    0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
    50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
    100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
}
@-webkit-keyframes zcwphone2 {
    0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
    50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
    100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
}
@-moz-keyframes zcwphone2 {
    0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
    50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
    100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
}
@keyframes zcwphone2 {
    0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
    50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
    100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
}
@-webkit-keyframes zcwmini {
    0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
    10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
    100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
}
@-moz-keyframes zcwmini {
    0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
    10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
    100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
}
@keyframes zcwmini {
    0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
    10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
    100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
}
@-webkit-keyframes zcwmini2 {
    0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
    10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
    100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
}
@-moz-keyframes zcwmini2 {
    0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
    10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
    100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
}
@keyframes zcwmini2 {
    0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
    10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
    100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
}

#social_side_links {
    position: fixed;
  bottom: 73px;
    left: -21px;
  padding:0px;
  list-style: none;
  z-index: 99;
}

#social_side_links li a {display: block;}

#social_side_links li a img {
    display: block;
    max-width:100%;
  padding:7px;
  -webkit-transition:  background .2s ease-in-out;
  -moz-transition:  background .2s ease-in-out;
  -o-transition:  background .2s ease-in-out;
  transition:  background .2s ease-in-out;
}

#social_side_links li a:hover img {background: rgba(0, 0, 0, .2);}