
/* ================= GLOBAL ================= */
body{
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  margin:0;
  padding:0;
  color:#222;
}

/* ================= HERO SECTION ================= */
.hero-section{
  background:#e8f2f9;
  padding:70px 40px;
}
.hero-left h1{
  font-size:42px;
  font-weight:800;
  line-height:1.25;
  margin-bottom:15px;
}
.hero-left h1 span{
  color:#ff7a18;
}
.hero-left p{
  font-size:16px;
  margin:20px 0;
  max-width:540px;
  color:#333;
}
.hero-list{
  list-style:none;
  padding:0;
  margin-bottom:25px;
}
.hero-list li{
  font-size:16px;
  margin-bottom:10px;
}
.hero-list i{
  color:#1a73e8;
  margin-right:8px;
}
.hero-btn{
  display:inline-block;
  background:#ff7a18;
  color:#fff;
  padding:14px 30px;
  border-radius:8px;
  text-decoration:none;
  font-weight:600;
}
.hero-btn:hover{
  background:#ff6600;
  color:#fff;
}
.hero-right img{
  width:100%;
  max-width:720px;
}

/* ================= SERVICES SECTION ================= */
.services-section{
  padding:70px 0;
  background:#ffffff;
}
.section-title h2{
  font-size:34px;
  font-weight:800;
  margin-bottom:10px;
}
.section-title p{
  color:#666;
  max-width:650px;
  margin:0 auto 40px;
  font-size:15px;
}
.service-box{
  background:#f7f9fc;
  padding:30px 22px;
  border-radius:10px;
  text-align:center;
  height:100%;
  transition:all .3s ease;
}
.service-box i{
  font-size:40px;
  color:#ff7a18;
  margin-bottom:15px;
}
.service-box h5{
  font-weight:700;
  margin-bottom:10px;
}
.service-box p{
  font-size:14px;
  color:#555;
}
.service-box:hover{
  transform:translateY(-6px);
  box-shadow:0 10px 25px rgba(0,0,0,.08);
}

/* ================= RESPONSIVE ================= */
@media(max-width:992px){
  .hero-section{
    padding:60px 25px;
  }
}
@media(max-width:768px){
  .hero-left h1{
    font-size:32px;
  }
  .hero-section{
    padding:50px 20px;
  }
}
/* ================= CSC STYLE FOOTER ================= */
.main-footer{
  position:relative;
  background:#03162b;
  color:#ffffff;
  padding:90px 40px 25px;
  overflow:hidden;
}

/* Wave Background Layer */
.main-footer::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:url("../images/footer-wave.svg") center top / cover no-repeat;
  opacity:0.5;
  z-index:1;
}

/* Content above wave */
.footer-top,
.footer-bottom{
  position:relative;
  z-index:2;
}

/* Headings */
.main-footer h5{
  font-weight:700;
  margin-bottom:20px;
}

/* Links */
.main-footer ul{
  list-style:none;
  padding:0;
}
.main-footer ul li{
  margin-bottom:12px;
}
.main-footer ul li a{
  color:#cfe4ff;
  font-size:14px;
  text-decoration:none;
}
.main-footer ul li a:hover{
  text-decoration:underline;
}

/* Social */
.footer-social{
  margin-top:15px;
}
.footer-social span{
  margin-right:8px;
}
.footer-social a{
  color:#ffffff;
  font-size:18px;
  margin-right:10px;
}

/* Bottom Strip */
.footer-bottom{
  margin-top:55px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,0.18);
  font-size:13px;
  background:rgba(0,0,0,0.25);
}

/* Responsive */
@media(max-width:768px){
  .main-footer{
    padding:70px 20px 20px;
  }
}
/* ================= RUNNING STRIP (RIGHT TO LEFT) ================= */
.welcome-kit-strip{
  background:#083d77;
  overflow:hidden;
}

.welcome-marquee{
  width:100%;
  white-space:nowrap;
}

.welcome-track-rtl{
  display:inline-flex;
  gap:60px;
  padding:10px 0;
  animation: marqueeRTL 18s linear infinite;
}

.welcome-track-rtl span{
  display:inline-block;
}

.welcome-kit-strip a{
  color:#ffffff;
  text-decoration:none;
  font-weight:600;
  font-size:15px;
}

