/* Apply Montserrat to headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
}

/* Apply Lato to body text */
body, p, ul, li, a {
    font-family: 'Lato', sans-serif;
}
/* NAVBAR */
.navbar {
  padding: 0;
}

.navbar .nav-link {
  color: #000;
  font-weight: 600;
  padding: 22px 18px;
  transition: 0.3s;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: #c50606;
}

/* DROPDOWN DESKTOP */
.dropdown-menu {
  border: none;
  border-radius: 10px;
  padding: 12px 0;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.dropdown-item {
  font-weight: 500;
  padding: 12px 22px;
  transition: 0.3s;
}

.dropdown-item:hover {
  background: #c50606;
  color: #fff;
  padding-left: 28px;
}

/* DESKTOP HOVER */
@media (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
    display: block;
  }
}

/* ================= MOBILE DESIGN ================= */
@media (max-width: 991px) {

  .navbar-collapse {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: #fff;
    padding: 30px 20px;
    overflow-y: auto;
    transition: 0.4s ease;
  }

  .navbar-nav {
    text-align: center;
  }

  .navbar-nav .nav-link {
    font-size: 20px;
    padding: 16px 0;
    border-bottom: 1px solid #eee;
  }

  /* MOBILE DROPDOWN */
  .dropdown-menu {
    position: static;
    box-shadow: none;
    padding: 0;
    text-align: center;
  }

  .dropdown-item {
    padding: 12px 0;
    font-size: 18px;
    background: #f8f8f8;
    margin: 5px 0;
    border-radius: 6px;
  }

  /* CTA BUTTON */
  .navbar .btn-danger {
    margin-top: 25px;
    padding: 14px;
    font-size: 18px;
  }
}

/* BUTTON */
.btn-danger {
  background-color: #c50606;
  border-color: #c50606;
}

.btn-danger:hover {
  background-color: #a30404;
}

    .apm-footer {
    position: relative;
    background: linear-gradient(135deg, #0b0b0b, #161616);
    color: #ddd;
    overflow: hidden;
    padding: 70px 0 20px;
}

/* Soft glow background */
.footer-glow {
    position: absolute;
    top: -150px;
    left: 50%;
    width: 400px;
    height: 400px;
    background: rgba(197,6,6,0.25);
    filter: blur(120px);
    transform: translateX(-50%);
}

/* Titles */
.footer-title {
    color: rgb(197,6,6);
    font-weight: 700;
    margin-bottom: 16px;
}

/* Text */
.footer-text {
    line-height: 1.8;
    opacity: 0.9;
}

/* Info list */
.footer-list li {
    list-style: none;
    margin-bottom: 10px;
    transition: 0.3s;
}

.footer-list li:hover {
    transform: translateX(6px);
    color: #fff;
}

.footer-list i {
    color: rgb(197,6,6);
    margin-right: 8px;
}

/* Links */
.footer-links li {
    list-style: none;
    margin-bottom: 9px;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    position: relative;
    transition: 0.3s;
}

.footer-links a::after {
    content: "";
    width: 0;
    height: 2px;
    background: rgb(197,6,6);
    position: absolute;
    left: 0;
    bottom: -4px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-links a:hover::after {
    width: 100%;
}

/* Social icons */
.footer-social a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(197,6,6,0.9);
    color: #fff;
    border-radius: 50%;
    margin-right: 10px;
    transition: 0.4s;
}

.footer-social a:hover {
    transform: translateY(-6px) scale(1.1);
    box-shadow: 0 10px 25px rgba(197,6,6,0.6);
}

/* CTA Button */
.footer-btn {
    display: inline-block;
    margin-top: 22px;
    background: linear-gradient(135deg, rgb(197,6,6), #ff2e2e);
    color: #fff;
    padding: 14px 24px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Pulse */
.pulse-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(197,6,6,0.6); }
    70% { box-shadow: 0 0 0 18px rgba(197,6,6,0); }
    100% { box-shadow: 0 0 0 0 rgba(197,6,6,0); }
}

/* Reveal animation */
.fade-up {
    opacity: 0;
    transform: translateY(45px);
    transition: all 0.9s ease;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }
.delay-4 { transition-delay: 0.8s; }

.footer-bottom {
    text-align: center;
    font-size: 13px;
    opacity: 0.7;
    margin-top: 30px;
}

/* CTA Section */
.cta-section {
    position: relative;
    background: #c50606;
    overflow: hidden;
    z-index: 1;
}

.cta-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, #ff2e2e, #ffb400);
    opacity: 0.3;
    animation: animate-bg 20s linear infinite;
    z-index: 0;
}

