*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial;
}

/* TOP BAR */
.rh-topbar{
  background:#2b5f86;
  color:#fff;
  text-align:center;
  padding:8px;
  font-size:14px;
}

/* HEADER */
.rh-header{
  background:#fff;
  box-shadow:0 2px 10px rgba(0,0,0,0.05);
  position:relative;
 
}

.rh-container{
  width:90%;
  margin:auto;
}

/* 🔥 FIX 1 */
.rh-flex{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:80px;
}

/* LOGO */
.rh-logo img{
  height:70px;
}

/* 🔥 FIX 2 (only direct ul) */
.rh-nav > ul{
  display:flex;
  gap:30px;
  list-style:none;
}

.rh-nav ul li{
  position:relative; padding-top: 10px;
}

.rh-nav ul li a{
  text-decoration:none;

  font-weight:600; font-size:17px; padding-top:5px;     text-decoration: none;
    color: #333;
    font-weight: 500;
}

/* DROPDOWN */
.rh-dropdown{
  position:absolute;
  top:100%;
  left:0;
  display:none;
  background:#fff;
  min-width:220px;
  box-shadow:0 10px 25px rgba(0,0,0,0.1);
  border-radius:10px;
  padding:10px 0;
}

/* 🔥 IMPORTANT FIX */
.rh-dropdown{
  display:none;
}

.rh-dropdown-parent.active .rh-dropdown{
  display:block; z-index:9999 !important;
}

.rh-dropdown li{
  display:block;
  width:100%;
}

.rh-dropdown li a{
  display:block;
  padding:10px 15px;
  white-space:nowrap; /* text break fix */
}

.rh-dropdown li a:hover{
  background:#f5f5f5;
}

/* CALL BUTTON */
.rh-call a{
  background:#2b5f86;
  color:#fff;
  padding:10px 18px;
  border-radius:30px;
  text-decoration:none;
}

/* MOBILE */
.rh-toggle{
  display:none;
  font-size:26px;
  cursor:pointer;
}

/* MOBILE MENU */
.rh-mobile{
  position:fixed;
  top:0;
  right:-100%;
  width:280px;
  height:100%;
  background:#111;
  color:#fff;
  padding:20px;
  transition:0.4s;
  z-index:99999;
}

.rh-mobile.active{
  right:0;
}

.rh-mobile-top{
  display:flex;
  justify-content:space-between;
  margin-bottom:20px;
}

.rh-mobile ul{
  list-style:none;
}

.rh-mobile ul li{
  margin-bottom:15px;
}

.rh-mobile ul li a{
  color:#fff;
  text-decoration:none;
}

/* MOBILE DROPDOWN */
.rh-mobile-drop ul{
  display:none;
  padding-left:15px;
}

.rh-mobile-drop.active ul{
  display:block;
}

/* RESPONSIVE */
@media(max-width:992px){

  .rh-nav{
    display:none;
  }

  .rh-toggle{
    display:block;
  }

}



.about-section {
  background: #f8fbff;
}

.about-section h2 {
  font-size: 34px;
}

.about-section img {
  max-height: 400px;
  object-fit: cover;
}










.about-clean {
  background: #f9fbff;
}

/* heading line */
.line {
  width: 60px;
  height: 3px;
  background: #2b5f86;
  margin: 10px auto 0;
  border-radius: 10px;
}

/* main content box */
.about-box {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.05);
  line-height: 1.7;
  color: #555;
}

/* expertise card */
.section-card {
  background: #fff;
  padding: 25px;
  border-left: 4px solid #2b5f86;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* list style */
.list-style {
  list-style: none;
  padding: 0;
}

.list-style li {
  margin-bottom: 10px;
  padding-left: 22px;
  position: relative;
}

.list-style li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #2b5f86;
  font-weight: bold;
}

/* vision mission */
.vm-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
  height: 100%;
}

/* final box */
.final-box {
  background: #2b5f86;
  color: #fff;
  padding: 25px;
  border-radius: 12px;
  font-weight: 500;
}

/* responsive */
@media(max-width:768px){
  .about-box,
  .section-card,
  .vm-card{
    padding:20px;
  }
}





.sk-contact-section {
  background: linear-gradient(135deg, #f8fbff, #eef5ff);
  padding: 80px 0;
}

/* cards */
.sk-contact-info,
.sk-contact-form {
  background: #fff;
  padding: 35px;
  border-radius: 15px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.08);
}

/* heading */
.sk-contact-info h5 {
  margin-bottom: 25px;
  font-weight: 600;
}

/* items */
.sk-info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

/* icon */
.sk-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: linear-gradient(45deg, #0d6efd, #0a58ca);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-top: 3px;
}

/* text */
.sk-info-item span {
  font-size: 13px;
  color: #222;
  display: block;
}

.sk-info-item a {
  font-weight: 500;
  color: #222;
  text-decoration: none;
  display: block;
}

.sk-info-item p {
  margin: 0;
  color: #222;
  font-size: 14px;
}

/* form */
.sk-contact-form .form-control {
  border-radius: 10px;
  padding: 14px;
  border: 1px solid #ddd;
}

.sk-contact-form .form-control:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 2px rgba(13,110,253,0.1);
}

/* button */
.sk-btn {
  background: linear-gradient(45deg, #0d6efd, #0a58ca);
  border: none;
  padding: 14px;
  border-radius: 50px;
  color: #fff !important;
  font-weight: 500;
}

.sk-btn:hover {
  background: linear-gradient(45deg, #0a58ca, #084298);
}

/* responsive */
@media(max-width:768px){
  .sk-contact-info,
  .sk-contact-form {
    padding: 25px;
  }
}







.breadcrumb-section{
position:relative;
background:url('../images/breadcrumb.webp') center/cover no-repeat;
padding:120px 0;
color:#fff;
}

/* DARK OVERLAY */

.breadcrumb-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.5);
}

/* CONTENT */

.breadcrumb-content{
position:relative;
z-index:2;
}

/* TITLE */

.breadcrumb-content h1{
font-size:42px;
font-weight:700;
margin-bottom:10px;
}

/* LINKS */

.breadcrumb-content nav{
font-size:15px;
}

.breadcrumb-content nav a{
color:#fff;
text-decoration:none;
opacity:0.8;
}

.breadcrumb-content nav .active{
font-weight:600;
opacity:1; color:#fff;
}
