
@import url('https://fonts.googleapis.com/css2?family=Merienda:wght@300..900&display=swap');

.font {
  font-family: "Merienda", cursive;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}


body {
    background-color: black !important;
}
.navbar-brand img{
 width: 100px;
 border-radius: 10px;
}
.abs-logo img{ 
  
    position: absolute;
    top: 10px;
    left: 30px;
    width: 170px;
    border-radius: 10px;
}

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

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

    letter-spacing: 2px;
}

.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;
}
.swiper-button-next, .swiper-button-prev{
    display: none !important;
}

.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: rgba(0, 0, 0, 0.395);
    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: rgba(0, 0, 0, 0.887);
    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: 160px;
    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, #ff416c, #ff4b2b);
    /* 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, #ff3b3b, #ff3030);
    /* LinkedIn */
    --hover-color: #0077b5;
}

.btn-main{
    background-color: goldenrod;
    padding: 7px 10px;
    width: 200px;
    border-radius: 5px;
    border: none;
}


.menu {
    padding: 16px;
display: flex;
justify-content: end;
}

.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: 70px;

}

.poster-carousel .item {
    position: relative;
    width: 100%;

    height: 760px;
    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:92%;
    text-align: left;
    opacity: 0;
    position: absolute;
    z-index: 99;
    top: 28%;
    left: 80px;
    display: flex !important;
    align-items: center;
    justify-content: space-between;

}
.poster-photo{
    width: 50%;
    display: flex;
    justify-content: end;
}
.poster-photo img{
    width: 500px !important;
}
.poster-data{
    width: 50%;
}
.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;
}


.stroke {
    
    color:goldenrod !important;
    font-size: 54px;
    font-weight: 700;
    margin: 0 0 15px 0;
    letter-spacing: 2px;
    animation: strokeGlow 3s ease-in-out infinite;
}


.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 img {
    display: block;
    width: 58% !important;
    height: auto;
    height: 530px;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    margin: auto;
}
.rel{
    position: relative;
}

.about-image:hover img {
    transform: scale(1.05);
}
.extra-image {
    width: 150px !important;
    position: absolute;
    top: -70px;
    right: 40px;

    animation: slowRotate 20s linear infinite;
}

/* Keyframes */
@keyframes slowRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}



/* 🌸 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);
}
.head-image{
    width: 100px;
    height: 40px;
}

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









/* ===========================
🌟 OUR SERVICE SECTION
=========================== */
/* ===== Root Colors ===== */
:root {
    --gold: #f5d508;
    --black: #111111;
    --white: #ffffff;
    --gray: #f5f5f5;
}

/* ===== Service Section ===== */


/* ===== Heading Section ===== */
.heading-section {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.heading-section .tag {
    display: inline-block;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}


/* ===== Service Card ===== */
.service-card {
    background:black;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid goldenrod;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.25);
}



/* ===== Content ===== */
.service-card .content {
    position: relative;
    z-index: 2;
    padding: 15px;
    text-align: center;
}

.service-card p{
    color: rgba(255, 255, 255, 0.474);
}
/* ===== Image ===== */
.service-card .image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 20px;
}

.service-card .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* ===== Details ===== */
.service-card .details h5 {
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
    transition: 0.3s;
}

.service-card:hover .details h5 {
    color: var(--gold);
}

/* ===== Read More Link ===== */
.service-card .details a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: white;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s ease;
}

.service-card .details a i {
    color: var(--gold);
    transition: transform 0.3s ease;
}

.service-card:hover .details a {
    color: var(--gold);
}

.service-card:hover .details a i {
    transform: translateX(5px);
}

/* ===== Main Button ===== */
.main-btn {
    background: var(--gold);
    color: var(--black);
    padding: 12px 35px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
    display: inline-block;
}

.main-btn:hover {
    background: var(--white);
    color: var(--black);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .heading-section .stroke {
        font-size: 28px;
    }

    .service-card .image {
        height: 180px;
    }
}


/* 
.service-card{
    position: relative;
    background:url('/image/cosmic.jpg');
    background-size: cover;
    background-position: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
    color: white;
    text-align: center;
    border-radius: 0px 120px 0px 0px;
    height: 460px;

    margin-top: 30px;
    position: relative;
}
.service-overlay {
    background-color: rgba(0, 0, 0, 0.634);
    position: absolute;
    top: 0px;
    height: 100%;
    width: 100%;


}
.service-card .content{
    position: absolute;
    top: 0px;
    height: 100%;
    width: 100%;
padding: 20px;
}

.service-card .image img{
    width:200px;
    height: 200px;

}
 */










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

.footer-logo img {
    width: 190px;
    margin-bottom: 15px;
    border-radius: 16px;
}

.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, #ebb800, #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;
}

   
.phone-navbar{
    display: none !important;
}


/* ============================= */
/* ===== COMMON ===== */
/* ============================= */

body {
  background: #0b0f14;
  color: #e5e7eb;
}

a {
  text-decoration: none;
}

