/* topbar start */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
}

/* Header Bar */
.header-bar {
    /* color: #d4a600; */
    background: #000000;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.header-left,
.header-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* Contact Info */
.contact-info a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.3s ease;
}

.contact-info a:hover {
    opacity: 0.8;
}

.contact-info a .fa-phone,
.contact-info a .fa-envelope {
    font-size: 16px;
}

/* Social Links */
.social-icons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.social-icons a {
    width: 38px;
    height: 38px;
    display: inline-grid;
    place-items: center;
    border-radius: 8px;
    text-decoration: none;
    color: #ffffff;
    font-size: 16px;
    background: linear-gradient(145deg,
            rgba(255, 255, 255, 0.07),
            rgba(0, 0, 0, 0.06));
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18),
        inset 0 -4px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.2s ease;
}

.social-icons a:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

/* Social Colors */
.social-icons a.fb {
    background: linear-gradient(180deg, #3561a8, #2a4f89);
}

.social-icons a.ig {
    background: linear-gradient(180deg, #f58529, #dd2a7b);
}

.social-icons a.li {
    background: linear-gradient(180deg, #0a66c2, #074a9a);
}

/* Responsive for mobile */
@media (max-width: 520px) {
    .contact-info a:nth-child(2) {
        display: none;
        /* Hide email on small screens */
    }

    .header-bar {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

/* topbar end */

/* navbar start */
/* Navbar Styles with Gradient */
/* Navbar background */
.custom-navbar {
    background: linear-gradient(90deg, #225575, #FFAA18);
    padding: 18px 30px;
    backdrop-filter: blur(10px);
}

/* Logo */
.navbar-brand {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
}

.logo-short {
    display: none;
}

/* Nav links */
.nav-link {
    color: #fff !important;
    font-weight: 500;
    margin: 0 10px;
    transition: 0.3s;
}

.nav-link:hover {
    color: #ffe04d !important;
}

/* Desktop Quote Button */
.quote-btn {
    background-color: #225575;
    color: #fff;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.quote-btn:hover {
    background-color: #1b4463;
    transform: scale(1.05);
}

/* Mobile Button */
.mobile-btn {
    display: inline-block;
    background-color: #FFAA18;
    color: #000;
    padding: 10px 22px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.mobile-btn:hover {
    background: #fff;
    color: #000;
}

/* Responsive */
@media (max-width: 992px) {
    .logo-full {
        display: none;
    }

    .logo-short {
        display: inline;
    }
}

/* navbar end */

/* crousel start */
/* crousel start */
/* Carousel height */
.carousel-item img {
    height: 80vh;
    object-fit: cover;
    object-position: center;
}

/* Mobile view height adjust */
@media (max-width: 767px) {
    .carousel-item img {
        height: 30vh;
    }
}

/* crousel end */


/* fixed button start */
.fixed-buttons {
    position: fixed;
    bottom: 20px;
    left: 20px;
    /* Desktop & mobile left */
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

/* Button base */
.fixed-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease, transform 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    /* Add this line to remove underline */
}

/* Pulse animation for attention */
.fixed-buttons a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    top: 0;
    left: 0;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    opacity: 0;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.9);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.2;
    }

    100% {
        transform: scale(0.9);
        opacity: 0.5;
    }
}

/* Call Button - Blue Gradient */
.call-btn {
    background: linear-gradient(135deg, #1e90ff, #0073e6);
}

.call-btn:hover {
    transform: scale(1.2) rotate(-5deg);
    background: linear-gradient(135deg, #0073e6, #1e90ff);
    box-shadow: 0 0 25px rgba(30, 144, 255, 0.6);
}

/* WhatsApp Button */
.whatsapp-btn {
    background: linear-gradient(135deg, #00c853, #64dd17);
}

.whatsapp-btn:hover {
    transform: scale(1.2) rotate(-5deg);
    background: linear-gradient(135deg, #64dd17, #00c853);
    box-shadow: 0 0 25px rgba(0, 200, 83, 0.6);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .fixed-buttons {
        bottom: 15px;
        left: 15px;
        gap: 12px;
    }

    .fixed-buttons a {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
}

/* fixed button end */


/* heading start */
.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    background-color: #000;
    /* height: 70vh; */
}

/* Fade-up animation */
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-section h1 {
    font-family: "Playfair Display", serif;
    font-size: 3rem;
    font-weight: 700;
    background: #ffffff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    margin: 0;
    animation: fadeUp 1s ease-out forwards;
    /* h1 animation */
}

.hero-section h2.hero-subtitle {
    font-family: "Raleway", sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    background: linear-gradient(90deg, #ffaa18, #225575);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    max-width: 700px;
    text-align: center;
    opacity: 0;
    /* start hidden */
    animation: fadeUp 1s ease-out 0.5s forwards;
    /* delayed fade-up for subtitle */
}

/* Responsive font sizes */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.2rem;
    }

    .hero-section h2.hero-subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 1.8rem;
    }

    .hero-section h2.hero-subtitle {
        font-size: 1rem;
    }
}

/* heading end */

/* about index start */
/* about index start */
.welcome-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 40px 6%;
    background: #000000;
    /* Background changed to black */
    gap: 40px;
    overflow: hidden;
}

.welcome-image,
.welcome-content {
    flex: 1 1 45%;
}

.welcome-image {
    text-align: center;
    animation: fadeInLeft 1.5s ease;
}

.welcome-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.6s ease;
}

.welcome-image img:hover {
    transform: scale(1.05);
}

.welcome-content {
    animation: fadeInRight 1.5s ease;
}

/* Heading */
.welcome-content h2 {
    font-family: "Playfair Display", serif;
    font-size: 39px;
    background: linear-gradient(90deg,
            #ffffff,
            #ffaa18);
    /* Adjusted gradient for black background */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    line-height: 1.3;
}

.welcome-content h2 span {
    background: linear-gradient(90deg, #ffaa18, #ffd47f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Paragraph styling */
.welcome-content p {
    font-size: 16px;
    color: #ffffff;
    /* Text color white for black background */
    line-height: 1.8;
    margin-bottom: 25px;
}

.welcome-content p strong {
    display: block;
    font-weight: 600;
    color: #ffaa18;
    /* Highlight strong text */
    margin: 12px 0 8px;
    font-size: 17px;
}

/* Button Wrapper Centered */
.btn-wrapper {
    text-align: center;
    margin-top: 25px;
}

.welcome-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ffaa18, #ffcc66);
    color: #000000;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.welcome-btn:hover {
    transform: scale(1.1);
    background: linear-gradient(135deg, #ff9900, #ffdd99);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .welcome-section {
        flex-direction: column;
        padding: 30px 5%;
        text-align: center;
    }

    .welcome-image,
    .welcome-content {
        flex: 1 1 100%;
        animation: none;
    }

    .welcome-content h2 {
        font-size: 32px;
        margin-top: 15px;
    }

    .welcome-content p {
        font-size: 15px;
        text-align: justify;
    }

    .welcome-btn {
        padding: 10px 24px;
        font-size: 15px;
    }

    .welcome-image img {
        max-width: 350px;
    }
}

@media (max-width: 575px) {
    .welcome-content h2 {
        font-size: 26px;
    }

    .welcome-content p {
        font-size: 14.5px;
    }
}

/* Animations */
@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* about index end */

/* owner msg start */
/* ================= OWNER MESSAGE SECTION ================= */
.owner-message-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 40px 6%;
    background: #000000;
    gap: 40px;
    overflow: hidden;
    font-family: "Poppins", sans-serif;
}

/* CONTENT LEFT */
.owner-message-content {
    flex: 1 1 45%;
    order: 1;
    animation: ownerFadeLeft 1.5s ease;
}

/* IMAGE RIGHT */
.owner-message-image {
    flex: 1 1 45%;
    order: 2;
    text-align: center;
    animation: ownerFadeRight 1.5s ease;
}

.owner-message-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.6s ease;
}

.owner-message-image img:hover {
    transform: scale(1.05);
}

/* Heading */
.owner-message-content h2 {
    font-family: "Playfair Display", serif;
    font-size: 39px;
    background: linear-gradient(90deg, #ffffff, #ffaa18);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    line-height: 1.3;
}

.owner-message-content h2 span {
    background: linear-gradient(90deg, #ffaa18, #ffd47f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Paragraph */
.owner-message-content p {
    font-size: 16px;
    color: #ffffff;
    line-height: 1.8;
}

.owner-message-content p strong {
    display: block;
    font-weight: 600;
    color: #ffaa18;
    margin: 12px 0 8px;
    font-size: 17px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
    .owner-message-section {
        flex-direction: column;
        padding: 30px 5%;
        text-align: center;
    }

    .owner-message-image,
    .owner-message-content {
        order: unset;
        animation: none;
    }

    .owner-message-content h2 {
        font-size: 32px;
        margin-top: 15px;
    }

    .owner-message-content p {
        font-size: 15px;
        text-align: justify;
    }

    .owner-message-image img {
        max-width: 350px;
    }
}

@media (max-width: 575px) {
    .owner-message-content h2 {
        font-size: 26px;
    }

    .owner-message-content p {
        font-size: 14.5px;
    }
}

/* ================= ANIMATIONS ================= */
@keyframes ownerFadeLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes ownerFadeRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* owner msg end */
/* services start */
/* Services Section */
.services-section {
    padding: 60px 6%;
    background: #000000;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    overflow: hidden;
}

/* Section Title Animation */
.section-title {
    font-size: 36px;
    margin-bottom: 40px;
    color: #ffffff;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeSlideDown 1s forwards;
}

.section-title span {
    color: #ffaa18;
}

/* Service Card */
.service-card {
    background: #111111;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.05);
    transition: transform 0.4s, box-shadow 0.4s;
    color: #ffffff;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeSlideUp 0.8s forwards;
}

/* Staggered Animation Delay for Cards */
.service-card:nth-child(1) {
    animation-delay: 0.2s;
}

.service-card:nth-child(2) {
    animation-delay: 0.4s;
}

.service-card:nth-child(3) {
    animation-delay: 0.6s;
}

.service-card:nth-child(4) {
    animation-delay: 0.8s;
}

.service-card:nth-child(5) {
    animation-delay: 1s;
}

.service-card:nth-child(6) {
    animation-delay: 1.2s;
}

.service-card i {
    font-size: 40px;
    color: #ffaa18;
    margin-bottom: 15px;
}

.service-card h4 {
    color: #ffaa18;
    margin-bottom: 15px;
}

.service-card p {
    color: #ffffff;
}

/* Hover effect */
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(255, 170, 24, 0.3);
}

/* Keyframes for Animations */
@keyframes fadeSlideUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeSlideDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .services-section {
        padding: 50px 5%;
    }

    .section-title {
        font-size: 32px;
    }
}

@media (max-width: 575px) {
    .section-title {
        font-size: 28px;
    }

    .service-card {
        padding: 20px;
    }

    .service-card i {
        font-size: 35px;
    }
}

/* services end */

/* how it work start */
/* ------------------- How It Works Section ------------------- */
.how-it-works-section {
    padding: 80px 6%;
    background: linear-gradient(180deg, #000000 0%, #111111 100%);
}

.how-it-works-section .section-title {
    font-size: 38px;
    color: #fff;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.how-it-works-section .section-title span {
    color: #ffaa18;
}

.how-it-works-section .section-title::after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background: #ffaa18;
    margin: 10px auto 0;
    border-radius: 2px;
}

.how-it-works-section .section-subtitle {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 50px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 25px;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #ffaa18, #225575);
    border-radius: 2px;
}

/* How Card */
.how-card {
    background: #111;
    padding: 30px 20px;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.05);
    margin-bottom: 40px;
    transition: transform 0.5s, box-shadow 0.5s;
    opacity: 0;
    transform: translateY(40px);
}

/* Step Circle */
.how-card::before {
    content: attr(data-step);
    position: absolute;
    top: 0;
    left: -65px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ffaa18, #225575);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(255, 170, 24, 0.4);
}

/* Icon & Text */
.how-card i {
    font-size: 45px;
    color: #ffaa18;
    margin-bottom: 15px;
}

.how-card h4 {
    color: #ffaa18;
    margin-bottom: 15px;
}

.how-card p {
    color: #ffffff;
    font-size: 15px;
    line-height: 1.5;
}

/* Hover effect (desktop) */
@media(min-width: 576px) {
    .how-card:hover {
        transform: translateY(-10px) scale(1.05) rotateZ(-1deg);
        box-shadow: 0 20px 50px rgba(255, 170, 24, 0.5);
    }
}

/* Mobile pulse animation */
@media(max-width: 575px) {
    .how-card {
        animation: pulse 2s infinite;
    }
}

/* Scroll Animations */
@keyframes fadeSlideUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-5px) scale(1.02);
    }

    100% {
        transform: translateY(0) scale(1);
    }
}

.animate-fadeup {
    animation: fadeSlideUp 1s forwards;
}

/* Responsive */
@media (max-width: 991px) {
    .how-it-works-section {
        padding: 60px 5%;
    }

    .how-it-works-section .section-title {
        font-size: 32px;
    }
}

@media (max-width: 575px) {
    .how-it-works-section .section-title {
        font-size: 28px;
    }

    .how-card i {
        font-size: 40px;
    }

    .how-card {
        padding: 25px 15px;
        margin-bottom: 30px;
    }

    .how-card::before {
        left: -55px;
        width: 45px;
        height: 45px;
    }

    .timeline::before {
        left: 22px;
    }
}

/* how it work end */

/* blog start */
/* Section styling */
.blog-section {
    padding: 80px 6%;
    background: #000;
}

/* Section title & subtitle */
.section-title {
    color: #fff;
    font-size: 36px;
    margin-bottom: 10px;
    display: inline-block;
    position: relative;
}

.section-title span {
    color: #ffaa18;
}

.section-title::after {
    content: "";
    display: block;
    width: 70px;
    height: 3px;
    background: #ffaa18;
    margin: 10px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    color: #ffffff;
    max-width: 600px;
    margin: auto;
    line-height: 1.5;
    font-size: 16px;
}

/* Blog cards flex setup for same height */
.blog-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.blog-col {
    flex: 1 1 calc(33.333% - 1rem);
    display: flex;
}

@media (max-width: 991px) {
    .blog-col {
        flex: 1 1 calc(50% - 1rem);
    }
}

@media (max-width: 575px) {
    .blog-col {
        flex: 1 1 100%;
    }
}

/* Blog card styling */
.blog-card {
    background: #111;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(34, 85, 117, 0.25);
    transition: transform 0.5s, box-shadow 0.5s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    flex: 1;
    /* stretch to fill column */
}

.blog-card:hover {
    transform: translateY(-15px) scale(1.05) rotateZ(-1deg);
    box-shadow: 0 25px 60px rgba(34, 85, 117, 0.6);
}

.blog-image {
    position: relative;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    display: block;
    transition: transform 0.5s;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(34, 85, 117, 0.2) 0%,
            rgba(0, 0, 0, 0.6) 100%);
    pointer-events: none;
}

