/* General Styles */
body {
  font: 400 15px/1.8 Lato, sans-serif;
  color: #555; /* Darker text for better contrast */
  margin: 0;
  padding: 0;
  background-color: #f0f8ff; /* Light blue background for the whole page */
}

.btn {
  display: inline-block; 
  padding: 16px; 
  border-radius: 8px;
  color: white;
  text-decoration: none;
  font-family: sans-serif;    
  font-size: 16px;
}

.btncolor {
  background-color: #4a90e2; /* Light blue color for buttons */
}

.heading {
  color: #4a90e2; /* Light blue color for headings */
}

/* Skill Bars */
.skillbar {
  position: relative;
  display: block;
  margin-bottom: 15px;
  width: 100%;
  background: #e1f5fe; /* Light blue background for skill bars */
  height: 35px;
  border-radius: 3px;
  transition: 0.4s linear;
}

.skillbar-title {
  position: absolute;
  top: 0;
  left: 0;
  width: 110px;
  font-weight: bold;
  font-size: 13px;
  color: #ffffff;
  background: #4a90e2; /* Light blue for the skill bar titles */
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}

.skillbar-title span {
  display: block;
  background: rgba(0, 0, 0, 0.1);
  padding: 0 20px;
  height: 35px;
  line-height: 35px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}

.skillbar-bar {
  height: 35px;
  width: 0;
  background: #4a90e2; /* Light blue for the skill bar fill */
  border-radius: 3px;
}

.skill-bar-percent {
  position: absolute;
  right: 10px;
  top: 0;
  font-size: 11px;
  height: 35px;
  line-height: 35px;
  color: rgba(0, 0, 0, 0.4);
}

/* Features */
.feature {
  color: #4a90e2; /* Light blue color for feature icons */
  font-size: 150px;
}

/* Horizontal Rule */
hr.solid {
  border-top: 3px solid #4a90e2; /* Light blue color for horizontal rules */
  width: 10%; 
  margin-bottom: 5%;
}

/* Font Family */
.lobsterfont {
  font-family: 'Lobster', cursive;
}

/* Navbar */
.navbar {
  border-bottom: 2px solid #e4e4e4;
  font-family: Montserrat, sans-serif;
  margin-bottom: 0;
  background-color: #ffffff;
  font-size: 11px !important;
  letter-spacing: 4px;
  opacity: 0.9;
}

.navbar li a, .navbar .navbar-brand { 
  color: #4a90e2 !important; /* Light blue for navbar links */
  margin-right: 10px;
}

.navbar-nav li a:hover {
  background-color: #e0f7fa !important; /* Light cyan for hover */
  color: #4a90e2 !important; /* Light blue for hover text */
}

.navbar-nav li.active a {
  color: #ffffff !important;
  background-color: #4a90e2 !important; /* Light blue for active state */
}

.navbar-default .navbar-toggle {
  border-color: transparent;
}

.open .dropdown-toggle {
  color: #555;
  background-color: black !important;
}

.dropdown-menu li a {
  color: #000 !important;
}

.dropdown-menu li a:hover {
  background-color: #e0f7fa !important; /* Light cyan for dropdown hover */
}

/* Dropdown Menu */
.main-nav .dropdown-slide {
  position: static;
}

.main-nav .dropdown-slide .open > a, 
.main-nav .dropdown-slide .open > a:focus, 
.main-nav .dropdown-slide .open > a:hover {
  background: transparent;
}

.main-nav .dropdown-slide.full-width .dropdown-menu {
  left: 0 !important;
  right: 0 !important;
}

.main-nav .dropdown-slide:hover .dropdown-menu {
  border-top: 3px solid #4a90e2; /* Light blue border for dropdown menu */
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.main-nav .dropdown-slide .dropdown-menu {
  min-width: 220px;
  margin-top: 0;
  border-radius: 0;
  opacity: 1;
  visibility: visible;
  position: absolute;
  padding: 5px 10px;
  transition: visibility 0.2s, opacity 0.2s, transform 500ms cubic-bezier(0.43, 0.26, 0.11, 0.99);
}

.main-nav .dropdown-slide .dropdown-menu .dropdown-item {
  font-size: 12px; 
  text-align: left;
  padding: 5px 0;
  transition: background 0.3s ease;
  text-decoration: none;
}

.main-nav .dropdown-slide .dropdown-menu .dropdown-item:hover {
  background: #e0f7fa;
  color: #4a90e2;
}

/* Responsive Adjustment */
@media (max-width: 767px) {
  .main-nav .dropdown-slide .dropdown-menu {
    transform: none;
    left: auto;
    position: relative;
    opacity: 1;
    visibility: visible;
  }
}

/* Other Styles */
.thumb {
  margin-bottom: 30px;
}

.page-top {
  margin-top: 85px;
}

img.zoom {
  pointer-events: none;
  width: 100%;
  height: 100%;
  box-shadow: 7px 7px 7px 7px rgb(155, 160, 161);
  border-radius: 5px;
  object-fit: cover;
  transition: all .3s ease-in-out;
}

.topButton {
  position: fixed;
  right: 15px;
  bottom: 15px;
  color: #4a90e2;
  border-radius: 60px;
  background-color: #e0f7fa;
  padding: 10px;
  padding-bottom: 7px;
}

.contactIcons {
  font-size: 25px;
  border-radius: 50px;
  padding: 10px;
  color: white;
  display: inline-block;
  text-align: center;
  line-height: 1;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin: 0 10px;
}

.contactIcons:hover {
    color: #4a90e2; /* Change icon color on hover */
    transition: color 0.3s ease;
}

/* Contact Icons Background Colors */
.contactIcons.whatsapp {
  background-color: #25D366; /* WhatsApp */
}

.contactIcons.instagram {
  background-color: #E60023; /* Instagram */
}

.contactIcons.linkedin {
  background-color: #0077b5; /* LinkedIn */
}

.contactIcons.github {
  background-color: #333; /* GitHub */
}

.colmargin {
  margin-top: 20px;
}


.footer {
  color: #4a90e2; /* Light blue for footer text */
  padding-top: 1%;
  padding-bottom: 1%;
  border-top: 1px solid #e4e4e4;
}