/* ============================= */
/* ===== BLOG LIST PAGE ===== */
/* ============================= */

.blog-section {
  padding: 80px 0;

}

/* Heading */
.blog-section .heading-section h2 {
  font-size: 48px;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px #d4af37;
  letter-spacing: 3px;
}


/* Blog Card */
.blog-box {
  background: linear-gradient(180deg, #000104, #010408);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
  transition: all 0.35s ease;
}

.blog-box:hover {
  transform: translateY(-10px);
  border-color: #d4af37;
}

/* Image */
.blog-image img {
  height: 220px;
  object-fit: cover;
  transition: 0.4s;
}

.blog-box:hover .blog-image img {
  transform: scale(1.08);
}

/* Content */
.blog-content {
  padding: 18px;
}

.blog-content h5 {
  color: #d4af37;
  font-size: 18px;
  font-weight: 700;
}

.blog-content h5:hover {
  color: #f5e6b8;
}

.blog-content p {
  font-size: 14px;
  color: #9ca3af;
}

/* Meta */
.dated {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #9ca3af;
}

.dated i {
  color: #d4af37;
}

/* ============================= */
/* ===== BLOG DETAIL PAGE ===== */
/* ============================= */
/* ============================= */
/* ===== BLOG DETAIL LAYOUT ===== */
/* ============================= */

.blog-detail-container {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 40px;
  padding: 70px 0;
}

/* ============================= */
/* ===== BLOG CONTENT CARD ===== */
/* ============================= */

.blog-header {
  background: linear-gradient(180deg, #010611, #0b0f14);
  border-radius: 18px;
  padding: 35px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85);
}

.blog-contents {
  color: #e5e7eb;
}

/* Featured Image */
.service-page-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid #d4af37;
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
}

/* Meta Info */
.blog-contents .fw-bold p {
  font-size: 14px;
  color: #f5e6b8;
}

/* Title */
.blog-contents h1 {
  font-size: 36px;
  font-weight: 800;
  color: #d4af37;
  line-height: 1.3;
}

/* Content */
.blog-contents p {
  font-size: 16px;
  line-height: 1.9;
  color: #e5e7eb;
}

.blog-contents h2,
.blog-contents h3,
.blog-contents h4 {
  margin-top: 30px;
  font-weight: 700;
  color: #d4af37;
}

.blog-contents ul,
.blog-contents ol {
  padding-left: 20px;
  margin: 20px 0;
}

.blog-contents li {
  margin-bottom: 10px;
}

/* ============================= */
/* ===== SIDEBAR ===== */
/* ============================= */

.sidebar {
  position: sticky;
  top: 110px;
  background: linear-gradient(180deg, #000102, #0b0f14);
  border-radius: 18px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85);
}

/* Sidebar Headings */
.sidebar h3 {
  font-size: 22px;
  font-weight: 700;
  color: #d4af37;
  margin-bottom: 18px;
  position: relative;
}

.sidebar h3::after {
  content: '';
  width: 45px;
  height: 3px;
  background: #d4af37;
  display: block;
  margin-top: 8px;
  border-radius: 10px;
}

/* Sidebar Lists */
.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar ul li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sidebar ul li:last-child {
  border-bottom: none;
}

.sidebar ul li a {
  color: #e5e7eb;
  font-size: 14px;
  transition: all 0.3s ease;
}

.sidebar ul li a:hover {
  color: #d4af37;
  padding-left: 6px;
}

/* ============================= */
/* ===== RESPONSIVE ===== */
/* ============================= */

@media (max-width: 991px) {
  .blog-detail-container {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 576px) {
  .blog-header {
    padding: 20px;
  }

  .blog-contents h1 {
    font-size: 26px;
  }

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


/* ============================= */
/* ===== RESPONSIVE ===== */
/* ============================= */

@media (max-width: 991px) {
  .service-detail-container {
    grid-template-columns: 1fr;
  }

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

/* 📱 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;
    }
}



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

    .second-header {
        display: none;
    }

    .poster {
        margin-top: 0px;
    }
   
.poster-carousel .item{
    height: 900px;
}
    .poster-content {
        left: 0px;
        padding: 20px;
        top: 0%;
        flex-wrap: wrap-reverse;
        max-width: 100%;
        gap: 40px;
    }
    .poster-photo {
        width: 100%;
    }
    .poster-photo img{
        width: 100% !important;
    }
    .btn-box{
        justify-content: center;
    }
    .poster-data{
        width: 100%;
        text-align: center;
    }
    .poster-content h2{
        font-size: 30px;
    }
.poster-content p{
    font-size: 14px;
}
    .btn-box {
        flex-wrap: wrap;
    }
.custom-breadcrumb-section{
    margin-top: 20px;
}
    .about-image img {
        width:  100% !important;
        height: auto !important;
    }

    .achievement-box {
        height: auto;
    }

    .stroke {
        text-align: center;
    }

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

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


    .phone-navbar{
    display: block !important;
}
}
