@import url('https://fonts.googleapis.com/css2?family=Philosopher:ital,wght@0,400;0,700;1,400;1,700&display=swap');

.philosopher-regular {
    font-family: "Philosopher", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.philosopher-bold {
    font-family: "Philosopher", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.philosopher-regular-italic {
    font-family: "Philosopher", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.philosopher-bold-italic {
    font-family: "Philosopher", sans-serif;
    font-weight: 700;
    font-style: italic;
}


body {
    background-color: black !important;
}



.poster-content h2 {
    font-size: 48px;
    color: #f1c40f;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.poster-content p {
    font-size: 18px;
    color: #f5f5f5;
    margin-top: 15px;
    line-height: 1.6;
}

.btn-box {
    margin-top: 30px;
}

.btn1,
.btn2 {
    border: none;
    padding: 12px 25px;
    margin-right: 15px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.4s ease;
}

.btn1 {
    background: #000;
    color: #f1c40f;
    border: 2px solid #f1c40f;
}

.btn1:hover {
    background: #f1c40f;
    color: #000;
}

.btn2 {
    background: #f1c40f;
    color: #000;
    border: 2px solid #f1c40f;
}

.btn2:hover {
    background: transparent;
    color: #f1c40f;
}





.main-header,
.second-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;

}

.main-header {
    transform: translateY(0);
    opacity: 1;
    background-color: black;
    box-shadow: rgba(27, 31, 35, 0.04) 0px 1px 0px, rgba(255, 255, 255, 0.25) 0px 1px 0px inset;

}

.second-header {
    transform: translateY(-100%);
    opacity: 0;
    background-color: black;
    box-shadow: rgba(27, 31, 35, 0.04) 0px 1px 0px, rgba(255, 255, 255, 0.25) 0px 1px 0px inset;
}

.second-header .nav-link {
    color: #AEADAD !important;
    margin-left: 20px !important;
}

.navbar-nav .nav-link {
    position: relative;
    color: #fff;
    /* text color */
    padding: 10px 15px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%) scaleX(0);
    width: 50%;
    height: 3px;
    background: linear-gradient(90deg, #FFD700, #FFB800);
    /* golden gradient */
    border-radius: 2px;
    transition: transform 0.3s ease;
}

/* Hover effect */
.navbar-nav .nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

/* Active link effect */
.navbar-nav .nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

.navbar-nav .nav-link.active {
    color: goldenrod;
    /* optional - make active text golden too */
}


.main-header.hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.second-header.visible {
    transform: translateY(0);
    opacity: 1;
}

.main-header {
    transform: translateY(0);
    opacity: 1;
}

.main-header.hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.second-header {
    transform: translateY(-100%);
    opacity: 0;
}

.second-header.visible {
    transform: translateY(0);
    opacity: 1;
}


.call-btn {
    display: flex;
    background-color: goldenrod;
    padding: 10px 20px;
    text-decoration: none;
    color: black;
    align-items: center;
    gap: 10px;
    border-radius: 4px;
}

.call-btn a {
    text-decoration: none;
    color: black;
}

.logo img {
    width: 360px;
    margin-left: 20px;

}

.nav-top-bar {
    display: flex;
    justify-content: space-between;
    padding: 5px;
    align-items: center;
}

.detail-box-main {
    display: flex;
    align-items: center;
    gap: 10px;

}

.detail-box {
    background-color: black;
    padding: 8px;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;

}

.icon {
    background-color: rgb(32, 32, 32);
    padding: 16px 16px;
    height: max-content;
    width: max-content;
    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50px;
}

.detail-box h4 {
    font-size: 16px;
    margin: 0px;
    padding: 0px;
}

.detail-box span {
    font-size: 12px;
    color: #666666;
}

.icon i {
    font-size: 24px;
}

.line {
    border: 1px solid rgba(255, 255, 255, 0.09);
    height: 110px;
    width: 1px;
}

body {
    background-color: #000;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px;
}

.social-icon .icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #ff00cc, #3333ff);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 22px;
    transition: all 0.4s ease;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    cursor: pointer;
}

.social-icon .icon:hover {
    transform: scale(1.2) rotate(10deg);
    box-shadow: 0 0 25px #fff, 0 0 45px var(--hover-color);
}

/* Custom gradient per icon */
.social-icon .icon:nth-child(1) {
    background: linear-gradient(45deg, #1877f2, #00aaff);
    /* Facebook */
    --hover-color: #1877f2;
}

.social-icon .icon:nth-child(2) {
    background: linear-gradient(45deg, #1da1f2, #00c6ff);
    /* Twitter */
    --hover-color: #1da1f2;
}

.social-icon .icon:nth-child(3) {
    background: linear-gradient(45deg, #ff416c, #ff4b2b);
    /* Instagram */
    --hover-color: #ff4b2b;
}

.social-icon .icon:nth-child(4) {
    background: linear-gradient(45deg, #0077b5, #00a0dc);
    /* LinkedIn */
    --hover-color: #0077b5;
}



.menu {
    padding: 16px;
}

.menu ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.menu ul li {
    position: relative;
}

.menu ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 0;
    display: inline-block;
    position: relative;
    transition: color 0.3s ease;
}

/* Hover & Active underline */
.menu ul li a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%) scaleX(0);
    width: 50%;
    height: 3px;
    background: linear-gradient(90deg, goldenrod, goldenrod);
    border-radius: 2px;
    transition: transform 0.3s ease;
}

/* Hover or Active */
.menu ul li a:hover::after,
.menu ul li a.active::after {
    transform: translateX(-50%) scaleX(1);
}

/* Optional: Active text color */



.menu ul {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 30px;
    margin: 0px;
    padding: 0px;
    list-style: none;
    margin-left: 20px;
}

.menu a {
    text-decoration: none;
    color: rgba(221, 221, 221, 0.784);
    font-size: 18px;

}

/* Flex container */
.d-flex {
    align-items: center;
    gap: 10px;
}

/* Icon style */
.icon2 {
    color: #FFD700;
    /* golden color for the bullhorn */
    font-size: 22px;
}

/* Marquee container */
.announcement-marquee {
    flex: 1;
    /* take remaining space */
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

/* Scrolling text */
.announcement-text {
    display: inline-block;

    animation: scroll-left 20s linear infinite;
    list-style: none;
    margin: 0;
    padding: 0;
}

.announcement-text {
    display: flex;
    gap: 10px;
}

/* Individual items */
.announcement-text li {

    background-color: rgba(30, 30, 30, 0.552);
    color: #fff;
    padding: 5px 12px;
    border-radius: 4px;
    font-weight: 600;
}

/* Pause scrolling on hover */
.announcement-marquee:hover .announcement-text {
    animation-play-state: paused;
}

/* Scroll animation */
@keyframes scroll-left {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}


.icon2 {
    background-color: rgb(32, 32, 32);
    padding: 12px 12px;
    height: max-content;
    width: max-content;
    transform: rotate(-30deg);
    display: flex;
    color: white;
    align-items: center;
    justify-content: center;

    border-radius: 50px;
}


.poster {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 190px;
}

.poster-carousel .item {
    position: relative;
    width: 100%;
    height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.poster-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    background: linear-gradient(96deg, rgba(0, 0, 0, 1) 0%, rgba(196, 141, 46, 0) 100%);
    z-index: 1;
}


.poster-content {
    max-width: 650px;
    text-align: left;
    opacity: 0;
    transform: translateY(-50%);
    /* Center vertically */
    transition: all 0.8s ease;
    position: absolute;
    z-index: 99;
    top: 30%;
    /* Move to the middle of the container */
    left: 80px;
    /* Optional: align to left */
}

.owl-item.active .poster-content {
    opacity: 1;
    transform: translateY(0);
}



.btn-box {
    display: flex;
    gap: 15px;
}



.about-section {
    padding: 20px 0px;
    color: white
}

.about-section p {
    color: rgba(255, 255, 255, 0.753) !important;
    font-weight: 300 !important;


}

.heading-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px 0px;
}

/* About Section - Black & Golden Theme */
.about-section {
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(218, 165, 32, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(218, 165, 32, 0.06) 0%, transparent 50%);
    pointer-events: none;
}


.stroke {
    -webkit-text-stroke-width: 2px;
    -moz-text-stroke-width: 2px;
    -webkit-text-stroke-color: #d4af37;
    -moz-text-stroke-color: #d4af37;
    color: transparent;
    font-size: 54px;
    font-weight: 700;
    margin: 0 0 15px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: strokeGlow 3s ease-in-out infinite;
}

@keyframes strokeGlow {

    0%,
    100% {
        -webkit-text-stroke-color: #d4af37;
        filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
    }

    50% {
        -webkit-text-stroke-color: #f4d03f;
        filter: drop-shadow(0 0 20px rgba(244, 208, 63, 0.5));
    }
}

.heading-section p {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 16px;
    font-weight: 300 !important;
    max-width: 600px;
    text-align: center;
}


/* Left Content Column */
.about-section .col-lg-6 h2 {
    color: #ffffff;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    position: relative;
}

.about-section .col-lg-6 h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #d4af37 0%, transparent 100%);
}

.about-section p {
    color: rgba(255, 255, 255, 0.75) !important;
    font-weight: 300 !important;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Tag Styling */
.tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(218, 165, 32, 0.25) 100%);
    color: #f4d03f;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}



/* Left Box - Experience */
.exp-box {
    background: linear-gradient(135deg, #d4af37 0%, #c9a961 100%);
    padding: 30px 35px;
    border-radius: 12px;
    text-align: center;
    min-width: 180px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.exp-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: shimmer 4s infinite;
}

@keyframes shimmer {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-30px, -30px);
    }
}

