/* Default Font */
body {
     font-family: Poppins, sans-serif;
}

/* Header Background */
.top-header {
    background: linear-gradient(to right, #000000, #8b0000);
    padding: 8px 0;
}

/* Marquee Box */

/* Marquee Text */
.marquee span {
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
}

/* Buttons Font (Stylish) */
.header-buttons a {
    font-family: 'Poppins';
    letter-spacing: 1px;
    text-transform: uppercase;
}
.marquee {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    white-space: nowrap;
    padding: 5px 10px;
}

/* Marquee Animation */
.marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 50s linear infinite;
    color: #000;
	font-weight: bold;
    font-size: 16px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Buttons */
.header-buttons a {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    margin-left: 15px;
}

/* Icons spacing */
.header-buttons i {
    margin-right: 5px;
}
.header-buttons i {
    color: #FFD700;
  
}
/* Hover */
.header-buttons a:hover {
    color: #FFD700;
}

/* Mobile Adjust */
@media (max-width: 768px) {
    .header-buttons {
        margin-top: 5px;
    }
}

/* Section */
.logo-section {
    position: relative;
    padding: 20px 0;
    background: url('images/astro-bg-1-scaled.webp') no-repeat center/cover;
}

/* Overlay */
.logo-section::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    top: 0;
    left: 0;
}

/* Content */
.logo-content {
    position: relative;
    z-index: 2;
}

/* Logo Row Full Width */
.logo-row {
    display: flex;
    flex-wrap: wrap;
}

/* Logo Box */
.logo-box {
    width: 33.33%; /* 3 logo ek row me */
    padding: 20px;
    text-align: center;
}

/* Logo Image */
.logo-box img {
    width: 100%;
    height: 120px; /* size increase */
    object-fit: contain;
    transition: 0.3s;
}

/* Hover Effect */
.logo-box:hover img {
    transform: scale(1.1);
    filter: brightness(1.2);
}

/* Responsive */
@media(max-width:768px){
    .logo-box {
        width: 50%; /* mobile me 2 per row */
    }
}

@media(max-width:480px){
    .logo-box {
        width: 100%; /* small mobile me 1 per row */
    }
}
/* Navbar Full Width */
/* Navbar */
.custom-navbar {
    width: 100%;
    background: linear-gradient(to right, #000000, #8b0000);
    border-bottom: 2px solid #FFD700;
    padding: 10px 0;
}

/* Nav Links */
.navbar-nav .nav-link {
    color: #fff !important;
    font-weight: bold;
    margin: 0 12px;
    position: relative;
    transition: 0.3s;
}

/* Hover */
.navbar-nav .nav-link:hover {
    color: #FFD700 !important;
}

/* Underline Effect */
.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: #FFD700;
    left: 0;
    bottom: -5px;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* Toggle Button */
.navbar-toggler {
    border: 1px solid #FFD700;
}

.navbar-toggler-icon {
    filter: invert(1);
}

/* Mobile Menu */
@media(max-width: 991px){
    .navbar-nav {
        text-align: center;
        background: #000;
        padding: 10px 0;
        border-top: 1px solid #8b0000;
    }

    .navbar-nav .nav-link {
        padding: 10px 0;
        display: block;
    }
}

.text-highlight {
    background: linear-gradient(to right, #000000, #8b0000);
    padding: 10px;
    text-align: center;
}

/* Text Style */
.text-highlight p {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
}

/* Highlight Line */
.text-highlight span {
    color: #FFD700;
    font-weight: 700;
}

/* Mobile */
@media(max-width:768px){
    .text-highlight p {
        font-size: 16px;
    }
}
/* Section */
.about-section {
    padding: 70px 0;
    background: #000;
    color: #fff;
}

/* Heading */
.about-section h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #FFD700;
}

/* Text */
.about-section p {
    font-size: 16px;
    line-height: 1.9;
    color: #ddd;
}

/* Highlight */
.about-section span {
    color: #FFD700;
    font-weight: 600;
}

/* Image */
.about-img img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.3);
}

/* Mobile */
@media(max-width:768px){
    .about-section {
        text-align: center;
    }
    .about-img {
        margin-top: 20px;
    }
}