.welcome-kit-strip a:hover{
  text-decoration:underline;
}

.welcome-kit-strip .sep{
  color:#ffffff;
  margin:0 10px;
  font-weight:600;
}

/* Hover pause (CSC style usability) */
.welcome-kit-strip:hover .welcome-track-rtl{
  animation-play-state: paused;
}

/* RIGHT → LEFT keyframes */
@keyframes marqueeRTL{
  0%{
    transform: translateX(100%);
  }
  100%{
    transform: translateX(-50%);
  }
}

/* Responsive */
@media(max-width:768px){
  .welcome-kit-strip a{
    font-size:14px;
  }
}
/* ================= OUR SERVICES ================= */
.our-services{
  background:#fff5e8;
  padding:70px 0;
}
.services-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:25px;
}
.services-head h2{
  font-size:36px;
  font-weight:800;
}
.services-head h2 span{
  color:#ff7a18;
}

/* Main Tabs */
.services-tabs{
  display:flex;
  gap:10px;
}
.tab-btn{
  border:1px solid #ff7a18;
  background:#ffe6c9;
  padding:10px 18px;
  border-radius:10px 10px 0 0;
  font-weight:600;
  cursor:pointer;
}
.tab-btn.active{
  background:#ff7a18;
  color:#fff;
}

/* Sub Tabs */
.sub-tabs{
  display:flex;
  gap:15px;
  margin:25px 0;
}
.sub-btn{
  padding:10px 22px;
  border-radius:25px;
  border:1px solid #ff7a18;
  background:#fff;
  font-weight:600;
  cursor:pointer;
}
.sub-btn.active{
  background:#ff7a18;
  color:#fff;
}

/* Grid */
.services-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(180px,1fr));
  gap:22px;
}
.service-card{
  background:#fff;
  border-radius:12px;
  padding:25px 15px;
  text-align:center;
  box-shadow:0 6px 15px rgba(0,0,0,.08);
  transition:.25s ease;
}
.service-card img{
  max-width:70px;
  margin-bottom:10px;
}
.service-card p{
  font-weight:600;
  font-size:15px;
}
.service-card:hover{
  transform:translateY(-5px);
}
.service-card.highlight{
  border:1.5px solid #ff7a18;
  background:#fffaf3;
}

/* Tabs visibility */
.tab-content,
.sub-content{display:none;}
.tab-content.active,
.sub-content.active{display:block;}
/* ================= NEWS & UPDATES ================= */
.news-updates{
  padding:70px 0;
  background:#ffffff;
}

.section-title h2{
  font-size:34px;
  font-weight:800;
}
.section-title span{
  color:#ff7a18;
}

/* Card */
.news-card{
  background:#fff;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 10px 25px rgba(0,0,0,.08);
  position:relative;
  height:100%;
}

.news-card img{
  width:100%;
  height:200px;
  object-fit:cover;
}

/* Badge */
.news-badge{
  position:absolute;
  top:15px;
  left:15px;
  padding:6px 14px;
  border-radius:20px;
  font-size:13px;
  font-weight:600;
  color:#fff;
}
.news-badge.green{ background:#2ca66f; }
.news-badge.red{ background:#e74c3c; }

/* Body */
.news-body{
  padding:18px;
}
.news-body h5{
  font-weight:700;
  margin-bottom:8px;
}
.news-body p{
  font-size:14px;
  color:#555;
}

/* Footer */
.news-footer{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-top:15px;
  font-size:13px;
  color:#777;
}

.news-btn{
  background:#f3f3f3;
  padding:8px 14px;
  border-radius:8px;
  text-decoration:none;
  color:#000;
  font-weight:600;
}
.news-btn:hover{
  background:#ff7a18;
  color:#fff;
}

/* View All */
.view-all-btn{
  background:#ff7a18;
  color:#fff;
  padding:12px 26px;
  border-radius:8px;
  text-decoration:none;
  font-weight:600;
}
.view-all-btn:hover{
  background:#ff6600;
  color:#fff;
}
/* ================= DUAL BANNER SECTION ================= */
.dual-banner-section{
  padding:60px 0;
  background:#ffffff;
}

.info-banner{
  background:#fff;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.info-banner img{
  width:100%;
  height:auto;
  display:block;
}
