@media (max-width: 1300px) {
    .contact-info p {
        display: none !important; /* Hide the default contact info */
    }

    .contact-info-inline {
        display: block !important; /* Show inline contact info */
        text-align: center; /* Center the inline contact info below the nav */
        margin-top: 10px;
        font-size: 0.9rem;
    }
}


/* ==================== Extra Large 1200px and above ==================== */

@media (max-width: 1200px){
    .navbar .container-fluid .navbar-brand img{
        width: 100px;
        height: 100px;
        border-radius: 50%;
    }

}

/* ====================  Large 992px to 1199px ==================== */
@media (max-width: 992px) {
    
}


/* ==================== Medium 768px to 991px ==================== */

@media (max-width: 768px) {

    .navbar .container-fluid .navbar-brand img{
        width: 100px;
        height: 100px;
        border-radius: 50%;
    }
    .heading-1 {
        font-size: 54px;
        font-weight: 800;
        font-family:  "Poppins", sans-serif;
    }
    
    .heading-2 {
        font-size: 44px;
        font-weight: 600;
        font-family:  "Poppins", sans-serif;
    }
    
    .heading-3 {
        font-size: 36px;
        font-weight: 500;
        font-family:  "Poppins", sans-serif;
    }
    
    .heading-4 {
        font-size: 30px;
        font-weight: 500;
        font-family:  "Poppins", sans-serif;
    }
    
    
    .heading-5 {
        font-size: 25px;
        font-weight: 500;
        font-family:  "Poppins", sans-serif;
    }
    
    .heading-6 {
        font-size: 20px;
        font-weight: 500;
        font-family:  "Poppins", sans-serif;
    }
    
    .para {
        font-size: 18px;
        font-weight: 400;
        font-family:  "Poppins", sans-serif;
    }

    .tagline-showcase p #element{
        font-size: 30px !important;
        font-family:  "Poppins", sans-serif;
        font-weight: 600;
    }




    
    .row .story{
        border: none;
    }
    .row .contect {
        border: none;
    }

    .footer .heading3 img{
        width: 150px;
        height: 150px;
        border-radius: 15px;
    }
    
}



/* ==================== Small 576px to 767px ==================== */

@media (max-width: 576px) {
  
    .navbar .container-fluid .navbar-brand img{
        width: 50px;
        height: 50px;
        border-radius: 50%;
    }

    .heading-1 {
        font-size: 44px;
        font-weight: 800;
        font-family:  "Poppins", sans-serif;
    }
    
    .heading-2 {
        font-size: 34px;
        font-weight: 600;
        font-family:  "Poppins", sans-serif;
    }
    
    .heading-3 {
        font-size: 26px;
        font-weight: 500;
        font-family:  "Poppins", sans-serif;
    }
    
    .heading-4 {
        font-size: 20px;
        font-weight: 500;
        font-family:  "Poppins", sans-serif;
    }
    
    
    .heading-5 {
        font-size: 18px;
        font-weight: 500;
        font-family:  "Poppins", sans-serif;
    }
    
    .heading-6 {
        font-size: 15px;
        font-weight: 500;
        font-family:  "Poppins", sans-serif;
    }
    
    .para {
        font-size: 14px;
        font-weight: 400;
        font-family:  "Poppins", sans-serif;
    }

    .tagline-showcase p #element{
        font-size: 20px !important;
        font-family:  "Poppins", sans-serif;
        font-weight: 600;
    }
    .footer .heading3 img{
        width: 100px;
        height: 100px;
        border-radius: 15px;
    }
}

/* Mobile First Responsive Design */

/* Base styles (mobile first) */
html {
    font-size: 16px;
}

body {
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

/* Typography */
h1 { font-size: 2rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.3rem; }
p { font-size: 1rem; }

/* Navigation */
.navbar {
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.navbar-brand img {
    max-height: 20%;
    transition: all 0.3s ease;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-collapse {
    background-color: #fff;
    transition: all 0.3s ease;
}

.nav-link {
    padding: 0.8rem 1rem;
    transition: all 0.3s ease;
}

/* Hero Section */
.carousel {
    margin: 1rem 0;
    overflow: hidden;
}

.carousel-item img {
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.5);
    padding: 1rem;
    transition: all 0.3s ease;
}

/* Services Section */
.service_box {
    margin-bottom: 2rem;
    padding: 1rem;
    transition: all 0.3s ease;
}

.service_box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.icon-big {
    width: 80px;
    height: 80px;
    transition: all 0.3s ease;
}

/* About Section */
.about {
    padding: 2rem 0;
}

.about img {
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

/* Pricing Section */
.pricing-card {
    margin-bottom: 2rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.price {
    font-size: 2rem;
    margin: 1rem 0;
}

/* Gallery Section */
.gallery-item {
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Contact Form */
.contact-form {
    padding: 2rem 0;
}

.form-control {
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    box-shadow: 0 0 0 0.2rem rgba(212, 38, 125, 0.25);
    border-color: #d4267d;
}

/* Footer */
.footer {
    padding: 2rem 0;
    text-align: center;
}

.social a {
    margin: 0 0.5rem;
    transition: all 0.3s ease;
}

.social a:hover {
    transform: scale(1.2);
}

/* Responsive Breakpoints */

/* Small devices (576px and up) */
@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
    
    .carousel-item img {
        height: 350px;
    }
    
    .navbar-collapse {
        background-color: transparent;
    }
}

/* Medium devices (768px and up) */
@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.75rem; }
    h4 { font-size: 1.5rem; }
    
    .carousel-item img {
        height: 400px;
    }
    
    .service_box {
        margin-bottom: 0;
    }
    
    .pricing-card {
        margin-bottom: 0;
    }
    
    .footer {
        text-align: left;
    }
    
    .navbar-collapse {
        justify-content: center;
    }
}

/* Large devices (992px and up) */
@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
    
    .navbar {
        padding: 1rem;
    }
    
    .navbar-brand img {
        max-height: 30%;
    }
    
    .carousel-item img {
        height: 500px;
    }
    
    .icon-big {
        width: 100px;
        height: 100px;
    }
    
    .contact-info {
        display: block !important;
    }
}

/* Extra large devices (1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
    
    html {
        font-size: 18px;
    }
    
    .carousel-item img {
        height: 600px;
    }
}

/* Extra extra large devices (1400px and up) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* Utility Classes */
.text-center-mobile {
    text-align: center;
}

@media (min-width: 768px) {
    .text-center-mobile {
        text-align: left;
    }
}

/* Spacing Utilities */
.m-mobile-0 { margin: 0 !important; }
.p-mobile-0 { padding: 0 !important; }

@media (min-width: 768px) {
    .m-mobile-0 { margin: inherit; }
    .p-mobile-0 { padding: inherit; }
}

/* Animations */
@media (prefers-reduced-motion: no-preference) {
    .fade-in {
        animation: fadeIn 0.5s ease-in;
    }
    
    .slide-in {
        animation: slideIn 0.5s ease-out;
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Print Styles */
@media print {
    .no-print {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
    }
    
    a[href]:after {
        content: " (" attr(href) ")";
    }
}

/* Loading Animation */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #d4267d;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Success/Error Messages */
.alert {
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
}

.alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

/* Hover Effects */
.hover-effect {
    transition: all 0.3s ease;
}

.hover-effect:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}