.text-highlight1 {
    background: linear-gradient(to right, #000000, #8b0000);
    padding: 10px;
    text-align: center;
}

/* Text Style */
.text-highlight1 p {
   color: #fff;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
    padding: 12px;
    border-bottom: 1px solid #ffffff26;
}

/* Highlight Line */
.text-highlight1 span {
    color: #FFD700;
    font-weight: 700;
}

/* Mobile */
@media(max-width:768px){
    .text-highlight1 p {
        font-size: 16px;
    }
}
/* Section */
.services-hero {
    background: #000;
    padding: 80px 20px;
    text-align: center;
}

/* Image */
.services-img img {
    width: 250px;
    animation: floatImg 3s ease-in-out infinite;
}

/* Floating Animation */
@keyframes floatImg {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Heading */
.services-content h2 {
    color: #FFD700;
    margin-top: 20px;
    font-size: 32px;
}

/* Subheading */
.services-content h4 {
    color: #fff;
    margin-bottom: 15px;
}

/* Text */
.services-content p {
    color: #ccc;
    max-width: 600px;
    margin: 0 auto 25px;
}

/* Buttons */
.service-btn a {
    display: inline-block;
    margin: 5px;
    padding: 10px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

/* Call */
.btn-call {
    background: #FFD700;
    color: #000;
}

/* WhatsApp */
.btn-whatsapp {
    border: 1px solid #FFD700;
    color: #FFD700;
}

/* Hover */
.service-btn a:hover {
    transform: translateY(-3px);
}

/* Icon */
.service-btn i {
    margin-right: 6px;
}

/* Section */
.services-section {
	position: relative;
   background: url(images/astro-bg-1-scaled.webp) no-repeat center / cover;
    padding: 70px 0;
    text-align: center;
}
.services-section::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    top: 0;
    left: 0;
}
.serv1 {
position: relative;
    z-index: 2;
}
/* Heading */
.services-section h2 {
    color: #FFD700;
    margin-bottom: 50px;
}

/* Card */
.service-card {
   background: rgb(0 0 0);
    padding: 10px;
    border-radius: 15px;
    box-shadow: inset 1px 3px 0px 0px #fff;
    transition: 0.3s;
    height: 100%;
}

/* Icon */
.service-img {
    font-size: 35px;
    color: #FFD700;
    margin-bottom: 10px;
}
.service-img img{
	width:100%;
}

/* Title */
.service-card h5 {
    color: #FFD700;
	font-weight: bold;
    padding: 10px;
}

/* Text */
.service-card p {
    color: #ccc;
    font-size: 14px;
}

/* Hover Effect */
.service-card:hover {
    transform: translateY(-10px);
    box-shadow:0 0 3px rgba(255, 215, 0, 0.5);
}

/* Button */
.service-card a {
    display: inline-block; 
	color: #FFD700;
    text-decoration: none;
    font-size: 18px;
	font-weight: bold;
}

/* Responsive spacing */
@media(max-width:768px){
    .service-card {
        margin-bottom: 20px;
    }
}
/* Banner Section */
.image-banner {
    width: 100%;
	
}

/* Image */
.image-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive */
@media(max-width:768px){
    .image-banner {
        height: 220px;
    }
}
/* Section */
.why-section {
    background: linear-gradient(to right, #000000, #8b0000);
    padding: 70px 0;
    text-align: center;
}

/* Heading */
.why-section h2 {
    color: #FFD700;
    margin-bottom: 50px;
	font-weight: bold;
}

/* Box */
.why-box {
    background: rgba(255,255,255,0.05);
    padding: 25px 15px;
    border-radius: 15px;
    transition: 0.3s;
    height: 100%;
}

/* Icon */
.why-icon {
    font-size: 35px;
    color: #FFD700;
    margin-bottom: 10px;
}

/* Title */
.why-box h5 {
    color: #FFD700;
	font-weight: bold;
    margin-bottom: 10px;
}

/* Text */
.why-box p {
    color: #fff;
    font-size: 14px;
}

/* Hover */
.why-box:hover {
    transform: translateY(-10px);
    box-shadow: 5px 4px 0px rgba(255, 215, 0, 0.5);
}

/* Section */
.services-list-section {
    background: #000;
    padding: 70px 0;
}

/* Heading */
.services-list-section h2 {
    text-align: center;
    color: #FFD700;
    margin-bottom: 40px;
	    font-weight: bold;
}

/* Column Box */
.service-list-box {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 12px;
    height: 100%;
}

/* List */
.service-list-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* List Item */
.service-list-box ul li {
    color: #fff;
    font-size: 18px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}
.service-list-box ul li a {
    color: #fff;
   text-decoration:none;
}
/* Icon */
.service-list-box ul li i {
    color: #FFD700;
    margin-right: 10px;
}

/* Hover */
.service-list-box:hover {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}
/* Section */
.testimonial-section {
    background: linear-gradient(to right, #000000, #8b0000);
    padding: 70px 0;
    text-align: center;
}

/* Heading */
.testimonial-section h2 {
    color: #FFD700;
    margin-bottom: 50px;
}

/* Card */
.testimonial-card {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 15px;
    transition: 0.3s;
    height: 100%;
}

/* Image */
.testimonial-card img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-bottom: 10px;
}

/* Name */
.testimonial-card h5 {
    color: #fff;
    margin-bottom: 5px;
}

/* Stars */
.stars {
    color: #FFD700;
    margin-bottom: 10px;
}

/* Text */
.testimonial-card p {
    color: #ccc;
    font-size: 14px;
}

/* Hover */
.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.4);
}
/* Section */
.blog-section {
    background: linear-gradient(to right, #000000, #1a0000);
    padding: 70px 0;
}

/* Heading */
.blog-section h2 {
    text-align: center;
    color: #FFD700;
	font-weight: bold;
    margin-bottom: 50px;
}

/* Card */
.blog-card {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s;
    height: 100%;
}

/* Image */
.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: 0.4s;
}

/* Hover Zoom */
.blog-card:hover img {
    transform: scale(1.05);
}

/* Content */
.blog-content {
    padding: 20px;
}

/* Title */
.blog-content h5 {
   color: #FFD700;
    margin-bottom: 10px;
    font-weight: bold;
}

/* Text */
.blog-content p {
    color: #ccc;
    font-size: 14px;
}

/* Button */
.blog-content a {
    display: inline-block;
    margin-top: 10px;
    color: #FFD700;
    text-decoration: none;
    font-size: 18px;
}

/* Hover */
.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.4);
}
/* Footer */
.footer {
    background: #000;
    padding: 60px 0 20px;
    color: #ccc;
}