/* Animated floating circles */
.cta-bg::before, .cta-bg::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    width: 200px; height: 200px;
    top: -50px; left: -50px;
    animation: float 15s ease-in-out infinite;
}

.cta-bg::after {
    width: 150px; height: 150px;
    bottom: -30px; right: -30px;
    animation-delay: 7s;
}

@keyframes float {
    0%,100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

@keyframes animate-bg {
    0% { background-position: 0 0; }
    50% { background-position: 100% 100%; }
    100% { background-position: 0 0; }
}

/* Text animation */
.animate-text {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out;
}

.animate-text.show {
    opacity: 1;
    transform: translateY(0);
}

/* Gradient button */
.btn-gradient {
    background: linear-gradient(135deg, #ff2e2e, #ffb400);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255,46,46,0.5);
}

/* Services Section */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, #ff2e2e, #ffb400);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.service-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: transform 0.4s, box-shadow 0.4s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.service-card .card-body {
    padding: 20px;
}

.service-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
    color: #ff2e2e;
}

.service-card p {
    font-size: 0.95rem;
    color: #555;
}

.btn-gradient {
    background: linear-gradient(135deg, #ff2e2e, #ffb400);
    color: #fff;
    border-radius: 50px;
    padding: 8px 18px;
    font-weight: 500;
    transition: 0.3s;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,46,46,0.5);
}

.service-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s;
}

.service-card:hover .service-img img {
    transform: scale(1.05);
}

/* Fade-in & slide-up animations */
.fade-in, .slide-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.fade-in.show, .slide-up.show {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media(max-width:768px){
    .service-img img {
        height: 180px;
    }
}

/* Section Title Gradient */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, #ff2e2e, #ffb400);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

/* Process Cards */
.process-card {
    background: #fff;
    transition: transform 0.4s, box-shadow 0.4s;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.process-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff2e2e, #ffb400);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
    transition: transform 0.4s;
}

.process-card:hover .process-icon {
    transform: scale(1.2) rotate(10deg);
}

.process-title {
    font-weight: 600;
    color: #c50606;
}

.process-desc {
    font-size: 0.95rem;
    color: #555;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

/* Responsive */
@media(max-width:768px){
    .process-card { margin-bottom: 20px; }
}

/* FAQ Card Style */
.faq-card .btn-link {
    font-size: 1.05rem;
    font-weight: 600;
    color: #c50606;
    text-decoration: none;
}

.faq-card .btn-link:hover {
    color: #ff2e2e;
}

.faq-card .card-body {
    font-size: 0.95rem;
    color: #333;
    background: rgba(255,255,255,0.9);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #c50606;
}

/* Floating Shapes */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.45);
    animation: float 6s ease-in-out infinite;
    z-index: 0;
}
.shape-1 { width: 150px; height: 150px; top:10%; left:5%; }
.shape-2 { width: 100px; height: 100px; bottom:10%; right:10%; animation-delay:3s; }

