﻿.company-name {
    font-size: 1.2rem;
    font-weight: 600;
    white-space: nowrap; /* text ek line me रहे */
}

/* Mobile pe font chhota ho */
@media (max-width: 768px) {
    .company-name {
        font-size: 1rem;
    }
}

#main-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    transition: background 0.3s ease;
    background: transparent;
}

    /* On scroll solid background */
    #main-header.scrolled {
        background: linear-gradient(90deg, #0056b3, #ff6600); /* blue-orange gradient */
    }

    #main-header .nav-link,
    #main-header .company-name {
        color: #fff !important;
    }

/* Header over hero banner */
.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    background: rgba(0,0,0,0.4); /* semi-transparent */
}

    .header-overlay img {
        border-radius: 8px;
    }

    .header-overlay .nav-link {
        font-weight: 500;
        margin: 0 8px;
        transition: color 0.3s ease;
    }

        .header-overlay .nav-link:hover {
            color: #ff6600;
        }

/* Sticky Header */
.header-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 0;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    background: rgba(0, 0, 0, 0.4); /* Transparent on banner */
}

    /* When scrolled, add solid bg */
    .header-overlay.scrolled {
        background: #ffffff; /* Solid White */
        box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    }

    .header-overlay .nav-link {
        font-weight: 500;
        margin: 0 8px;
        transition: color 0.3s ease;
    }

        .header-overlay .nav-link:hover {
            color: #ff6600;
        }
/* Gradient Header */
.bg-gradient {
  background: linear-gradient(90deg, #004aad, #ff6600);
}

/* Hero Slider */
.hero-slide {
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 150px; /* Adjust based on your navbar height */
    background: rgba(0,0,0,0.5);
    color: white;
}
.hero-slide h1 {
  font-size: 2.5rem;
  font-weight: bold;
}
.hero-slide p {
  font-size: 1.2rem;
}

/* Cards */
.card {
  border: none;
  border-radius: 10px;
}

/* Footer Links */
footer a:hover {
  text-decoration: underline;
}

/* Responsive adjustments */
@media(max-width:768px){
  .hero-slide h1 { font-size: 1.8rem; }
  .hero-slide p { font-size: 1rem; }
}

/* Quick Links Section */
#quick-links {
    background: none; /* Removed gradient background */
    color: #333;
}

/* Cards */
.quick-card {
    background: #ffffff;
    border: 1px solid #eee;
    transition: all 0.3s ease-in-out;
}

    .quick-card:hover {
        transform: translateY(-10px) scale(1.03);
        box-shadow: 0px 8px 20px rgba(0,0,0,0.15);
    }

/* Quick Links Section */
.quick-links {
    background: linear-gradient(135deg, #001f3f, #000000); /* blue to black gradient */
}

    .quick-links .card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

        .quick-links .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.4);
        }

    .quick-links .card-title {
        font-weight: 600;
        color: #003366;
    }

    .quick-links .btn-primary {
        background: #ff6600;
        border: none;
    }

        .quick-links .btn-primary:hover {
            background: #cc5200;
        }

/* Useful Info Section */
.useful-links {
    background: #111; /* Dark background */
}

    .useful-links .info-card {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        transition: transform 0.3s ease, background 0.3s ease;
    }

        .useful-links .info-card:hover {
            transform: translateY(-6px);
            background: rgba(255, 255, 255, 0.1);
        }

    .useful-links h5 {
        margin-bottom: 10px;
    }

    .useful-links a {
        font-weight: 500;
    }

/* Icon Circle */
.icon-circle {
    width: 70px;
    height: 70px;
    background: #007bff;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: 0 auto;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.quick-card:hover .icon-circle {
    background: #ff6600;
    transform: rotate(15deg) scale(1.1);
}

/* Buttons */
.quick-card .btn {
    border: 2px solid #007bff;
    color: #007bff;
    font-weight: bold;
    transition: all 0.3s ease;
}

    .quick-card .btn:hover {
        background: #007bff;
        color: #fff;
    }

/* About Us Section */
.about-us {
    background: linear-gradient(135deg, #f0f8ff, #ffffff);
}

    .about-us h2 {
        font-size: 2rem;
        font-weight: 700;
    }

    .about-us p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .about-us img {
        transition: transform 0.4s ease;
    }

        .about-us img:hover {
            transform: scale(1.05);
        }

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, #001f3f, #000000);
}

.testimonial-card {
    max-width: 700px;
    margin: auto;
    padding: 30px;
}

    .testimonial-card img {
        width: 90px;
        height: 90px;
        object-fit: cover;
        border: 3px solid #ff6600;
    }

    .testimonial-card p {
        font-style: italic;
        margin-bottom: 15px;
    }

/* Contact Us Section */
.contact-us {
    background: linear-gradient(135deg, #f0f8ff, #ffffff);
}

.contact-info i {
    margin-right: 8px;
    font-size: 1.2rem;
}

.contact-form button {
    background: #ff6600;
    border: none;
}

    .contact-form button:hover {
        background: #cc5200;
    }

.map iframe {
    min-height: 300px;
}

.navbar-toggler {
  margin-left: auto; /* force right align */
  background-color:darkblue;
 
}
.header-image img {
    max-height: 300px;
    object-fit: cover;
}

.about-content ul.list-group {
    margin-bottom: 15px;
}