.exp-box h4 {
    font-size: 48px;
    font-weight: 700;
    color: #0a0a0a;
    margin: 0 0 8px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.exp-box h6 {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

/* Point Box */
.point-box {
    flex: 1;
    display: flex;
    align-items: center;
}

.point-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.point-box ul li {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.point-box ul li:last-child {
    margin-bottom: 0;
}

.point-box ul li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: #d4af37;
    font-size: 18px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.point-box ul li strong {
    color: #f4d03f;
    font-weight: 600;
}

/* Button Styling */
.main-btn {
    display: inline-block;
    padding: 14px 40px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #0a0a0a;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid transparent;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.main-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.124);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}



.main-btn:hover::before {
    width: 300px;
    height: 300px;
}

.main-btn:active {
    transform: translateY(-1px);
}

/* Image Container */
.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(212, 175, 55, 0.2);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-image: linear-gradient(135deg, #d4af37, transparent, #f4d03f);
    border-image-slice: 1;
    border-radius: 20px;
    z-index: 1;
    pointer-events: none;
}

.about-image::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
    filter: blur(10px);
}

.about-image img {
    display: block;
    width: 100%;
    height: auto;
    height: 530px;
    object-fit: cover;

    border-radius: 20px;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Achievement Section - Black & Golden Theme */
.achievement-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.achievement-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(244, 208, 63, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(218, 165, 32, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.achievement-section .container {
    position: relative;
    z-index: 1;
}

/* Achievement Box */
.achievement-box {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(26, 26, 26, 0.9) 100%);
    border: 2px solid rgba(212, 175, 55, 0.25);
    border-radius: 20px;
    padding: 20px 10px;
    height: 200px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Golden Corner Accent */
.achievement-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    border-radius: 0 20px 0 100%;
    transition: all 0.5s ease;
}

/* Bottom Glow Effect */
.achievement-box::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d4af37, #f4d03f, #d4af37, transparent);
    transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
}

/* Hover Effects */
.achievement-box:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(26, 26, 26, 0.95) 100%);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3),
        0 0 40px rgba(212, 175, 55, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.achievement-box:hover::before {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
}

.achievement-box:hover::after {
    width: 100%;
}

/* Counter Number */
.achievement-box .counter {
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 15px 0;
    position: relative;
    display: inline-block;
    animation: gradientShift 3s ease infinite;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.achievement-box:hover .counter {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.6));
}

/* Counter Glow Effect */
.achievement-box .counter::after {
    content: attr(data-target);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(15px);
    opacity: 0.5;
    z-index: -1;
}

/* Description Text */
.achievement-box p {
    font-size: 19px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    position: relative;
    transition: all 0.3s ease;
}

.achievement-box:hover p {
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 2.5px;
}

/* Icon/Badge Effect (Optional Enhancement) */
.achievement-box .counter::before {
    content: '★';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    color: #d4af37;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.achievement-box:hover .counter::before {
    opacity: 1;
    top: -40px;
    animation: starTwinkle 1.5s ease-in-out infinite;
}

@keyframes starTwinkle {

    0%,
    100% {
        transform: translateX(-50%) scale(1) rotate(0deg);
        opacity: 0.8;
    }

    50% {
        transform: translateX(-50%) scale(1.2) rotate(180deg);
        opacity: 1;
    }
}


/* Animation on Scroll (Optional Enhancement) */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.achievement-box {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.achievement-box:nth-child(1) {
    animation-delay: 0.1s;
}

.achievement-box:nth-child(2) {
    animation-delay: 0.2s;
}

.achievement-box:nth-child(3) {
    animation-delay: 0.3s;
}

.achievement-box:nth-child(4) {
    animation-delay: 0.4s;
}

/* Particle Effect Background (Optional Advanced) */
.achievement-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(2px 2px at 20% 30%, rgba(212, 175, 55, 0.3), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(244, 208, 63, 0.3), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(212, 175, 55, 0.2), transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(244, 208, 63, 0.2), transparent);
    background-size: 200% 200%, 300% 300%, 250% 250%, 280% 280%;
    background-position: 0% 0%, 100% 100%, 50% 50%, 0% 100%;
    animation: particleFloat 20s ease-in-out infinite;
    pointer-events: none;
    opacity: 0.4;
}

@keyframes particleFloat {

    0%,
    100% {
        background-position: 0% 0%, 100% 100%, 50% 50%, 0% 100%;
    }

    50% {
        background-position: 100% 100%, 0% 0%, 25% 75%, 100% 0%;
    }
}




/* Service Section - Black & Golden Theme */
.serivce-container {
    padding: 30px 0;
    position: relative;
    overflow: hidden;
}

.serivce-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(212, 175, 55, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(244, 208, 63, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Heading Section */
.serivce-container .heading-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 0 60px 0;
    position: relative;
    z-index: 1;
}




.service-card {
    position: relative;
    height: 100%;
    margin-bottom: 30px;
    perspective: 1000px;
}

.service-card .content {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(212, 175, 55, 0.15);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);

}

.service-card .content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(212, 175, 55, 0.1) 0%,
            transparent 50%,
            rgba(244, 208, 63, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 1;
    pointer-events: none;
}

.service-card:hover .content {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 70px rgba(212, 175, 55, 0.4),
        0 0 50px rgba(212, 175, 55, 0.3);
    border-color: rgba(212, 175, 55, 0.5);
}

.service-card:hover .content::before {
    opacity: 1;
}

/* Image Container */
.service-card .image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.service-card .image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70%;
    background: linear-gradient(to top,
            rgba(10, 10, 10, 0.95) 0%,
            rgba(10, 10, 10, 0.85) 40%,
            rgba(10, 10, 10, 0.4) 70%,
            transparent 100%);
    z-index: 1;
    transition: all 0.6s ease;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-image {
    transform: scale(1.15);
}

/* Details Section */
.service-card .details {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 25px;
    z-index: 2;
    transform: translateY(0);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .details {
    transform: translateY(-10px);
}

/* Title */
.service-card .details h5 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px 0;
    line-height: 1.4;
    text-align: left;
    position: relative;
    padding-bottom: 15px;
    transition: all 0.4s ease;
}

.service-card .details h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #d4af37 0%, #f4d03f 100%);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.service-card:hover .details h5 {
    color: #f4d03f;
    text-shadow: 0 0 20px rgba(244, 208, 63, 0.3);
}

.service-card:hover .details h5::after {
    width: 100%;
    background: linear-gradient(90deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
}

/* Read More Link */
.service-card .details a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #d4af37;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.service-card .details a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, #f4d03f);
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .details a {
    color: #f4d03f;
    gap: 15px;
}

.service-card:hover .details a::before {
    width: 100%;
}

.service-card .details a i {
    font-size: 14px;
    transition: all 0.3s ease;
}

.service-card:hover .details a i {
    transform: translateX(5px) translateY(-5px);
    color: #f4d03f;
    filter: drop-shadow(0 0 10px rgba(244, 208, 63, 0.6));
}

/* Golden Corner Decoration */
.service-card .content::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
    border-radius: 0 25px 0 100%;
    z-index: 2;
    opacity: 0;
    transition: all 0.5s ease;
}

.service-card:hover .content::after {
    opacity: 1;
    width: 80px;
    height: 80px;
}





/* Animation Entrance */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card {
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.service-card:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.3s;
}

.service-card:nth-child(4) {
    animation-delay: 0.4s;
}

/* Glowing Border Effect on Hover */
@keyframes borderGlow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    }

    50% {
        box-shadow: 0 0 40px rgba(244, 208, 63, 0.6);
    }
}