@keyframes float {
    0%,100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Glassmorphic Card */
.glass-card {
    backdrop-filter: blur(15px);
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 30px;
    margin: 15px;
    color: #fff;
    transition: transform 0.5s, box-shadow 0.5s;
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.stars i { color: #ffd700; }

.animate-card { opacity:0; transform: translateY(50px); transition: all 0.8s ease; }
.animate-card.show { opacity:1; transform: translateY(0); }

/* Carousel Style */
.testimonial-carousel {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
}
.testimonial-carousel::-webkit-scrollbar { display: none; }
/* Glass Card Style */
.glass-card {
    backdrop-filter: blur(12px);
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    color: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.stars i { color: #ffd700; margin: 0 2px; }

/* Section Title */
.section-title { font-size: 2.5rem; font-weight: 700; color: #fff; }
/* ================= Why Choose Us Section ================= */
.why-choose-us-section {
    padding: 80px 0;
    background: #fff;
    color: #111;
    
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, #ff2e2e, #ffb400);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #555;
}

/* Cards */
.choose-card {
    background: #fdfdfd;
    border-radius: 20px;
    padding: 25px 20px;
    text-align: center;
    transition: transform 0.5s, box-shadow 0.5s;
    cursor: pointer;
    border: 1px solid #eee;
}

.choose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.choose-card .icon {
    font-size: 2.5rem;
    color: #ff2e2e;
    margin-bottom: 15px;
    transition: transform 0.3s, color 0.3s;
}

.choose-card:hover .icon {
    transform: rotate(15deg) scale(1.2);
    color: #ffb400;
}

.choose-card h5 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    background: linear-gradient(90deg, #ff2e2e, #ffb400);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.choose-card p {
    font-size: 0.95rem;
    color: #555;
}

/* Responsive */
@media(max-width:992px){
    .col-md-3 {
        margin-bottom: 20px;
    }
}

@media(max-width:576px){
    .col-sm-6 {
        width: 100%;
    }
}

/* About Section Styles */
.about_sec {
    
    color: #111;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #ff2e2e, #ffb400);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about_ul h5 {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
    color: #ff2e2e;
}

.about_ul p {
    font-size: 0.95rem;
    color: #555;
    margin-left: 28px;
}

.img-fluid {
    width: 100%;
    height: auto;
}

@media(max-width:768px){
    .text-justify {
        text-align: left;
    }
}
/* ================= Hero Section ================= */
.hero-section {
    position: relative;
    background: url('img/slide.jpg') center/cover no-repeat;
    padding: 80px 0 50px;
    overflow: hidden;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.hero-overlay {
    position: absolute;
    top:0; left:0; width:100%; height:100%;
    background: rgba(0,0,0,0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Headings & Text */
.hero-section h1 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #ff2e2e, #ffb400, #ff2e2e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-section p {
    font-size: 1.15rem;
    margin-bottom: 25px;
    color: #fff8e1;
    font-weight: 500;
}

/* Buttons */
.theme_button, .cont_button {
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.4s;
}

.theme_button {
    background: linear-gradient(135deg, #ff2e2e, #ffb400);
    color: #fff;
    box-shadow: 0 5px 15px rgba(255,46,46,0.5);
}

.theme_button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,46,46,0.7);
}

.cont_button {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.cont_button:hover {
    background: #ff2e2e;
    border-color: #ff2e2e;
    color: #fff;
}

/* ================= Hero Form Card ================= */
.animated-form {
    background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.12));
    backdrop-filter: blur(25px);
    border-radius: 25px;
    padding: 30px 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.35);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.animated-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 35px 70px rgba(0,0,0,0.5);
}

/* Floating labels */
.floating-label {
    position: relative;
    margin-bottom: 18px;
}

.floating-label input,
.floating-label textarea {
    width: 100%;
    padding: 14px 15px;
    border-radius: 12px;
    border: none;
    outline: none;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 1rem;
    transition: 0.3s;
}

.floating-label label {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.7);
    pointer-events: none;
    transition: 0.3s;
    font-size: 0.95rem;
}

/* Animate label on focus or filled */
.floating-label input:focus + label,
.floating-label input:not(:placeholder-shown) + label,
.floating-label textarea:focus + label,
.floating-label textarea:not(:placeholder-shown) + label {
    top: -10px;
    left: 10px;
    font-size: 0.8rem;
    color: #ffb400;
    background: rgba(0,0,0,0.2);
    padding: 0 5px;
    border-radius: 5px;
}

/* Textarea height */
.floating-label textarea {
    min-height: 90px;
    resize: none;
}

/* Animated submit button */
.btn-animated {
    background: linear-gradient(135deg, #ff2e2e, #ffb400);
    color: #fff;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    position: relative;
    overflow: hidden;
    transition: 0.4s;
}

.btn-animated::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255,255,255,0.25);
    transition: 0.4s;
    z-index: 0;
}

.btn-animated:hover::after {
    width: 100%;
}

.btn-animated:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255,46,46,0.7);
}

/* Animations for hero text and form */
.slide-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.slide-up.show {
    opacity: 1;
    transform: translateY(0);
}

/* Floating shapes */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff2e2e, #ffb400);
    opacity: 0.2;
    animation: float 6s ease-in-out infinite;
    z-index: 0;
}

.shape-1 {
    width: 90px; height: 90px;
    top: 10%; left: 5%;
}

.shape-2 {
    width: 70px; height: 70px;
    bottom: 10%; right: 10%;
    animation-delay: 3s;
}

@keyframes float {
    0%,100% { transform: translateY(0px);}
    50% { transform: translateY(-15px);}
}

/* Responsive */
@media (max-width: 768px){
    .hero-section {
        padding: 60px 15px 40px;
    }

    .hero-section h1 {
        font-size: 2rem;
        text-align: center;
    }

    .hero-section p {
        font-size: 1rem;
        text-align: center;
    }

    .hero-text {
        margin-bottom: 20px;
        text-align: center;
    }

    .animated-form {
        padding: 25px 15px;
        margin: 0 auto;
    }

    .btn-animated {
        width: 100%;
    }

    .floating-shape {
        display: none; /* optional hide on mobile */
    }

    .d-flex {
        justify-content: center !important;
    }
}