    *{
            margin:0;
            padding:0;
            box-sizing:border-box;
            font-family: Arial, sans-serif;
        }

.top-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 70px;
  width: auto;
  display: block;
  padding: 5px 10px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* subtle hover effect */
.logo img:hover {
  transform: scale(1.05);
  opacity: 0.9;
}
/* NAV */
.navbar {
  display: flex;
  align-items: center;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  color: #000;
  font-size: 18px;   /* increased size */
  font-weight: 600;  /* slightly bold */
}

/* HAMBURGER */
.menu-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    right: 0;
    top: 100%;
    background: #fff;
    padding: 10px;
    width: 200px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }

  .nav-links.active {
    display: flex;
  }
}


  .cbus-subtext {
   
    margin: 20px auto;
    font-size: 28px;
    line-height: 1.1;
    color: #0b4f8a;
    text-align: left;
    font-weight: 600;
    font-family: Arial, sans-serif;
  }

  @media (max-width: 600px) {
    .cbus-subtext {
      font-size: 22px;
      padding: 0 15px;
    }
  }

.hero-content{
    max-width:1050px;
    position:relative;
    z-index:2;
}
.hero-content p{
    font-size:clamp(17px,2vw,18px);
    line-height:1.4;
    margin-bottom:30px;
}

.hero-content h1{
    font-size:clamp(36px,5vw,58px);
    margin-bottom:10px;
    line-height:1.1;
}

/* HERO SECTION */
.hero {
  height: 70vh;
  background: url('images/header.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
}

/* dark overlay for readability */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
}

/* text sits above overlay */




/* CTA BUTTON */
.cta-button {
  display: inline-block;
  padding: 12px 25px;
  background: #1eb6ea;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.cta-button:hover {
  background: #000000;
   color: #fff;
   text-decoration: none;
}



.cbus-article{
    max-width: 1500px;
    margin: 40px auto;
    padding: 35px;
    font-family: Arial, sans-serif;
    color: #333;
}

.cbus-article h2{
    text-align: center;
    color: #2c3e50;
    margin-bottom: 35px;
    font-size: 28px;
}

/* MAIN FLEX LAYOUT */
.cbus-content{
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* TEXT */
.cbus-text{
    flex: 1;
    min-width: 0;
}

.cbus-text p{
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 22px;
}

/* IMAGE */
.cbus-image{
    flex: 1;
    max-width: 520px;
}

.cbus-image img{
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.18);
    display: block;
}

/* TABLET */
@media (max-width: 992px){

    .cbus-content{
        gap: 25px;
    }

    .cbus-text p{
        font-size: 18px;
    }

    .cbus-image{
        max-width: 420px;
    }
}

/* MOBILE */
@media (max-width: 768px){

    .cbus-content{
        flex-direction: column;
    }

    .cbus-image{
        max-width: 100%;
        width: 100%;
    }

    .cbus-article{
        padding: 20px;
    }

    .cbus-article h2{
        font-size: 24px;
    }

    .cbus-text p{
        font-size: 17px;
        line-height: 1.6;
    }
}

.site-footer{
  position:relative;
  padding:30px 20px;
  background:url('images/footer-bg.jpg') center/cover no-repeat;
  color:#fff;
}

.footer-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.65);
}

.footer-container{
  position:relative;
  max-width:1200px;
  margin:auto;
  display:flex;
  gap:60px;
  flex-wrap:wrap;
}

.footer-left{
  flex:1;
}

.footer-right{
  flex:1;
  background:#fff;
  color:#000;
  padding:40px;
  border-radius:6px;
}

.footer-left h3{
  font-size:24px;
  margin-bottom:10px;
}

.footer-left p{
  margin-bottom:30px;
  line-height:1.6;
}

.footer-right h2{
  text-align:center;
  margin-bottom:25px;
}