.service-card:hover .content {
    animation: borderGlow 2s ease-in-out infinite;
}



.review-section {
    padding: 60px 0px;

}

.review-box {
    /* From https://css.glass */
    background: rgba(255, 255, 255, 0.222) !important;
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8.2px);
    -webkit-backdrop-filter: blur(1.2px);
    border-radius: 18px;
    box-shadow: 0 8px 32px 0 rgba(40, 40, 80, 0.2);
    position: relative;
    padding: 27px;
}


.user-info {
    border-bottom: 1px solid rgba(200, 170, 40, 0.2);
    /* Gold separator */
    padding-bottom: 10px;


}

.user-image {
    border: 3px solid #C8AA28;
    /* Gold border on avatar */
    background: none;
    box-shadow: 0 2px 10px rgba(200, 170, 40, 0.14);
}

.review-box .review-rating i.fas.fa-star {
    color: #FFD700;
    /* Gold filled star */
    text-shadow: 0 1px 6px rgba(200, 170, 40, 0.38);
}

.review-box .review-rating i.far.fa-star {
    color: rgba(220, 220, 220, 0.33);
    /* Soft muted unfilled */
}

.review-box h5,
.review-box .review-text {
    color: #FFD700;
    /* Gold text */
    font-weight: 600;
}

.review-box .review-text {
    color: #EEEEEE;
    /* Gentle light for text */
    font-weight: 400;
    margin-top: 12px;
}

