/* Reset all default margin, padding, and box-sizing */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
}

.navbar {
    background: linear-gradient(to right, #1c1c1c, #0e064c);
    color: white;
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.logo {
    font-size: 26px;
    font-weight: bold;
    color: #00bcd4;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo a {
    text-decoration: none;
    color: #00bcd4;

}

.menu-toggle {
    display: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
}

/* Nav links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links li {
    position: relative;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    padding: 8px 10px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    height: 2px;
    width: 0;
    background-color: #ff4081;
    transition: width 0.4s ease;
}

.nav-links a:hover {
    color: #ff4081;
}

.nav-links a:hover::after {
    width: 100%;
}

:root {
    --primary-red: #e11d48;
    --dark-bg: #101025;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --border-color: rgba(255, 255, 255, 0.1);
}

.qr-container {
    background-color: var(--dark-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    font-family: 'Inter', sans-serif;
}

.qr-card {
    position: relative;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
    max-width: 400px;
    text-align: center;
    overflow: hidden;
    transition: all 0.4s ease;
}

.qr-card:hover {
    border-color: rgba(225, 29, 72, 0.5);
    box-shadow: 0 0 40px rgba(225, 29, 72, 0.15);
    transform: translateY(-5px);
}

.qr-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--primary-red);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.qr-title {
    color: white;
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 25px;
    font-style: italic;
    text-transform: uppercase;
}

.qr-title span {
    color: var(--primary-red);
}

.qr-frame {
    position: relative;
    background: white;
    padding: 15px;
    border-radius: 16px;
    display: inline-block;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.qr-image {
    width: 200px;
    height: 200px;
    display: block;
}

/* Scanning Animation Effect */
.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-red);
    box-shadow: 0 0 15px var(--primary-red);
    animation: scan 3s linear infinite;
}

@keyframes scan {
    0% {
        top: 0%;
    }

    50% {
        top: 100%;
    }

    100% {
        top: 0%;
    }
}

.qr-desc {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.qr-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #64748b;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: bold;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 8px #22c55e;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }

    100% {
        opacity: 1;
    }
}

.glow-point {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: var(--primary-red);
    filter: blur(80px);
    opacity: 0.1;
}

/* Dropdown */
.dropdown-menu {
    display: none;
    position: absolute;
    background: linear-gradient(to right, #1c1c1c, #0e064c);
    top: 100%;
    left: 0;
    border-radius: 8px;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    padding: 10px 20px;
}

.dropdown-menu a {
    font-size: 16px;
    color: white;
}

.dropdown-menu a:hover {
    color: #ff4081;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 65px;
        left: 0;
        background: linear-gradient(to right, #1c1c1c, #0e064c);
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        display: none;
        padding: 10px 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        padding: 10px 20px;
    }

    .dropdown-menu {
        position: relative;
        box-shadow: none;
        padding-left: 15px;
    }

    .dropdown:hover .dropdown-menu {
        display: none;
    }

    .dropdown>a::after {
        content: " ▼";
        font-size: 12px;
    }

    .dropdown>a:active+.dropdown-menu,
    .dropdown>a:focus+.dropdown-menu {
        display: block;
    }
}

/*2nd Navbar*/



body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f2f2f2;

}

/* Navbar container */

/* Custom Navbar Container */
.custom-navbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background: linear-gradient(to right, #0f0c29, #302b63, #24243e);
    padding: 25px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
    border-top: 2px solid #00f7ff33;
    border-bottom: 2px solid #00f7ff33;
    gap: 20px;
    /* Gap between items */
}

/* Stylish Glassy Nav Item */
.nav-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    color: #00f7ff;
    font-size: 20px;
    text-decoration: none;
    padding: 14px 25px;
    text-align: center;
    border-radius: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 1px solid #00f7ff22;
    box-shadow: 0 4px 12px rgba(0, 255, 255, 0.08);
    display: inline-block;
    position: relative;
    overflow: hidden;
    flex: 0 0 auto;
    min-width: 180px;
}