.blog-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* push content and button apart */
    align-items: center;
    /* center align button */
    flex: 1;
}

.blog-content h4 {
    color: #ffaa18;
    margin-bottom: 10px;
}

.blog-content p {
    color: #ffffff;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.blog-content a {
    display: inline-block;
    margin-top: auto;
    color: #000;
    background: #ffaa18;
    padding: 8px 15px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.blog-content a:hover {
    background: #225575;
    color: #fff;
}

.blog-content a i {
    margin-left: 5px;
    transition: transform 0.3s;
}

.blog-content a:hover i {
    transform: translateX(5px);
}

/* blog end */

/* contact index start */
.contact-section {
    padding: 40px 6%;
    background: #000;
    color: #fff;
}

.contact-section .section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 10px;
}

.contact-section .section-title span {
    color: #ffaa18;
}

.contact-section .section-subtitle {
    text-align: center;
    color: #ffffff;
    max-width: 600px;
    margin: 0 auto 50px auto;
    font-size: 16px;
    line-height: 1.6;
}

.contact-wrapper {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

/* Left Image */
.contact-image {
    flex: 1 1 45%;
    max-width: 500px;
}

.contact-image img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.contact-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
}

/* Right Form */
.contact-form {
    flex: 1 1 45%;
    max-width: 500px;
    background: #111;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 12px;
    border: none;
    background: #1a1a1a;
    color: #fff;
    font-size: 15px;
    resize: none;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    box-shadow: 0 0 10px #ffaa18;
    background: #222;
}

