@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
html, body {
  overflow-x: hidden; 
}

body{
  font-family: 'Inter', sans-serif;
  background:#f4f8fc; /* slightly darker */
  overflow-x:hidden;
}

/* ================= NAVBAR ================= */
    .custom-navbar {
      background-color: #ffffff;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
       min-height: 60px;
  padding: 0; 
      display: flex;
      align-items: center;
    }
  

.navbar-brand img{
    height: 60px;   
  width: auto;
  display: block;
}
/* Remove Bootstrap default spacing */
.navbar-brand {
  padding: 0;
  margin-right: 1rem;
}


    /* NAV LINKS */
    
.nav-item a {
  position: relative;
  display: inline-block;
  overflow: hidden;
  color: rgba(25, 13, 249, 0.7);
  font-weight: 500;
  font-size: 18px;
  transition: color 0.3s ease;
}

.nav-item a:hover {
  color: #0077b6; /* subtle color change */
  text-shadow: 0 0 8px rgba(0, 119, 182, 0.4); /* glow */
}

 .nav-item a::after {
   content: '';
   position: absolute;
   bottom: 0;
   left: 0;
   height: 4px;
   width: 100%;
   /* background: linear-gradient(90deg, #ff0000, #ff7f00, #ffff00, #00ff00, #0000ff, #4b0082, #8b00ff); */
     background: linear-gradient(90deg, #22B7C9,#1a94a5,#4dd3e1,#0077b6,#00cfcf,#22B7C9  
  );
   background-size: 200% auto;
   transition: all .5s;
   transform: translateX(-100%);
 }
 
.nav-item a:hover::after {
   transform: translateX(0%);
   animation: gradient-89 3s linear infinite;
 }
 
 @keyframes gradient-89 {
   0% { background-position: 100% 0%; }
   50% { background-position: 0% 0%; }
   100% { background-position: 100% 0%; }
 }

/*  */
.navbar-brand{
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

/*  */
.btn_lg {
  /* background: linear-gradient(90deg, #22B7C9, #1a94a5, #4dd3e1, #0077b6, #00cfcf, #22B7C9); */
  background-size: 300% 300%;
  color: blue;
  border: none;
   padding: 8px 20px;
  font-size: 15px;
  border-radius: 30px;
 
  font-weight: 500;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  box-shadow: 0 4px 12px rgba(0, 119, 182, 0.25);
}

.btn_lg:hover {
  animation: gradient-animate 4s linear infinite;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 119, 182, 0.4);
}

/* Gradient animation for button */
@keyframes gradient-animate {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}



/* MOBILE FIXES */
    @media (max-width: 991px) {
      .custom-navbar .nav-item {
        text-align: center;
      }

      .btn_lg {
        margin-top: 10px;
      }
    }
    /* ============= */

/* =======main section====== */