.review-box small.text-muted {
    color: #C8AA28;
    font-size: 13px;
    font-weight: 500;
}


.swiper-pagination-bullet {
    background: #FFD700 !important;
    opacity: 0.8;
}

.swiper-pagination-bullet-active {
    background: #C8AA28 !important;
    opacity: 1;
}

.review-box {
    transition: box-shadow 0.18s, border-color 0.18s;
}

.review-box:hover {
    box-shadow: 0 8px 36px 0 rgba(255, 215, 0, 0.41);
    border-color: #FFD700;
}



/* 🌸 Footer Base */
.belesaia-footer {
    position: relative;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(10, 15, 68, 0.9));
    color: #fff;
    padding: 60px 0 20px;
    overflow: hidden;

}

/* 🌌 Circle Gradient Bottom Glow */
.belesaia-footer::after {
    content: "";
    position: absolute;
    bottom: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #0A0F44, #000000);
    opacity: 0.6;
    filter: blur(120px);
    border-radius: 50%;
    z-index: 0;
}

/* 🌌 Background Styling */
.connect-section {
    position: relative;

    overflow: hidden;
    color: #fff;
}

.connect-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 14, 0.72);
    backdrop-filter: blur(6px);
    z-index: 1;
}

.connect-data {
    position: relative;
    z-index: 2;
}