.contact-form .btn-submit {
    background: linear-gradient(135deg, #ffaa18, #ffcc66);
    color: #000;
    padding: 14px 40px;
    border-radius: 30px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
    font-size: 16px;
    letter-spacing: 1px;
}

.contact-form .btn-submit:hover {
    background: linear-gradient(135deg, #ffcc66, #ffaa18);
    transform: scale(1.05);
    color: #000;
}

/* Responsive */
@media (max-width: 991px) {
    .contact-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .contact-form {
        padding: 30px;
    }
}

/* contact index end */

/* footer start */
/* ===== Footer ===== */
footer {
    background: linear-gradient(90deg, #225575, #FFAA18);
    color: #fff;
    padding: 60px 20px 20px 20px;
    position: relative;
    overflow: hidden;
    font-family: "Poppins", sans-serif;
}

.footer-logo {
    font-size: 32px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #fff;
}

.footer-about {
    font-size: 15px;
    color: #ffffff;
    margin-top: 10px;
    line-height: 1.8;
}

.footer-heading {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
    position: relative;
}

.footer-heading::after {
    content: "";
    width: 40px;
    height: 2px;
    background: #ffaa17;
    display: block;
    margin-top: 5px;
    border-radius: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #ffaa17;
    text-decoration: none;
    padding-left: 5px;
}

.footer-contact p {
    color: #ffffff;
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-contact i {
    margin-right: 10px;
    color: #ffaa17;
}

/* Social Icons */
.footer-socials {
    margin-top: 25px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: flex-start;
}

.footer-socials a {
    width: 50px;
    height: 50px;
    background: linear-gradient(145deg,
            rgba(255, 255, 255, 0.08),
            rgba(0, 0, 0, 0.2));
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 20px;
    border-radius: 14px;
    text-decoration: none;
    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.6),
        -4px -4px 12px rgba(255, 255, 255, 0.05),
        inset 2px 2px 6px rgba(255, 255, 255, 0.06),
        inset -2px -2px 6px rgba(0, 0, 0, 0.25);
    transition: all 0.4s ease;
}

.footer-socials a:hover {
    background: #ffaa17;
    color: #fff;
    transform: translateY(-6px) scale(1.1) rotate(-5deg);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6),
        0 0 15px rgba(255, 170, 23, 0.4),
        inset 0 0 8px rgba(255, 170, 23, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 14px;
}

.footer-bottom a {
    color: #ffaa17;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {

    .footer-logo,
    .footer-about,
    .footer-bottom {
        text-align: left !important;
    }

    .footer-socials {
        justify-content: flex-start !important;
    }

    .footer-heading {
        margin-top: 30px;
        text-align: left !important;
    }

    .footer-contact p,
    .footer-links a,
    .footer-links li {
        text-align: left !important;
    }
}

/* footer end */

/* about us start */
/* ABOUT SECTION (RENAMED) */
.about-section {
    padding: 60px 6%;
    background: #000;
}

/* TEXT AREA */
.about-text h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #ffb32e;
    line-height: 1.3;
}

.about-text h2 span {
    color: #836e47;
}

.about-text p {
    color: #e6e6e6;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-top: 10px;
}

.about-text p strong {
    color: #ffb32e;
    font-weight: 600;
}

/* IMAGE */
.about-image img {
    width: 100%;
    border-radius: 18px;
    object-fit: cover;
}

/* RESPONSIVE FIXES */

@media (max-width: 991px) {
    .about-text h2 {
        font-size: 2.2rem;
        text-align: center;
    }

    .about-text p {
        text-align: center;
        font-size: 1rem;
    }

    .about-image {
        margin-top: 25px;
    }
}

@media (max-width: 600px) {
    .about-section {
        padding: 40px 4%;
    }

    .about-text h2 {
        font-size: 1.9rem;
    }

    .about-text p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
}

@media (max-width: 400px) {
    .about-text h2 {
        font-size: 1.7rem;
    }

    .about-text p {
        font-size: 0.9rem;
    }
}

/* about end */

/* breadcrumb start */
.abt-banner-sec {
    position: relative;
    /* background: url("images/bread.jpg") center/cover no-repeat; */
    height: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.abt-banner-layer {
    background: rgba(36, 85, 116, 0.35);
    width: 100%;
    height: 100%;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.abt-banner-layer h1 {
    font-family: "Playfair Display", serif;
    font-size: 48px;
    color: #c49331;
    margin: 10px 0;
    letter-spacing: 1px;
    font-weight: 700;
    /* Bold added */
}

.abt-banner-layer h1 span {
    color: #ffffff;
}

/* ===== Breadcrumb Styling ===== */
.abt-bread {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 500;
}

.abt-bread a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
}

.abt-bread a:hover {
    color: #c49331;
    /* Gold hover */
}

.abt-bread span {
    margin: 0 6px;
    color: #6e4a03;
    font-weight: 500;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .abt-banner-sec {
        height: 280px;
    }

    .abt-banner-layer h1 {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .abt-banner-sec {
        height: 220px;
    }

    .abt-banner-layer h1 {
        font-size: 30px;
    }

    .abt-bread {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .abt-banner-sec {
        height: 130px;
    }

    .abt-banner-layer h1 {
        font-size: 26px;
    }

    .abt-bread {
        font-size: 13px;
    }
}

/* breadcrumb end */

/* about page start */
/* SECTION BACKGROUND */
.choose-area {
    background: #000;
    /* padding: 70px 0; */
}

/* TITLE */
.choose-title h2 {
    font-size: 38px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.choose-title h2 span {
    color: #c49331;
}

.choose-title p {
    font-size: 18px;
    color: #ddd;
    margin-top: 10px;
}

/* CARDS */
.choose-card {
    background: #0d0d0d;
    border-radius: 14px;
    padding: 35px 25px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.07);
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* GOLD TOP BORDER */
.choose-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, #c49331, #e9bd6c);
}

/* CARD HOVER */
.choose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(255, 194, 102, 0.25);
}

/* ICON BOX */
.choose-icon {
    height: 80px;
    width: 80px;
    border-radius: 50%;
    background: rgba(196, 147, 49, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 35px;
    color: #c49331;
    transition: 0.3s;
}

.choose-card:hover .choose-icon {
    background: rgba(196, 147, 49, 0.3);
    transform: scale(1.1);
}

/* HEADING */
.choose-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}

/* TEXT */
.choose-card p {
    font-size: 15px;
    color: #ccc;
    margin-top: 10px;
    line-height: 1.7;
}

.course-area {
    background: #0a0a0a;
    padding: 70px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* TITLE */
.course-title h2 {
    font-size: 38px;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
}

.course-title h2 span {
    color: #c49331;
}

.course-title p {
    color: #ccc;
    margin-top: 10px;
    font-size: 18px;
}

/* CARD */
.course-card {
    background: #111;
    border-radius: 14px;
    padding: 35px 25px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* GOLD LINE */
.course-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, #c49331, #e9bd6c);
}

/* CARD HOVER */
.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(255, 194, 102, 0.25);
}

/* ICON */
.course-icon {
    height: 80px;
    width: 80px;
    background: rgba(196, 147, 49, 0.15);
    color: #c49331;
    font-size: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: 0.3s;
}

.course-card:hover .course-icon {
    background: rgba(196, 147, 49, 0.3);
    transform: scale(1.1);
}

/* HEADING */
.course-card h4 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
}

/* TEXT */
.course-card p {
    color: #ccc;
    font-size: 15px;
    margin-top: 10px;
    line-height: 1.7;
}

/* about page end */

/* mini banner start */
/* SECTION */
.intro-section {
    background: #000;
    padding: 35px 0;
    /* border-radius: 12px; */
    /* margin: 40px auto; */
}

.intro-section h1 {
    color: #ffffff;
    font-size: 1.9rem;
    font-weight: 700;
    margin: 0;
}

/* BUTTON */
.cta-btn {
    background: linear-gradient(135deg, #275773, #E09E26);
    border: none;
    color: #ffffff;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: 0.3s ease-in-out;
    display: inline-block;
}

.cta-btn:hover {
    background: linear-gradient(135deg, #E09E26, #275773);
    transform: translateY(-3px);
}

.cta-btn a {
    color: #ffffff;
    text-decoration: none;
}

/* mini banner end */

/* experience-section start */
/* =================== MAIN SECTION =================== */
.experience-section {
    padding: 10px 0;
    background: #000;
    /* Black Luxury Background */
}

.experience-title {
    text-align: center;
    margin-bottom: 60px;
}

.experience-title h2 {
    font-family: "Playfair Display", serif;
    color: #b98f36;
    /* Gold */
    font-size: 42px;
    font-weight: 600;
}

.experience-title p {
    font-size: 17px;
    color: #e4e4e4;
    max-width: 700px;
    margin: 10px auto 0;
    line-height: 1.8;
}

/* =================== BLOCK STYLING =================== */
.exp-block {
    margin-bottom: 100px;
    opacity: 0;
    transform: translateY(50px);
    transition: 0.8s ease;
}

.exp-block.show {
    opacity: 1;
    transform: translateY(0);
}

.exp-image {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(185, 143, 54, 0.4);
}

.exp-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 14px;
    transition: 0.6s ease;
}

.exp-image:hover img {
    transform: scale(1.07);
    filter: brightness(1.08);
}

.exp-content h3 {
    color: #b98f36;
    font-family: "Playfair Display", serif;
    font-size: 32px;
    margin-bottom: 18px;
}

.exp-content p {
    color: #d8d8d8;
    font-size: 17px;
    line-height: 1.9;
    text-align: justify;
}

/* =================== MOBILE RESPONSIVE =================== */
@media (max-width: 992px) {
    .exp-content {
        text-align: center;
        padding-top: 20px;
    }

    .exp-image img {
        height: 280px;
    }
}

@media (max-width: 576px) {
    .experience-section {
        padding: 50px 0;
    }

    .experience-title h2 {
        font-size: 30px;
    }

    .exp-content h3 {
        font-size: 24px;
    }

    .exp-image img {
        height: 220px;
    }
}

/* experience-section end */


/* services start */
.services-new {
    background: #000;
    padding: 20px 0;
    position: relative;
}

.services-heading h2 {
    text-align: center;
    color: #B98F36;
    font-size: 50px;
    font-family: "Playfair Display", serif;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.services-heading p {
    text-align: center;
    color: #d2d2d2;
    max-width: 700px;
    margin: 0 auto 80px;
    font-size: 18px;
    opacity: 0.8;
}

/* ---------------- SERVICE CARD ---------------- */
.service-item {
    background: #111;
    border-radius: 18px;
    padding: 35px 30px;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(60px);
    cursor: pointer;
    border-left: 4px solid transparent;
}

.service-item:hover {
    transform: translateY(-10px) scale(1.02);
    border-left: 4px solid #B98F36;
    box-shadow: 0 20px 60px rgba(185, 143, 54, 0.3);
}

/* Icon with animated glow */
.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(185, 143, 54, 0.12);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-icon::after {
    content: "";
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(185, 143, 54, 0.25) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.5s ease;
    top: -10%;
    left: -10%;
    border-radius: 50%;
    z-index: 0;
}

.service-item:hover .service-icon::after {
    opacity: 1;
    transform: scale(1.2);
}

.service-icon i {
    font-size: 30px;
    color: #B98F36;
    z-index: 1;
}

/* Content */
.service-content h4 {
    color: #B98F36;
    font-size: 24px;
    margin-top: 15px;
    margin-bottom: 12px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.service-item:hover .service-content h4 {
    color: #ffd700;
}

.service-content p {
    color: #dcdcdc;
    opacity: 0.85;
    line-height: 1.7;
    font-size: 16px;
}

/* Fade-in animation */
.service-item.show {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .service-item {
        text-align: center;
        padding: 30px 20px;
    }

    .service-icon {
        margin: 0 auto;
    }
}

/* services end */

/* contact start */
/* ===== CONTACT SECTION STYLES ===== */
.contact-section {
    background: #000;
    color: #fff;
    font-family: "Poppins", sans-serif;
    padding: 100px 0;
}

.contact-section h2 {
    color: #b98f36;
    font-size: 50px;
    font-family: "Playfair Display", serif;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-section p {
    text-align: center;
    color: #dcdcdc;
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 17px;
    opacity: 0.8;
}

/* ===== FORM & INFO ===== */
.contact-section .contact-form,
.contact-section .contact-info {
    background: #111;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 35px rgba(185, 143, 54, 0.25);
    border: 1px solid rgba(185, 143, 54, 0.3);
    transition: 0.4s ease;
}

.contact-section .contact-form .form-control {
    background: #1a1a1a;
    border: 1px solid #444;
    color: #fff;
    padding: 15px 12px;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: 0.4s;
}

.contact-section .contact-form .form-control::placeholder {
    color: #ccc;
}

.contact-section .contact-form .form-control:focus {
    border-color: #b98f36;
    box-shadow: 0 0 10px rgba(185, 143, 54, 0.5);
    outline: none;
}

.contact-section .contact-form button {
    background: #b98f36;
    color: #000;
    font-weight: 700;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    transition: 0.4s;
    width: 100%;
}

.contact-section .contact-form button:hover {
    background: #ffdb4d;
    transform: scale(1.05);
}

/* ===== MAP ===== */
.contact-section .map-container {
    margin-top: 0;
    /* align with form */
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(185, 143, 54, 0.25);
}

/* ===== FLOATING WHATSAPP BUTTON ===== */
.contact-section .whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: #fff;
    padding: 15px 18px;
    border-radius: 50px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    font-size: 24px;
    z-index: 1000;
    transition: 0.3s;
}

.contact-section .whatsapp-btn:hover {
    background: #128c7e;
    transform: scale(1.1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {

    .contact-section .contact-form,
    .contact-section .contact-info {
        margin-bottom: 30px;
    }
}

/* contact end */