/* ================= HERO ================= */
.contact-hero{
  padding:80px 0;
  background:linear-gradient(135deg,#e3f0ff 0%, #cfe3ff 50%, #dbeeff 100%);
  position:relative;
  overflow:hidden;
}

/* subtle background glow */
.contact-hero::before{
  content:"";
  position:absolute;
  width:600px;
  height:600px;
  background:radial-gradient(circle, rgba(30,144,255,.15) 0%, transparent 70%);
  top:-200px;
  right:-150px;
  z-index:0;
}

.contact-hero .container{
  position:relative;
  z-index:2;
}

.contact-hero-title{
  font-size:56px;
  font-weight:800;
  color:#002b5b;
  margin-bottom:20px;
}

.contact-hero-subtitle{
  font-size:18px;
  color:#444;
  margin-bottom:30px;
  max-width:520px;
  line-height:1.6;
}

.hero-btn{
  padding:15px 36px;
  border-radius:50px;
  background:linear-gradient(90deg,#0072ff,#00c6ff);
  color:#fff;
  font-weight:600;
  text-decoration:none;
  transition:.3s;
  display:inline-block;
  margin-bottom: 20px;
}

.hero-btn:hover{
  transform:translateY(-5px);
  box-shadow:0 15px 40px rgba(0,114,255,.35);
}

/* IMAGE WRAPPER */
.hero-img-wrapper{
  position:relative;
  margin-top: 20px;
}

.hero-img-wrapper::before{
  content:"";
  position:absolute;
  width:100%;
  height:100%;
  border-radius:30px;
  /* background:linear-gradient(135deg,#00c6ff,#0072ff); */
  top:20px;
  left:20px;
  z-index:-1;
  opacity:.2;
}

.hero-image{
  max-height:480px;
  border-radius:30px;
  box-shadow:0 40px 80px rgba(0,0,0,.15);
}

/* Responsive Fix */
@media(max-width:992px){
  .contact-hero{
    text-align:center;
  }

  .contact-hero-title{
    font-size:38px;
  }

  .contact-hero-subtitle{
    margin:auto;
  }
  
}

/* ================= CONTACT SECTION ================= */

.contact-section{
  padding:120px 0;
  background:linear-gradient(180deg,#eaf3ff,#f4f8fc);
}

.contact-wrapper{
  display:flex;
  gap:70px;
  align-items:center;
}

/* LEFT INFO */

.contact-info h2{
  font-size:36px;
  font-weight:800;
  color:#001f4d;
}

.contact-info p{
  margin:20px 0 30px;
  color:#444;
}

.info-item{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:18px;
  font-weight:500;
  color:#003d99; /* darker blue */
  transition:.3s;
}

.info-item:hover{
  transform:translateX(6px);
}

.info-item i{
  width:42px;
  height:42px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,#1599b0,#0066cc);
  color:#fff;
}

/* FORM */

.contact-form-box{
  flex:1;
  background:#ffffff;
  padding:50px;
  border-radius:25px;
  box-shadow:0 35px 90px rgba(0,51,153,.18);
  transition:.3s;
}

.contact-form-box:hover{
  transform:translateY(-6px);
}

.form-group{
  margin-bottom:20px;
}

.form-control{
  border-radius:14px;
  padding:15px 18px;
  border:1px solid #cfd9e6;
  transition:.3s;
  background:#f9fbff;
}

.form-control:focus{
  border-color:#0066cc;
  box-shadow:0 0 0 3px rgba(0,102,204,.18);
  background:#fff;
}

.contact-btn{
  width:100%;
  padding:15px;
  border-radius:50px;
  border:none;
  background:linear-gradient(90deg,#1599b0,#0066cc);
  color:#fff;
  font-weight:600;
  transition:.3s;
}

.contact-btn:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 35px rgba(0,102,204,.45);
}

/* SUCCESS MESSAGE */

.success-message{
  display:none;
  margin-top:20px;
  background:#dff7ec;
  color:#0c7a4d;
  padding:14px;
  border-radius:12px;
  font-weight:600;
  text-align:center;
  animation:fadeIn .5s ease forwards;
}

@keyframes fadeIn{
  from{opacity:0; transform:translateY(10px);}
  to{opacity:1; transform:translateY(0);}
}

/* MAP */

.map-section{
  margin-top:100px;
  border-radius:25px;
  overflow:hidden;
  box-shadow:0 30px 80px rgba(0,51,153,.2);
}

/* RESPONSIVE */

@media(max-width:992px){
  .contact-wrapper{
    flex-direction:column;
  }
}

@media(max-width:768px){
  .contact-hero-title{font-size:34px;}
  .contact-form-box{padding:30px;}
}

/* =====end==== */
/* =========================
   FOOTER BASE
========================= */
.footer-area {
  background: linear-gradient(145deg, #0b2c3d, #0f3b52);
  color: #eaf2f6;
  padding:  25px 0 15px;
  font-family: "Segoe UI", Arial, sans-serif;
}

.footer-area .container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  align-items: start;
}

/* =========================
   FOOTER SECTIONS
========================= */
.footer-section {
  display: flex;
  flex-direction: column;
  
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
}

.footer-logo {
  width: 40px;
  height: auto;
  /* object-fit: contain; */
border-radius: 10px;
}


/* =========================
   HEADINGS
========================= */
.footer-section h3,
.footer-section h4 {
  color: #56c0e8; /* soft blue */
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-section h3 { font-size: 20px; }
.footer-section h4 { font-size: 17px; }

/* =========================
   TEXT
========================= */
.footer-text, .contact-info {
  font-size: 14px;
  line-height: 1.7;
  color: #dce9f0;
}

/* =========================
   LISTS
========================= */
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  font-size: 14px;
  margin-bottom: 8px;
  padding-left: 18px;
  position: relative;
  transition: 0.3s ease;
  color: #dce9f0;
}

.footer-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #56c0e8;
  font-size: 12px;
}

.footer-list li:hover {
  color: #56c0e8;
  transform: translateX(4px);
}

/* =========================
   CONTACT INFO
========================= */
.contact-info a {
  color: #56c0e8;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* =========================
   SEO PARAGRAPH
========================= */
.footer-seo {
  grid-column: 1 / -1;
  background: rgba(255,255,255,0.05);
  
  border-radius: 12px;
   padding: 12px 16px; 
  margin: 15px 0 10px; 
  text-align: center;
}

.footer-seo p {
  font-size: 14px;
  line-height: 1.7;
  color: #dce9f0;
  margin: 6px 0;
}

/* =========================
   FOOTER BOTTOM
========================= */
.footer-bottom {
  grid-column: 1 / -1;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.15);
   padding-top: 10px;  
  margin-top: 10px; 
}

.footer-bottom p {
  font-size: 13px;
  color: #c9d6df;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .footer-area .container {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .footer-section {
    text-align: center;
  }

  .footer-list li {
    justify-content: center;
  }
}
/* 768px */

@media (min-width: 992px) {
  .navbar-brand {
    margin-left: 10rem;
  }
  .navbar-nav {
    margin-right: 20rem;
  }
  .navbar-nav li {
    margin-right: 25px;
  }
  .navbar .btn {
    margin-right: 10rem;
  }
  /* navbar */
}