.footer-right input[type="text"],
.footer-right input[type="email"],
.footer-right textarea{
  width:100%;
  padding:14px;
  margin-bottom:15px;
  border:none;
  background:#f1f1f1;
}

.footer-right button{
  width:100%;
  padding:15px;
  background:#1eb6ea;
  border:none;
  color:#fff;
  font-size:18px;
  cursor:pointer;
}

/* RESPONSIVE */
@media (max-width:768px){
  .footer-container{
    flex-direction:column;
  }
}


/* =========================
   SERVICES HERO
========================= */

.services-hero{
    height:70vh;

    background:
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
    url('images/sevice-header.jpg') center center/cover no-repeat;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;

    color:#fff;

    position:relative;

    padding:20px;
}

/* SAME CONTENT STYLE AS HERO */

.services-hero .hero-content{
    max-width:1050px;
    position:relative;
    z-index:2;
}
.hero-content,
.services-hero h1{
    font-size:clamp(36px,5vw,55px);
    margin-bottom:20px;
    line-height:1.1;
}
.hero-content,
.services-hero p{
    font-size:clamp(17px,2vw,20px);
    line-height:1.8;
    margin-bottom:30px;
}

/* RESPONSIVE */



/* MAIN CONTAINER */

.services-container{
    width:90%;
    max-width:1300px;
    margin:auto;
    padding:80px 0;
}

/* TITLES */

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:clamp(28px,4vw,42px);
    color:#000000;
}

/* GRID */

.services-cards{
    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(320px,1fr));

    gap:30px;
}

/* CARD */

.services-card{
    background:#fff;
    border-radius:14px;
    padding:35px;
 box-shadow:0 5px 18px rgba(0,0,0,0.08);
 transition:0.3s ease;
}

.services-card:hover{
    transform:translateY(-6px);
}

.services-card h3{
    color:#000000;
    margin-bottom:18px;
    font-size:26px;
}

.services-card p{
    font-size:17px;
    line-height:1.7;
    margin-bottom:18px;
}

.services-card ul{
    padding-left:20px;
    margin-top:15px;
}

.services-card li{
    margin-bottom:12px;
    line-height:1.6;
}

/* HIGHLIGHT BOX */

.highlight{
    background:#eef7ff;

    border-left:5px solid #0b4f8a;

    padding:20px;

    margin-top:20px;

    border-radius:8px;

    line-height:1.7;
}

/* FAQ */

.faq{
    margin-top:80px;
}

details{
    background:#fff;
    margin-bottom:18px;
    padding:22px;
    border-radius:10px;
    box-shadow:0 3px 12px rgba(0,0,0,0.06);
}

summary{
    cursor:pointer;
    font-weight:700;
    color:#0b4f8a;
    font-size:18px;
}

details p{
    margin-top:15px;
    line-height:1.7;
}

/* CTA */

.services-cta{
    background:#0b4f8a;
    color:#fff;
    text-align:center;
    padding:55px 20px;
}

.services-cta h2{
    font-size:clamp(30px,3vw,44px);
    margin-bottom:10px;
}

.services-cta p{
    max-width:800px;
    margin:auto auto 35px;
    font-size:18px;
    line-height:1.7;
}

/* BUTTON */

.services-btn{
    display:inline-block;

    background:#fff;
    color:#0b4f8a;

    padding:15px 35px;

    border-radius:5px;

    text-decoration:none;

    font-weight:bold;

    transition:0.3s ease;
}

.services-btn:hover{
   
    transform:translateY(-2px);
     text-decoration:none;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width:768px){


    .services-hero{
        height:auto;
        min-height:65vh;
        padding:100px 20px;
    }

    .services-hero h1{
        line-height:1.3;
    }


    .services-container{
        width:92%;
        padding:60px 0;
    }

    .services-card{
        padding:25px;
    }

    .services-card h3{
        font-size:22px;
    }

    .services-card p,
    .services-card li{
        font-size:16px;
    }

    .services-cta{
        padding:70px 20px;
    }
}