/* Hover Effect - Glowing Shine */
.nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent, rgba(255, 255, 255, 0.2),
            transparent);
    transform: skewX(-20deg);
    transition: left 0.5s ease;
    z-index: 0;
}

.nav-item:hover::before {
    left: 130%;
}

.nav-item:hover {
    color: #fff;
    background-color: #00b7ff33;
    transform: scale(1.05);
    box-shadow: 0 0 12px #00f7ff88, 0 0 20px #00c3ff44 inset;
    border-color: #00f7ff66;
}

/* 🔻 Responsive Styling for Mobile Screens */
@media (max-width: 760px) {
    .custom-navbar {
        justify-content: space-between;
        padding: 20px 10px;
    }

    .nav-item {
        flex: 0 0 45%;
        max-width: 45%;
        font-size: 14px;
        padding: 12px;
        margin: 5px auto;
        box-sizing: border-box;
    }
}



/* Loop back to start */
.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 30%;
    /* Desktop ke liye thodi compressed height */
    overflow: hidden;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Mobile: zyada height ke liye */
@media (max-width: 480px) {
    .video-container {
        padding-bottom: 56.25%;
        /* 16:9 aspect ratio for mobile */
    }
}


/* Text animation inside box */
/* Scroll Box Styling */
.scroll-box {
    margin-top: 10px;
    width: 100%;
    height: 60px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(to right, #261545, #260378);
    color: white;
    display: flex;
    align-items: center;
    font-family: 'Segoe UI', sans-serif;
    font-size: 18px;
    font-weight: 500;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Outer wrapper to contain the infinite scroll */
.scroll-text-wrapper {
    display: flex;
    white-space: nowrap;
    animation: scroll 30s linear infinite;
}

/* Duplicate text inside for loop effect */
.scroll-text {
    padding-right: 100px;
    /* spacing between repeated texts */
}

/* Keyframes for smooth horizontal loop */
@keyframes scroll {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* E-commerce Product*/
:root {
    --bg: #0f1724;
    --card: #0b1220;
    --accent: #06b6d4;
    --muted: #94a3b8
}


body {
    font-family: Inter, system-ui, Arial, sans-serif;
    margin: 0;
    background: linear-gradient(180deg, #071028 0%, #071626 100%);
    color: #e6eef6
}

.wrap {
    max-width: 1200px;
    margin: 30px auto;
    padding: 16px
}

h1 {
    font-size: 26px;
    margin: 8px 0 18px;
    text-align: center
}

.carousel-wrap {
    background: rgba(255, 255, 255, 0.03);
    padding: 14px;
    border-radius: 12px;
    margin-bottom: 22px;
    position: relative
}

.carousel {
    display: flex;
    gap: 12px;
    overflow: hidden;
    padding: 18px 6px;
    scroll-behavior: smooth
}

.product {
    min-width: 200px;
    background: var(--card);
    border-radius: 10px;
    padding: 10px;
    flex: 0 0 auto;
    box-shadow: 0 6px 18px rgba(2, 6, 23, 0.6);
    transition: transform .28s ease, box-shadow .28s ease;
    cursor: pointer
}

.product:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(2, 6, 23, 0.8)
}

.product img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    border-radius: 8px
}

.p-title {
    font-weight: 600;
    margin: 8px 0 4px;
    font-size: 14px
}

.p-desc {
    font-size: 12px;
    color: var(--muted);
    height: 36px;
    overflow: hidden
}

.p-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px
}

.price {
    font-weight: 700;
    color: var(--accent)
}

.btn {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: transparent;
    padding: 6px 8px;
    border-radius: 8px;
    font-size: 13px
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.2));
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity .18s;
    font-size: 22px;
    color: #eaf4fb;
    border: none;
    cursor: pointer
}

.arrow.left {
    left: 8px
}

.arrow.right {
    right: 8px
}

.carousel-wrap:hover .arrow {
    opacity: 1
}

.thumbs {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    flex-wrap: wrap
}

.thumbs img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    border: 2px solid transparent
}

.thumbs img.active {
    border-color: var(--accent)
}

.hint {
    color: var(--muted);
    font-size: 13px;
    margin-top: 8px
}

