@media (max-width: 576px) {
    .contact-us-page form {
        padding-bottom: 10 !important;
    }
}


  .service-area {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 15px;
    font-family: 'Segoe UI', sans-serif;
  }

  .service-header {
    text-align: center;
    margin-bottom: 40px;
  }

  .service-header h2 {
    font-size: 32px;
    color: #0a2a43;
    font-weight: 700;
  }

  .service-header p {
    font-size: 16px;
    
    max-width: 700px;
    margin: 10px auto 0;
  }

  .service-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
  }

  @media (min-width: 768px) {
    .service-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  .service-box {
    background: #ffffff;
    border-radius: 14px;
    padding: 28px;
    border: 1px solid #d7dce3;
    box-shadow: 0 10px 28px rgba(0,0,0,0.07);
    transition: 0.3s;
    position: relative;
    overflow: hidden;
  }

  .service-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0,0,0,0.12);
    border-color: #1d4ed8;
  }

  .service-box h3 {
    font-size: 20px;
    color: #0a2a43;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    font-weight: 700;
  }

  .service-box h3 img {
    width: 34px;
    margin-right: 10px;
  }

  .service-box p {
    font-size: 17px;
    color: #4b5563;
    line-height: 1.7;
  }

  .service-box ul {
    margin: 12px 0;
    padding-left: 20px;
  }

  .service-box ul li {
    color: #333;
    margin-bottom: 6px;
    font-size: 15.5px;
    position: relative;
  }

  .service-box ul li::before {
    content: "✔";
    color: #1D71B9;
    font-weight: 700;
    margin-right: 6px;
  }

  .keywords {
    margin-top: 15px;
    padding-top: 12px;
    border-top: 1px solid #e5e7eb;
    font-size: 13.5px;
    color: #374151;
  }

  .keywords span {
    font-weight: 700;
  }

  /* Decorative corner circle */
  .service-box::after {
    content: "";
    position: absolute;
    right: -40px;
    top: -40px;
    width: 130px;
    height: 130px;
    background: #1d4ed8;
    border-radius: 50%;
    opacity: 0.06;
  }


/* ===============================
   GLOBAL SECTION WRAPPER
================================ */
.premium-section {
  max-width: 1180px;
  margin: 60px auto;
  padding: 0 18px;
  font-family: "Segoe UI", sans-serif;
}

/* ===============================
   CARD BLOCK STYLE
================================ */
.premium-card {
  background: linear-gradient(145deg, #ffffff, #f3f6fa);
  padding: 35px 40px;
  border-radius: 18px;
  margin-bottom: 35px;
  border-left: 8px solid #293B91;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}

.premium-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.14);
}

/* Decorative overlay circle */
.premium-card::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 160px;
  height: 160px;
  background: rgba(29, 78, 216, 0.10);
  border-radius: 50%;
}

/* ===============================
   HEADINGS
================================ */
.premium-card h2 {
  font-size: 30px;
  color: #0a2a43;
  margin-bottom: 18px;
  font-weight: 700;
  position: relative;
  padding-left: 45px;
}

.premium-card h2::before {
    font-size: 32px;
  color: #1d4ed8;
  position: absolute;
  left: 0;
  top: -3px;
}

/* ===============================
   TEXT + LISTS
================================ */
.premium-card p {
  font-size: 16.5px;
  color: #3c4753;
  line-height: 1.8;
  margin-bottom: 10px;
}

.premium-card ul {
  margin-top: 10px;
  padding-left: 25px;
}

.premium-card ul li {
  font-size: 15.5px;
  margin-bottom: 8px;
  position: relative;
}

.premium-card ul li::before {
  content: "✔";
  position: absolute;
  left: -25px;
  top: 0;
  color: #1D71B9;
  font-weight: 700;
}

/* Circle bullet for city list */
.city-list li::before {
  content: "•";
  font-size: 22px;
  color: #1d4ed8;
  top: -2px;
}

/* Contact Info */
.contact-block span {
  display: block;
  font-size: 16px;
  margin-bottom: 8px;
}

.contact-block strong {
  color: #0a2a43;
}

/* Responsive */
@media (max-width: 768px) {
  .premium-card h2 {
    font-size: 24px;
  }
  .premium-card {
    padding: 28px;
  }
}


/* Contact Section BG */
.contact-section {
    background: #293B91;
    padding: 70px 0;
    font-family: "Segoe UI", sans-serif;
    color: #ffffff;
    text-align: center;
}

/* Heading */
.contact-section h2 {
    font-size: 34px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

/* Sub text */
.contact-section p {
    font-size: 17px;
    max-width: 650px;
    margin: 0 auto 20px;
    line-height: 1.7;
    color: #e3e7ff;
}

/* Contact Info Wrapper */
.contact-items {

    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 20px;
}

/* Single Contact Item */
.contact-item {
    
    align-items: center;
    gap: 12px;
    font-size: 17px;
    color: white;
}

/* Fix Flaticon icon size & color */
.contact-item .ficon:before {
    font-size: 22px !important;
    color: #ffffff !important;
    line-height: 1;
}


/* Strong Styling */
.contact-item strong {
    font-weight: 700;
    color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-section h2 {
        font-size: 26px;
    }
    .contact-section p {
        font-size: 15px;
        padding: 0 10px;
    }
    .contact-items {
        gap: 20px;
    }
    .contact-item {
        font-size: 15px;
    }
}


.geo-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 6px;
    border-left: 5px solid #1D71B9;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.geo-title {
    font-size: 28px;
    font-weight: 600;
    color: #1D71B9;
    margin-bottom: 10px;
}
.geo-subtitle {
    font-size: 16px;
    font-weight: bold;
    color: #222;
    margin-bottom: 20px;
}
.geo-box p {
    font-size: 17px;
    
    line-height: 1.7;
}
.geo-list {
    margin-top: 15px;
    padding-left: 0;
}
.geo-list li {
    list-style: none;
    padding-left: 30px;
    margin-bottom: 8px;
    position: relative;
    font-size: 17px;
}