/* Headings */
.footer h5 {
    color: #FFD700;
    margin-bottom: 20px;
}

/* Links */
.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer ul li a:hover {
    color: #FFD700;
}

/* Contact */
.footer p {
    margin-bottom: 10px;
}

/* Icons */
.footer i {
    color: #FFD700;
    margin-right: 8px;
}

/* Social Icons */
.social-icons a {
    display: inline-block;
    margin-right: 10px;
    font-size: 18px;
    color: #FFD700;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #fff;
}

/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid #222;
    margin-top: 30px;
    padding-top: 15px;
    text-align: center;
    font-size: 14px;
}

/* Container */
.floating-buttons {
    position: fixed;
    right: 15px;
    bottom: 20px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Common Button Style */
.float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 22px;
    color: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    transition: 0.3s;
}

/* Call Button */
.call-float {
    background: #FFD700;
    color: #000;
}

/* WhatsApp Button */
.whatsapp-float {
    background: #25D366;
}

/* Hover */
.float-btn:hover {
    transform: scale(1.1);
}

/* Section */
.contact-section {
    background: #000;
    padding: 60px 0;
    color: #fff;
}

/* Heading */
.contact-section h2 {
    text-align: center;
    color: #FFD700;
    margin-bottom: 40px;
}

/* Left Info Box */
.contact-info-box {
    padding: 20px;
}

.contact-info-box h4 {
    color: #FFD700;
    margin-bottom: 20px;
}

.contact-info-box p {
    margin-bottom: 10px;
    color: #ccc;
}

/* Contact Links */
.contact-info-box a {
    display: block;
    color: #fff;
    text-decoration: none;
    margin-bottom: 10px;
    font-weight: 500;
}

.contact-info-box a i {
    color: #FFD700;
    margin-right: 8px;
}

/* Form Box */
.contact-form {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(8px);
}

/* Inputs */
.contact-form .form-control {
    background: transparent;
    border: 1px solid #FFD700;
    color: #fff;
    border-radius: 8px;
}

/* Placeholder */
.contact-form .form-control::placeholder {
    color: #ccc;
}

/* Focus */
.contact-form .form-control:focus {
    border-color: #ffcc00;
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

/* Button */
.contact-btn {
    background: #FFD700;
    color: #000;
    font-weight: 600;
    border-radius: 25px;
    padding: 10px;
    border: none;
}

/* Hover */
.contact-btn:hover {
    background: #ffcc00;
}

/* Mobile */
@media(max-width:768px){
    .contact-info-box {
        text-align: center;
        margin-bottom: 30px;
    }
}