/* 🪷 Section Heading */
.section-heading {
    font-size: 2.2rem;
    color: #FFD700;
    text-shadow: 0 3px 18px rgba(255, 215, 0, 0.25);
}

.section-heading span {
    color: #fff;
    font-weight: 400;
    font-size: 1.2rem;
    opacity: 0.85;
}

/* 🌿 Accordion */
.accordion {
    background: transparent;
    border-radius: 14px;
}

/* 🎋 Accordion Item */
.accordion-item {
    background: rgba(20, 20, 30, 0.55) !important;
    border: 1.4px solid rgba(200, 170, 40, 0.4);
    border-radius: 10px !important;
    margin-bottom: 14px;
    box-shadow: 0 4px 22px rgba(20, 20, 40, 0.3) !important;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    transform: translateY(-3px) !important;
    border-color: #FFD700 !important;
    box-shadow: 0 6px 28px rgba(255, 215, 0, 0.22) !important;
}

/* ✨ Accordion Button */
.accordion-button {
    background: transparent !important;
    color: #fff !important;
    font-weight: 600;
    font-size: 1.05rem;
    box-shadow: none;
    padding: 16px 20px;
    transition: all 0.3s ease;
    box-shadow: none !important;

}



.accordion-button:not(.collapsed) {
    color: #FFD700 !important;
    background: rgba(255, 215, 0, 0.08) !important;
    box-shadow: inset 0 0 20px rgba(255, 215, 0, 0.1) !important;
}

/* 🌼 Accordion Body */
.accordion-body {
    background: rgba(255, 255, 255, 0.05) !important;
    color: #f3f3f3;
    padding: 18px 20px;
    line-height: 1.6;
    border-top: 1px solid rgba(255, 215, 0, 0.3);
    font-size: 0.98rem;
}


.poster2 {
    position: relative;
    background: url('/image/poster.jpg') no-repeat center center/cover;
    height: 600px;
    padding: 60px 0;
    color: #fff;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* ✅ Overlay for dark tint */
.poster2 .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.794);
    backdrop-filter: blur(2px);
    z-index: 1;
}

/* ✅ Ensure content appears above overlay */
.poster2 .container {
    position: relative;
    z-index: 2;
}

