html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: 'Libre Baskerville', serif;
}

.header {
  width: 100%;
  background: white;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  height:95px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  border-bottom: 2px solid #001a40;
}

.header-container {
  max-width: 1200px;
  margin: auto;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-title {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 0;
  padding-left: 0;
}

.logo {
  width: 65px;
  height: 65px;
  object-fit: contain;
  margin-left: 0;
  padding-left: 0;
  margin-right: 0;
  padding-right: 0;
}

.deep {
  font-size:22px;
  font-weight: bold;
  line-height: 1.2;
  font-family: 'Libre Baskerville', serif;

}

.deep .blue {
  color: #002B56;
  font-weight: 700;         /* Bold */
  font-size: 24px;          /* Adjust as needed */
  letter-spacing: 0.5px;    /* Slight spacing for clarity */
  text-transform: none; 
}

.deep .black {
  color: #002B56;
  font-weight: bold;         /* Medium */
  font-size: 16px;          /* Slightly smaller */
  letter-spacing: 2px;      /* Wider tracking */
  text-transform: uppercase;/
}

.menu {
  display: flex;
  gap: 25px;
  font-weight: 600;
}

.menu a {
  text-decoration: none;
  color: #002B56;
  transition: color 0.3s;
}

.menu a:hover {
  color: #002B56;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #002B56;
  
}

.mobile-menu {
  position: fixed; /* not absolute — so it appears above ticker & hero */
  top: 95px; /* adjust to your header height */
  left: 0;
  width: 100%;
  background-color: #002855; /* dark blue */
  color: #fff;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: all 0.6s ease;
  z-index: 2000; /* ensures it stays above ticker & hero */
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.mobile-menu a {
  display: block;
  padding: 15px 25px;
  color: white;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  transition: background 0.3s;
}

.mobile-menu a:hover {
  color: yellow; /* hover la highlight panna */
}

.mobile-menu.show {
  max-height: 400px; /* adjust based on number of links */
  opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .menu {
    display: none;
  }
  .hamburger {
    display: block;
  }
}
@media (min-width: 601px) and (max-width: 1024px) {
  .header {
  width: 100%;
  background: white;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  height: 60px;
padding: 5px 30px;

}
  .menu {
    display: none;
  }
  .hamburger {
    display: block;
  }  
  .logo {
  width: 20px;
  height: 20px;
  object-fit: contain;
  padding-left: 0;
  margin-right: 0;
}
}
.contact-section {
  background: linear-gradient(to bottom right, #f8fbff, white);
  padding: 10px 8%;
 
  color: #1a1a1a;
  padding-top: 0px;
  margin-top: 0px;
   font-family: 'Libre Baskerville', serif;
}

.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-header h1 {
  color: #002855;
  font-size: 2.5rem;
  margin-bottom: 10px;
  position: relative;
  padding-top: 0px;
  margin-top: 0px;
}

.contact-header h1::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #ffb400;
  display: block;
  margin: 10px auto;
  border-radius: 2px;
}

.contact-header p {
  font-size: 1.1rem;
  color: #555;
}

/* Layout Grid */
.contact-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 60px;
}

/* LEFT SIDE */
.contact-info {
  flex: 1 1 40%;
  background: #ffffff;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.contact-info:hover {
  transform: translateY(-5px);
}

.contact-info h2 {
  color: #002855;
  margin-bottom: 20px;
}

.contact-info p {
  margin: 10px 0;
  font-size: 1rem;
}

.contact-info i {
  color: #ffb400;
  margin-right: 10px;
}

.divider {
  width: 60px;
  border-bottom: 3px solid #002855;
  margin: 20px 0;
}

.rig-quote {
  margin-top: 25px;
  text-align: center;
}

.rig-quote i {
  color: #002855;
  font-size: 1.5rem;
}

.rig-quote p {
  font-style: italic;
  color: #002855;
  margin-top: 8px;
}

/* FORM SIDE */
.contact-form-card {
  flex: 1 1 50%;
  background: #fff;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.1);
  animation: fadeIn 1s ease;
}

.contact-form-card h2 {
  color: #002855;
  margin-bottom: 25px;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccd6e0;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #002855;
  box-shadow: 0 0 0 2px rgba(0, 74, 173, 0.15);
  outline: none;
}

/* WhatsApp Button */
.whatsapp-btn {
  background: linear-gradient(90deg, #25d366, #128c7e);
  color: white;
  border: none;
  padding: 14px 25px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}

.whatsapp-btn:hover {
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
  transform: scale(1.03);
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 992px) {
  .contact-section{
    padding-top: 0px;
    margin-top: 0px;
  }
  .contact-grid {
    flex-direction: column;
    gap: 40px;
  }

  .contact-section {
    padding: 60px 5%;
  }

  .whatsapp-btn {
    font-size: 1rem;
  }
}
.footer-bottom {
  background-color: white;
  border-top: 1px solid #1f2a44;
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: #1f2a44;
   font-family: 'Libre Baskerville', serif;
}

.footer-links {
  margin-top: 8px;
}

.footer-links a {
  color: #1f2a44;
  text-decoration: none;
  margin: 0 8px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #f5c518;
}
@media (max-width: 768px) {
  .footer-bottom {
  background-color: white;
  border-top: 1px solid #1f2a44;
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: #1f2a44;
}

.footer-links {
  margin-top: 8px;
}

.footer-links a {
  color: #1f2a44;
  text-decoration: none;
  margin: 0 8px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #f5c518;
}
}