* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

.img-row {
  display: flex;
  justify-content: center;
}

.first {
  width: 350px;
  height: 150px;
  background-color: rgb(117, 11, 11);
}

.rounded-circle {
  width: 230px;
  height: 230px;
  object-fit: cover;
  border: 3px solid #003366;
}

.hero img {
  max-width: 100%;
  margin: 0;
  display: block;
}

/* 1footer */
.footer {
  width: 100%;
  font-family: Arial, sans-serif;
  background-color: #1a1a1a;
  /*color: white;*/
  text-align: center;
  padding: 15px 10px;
  font-size: 14px;
  position: relative;
}

.footer p {
  margin: 0;
}

/* 1 a.footer responsive */
@media (max-width:768px) {
  .footer {
    font-size: 13px;
    padding: 12px 8px;
  }
}

/* *** */

hr {
  width: 80%;
  border: 0;
  height: 1px;
  margin-top: 0px;
  background-color: #000;
}

/* Navbar */
.nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 15px;
  letter-spacing: 2px;
  font-size: 10px;
  text-align: center;
   background-color: #0b72a5;  
}

.navbar {
  text-align: center;
  /* background-color: #f7f0f0; */
}

.navbar a {
  display: inline-block;
  position: relative;
  text-align: center;
  color: #000;
  text-decoration: none;
  font-size: 15px;
  overflow: hidden;
  top: 0px;
  padding-bottom: 5px;
  padding-top: 0px;
  padding-left: 30px;
  padding-right: 30px;
  /* background-color: #f7f0f0;  */

}

.navbar a:after {
  content: "";
  position: absolute;
  background-color: #c00;
  height: 2px;
  width: 0%;
  transform: translateX(-50%);
  left: 50%;
  bottom: 0;
  transition: 0.35s ease;
}

.navbar a:hover:after {
  width: 100%;
}

.nav-link active:hover {
  color: rgb(12, 98, 151);
}

.nav-link:hover {
  color: rgb(6, 86, 173);
}


/* *** */
.section-title {
  text-align: center;
  margin: 40px 0 20px;
  font-weight: 600;
}

.circle-img {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.circle-img:hover {
  transform: scale(1.05);
}

.info-section {
  margin-bottom: 50px;
}


h4 {
  font-weight: 600;
  margin-top: 20px;
}

/* header */
body {
  background: #f5f5f5;
}

.clavent-section {
  padding: 0px 15px;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.clavent-box {
  background-color: linear-gradient(90deg, #2c5aa0, #3b73c9);
  /*color: #fff;*/
  text-align: center;
  padding: 40px 20px;
  border-radius: 8px;
}

.clavent-box h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.clavent-box p {
  font-size: 16px;
  opacity: 0.9;
}

/* ✅ Mobile Responsive */
@media (max-width: 768px) {
  .clavent-box h1 {
    font-size: 26px;
  }

  .clavent-box p {
    font-size: 14px;
  }
}

/* nav section */
/*.header {*/
/*  height: 70px;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  padding: 0 20px;*/
  /* border-bottom: 1px solid #e0e0e0; */
/*  background: #f6f2f2ff;*/
/*}*/

/*.header-left {*/
/*  display: flex;*/
/*  align-items: center;*/
/*  gap: 15px;*/
/*}*/

/*.menu {*/
/*  font-size: 26px;*/
/*  cursor: pointer;*/
/*}*/

/*.logo {*/
/*  display: flex;*/
/*  align-items: center;*/
/*  gap: 10px;*/
/*}*/

/*.logo img {*/
/*  height: 80px;*/
/*}*/

/*.region {*/
/*  font-size: 14px;*/
/*  color: #555;*/
/*}*/

/* Menu button */
/*.menu-btn {*/
/*  font-size: 28px;*/
/*  padding: 15px;*/
/*  cursor: pointer;*/
/*  display: inline-block;*/
/*}*/

/* Sidebar */
/*.sidebar {*/
/*  height: 100%;*/
/*  width: 0;*/
/*  position: fixed;*/
/*  top: 0;*/
/*  left: 0;*/
/*  background-color: #111;*/
/*  overflow-x: hidden;*/
/*  transition: 0.3s;*/
/*  padding-top: 60px;*/
/*}*/

/* Sidebar links */
/*.sidebar a {*/
/*  padding: 12px 25px;*/
/*  text-decoration: none;*/
/*  font-size: 18px;*/
/*  color: #fff;*/
/*  display: block;*/
/*}*/

/*.sidebar a:hover {*/
/*  background-color: #575757;*/
/*}*/

/* Close button */
/*.close-btn {*/
/*  position: absolute;*/
/*  top: 15px;*/
/*  right: 20px;*/
/*  font-size: 30px;*/
/*  cursor: pointer;*/
/*  color: #fff;*/
/*}*/

/* nav section end */