/* ✅ Text Styling */
.poster2 .text {
    color: #fffbea;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.poster2 h3 {
    color: #FFD700;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.poster2 p {
    color: #fffde8;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* ✅ Progress Box Styling */
.progress-box {
    background: rgba(25, 18, 18, 0.46);
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(40, 40, 80, 0.19);
    backdrop-filter: blur(10px);
    padding: 25px;
    border: 1.5px solid rgba(200, 170, 40, 0.37);
}

.progress-box h6 {
    color: #FFD700;
    font-weight: 600;
    margin-bottom: 8px;
    margin-top: 18px;
    letter-spacing: 1px;
}

.progress {
    background: rgba(255, 255, 255, 0.14);
    border-radius: 7px;
    height: 26px;
    margin-bottom: 14px;
    position: relative;
    overflow: hidden;
}

.progress-bar {
    font-weight: 700;
    font-size: 1rem;
    border-radius: 7px;
    transition: width 0.6s ease;
    text-align: center;
    line-height: 26px;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

/* ✅ Gold Gradients */
.bg-gold {
    background: linear-gradient(90deg, #FFD700 60%, #C8AA28 100%);
    color: #1a191a;
}

.bg-goldlight {
    background: linear-gradient(90deg, #FFE66A 50%, #FFD700 100%);
    color: #272514;
}

.bg-golddark {
    background: linear-gradient(90deg, #C8AA28 50%, #FFD700 100%);
    color: #e2d48e;
}


/* ===== Section Title ===== */
.section-tag {
    display: inline-block;
    color: #FFD700;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 1rem;
}

.section-title {
    color: #fff;
    font-size: 2.4rem;
    font-weight: 800;
    margin-top: 10px;
    text-shadow: 0 2px 16px rgba(255, 215, 0, 0.15);
}

.section-subtitle {
    color: #ddd;
    font-size: 1.05rem;
    margin-top: 8px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

/* ===== Pricing Boxes ===== */
.pricing-section {
    background: radial-gradient(ellipse at top, #1a191db1 100%, #0f0e1200 0%);
    position: relative;
    padding: 60px 0px;
    overflow: hidden;
    color: #fff;
}

.pricing-box {
    position: relative;
    background: rgba(18, 18, 28, 0.55);
    border-radius: 18px;
    border: 1.5px solid rgba(200, 170, 40, 0.6);
    box-shadow: 0 8px 32px rgba(40, 40, 80, 0.16);
    padding: 38px 22px 32px;
    backdrop-filter: blur(14px);
    transition: all 0.35s ease-in-out;
    z-index: 1;
}


/* ===== Featured Box ===== */
.pricing-box.featured {
    transform: scale(1.08);
    box-shadow: 0 18px 44px rgba(255, 215, 0, 0.38);
    border-color: #FFD700;
    z-index: 3;
    position: relative;
    overflow: hidden;
}

.glow-border {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.25), transparent);
    animation: glowMove 3s linear infinite;
    z-index: 0;
}


.featured-tag {
    background: white;
    color: black !important;
    padding: 5px 18px;
    border-radius: 40px;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-block;
}

/* ===== Text Styling ===== */
.tag {
    color: #FFD700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 600;
}

.pricing-box h3 {
    color: #fff;
    font-size: 1.5rem;
    text-shadow: 0 2px 12px rgba(255, 215, 0, 0.1);
}

.price {
    font-size: 2.2rem;
    font-weight: 800;
    color: #FFD700;
    margin-bottom: 20px;
}

.price .currency {
    font-size: 1.4rem;
    vertical-align: top;
    margin-right: 4px;
    opacity: 0.9;
}

.pricing-list li {
    margin: 8px 0;
    color: #e8e8e8;
    font-size: 1rem;
    position: relative;
    padding-left: 18px;
}

.pricing-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #FFD700;
    font-size: 0.9rem;
}

/* ===== Links ===== */
.explore-link {
    display: inline-block;
    margin-top: 10px;
    color: #FFD700;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s;
    border-bottom: 1px solid transparent;
}

.explore-link:hover {
    border-bottom: 1px solid #FFD700;
    color: #fff;
}

.explore-featured {
    background: linear-gradient(90deg, #FFD700, #FFEA80);
    color: #000;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 700;
    transition: all 0.3s;
    border: none;
}

.explore-featured:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
    color: #000;
}


/* ===========================
🌟 OUR SERVICE SECTION
=========================== */
.product-section {
    color: #fff;
    padding-top: 60px;
    position: relative;
    overflow: hidden;
}

.product-card {
    background: linear-gradient(135deg, #232220 60%, #251e11 100%);
    border: 1.5px solid rgba(212, 175, 55, 0.23);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 24px rgba(212, 175, 55, 0.12);
    transition: box-shadow 0.4s, border-color 0.4s, transform 0.35s;
    min-height: 520px;
    position: relative;
    margin-top: 20px;
}

.product-card:hover {
    border-color: #d4af37;
    box-shadow: 0 8px 48px rgba(212, 175, 55, 0.24);
    transform: translateY(-8px) scale(1.03);
}

.product-card .content {
    padding: 0;
}

.product-card a {
    text-decoration: none;
}

.product-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
    transition: transform 0.5s cubic-bezier(0.38, 0.76, 0.46, 1.22);
}

.product-card:hover img {
    transform: scale(1.11) rotate(1deg);
    filter: brightness(0.93) saturate(1.1);
}

.details {
    padding: 24px 20px;
    text-align: left;
    background: transparent;
}

.product-title {
    font-size: 22px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    transition: color 0.3s;
}

.details a:hover .product-title {
    color: #d4af37;
}

.product-price h6 {
    font-size: 18px;
    color: #d4af37;
    font-weight: 700;
    letter-spacing: 0.15em;
}

.product-star i {
    color: #d4af37;
    font-size: 13px;
    margin-right: 2px;
    transition: color 0.22s;
}

.product-star i.far {
    color: #a0892e;
}

.details a {
    color: #d4af37;
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
    margin-top: 9px;
    display: inline-block;
    transition: color 0.3s;
    letter-spacing: 1px;
}

.details a i {
    margin-left: 7px;
    transition: transform 0.35s;
}

.details a:hover {
    color: #fff;
}

.details a:hover i {
    transform: translateX(6px) scale(1.13);
}

/* Explore Button */
.main-btn {
    display: inline-block;
    background: linear-gradient(87deg, #d4af37 60%, #b88912 100%);
    color: #191714;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 14px 36px;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid #d4af37;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.16);
    font-size: 17px;
    transition: all 0.34s;
}

.main-btn:hover,
.main-btn:focus {
    background: transparent;
    color: #d4af37;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.33);
}







/* 🌟 Footer Content */
.belesaia-footer .container {
    position: relative;
    z-index: 2;
}

.footer-logo img {
    width: 290px;
    margin-bottom: 15px;
}

.footer-about {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
}

.footer-heading {
    color: #C48E2E;

    font-size: 18px;
    margin-bottom: 15px;
    position: relative;
    font-weight: 600;
}

.footer-heading::after {
    content: "";
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #FFD700, #07070A);
    position: absolute;
    bottom: -5px;
    left: 0;
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #FFD700;
    padding-left: 5px;
}

/* Contact & Social */
.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 8px;
    color: #ccc;
}

.footer-contact i {
    color: #FFD700;
    margin-right: 8px;
}

.footer-social a {
    display: inline-block;
    margin-right: 10px;
    color: #fff;
    border: 1px solid #FFD700;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    text-align: center;
    line-height: 36px;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #FFD700;
    color: #000;
}

/* Timing Table */
.footer-timing {
    width: 100%;
    color: #ccc;
    font-size: 14px;
}

.footer-timing td {
    padding: 4px 8px;
    border: none;
}

/* Bottom Text */
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: #aaa;
}

.footer-quote {
    color: #ddd;
    font-style: italic;
    margin-top: 10px;
}


/* 🌌 Section Background */
.why-choose-section {
    position: relative;
    background: linear-gradient(-185deg, #00000000, #0212221d, #0175d493);
    color: #fff;
    overflow: hidden;
    padding: 60px 0px;
}

.why-choose-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top center,
            rgba(255, 217, 0, 0),
            transparent 70%),
        radial-gradient(circle at bottom center,
            rgba(3, 101, 183, 0.2),
            transparent 75%);
    pointer-events: none;
    z-index: 0;
}


.why-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255, 217, 0, 0), transparent 60%),
        radial-gradient(circle at bottom right, rgba(3, 101, 183, 0.15), transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.section-title {
    font-size: 2.4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #FFD700;
    text-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    z-index: 2;
    position: relative;
}

.section-title span {
    color: #ffffff;
    font-weight: 500;
}

/* 💫 Animated Floating Grid Layout */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.why-box {
    position: relative;
    background: rgba(15, 15, 25, 0.421);
    border: 1.5px solid rgba(255, 215, 0, 0.4);
    border-radius: 18px;
    padding: 18px 10px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
    text-align: center;
    transition: all 0.4s ease;
    animation: floatBox 6s ease-in-out infinite alternate;
    animation-delay: calc(var(--x) / 50s);
    transform: translate(var(--x), var(--y));
    backdrop-filter: blur(6px);
}

/* 🪷 Icon Styling */
.why-box i {
    font-size: 2.2rem;
    color: #FFD700;
    margin-bottom: 14px;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.5));
}

