
:root{
  --accent: #0dcaf0;
  --accent-dark: #099bbf;
  --gold: #f4c062;
  --bg-base: #f5fafc;
  --text-dark: #1e2f37;
}

/* NAVBAR */
.custom-navbar {
  background-color: #ffffff;
  padding: 12px 25px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Brand */
.navbar-brand {
  
  font-weight: 700;
  font-size: 15px;
  color: #2d3b4c !important;
  font-family:Cinzel;
}
.navbar-brand:hover {
  color: var(--accent-dark) !important;
}

/* Reduce Menu Gap */
.navbar-nav {
  gap: 20px; /* reduced spacing */
}

/* Nav Links */
.nav-link {
  color: #2d3b4c !important;
  font-weight: 500;
  position: relative;
}
.nav-link::after {
  content: "";
  width: 0;
  height: 2px;
  background: var(--accent-dark);
  position: absolute;
  left: 0;
  bottom: -4px;
  transition: width 0.3s ease;
}
.nav-link:hover::after {
  width: 100%;
}
.nav-link:hover {
  color: var(--accent-dark) !important;
}

/* Icons SAME STYLE as menu items */
.nav-icons {
  display: flex;
  align-items: center;
  gap: 20px;   /* same gap as menu */
}
.nav-icons i {
  font-size: 1.1rem;
  color: #2d3b4c;
  transition: 0.3s ease;
}
.nav-icons i:hover {
  color: var(--accent-dark);
  transform: scale(1.1);
}
.nav-link.active {
  color: var(--accent-dark) !important;
}

.nav-link.active::after {
  width: 100% !important;
}

@media (max-width: 991px) {
  
  .navbar-collapse {
    text-align: center;
  }

  .navbar-nav {
    gap: 12px; /* even smaller gap for mobile */
    margin-top: 10px;
  }

  .nav-icons {
    justify-content: center;
    margin-top: 12px;
  }
}

@media only screen and (min-width:992px){
    .navbar-brand {
                font-size: 1.35rem;
           }
    /*===============*/

        }
 
 
 .hero-section {
  background: linear-gradient(135deg, #e0f0f4, #c7e4eb); /* soft professional gradient */
  padding: 100px 0 80px 0;
  font-family: 'Poppins', sans-serif;
  color: #1e3a4c;
}

.hero-section h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.hero-section h3 {
  font-size: 1.75rem;
  font-weight: 500;
  color: #4b5563;
  margin-bottom: 20px;
}

.hero-section p.lead {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #47545f;
}

.btn-primary {
  background-color: #0f8680;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #0c6e6a;
  transform: translateY(-2px);
}

/* Hero Image */
.hero-img-wrapper {
  max-width: 400px;
  margin: auto;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.hero-img-wrapper:hover .hero-img {
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.hero-img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
}

/* Responsive */
@media (max-width: 992px) {
  .hero-section {
    text-align: center;
    padding: 70px 0 50px 0;
  }
  .hero-section h1 { font-size: 2.5rem; }
  .hero-section h3 { font-size: 1.5rem; }
}

@media (max-width: 575px) {
  .hero-section h1 { font-size: 2rem; }
  .hero-section h3 { font-size: 1.25rem; }
  .hero-section p.lead { font-size: 0.95rem; }
  .hero-img-wrapper { max-width: 300px; }
}

  .contact-section {
  background: #eef8fb; /* soft professional background */
  font-family: 'Poppins', sans-serif;
  color: #2d3b4c;
}

.contact-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1e3a4c;
}

.contact-section p {
  font-size: 1rem;
  line-height: 1.7;
  color: #4b5563;
}

.contact-info {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.contact-info:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.contact-info i {
  color: #0f8680;
}

.btn-primary {
  background-color: #0f8680;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #0c6e6a;
  transform: translateY(-2px);
}

@media (max-width: 575px) {
  .contact-section h2 { font-size: 1.65rem; }
  .contact-section p, .contact-info p { font-size: 0.9rem; }
}

/* Footer */
.footer-section {
  background: #0c2a2e;
  color: #f4fafc;
  padding: 60px 20px 20px;
  font-family: 'Poppins', sans-serif;
}

/* Flex Container */
.footer-flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
}

/* Footer Columns */
.footer-col {
  flex: 1 1 220px; /* grow, shrink, basis */
  min-width: 220px;
}

.footer-col h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #0dcaf0;
}

.footer-col p,
.footer-col li,
.footer-col a {
  color: #f4fafc;
  font-size: 0.95rem;
  line-height: 1.8;
  text-decoration: none;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li a:hover {
  color: var(--accent);
  transition: 0.3s;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  background: #0dcaf0;
  color: #fff;
  border-radius: 50%;
  transition: 0.3s;
}

.social-icons a:hover {
  background: var(--accent-dark);
  transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 0.88rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 15px;
  color: #cfd8dc;
}

/* Responsive */
@media (max-width: 991px) {
  .footer-flex {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
  .social-icons {
    justify-content: center;
  }
}