/* Product detail */


.product-detail {
    max-width: 1100px;
    margin: 30px auto;
    display: grid;
    grid-template-columns: 520px 1fr;
    gap: 22px
}

.gallery {
    background: #071a2b;
    border-radius: 12px;
    padding: 12px
}

.main-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 10px
}

.controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px
}

.nav-btn {
    background: rgba(255, 255, 255, 0.04);
    border: none;
    padding: 8px 10px;
    border-radius: 8px;
    cursor: pointer
}

.details {
    padding: 12px;
    background: #071528;
    border-radius: 12px
}

.title {
    font-size: 20px;
    margin: 0 0 8px
}

.desc {
    color: #9fb0c3
}

.buy-btn {
    display: inline-block;
    padding: 10px 14px;
    border-radius: 8px;
    background: #06b6d4;
    color: #032;
    cursor: pointer;
    border: none;
    margin-top: 12px
}

.modal {
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 23, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s
}

.modal.show {
    opacity: 1;
    pointer-events: auto
}

.modal-card {
    background: #071a2b;
    padding: 18px;
    border-radius: 10px;
    width: 420px;
    max-width: 90%
}

.modal-card input,
.modal-card textarea {
    width: 100%;
    padding: 8px;
    margin: 6px 0;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: transparent;
    color: #eaf4fb
}

.modal-card .row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap
}

.modal-card .row input {
    flex: 1 1 48%
}

.submit {
    margin-top: 8px;
    padding: 10px 12px;
    border-radius: 8px;
    background: #06b6d4;
    border: none;
    cursor: pointer;
    width: 100%
}

/* ✅ Responsive Fixes */
@media (max-width: 1024px) {
    .product-detail {
        grid-template-columns: 1fr;
    }

    .main-img {
        height: 360px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 22px;
    }

    .carousel {
        gap: 8px;
    }

    .product img {
        height: 320px;
    }

    .main-img {
        height: 280px;
    }
}

@media (max-width: 480px) {
    .wrap {
        padding: 10px;
        margin: 10px auto;
    }

    h1 {
        font-size: 20px;
    }

    .product {
        min-width: 160px;
        padding: 8px;
    }

    .product img {
        height: 220px;
    }

    .p-title {
        font-size: 13px;
    }

    .p-desc {
        font-size: 11px;
    }

    .modal-card {
        padding: 14px;
        width: 95%;
    }
}


/* Bio-Title*/
.bio-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #0056b3;
    margin-top: 40px;
    margin-bottom: 30px;
    font-family: 'Georgia', 'Times New Roman', serif;
    position: relative;
    padding-bottom: 10px;
}

/* Underline effect using pseudo-element */
.bio-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(to right, #007BFF, #00C6FF);
    border-radius: 2px;
}


/* Bio Data Box Styling */
.bio-box {
    max-width: 700px;
    margin: 30px auto;
    padding: 25px 30px;
    border: 2px solid #007BFF;
    border-radius: 15px;
    background: linear-gradient(to right, #ffffff, #f2f9ff);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.1);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: all 0.3s ease-in-out;
}

/* Individual Bio Rows */
.bio-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e3e3e3;
}

/* Labels (left) */
.label {
    font-weight: 600;
    color: #007BFF;
    flex: 1;
    text-align: left;
    font-size: 16px;
}

/* Values (right) */
.value {
    flex: 2;
    text-align: right;
    color: #444;
    font-size: 16px;
}

/* Links inside bio box */
.bio-box a {
    color: #007BFF;
    text-decoration: none;
    font-weight: 500;
}

.bio-box a:hover {
    text-decoration: underline;
    color: #0056b3;
}

/* Paragraph Section Styling */
.bio-paragraphs {
    max-width: 900px;
    margin: 50px auto;
    padding: 30px;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    line-height: 1.9;
    color: #2c3e50;
}

/* Paragraphs inside */
.bio-paragraphs p {
    margin-bottom: 18px;
    text-align: justify;
    font-size: 17px;
}