/* 🌟 Text Styling */
.why-box h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.why-box p {
    font-size: 0.95rem;
    color: #ddd;
    line-height: 1.6;
}

/* Hover Animation */
.why-box:hover {
    transform: translate(var(--x), var(--y)) scale(1.05);
    border-color: #FFD700;
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.25);
}

.why-image {
    width: 600px;
    position: absolute;
    bottom: 0px;
    right: 0px;

}

.navbar-toggler-icon {
    color: white !important;
    background-color: white !important;
}
.phone-navbar{
    display: none !important;
}


    /* ===========================
   🌟 CONTACT PAGE
   =========================== */

.product-page{
    color: rgb(199, 199, 199) !important;
}

.contact-container {
  background: rgba(0, 0, 0, 0.346);
  border-radius: 18px;
  box-shadow: 0 8px 40px rgba(212,175,55,0.10);
  padding: 38px 28px;
  margin-top: 22px;
  position: relative;
  z-index: 1;
}

/* Contact Form Styles */
.contact-form h3 {
  color: #d4af37;
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: 1.2px;
}

.contact-form form input,
.contact-form form textarea {
  width: 100%;
  background: #191813;
  color: #fff;
  padding: 14px 15px;
  border: 1.5px solid #2e291e;
  border-radius: 8px;
  margin-bottom: 17px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.3s;
}