.geo-list i {
    
    color: #1D71B9;
    font-size: 19px;
    position: absolute;
    left: 0;
    top: 2px;
}


/* Unique Section Styling */
.esa-section {
    padding: 50px 0;
    background: #f9fcff;
}
.esa-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 6px;
    border-left: 5px solid #1D71B9;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.esa-title {
    font-size: 28px;
    font-weight: 600;
    color: #1D71B9;
    margin-bottom: 10px;
}
.esa-subtitle {
    font-size: 17px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}
.esa-box p {
    font-size: 17px;
    
    line-height: 1.7;
}
.esa-list {
    padding-left: 0;
    margin-top: 15px;
}
.esa-list li {
    list-style: none;
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    font-size: 17px;
    color: #444;
}
.esa-list li:before {
    content: "\f058"; /* fa-check-circle */
    font-family: FontAwesome;
    position: absolute;
    left: 0;
    top: 1px;
    color: #1D71B9;
    font-size: 20px;
}



.energy-section {
    padding: 50px 0;
    background: #f7fbff;
}
.energy-card {
    background: #ffffff;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    overflow: hidden;
    margin-bottom: 30px;
}
.energy-card img {
    width: 100%;
    height: auto;
}
.energy-content {
    padding: 25px;
}
.energy-title {
    font-size: 24px;
    font-weight: 600;
    color:#1D71B9;
    margin-bottom: 10px;
}
.energy-text {
    font-size: 17px;
    line-height: 1.7;
   
}


.qc-section {
    padding: 50px 0;
    background: #f3f5f8;
}
.qc-card {
    background: #fff;
    padding: 30px;
    border-radius: 6px;
    border-left: 5px solid #1D71B9;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}
.qc-title {
    font-size: 28px;
    font-weight: 600;
    color: #1D71B9;
}
.qc-subtitle {
    font-size: 17px;
    font-weight: bold;

    margin-bottom: 15px;
}
.qc-text {
    font-size: 17px;
    
    line-height: 1.7;
}
.qc-list {
    padding-left: 0;
    margin-top: 10px;
}
.qc-list li {
    list-style: none;
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
  
}
.qc-list li:before {
    content: "\f058"; /* FontAwesome Check Circle */
    font-family: FontAwesome;
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 20px;
    color: #1D71B9;
}

/* Bottom Box */
.qc-bottom-box {
    background: #ffffff;
    padding: 25px;
    border-radius: 6px;
    border-left: 5px solid #1D71B9;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.qc-bottom-title {
    font-size: 28px;
    font-weight: bold;
    color:#1D71B9;
    margin-bottom: 15px;
}


            /* Responsive Modal Width */
            .custom-width {
            width: 35%;
            }
            @media (max-width: 991px) {
            .custom-width {
            width: 55% !important;
            }
            }
            @media (max-width: 768px) {
            .custom-width {
            width: 70% !important;
            }
            }
            @media (max-width: 480px) {
            .custom-width {
            width: 90% !important;
            margin: 0 auto;
            }
            #contactModal .modal-body {
            padding: 15px !important;
            }
            #contactModal h4.modal-title {
            font-size: 18px !important;
            }
            #contactModal .btn-primary {
            font-size: 16px !important;
            padding: 8px !important;
            }
            #contactModal .form-control {
            font-size: 14px !important;
            }
            }
            /* Modal UI Improvements */
            .custom-modal {
            border-radius: 12px !important;
            border: none !important;
            box-shadow: 0 0 25px rgba(0,0,0,0.25);
            padding: 5px 10px 20px 10px;
            }
            #contactModal .modal-header {
            background: #1D71B9;
            color: #fff;
            border-top-left-radius: 12px;
            border-top-right-radius: 12px;
            padding: 20px;
            text-align: center;
            }
            #contactModal h4.modal-title {
            font-size: 22px;
            font-weight: 600;
            margin: 0;
            color: white;
            }
            #contactModal .modal-body {
            padding: 25px;
            }
            /* Input fields styling */
            #contactModal .form-control {
            border-radius: 8px;
            box-shadow: none;
            border: 1px solid #ccc;
            }
            #contactModal .form-control:focus {
            border-color: #0056d6;
            box-shadow: 0 0 5px rgba(0,86,214,0.3);
            }
            /* Buttons */
            #contactModal .btn-primary {
            background: #0056d6;
            border-color: #0056d6;
            font-size: 18px;
            padding: 10px;
            border-radius: 8px;
            }
            #contactModal label {
            font-weight: 600;
            margin-bottom: 6px;
            }
            #contactModal label i {
            color: #1D71B9;
            margin-right: 6px;
            }

            /* Fixed Call Button */
            .call-fixed-btn {
            position: fixed;
            left: 15px;
            bottom: 20px;
            width: 55px;
            height: 55px;
            background: #28a745;
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px; /* Your icon size */
            z-index: 999999;
            box-shadow: 0 4px 8px rgba(0,0,0,0.3);
            text-decoration: none;
            }
            /* Wave Animation */
            .call-fixed-btn::before {
            content: "";
            position: absolute;
            width: 55px;
            height: 55px;
            border-radius: 50%;
            background: rgba(40, 167, 69, 0.4);
            animation: wave 1.5s infinite ease-out;
            z-index: -1;
            }
            @keyframes wave {
            0% {
            transform: scale(1);
            opacity: 0.8;
            }
            100% {
            transform: scale(2.5);
            opacity: 0;
            }
            }
         