body{font-family:'Poppins',sans-serif;background:#f5f8ff;}


/* ===== NAVBAR BASE ===== */
.custom-navbar {
    background: transparent;
    transition: 0.3s;
    padding: 15px 0;
}
@media (max-width: 480px) {
.custom-navbar {
    background: #0d1b2a;
    margin-top: 56px;
}
}
.fixed-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
    background-color: #b3cef7;
}


/* Sticky Scroll Effect */
.custom-navbar.scrolled {
    background: #81baf7;
    box-shadow: 0 5px 20px rgb(0 0 0 / 61%);
}
/* LOGO */
.navbar-brand img {
    max-height: 50px;
}

/* NAV LINKS */
.navbar-nav .nav-link {
    color: #0465b2;
    margin: 0 12px;
    font-weight: 500;
    position: relative;
}

/* Hover Effect */
.navbar-nav .nav-link::after {
    content: "";
    width: 0%;
    height: 2px;
    background: rgb(10 191 76);
    position: absolute;
    left: 0;
    bottom: -5px;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color: rgb(10 191 76);
}
.navbar-nav .nav-link:hover {
    color: rgb(10 191 76);
}

/* DROPDOWN */
.dropdown-menu {
    border-radius: 10px;
    border: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.dropdown-item:hover {
    background: #1072d4;
    color: #fff;
}

/* ===== MAIN BUTTON ===== */
.btn-custom {
    background: linear-gradient(45deg, #0981d4, #0dca49);
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 30px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Hover Effect */
.btn-custom:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 122, 24, 0.4);
}

/* Click Effect */
.btn-custom:active {
    transform: scale(0.96);
}

/* Glow Animation */
.btn-custom::before {
    content: "";
    position: absolute;
    width: 0%;
    height: 100%;
    background: rgba(255,255,255,0.2);
    top: 0;
    left: 0;
    transition: 0.4s;
    z-index: -1;
}

.btn-custom:hover::before {
    width: 100%;
}
.navbar-toggler {
    padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
    font-size: var(--bs-navbar-toggler-font-size);
    line-height: 1;
    color: var(--bs-navbar-color);
    background-color: #b012ab;
    border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);
    border-radius: var(--bs-navbar-toggler-border-radius);
    transition: var(--bs-navbar-toggler-transition);
}


/* CTA BUTTON */
.btn-main {
    background: linear-gradient(45deg,#ff7a18,#ffb347);
    color: #fff;
    border-radius: 25px;
    padding: 8px 20px;
}

.btn-main:hover {
    transform: translateY(-2px);
}

/* MOBILE */
@media (max-width: 991px) {

    .custom-navbar {
        background: #0d1b2a;
    }

    .navbar-collapse {
        background: #0d1b2a;
        padding: 20px;
        border-radius: 10px;
        margin-top: 10px;
    }

    .navbar-nav {
        text-align: center;
    }

    .nav-link {
        margin: 10px 0;
    }

    .btn-main {
        width: 100%;
        margin-top: 15px;
    }
}


.hero{
background:linear-gradient(135deg,#1064a4,#982a7d);
color:#fff;padding:80px 0;text-align:center;
margin-top:75px;
}
.hero h1{font-size:48px;font-weight:700;}
.section{padding:80px 0;}
.card{
border:none;border-radius:20px;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
transition:0.3s;
}
.card:hover{transform:translateY(-8px);}
.btn-main{
background:#d38a10;color:#fff;border:none;padding:12px 30px;border-radius:30px;
}
.footer{background:#111;color:#fff;padding:40px 0;}

/* CONTACT SECTION */
#contact {
  padding: 80px 20px;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1200px;
  margin: auto;
  align-items: center;
}

/* TEXT AREA */
.section-label {
  color: #38bdf8;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-sub {
  color: #cbd5f5;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* CONTACT INFO */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  gap: 15px;
  align-items: center;
  background: rgba(255,255,255,0.05);
  padding: 15px 20px;
  border-radius: 12px;
  transition: 0.3s ease;
  backdrop-filter: blur(10px);
}

.contact-item:hover {
  background: rgba(56,189,248,0.15);
  transform: translateY(-5px);
}

.contact-item-icon {
  font-size: 22px;
  background: #38bdf8;
  padding: 10px;
  border-radius: 50%;
}

/* FORM */
.contact-form {
  background: rgba(255,255,255,0.05);
  padding: 30px;
  border-radius: 20px;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-field {
  width: 100%;
  margin-bottom: 20px;
}

.form-field label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  color: #e2e8f0;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: none;
  outline: none;
  background: rgba(255,255,255,0.1);
  color: #fff;
  transition: 0.3s;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #94a3b8;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  background: rgba(255,255,255,0.2);
  box-shadow: 0 0 0 2px #38bdf8;
}

textarea {
  min-height: 120px;
  resize: none;
}

/* BUTTON */
.btn-submit {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #38bdf8, #6366f1);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(99,102,241,0.5);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    flex-direction: column;
  }

  .section-title {
    font-size: 28px;
  }
}


/* Default: hide mobile-only element on larger screens */
  .mobile-phone {
    display: none;
  }

  /* Mobile styles */
  @media (max-width: 768px) {
    .mobile-phone {
      display: flex;
      position: fixed;
      top: 0px;
      left: 0;
      right: 0;
      height: 56px;
      align-items: center;
      justify-content: center;
      gap: 12px;
      padding: 0 16px;
       background: linear-gradient(90deg,#0b7dda,#0366a6); 
	/*		background: linear-gradient(90deg, #ff8c00, #ff5e00);*/
      color: white;
      font-weight: 600;
      z-index: 9;
      box-shadow: 0 2px 6px rgba(0,0,0,0.15);
      -webkit-backdrop-filter: blur(6px);
      backdrop-filter: blur(6px);
      /* if you want safe-area for iPhones with notch */
      padding-top: env(safe-area-inset-top);
    }

    .mobile-phone a.phone-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
      color: inherit;
       background: rgba(255,255,255,0.12);
		/*	background:#ff5e00; */
      padding: 8px 12px;
      border-radius: 8px;
      font-size: 26px;
			font-weight: 800;
    }

    /* body content should not hide under fixed header */
/*     body { padding-top: 56px; } */
  }
  
  /* Hide by default */
  .mobile-callbar {
    display: none;
  }

  /* Show and style on mobile only */
  @media (max-width: 768px) {
    .mobile-callbar {
      display: flex;
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      height: 60px;
      align-items: center;
      justify-content: center;
      background: linear-gradient(90deg, #007bff, #0a68c5);
		/* 	background:linear-gradient(90deg, #ff8c00, #ff5e00);*/
      color: #fff;
      font-weight: 600;
      z-index: 9999;
      box-shadow: 0 -2px 6px rgba(0,0,0,0.2);
      padding: 0 16px;
      /*padding-bottom: calc(env(safe-area-inset-bottom) + 10px);*/
      text-align: center;
    }

    .mobile-callbar span.label {
      margin-right: 8px;
      font-weight: 600;
    }

    .mobile-callbar a.call-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
      color: #fff;
     background: rgba(255,255,255,0.15);
		/*  	background:#ff5e00; */
      padding: 8px 14px;
      border-radius: 10px;
      font-size: 26px;
			font-weight: 800;
    }

  }


@media (max-width: 480px) {.banner {
    margin-top: 68px;
}}