.contact-form form input:focus,
.contact-form form textarea:focus {
  border-color: #d4af37;
  outline: none;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form .main-btn {
  background: linear-gradient(90deg, #d4af37 65%, #b88912 100%);
  color: #18130d;
  border: 2px solid #d4af37;
  font-weight: 700;
  border-radius: 32px;
  box-shadow: 0 3px 10px rgba(212, 175, 55, 0.10);
  padding: 15px 0;
  font-size: 18px;
  transition: all 0.3s;
  letter-spacing: 0.5px;
}
.contact-form .main-btn:hover {
  background: transparent;
  color: #d4af37;
  box-shadow: 0 0 18px rgba(212,175,55,0.21);
}

/* Contact Info Boxes */
.contact-box {
  background: linear-gradient(111deg, rgba(22, 21, 18, 0.98) 65%, #282412 100%);
  border-left: 4px solid #d4af37;
  border-radius: 12px;
  box-shadow: 0 3px 11px rgba(212,175,55,0.07);
  margin-bottom: 24px;
  padding: 22px 22px 14px 22px;
  position: relative;
  min-height: 68px;
}

.contact-box h5 {
  color: #d4af37;
  font-weight: bold;
  letter-spacing: 1.1px;
  margin-bottom: 13px;
  font-size: 19px;
}
.contact-box ul {
  font-size: 16px;
  color: #f7f6ef;
  margin: 0;
  padding-left: 0;
  list-style: none;
}

/* Link Styling */
.contact-box ul a,
.contact-box ul li a,
.contact-form a {
  color: #d4af37 !important;
  text-decoration: underline;
}
.contact-box ul a:hover,
.contact-form a:hover {
  color: #fff !important;
}

/* Map Section */
.map-container {
  background: #181714;
  border-radius: 16px;
  box-shadow: 0 3px 18px rgba(212,175,55,0.08);
  padding: 24px 19px 14px 19px;
  margin-top: 44px;
  margin-bottom: 0;
}
.map-container h3 {
  color: #d4af37;
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 20px;
}
.map-container iframe {
  width: 100%;
  height: 250px;
  border: 0;
  border-radius: 12px;
  margin-top: 6px;
  box-shadow: 0 2px 11px rgba(212,175,55,0.10);
}

/* Responsive */
@media (max-width: 991px) {
  .container {padding: 24px 8px;}
}
@media (max-width: 767px) {
  .contact-container {padding: 16px 5px;}
  .contact-box {padding: 15px 7px;}
  .map-container {padding: 13px 3px;}
}
@media (max-width: 575px) {
  .map-container iframe {height: 170px;}
}


/* ===========================
   🌸 Service Detail Page
   =========================== */

/* Container and Layout */
.service-detail-container {
  display: grid;
  grid-template-columns: 2fr .6fr;
  gap: 40px;
  align-items: start;
}

.service-header {
  background: linear-gradient(145deg, #0a0a0a, #121212);
  padding: 30px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 15px;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.15);
  transition: all 0.3s ease;
}

.service-header:hover {
  border-color: #d4af37;
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
}

/* Service Image */
.service-page-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid rgba(212, 175, 55, 0.4);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.2);
  margin-bottom: 20px;
  transition: transform 0.5s ease;
}

.service-page-image:hover {
  transform: scale(1.03);
}

/* Content Text */
.service-contents h1 {
  color: #d4af37;
  font-size: 32px;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.service-contents p {
  color: #ddd;
  font-size: 16px;
  line-height: 1.8;
  text-align: justify;
}

/* Sidebar Styling */
.sidebar {
  background: linear-gradient(160deg, #0c0c0c, #111);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
  position: sticky;
  top: 120px;
}

.sidebar h3 {
  font-size: 22px;
  color: #d4af37;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  padding-bottom: 10px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Sidebar Links */
.sidebar ul {
  list-style: none;
}

.sidebar li {
  margin-bottom: 12px;
}

.sidebar a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
  border-bottom: 1px dashed rgba(212, 175, 55, 0.2);
  padding-bottom: 6px;
}

.sidebar a:hover {
  color: #d4af37;
  padding-left: 5px;
}



/* Section Responsiveness */
@media (max-width: 992px) {
  .service-detail-container {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: relative;
    top: 0;
    margin-top: 40px;
  }

  .service-page-image {
    height: 320px;
  }

  .service-contents h1 {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  section {
    padding: 60px 0;
  }

  .service-contents p {
    font-size: 15px;
  }
}




/* 🎈 Floating Animation */
@keyframes floatBox {
    0% {
        transform: translate(var(--x), var(--y)) rotate(0deg);
    }

    50% {
        transform: translate(calc(var(--x) + 5px), calc(var(--y) - 10px)) rotate(1deg);
    }

    100% {
        transform: translate(calc(var(--x) - 5px), calc(var(--y) + 10px)) rotate(-1deg);
    }
}

/* 📱 Responsive */
@media (max-width: 991px) {
    .section-title {
        font-size: 1.9rem;
    }

    .why-box {
        transform: none !important;
        animation: none;
    }
}


/* ===== Responsive ===== */
@media (max-width: 991px) {
    .pricing-box.featured {
        transform: scale(1);
        padding: 32px 20px;
    }

    .pricing-box.side-box {
        transform: scale(1);
        opacity: 1;
        filter: none;
    }

    .price {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* 📱 Responsive */
@media (max-width: 991px) {
    .section-heading {
        font-size: 1.8rem;
        text-align: center;
    }

    .section-heading span {
        display: block;
        margin-top: 6px;
    }

    .accordion-button {
        font-size: 1rem;
    }
}

/* Responsive: Adjust padding and font */
@media (max-width: 768px) {
    .review-box {
        padding: 16px 10px;
    }

    .user-image {
        width: 48px;
        height: 48px;
    }
}

@media screen and (max-width: 576px) {
    .main-header {
        display: none;
    }

    .second-header {
        display: none;
    }

    .poster {
        margin-top: 0px;
    }

    .poster-content {
        left: 0px;
        padding: 20px;
        top: 10%;
    }

    .btn-box {
        flex-wrap: wrap;
    }

    .about-image img {
        height: auto;
    }

    .achievement-box {
        height: auto;
    }

    .stroke {
        text-align: center;
    }

    .product-section {
        padding-top: 0px;
    }

    .why-choose-section {
        padding: 0px;
    }

    .review-section {
        padding: 30px;
    }
    .phone-navbar{
    display: block !important;
}
}