@media (max-width:480px){

    .services-cards{
        grid-template-columns:1fr;
    }

    .services-card{
        padding:22px;
    }

    summary{
        font-size:16px;
    }
}


.contact-hero {
    height: 45vh;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
    padding: 20px;
}

.contact-hero .hero-content {
    max-width: 1100px;
    color: #151047;
}

.contact-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.contact-hero p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.hero-btn {
    display: inline-block;
    padding: 14px 30px;

    background: #1eb6ea;
    color: #fff;

    text-decoration: none;
    border-radius: 4px;

    transition: 0.3s ease;
    
}

.hero-btn:hover {
    background: #1eb6ea;
    text-decoration: none;
}

/* Mobile */
@media (max-width: 768px) {

    .contact-hero h1 {
        font-size: 2.4rem;
    }

    .contact-hero p {
        font-size: 1rem;
    }

}


div.services-feature {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin: 100px 0;
    padding: 16px;
    background: #f7f7f7;
    border-radius: 20px;
}

/* IMAGE */
.feature-image {
    flex: 1;
}

.feature-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

/* TEXT */
.feature-text {
    flex: 1;
}

.feature-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #222;
}

.feature-text p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #555;
}

/* BUTTON */
.feature-btn {
    display: inline-block;
    padding: 14px 28px;
    background: #111;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s ease;
}

.feature-btn:hover {
    background: #333;
}

/* MOBILE */
@media (max-width: 768px) {

    .services-feature {
        flex-direction: column !important;
        padding: 20px !important;
        margin: 60px 10px !important;
    }

    .feature-image,
    .feature-text {
        width: 100% !important;
        flex: unset !important;
    }

    .feature-image img {
        width: 100% !important;
        height: 340px;
        object-fit: cover;
        display: block;
    }

}


/* SUPPORT BANNER */
.support-banner {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 25px;
    border-radius: 16px;
    margin-bottom: 40px;
}

.support-icon {
    font-size: 32px;
    line-height: 1;
}

.support-content h3 {
    margin-bottom: 10px;
    color: #000;
}

.support-content p {
    margin-bottom: 15px;
    line-height: 1.6;
    color:#000;
}

.support-phone {
    display: inline-block;
    font-size: 1.4rem;
    font-weight: bold;
    color: #000;
    text-decoration: none;
    margin-bottom: 10px;
}

.support-phone:hover {
    opacity: 0.8;
}

.support-note {
    display: block;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}


/* FORM */
.cbus-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cbus-form input,
.cbus-form textarea,
.cbus-form select {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 16px;
    box-sizing: border-box;
}

.cbus-form textarea {
    min-height: 140px;
    resize: vertical;
}

.form-section {
    margin-top: 20px;
}

.form-section h3 {
    margin-bottom: 18px;
    color: #000;
}

.form-intro {
    line-height: 1.6;
    color: #000;
}

/* CHECKBOXES */
.checkbox-group {
    display: flex;
    flex-direction: column;
  
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
    color: #000;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.question-label {
    display: block;
    margin-bottom: 10px;
    color: #000;
}

.terms-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #000;
}

.terms-label input {
    width: auto;
}

/* BUTTON */
.cbus-form button {
    background: #111;
    color: #fcfcfc;
    border: none;
    padding: 16px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s ease;
    font-size: 16px;
}

.cbus-form button:hover {
    background: #333;
}


/* MOBILE */
@media (max-width: 768px) {

    .support-banner {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }

    .support-phone {
        font-size: 1.2rem;
    }

    .cbus-form {
        gap: 16px;
    }

    .cbus-form input,
    .cbus-form textarea,
    .cbus-form select {
        font-size: 16px;
    }

    .checkbox-group label {
        font-size: 14px;
    }

}

.cbus-form-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-footer{
    background:#363738;
    color:#fff;
    text-align:center;
    padding:55px 20px;
}