/* Reset */
html, body {
  overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  scroll-behavior: smooth;
}

/* Container spacing */
.section {
  padding: 80px 0;
}

/* Navbar */
.navbar {
  transition: 0.3s;
  padding: 15px 0;
}

.navbar-brand {
  font-weight: 700;
  font-size: 22px;
  color: #0d6efd !important;
}

.navbar .nav-link {
  margin-left: 15px;
  font-weight: 500;
  transition: 0.3s;
}

.navbar .nav-link:hover {
  color: #0d6efd;
}

/* Call Button */
.navbar .btn {
  border-radius: 30px;
  padding: 8px 18px;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #133bcc, #067b1d);
  color: white;
  padding: 70px 0;
  text-align: left;
}

.hero h1 {
  font-size: 40px;
  font-weight: 700;
}

.hero p {
  font-size: 18px;
  margin-top: 15px;
}

.hero .btn {
  margin-top: 20px;
  border-radius: 30px;
}

/* About Image */
img {
  max-width: 100%;
  height: auto;
}

/* Cards */
.card {
  border: none;
  border-radius: 15px;
  padding: 20px;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* Icons */
.card i {
  color: #0d6efd;
}

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, #133bcc, #067b1d);
  border: none;
  padding: 10px 22px;
  transition: 0.3s;
}

.btn-primary:hover {
  opacity: 0.9;
}

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

.dropdown-item:hover {
  background: #f5f5f5;
}

/* Contact Form */
form input,
form textarea {
  border-radius: 10px;
  border: 1px solid #ddd;
  padding: 10px;
}

form button {
  width: 100%;
}


/* ===================== */
/* 🔥 MOBILE RESPONSIVE */
/* ===================== */

@media (max-width: 992px) {
  .navbar .btn {
    margin-top: 10px;
  }
}

@media (max-width: 768px) {

  .hero {
    padding: 80px 20px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
  }

  .section {
    padding: 60px 20px;
  }

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

  .card {
    margin-bottom: 20px;
  }
}

/* ===================== */
/* 📱 EXTRA SMALL DEVICES */
/* ===================== */

@media (max-width: 480px) {

  .hero h1 {
    font-size: 26px;
  }

  .hero p {
    font-size: 14px;
  }

  .btn {
    font-size: 14px;
    padding: 8px 16px;
  }
}



/* Footer Main */
.footer {
  background: #5c270b;
  color: #fff;
  padding: 60px 0 20px;
  font-size: 14px;
}

/* Headings */
.footer h5 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 20px;
}

/* Text */
.footer p {
  color: #aaa;
  line-height: 1.7;
}

/* Links */
.footer a {
  color: #bbb;
  display: inline-block;
  margin-bottom: 8px;
  transition: 0.3s;
  text-decoration: none;
}

.footer a:hover {
  color: #0d6efd;
  padding-left: 5px;
}

/* List */
.footer ul {
  padding: 0;
  list-style: none;
}

/* Contact spacing */
.footer .col-lg-3 p {
  margin-bottom: 8px;
}

/* Divider */
.footer .border-top {
  border-color: rgba(255,255,255,0.1) !important;
}

/* Copyright */
.footer .text-center {
  color: #888;
  font-size: 13px;
}

/* ===================== */
/* 📱 MOBILE RESPONSIVE */
/* ===================== */

@media (max-width: 768px) {
  
  .footer {
    text-align: center;
  }

  .footer h5 {
    margin-top: 20px;
  }

  .footer a:hover {
    padding-left: 0;
  }
}

/* ===================== */
/* 💻 TABLET */
/* ===================== */

@media (max-width: 992px) {
  .footer .col-lg-3 {
    margin-bottom: 20px;
  }
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #133bcc, #067b1d);
    padding: 40px 20px;
    color: #fff;
}

/* Heading */
.cta-section h2 {
    font-size: 36px;
    font-weight: 700;
}

/* Subtext */
.cta-section p {
    font-size: 18px;
    margin: 15px 0 25px;
    color: #ccc;
}
/* CTA Button */
.btn-cta {
    background: linear-gradient(135deg, #d8c400, #b64300);
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    display: inline-block;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

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

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

/* Glow Animation */
.btn-cta::before {
    content: "";
    position: absolute;
    width: 120%;
    height: 100%;
    top: 0;
    left: -120%;
    background: rgba(255,255,255,0.3);
    transform: skewX(-25deg);
    transition: 0.5s;
}

.btn-cta:hover::before {
    left: 120%;
}








.sticky-phone {
  display: none;              /* hidden by default */
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;                /* full width */
  background-color: #091a4f;   /* dark navy */
  text-align: center;
  padding: 12px 0;
  z-index: 9999;
}

.sticky-phone a {
  color: #ffffff;
  font-size: 22px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

.sticky-phone a:hover {
  color: #ffcc00;
}

/* Show only on mobile */
@media (max-width: 768px) {
  .sticky-phone {
    display: block;
  }
  .sticky-phone a {
    font-size: 22px; /* slightly smaller text for mobile */
  }
}

.sticky-phone-header {
  display: none;              /* hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;                /* full width */
  background-color: #091a4f;   /* dark navy */
  text-align: center;
  padding: 12px 0;
  z-index: 9999;              /* stays above other elements */
}

.sticky-phone-header a {
  color: #ffffff;
  font-size: 22px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

.sticky-phone-header a:hover {
  color: #ffcc00;
}

/* Show only on mobile */
@media (max-width: 768px) {
  .sticky-phone-header {
    display: block;
  }
  .sticky-phone-header a {
    font-size: 22px; /* slightly smaller text for mobile */
  }
}