/* Section Headings */
.section-heading {
    font-size: 24px;
    color: #0056b3;
    font-weight: bold;
    margin-top: 40px;
    margin-bottom: 15px;
    text-align: left;
    padding-left: 10px;
    border-left: 5px solid #007BFF;
    position: relative;
}

.section-heading::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 10px;
    width: 60px;
    height: 3px;
    background-color: #007BFF;
    border-radius: 2px;
}



/* Client Section */
.client-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 50px 20px;
    background-color: white;

}

/* Blog Section */

.blog-section {
    max-width: 1200px;
    margin: auto;
    position: relative;
}

.blog-header {
    text-align: center;
    margin-bottom: 30px;
}

.blog-header h2 {
    font-size: 2.5rem;
    color: #090a0a;
    letter-spacing: 1px;
}

.blog-wrapper {
    position: relative;
    overflow: hidden;
}

.blog-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0;
}

.blog-slider::-webkit-scrollbar {
    display: none;
}

.blog-card {
    flex: 0 0 300px;
    background: #1f1f1f;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
}

.blog-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.blog-content {
    padding: 15px;
}

.blog-content h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #ffffff;
}

.blog-content p {
    font-size: 0.9rem;
    color: #cccccc;
}

.arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    padding: 12px;
    cursor: pointer;
    z-index: 1;
    transition: background 0.3s;
}

.arrow-btn:hover {
    background: #00ffe1;
    color: #000;
}

.arrow-btn svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

.arrow-left {
    left: -10px;
}

.arrow-right {
    right: -10px;
}

.see-more {
    margin: 30px auto 0;
    text-align: center;
}

.see-more button {
    padding: 10px 30px;
    background: transparent;
    border: 2px solid #000000;
    color: #070808;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.see-more button:hover {
    background: #00ffe1;
    color: #000;
}

.blog-card.hidden {
    display: none;
}

@media (max-width: 768px) {
    .arrow-btn {
        display: none;
    }
}

.Dawood-image {
    display: flex;
    justify-content: center;
    /* Center the image horizontally */
    align-items: center;
    /* Center the image vertically */
    min-height: 300px;
    /* Ensure the container has a minimum height */
    margin-top: 20px;
    /* Reduced top margin for tighter spacing */
    text-align: center;
    /* Center the image container */
}

.Dawood-image img {
    width: 100%;
    /* Make it responsive */
    max-width: 400px;
    /* Reduced max width */
    max-height: 350px;
    /* Reduced max height */
    height: auto;
    /* Maintain aspect ratio */
    border-radius: 15px;
    /* Slightly less rounded corners */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    /* Reduced shadow for a more subtle look */
    transition: all 0.3s ease-in-out;
    /* Smooth transition for hover effects */
    object-fit: cover;
    /* Ensure image fills the container without distortion */
}

/* Hover effect for image */
.Dawood-image img:hover {
    transform: scale(1.05);
    /* Slight zoom-in effect */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    /* Stronger shadow on hover */
    filter: brightness(1.15);
    /* Slight brightness boost on hover */
}



/* QR Code Section */
.qr-codes {
    text-align: center;
    margin-top: 50px;
    background: linear-gradient(to right, #2c3e50, #34495e);
    /* Dark gradient for depth */
    padding: 40px 20px;
    border-radius: 15px;
    /* Rounded corners for elegance */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    /* Soft shadow for depth */
}

/* Wrapper for QR items */
.qr-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
}

/* Individual QR item container */
.qr-item {
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* Adding box-shadow animation */
    background-color: #1abc9c;
    /* Teal color for modern touch */
    border-radius: 15px;
    /* Rounded corners for QR item */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    /* Soft shadow for depth */
    transition: transform 0.3s ease, box-shadow 0.4s ease;
}

.qr-item:hover {
    transform: scale(1.1);
    /* Slight scaling for hover effect */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    /* Stronger shadow on hover for depth */
}

/* QR Code image styling */
.qr-item img {
    border: 4px solid #fff;
    /* White border for contrast */
    border-radius: 10px;
    padding: 15px;
    transition: transform 0.4s ease, border-color 0.3s ease;
    /* Smooth border transition */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    /* Soft shadow for image */
}

/* Hover effect for QR image */
.qr-item img:hover {
    transform: scale(1.1);
    border-color: #f39c12;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Appointment Form Section */
.appointment-section {
    padding: 50px 20px;
    background-color: #fff;
    text-align: right;
}

.appointment-section h2 {
    text-align: center;
    margin-right: 0;
}


.appointment-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    /* Adjusted for map and form positioning */
}

/* Styling for the map container */
.map-container {
    margin-top: 10%;
    width: 45%;
    height: 300px;
    margin-right: 20px;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    /* Rounded corners */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    /* Soft shadow effect */
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    /* Animation for zooming and shadow on hover */
}

/* Hover effect for the map container */
.map-container:hover {
    transform: scale(1.05);
    /* Slight zoom-in effect */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    /* Stronger shadow on hover */
}

/* Style for iframe inside the map container */
.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    /* Removing default border */
    border-radius: 15px;
    /* Rounded corners for iframe */
    transition: transform 0.3s ease-in-out;
    /* Smooth transition effect */
}

/* Hover effect for iframe (slight zoom) */
.map-container:hover iframe {
    transform: scale(1.02);
    /* Slight zoom-in on hover */
}

.form-container {
    width: 48%;
    /* Equal width for map and form */
}

.map-container {
    margin-bottom: 20px;
    /* Added margin to move the map down */
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

/*Appointment form*/
.appointment-form {
    color: black;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.appointment-form label {
    text-align: left;
    font-weight: bold;
}

.appointment-form input {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
}

.appointment-form input:focus {
    border-color: #f0a500;
    box-shadow: 0 0 5px rgba(240, 165, 0, 0.5);
    outline: none;
}

.appointment-form textarea {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
    min-height: 100px;
    resize: vertical;
    font-family: inherit;
    background-color: #f9f9f9;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.appointment-form textarea:focus {
    border-color: #f0a500;
    box-shadow: 0 0 5px rgba(240, 165, 0, 0.5);
    outline: none;
}

.appointment-form button {
    background-color: #f0a500;
    color: white;
    border: none;
    padding: 12px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
}

.appointment-form button:hover {
    background-color: #e09100;
}

@media (max-width: 768px) {
    .appointment-container {
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
    }

    .map-container,
    .form-container {
        width: 100% !important;
        max-width: 600px;
        margin: 0 auto 30px auto !important;
        box-sizing: border-box;
    }

    .map-container {
        order: 1 !important;
    }

    .form-container {
        order: 2 !important;
    }
}


/* ✅ Footer styles are now OUTSIDE the media query */

/* Footer Base */
footer {
    background: linear-gradient(to right, #2e455b, #2f7580);
    color: #ffffff;
    padding: 60px 20px;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

/* Container Styling */
.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

/* Contact Bar Styling */
.contact-bar {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-in-out;
}

.contact-bar.single {
    justify-content: center;
}

/* Contact Item Styling */
.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

/* Icon Styling with Glow Effect */
.contact-item img {
    width: 36px;
    height: 36px;
    transition: transform 0.3s ease;
}

@media only screen and (max-width: 600px) {
    .contact-bar {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .contact-item {
        flex: 0 0 45%;
        max-width: 45%;
        margin-bottom: 20px;
        box-sizing: border-box;
    }

    /* Agar last item hai to usko center align karne ke liye */
    .contact-bar .contact-item:last-child {
        flex: 0 0 90%;
        max-width: 90%;
        margin: 0 auto;
    }

    .phone-numbers {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .phone-numbers span {
        display: block;
        margin: 3px 0;
        font-size: 14px;
    }
}



.news-img img {
    width: 95%;
    height: auto;
    /* height ko auto rakhna chahiye taake aspect ratio maintain rahe */
    max-height: 80px;
    /* agar height fix karni ho to */
    display: block;
    margin: 0 auto;
    /* center align karne ke liye */
}

@media only screen and (max-width: 600px) {
    .news-img img {
        width: 90%;
        max-height: 60px;
    }
}