
/* Custom CSS Variables for Colors */
:root {
    --primary-dark: #1A1A2E;
    --secondary-dark: #282A40;
    --accent-coral: #FF6B6B;
    --accent-electric-blue: #5D5DFF;
    --text-light: #E0E0E0;
    --text-white: #FFFFFF;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary-dark);
    color: var(--text-light);
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    
}
.artist{
    background-color: var(--secondary-dark);
    padding: 6rem 0;
}
/* Utility Classes for Animations */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.fade-in.is-visible { opacity: 1; transform: translateY(0); }

.slide-in-left { opacity: 0; transform: translateX(-50px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.slide-in-left.is-visible { opacity: 1; transform: translateX(0); }

.slide-in-right { opacity: 0; transform: translateX(50px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.slide-in-right.is-visible { opacity: 1; transform: translateX(0); }

.pop-in { opacity: 0; transform: scale(0.8); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.pop-in.is-visible { opacity: 1; transform: scale(1); }

/* Keyframe Animations */
@keyframes pulsate {
    0% { box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(255, 107, 107, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 107, 107, 0); }
}

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

/* Navbar Customization */
.navbar {
    background-color: rgba(26, 26, 46, 0.8); /* Slightly transparent dark */
    transition: background-color 0.3s ease;
    backdrop-filter: blur(5px); /* Optional: Adds a frosted glass effect */
    -webkit-backdrop-filter: blur(5px); /* For Safari */
}
.navbar-brand, .nav-link {
    color: var(--text-white) !important;
    font-weight: 600;
}
.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.1);
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.partner-logo{
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;    
}
/* Hero Section */
#hero {
    position: relative;
    height: 100vh; /* Full viewport height */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-white);
    overflow: hidden;
    padding: 2rem;
}

#hero video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

#hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(26, 26, 46, 0.8), rgba(93, 93, 255, 0.4));
    background-image: url('./img1.jpg');
    background-size: cover;

background-repeat: no-repeat;
    z-index: 0;
}

#hero .content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

#hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem); /* Responsive font size */
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
}

#hero p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    margin-bottom: 2rem;
    opacity: 0.9;
}
.banner-p{
    font-weight:800;
}
.logo{
    height:60px;
}
.btn-vibrant {
    background-color: var(--accent-coral);
    border-color: var(--accent-coral);
    color: var(--text-white);
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-vibrant::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--accent-electric-blue), var(--accent-electric-blue));
    transition: left 0.3s ease;
    z-index: -1;
}
/* Contact section base style */
#contact {
  background: linear-gradient(135deg, #ff0057, #ffa700);
  color: #fff;
  padding: 60px 0;
}

/* Headings */
#contact h2 {
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 20px;
}

#contact p {
  font-size: 18px;
  margin-bottom: 40px;
}

/* Contact Info Grid */
#contact .row .d-flex {
  align-items: flex-start;
}

#contact .d-flex i {
  font-size: 22px;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 12px;
  border-radius: 50%;
  min-width: 48px;
  text-align: center;
}

#contact .d-flex div:last-child {
  font-size: 14px;
}

/* Contact Info Text */
#contact strong {
  font-size: 16px;
  display: block;
  margin-bottom: 4px;
}

#contact a {
  color: #fff;
  text-decoration: underline;
}

#contact a:hover {
  color: #ffe4e1;
  text-decoration: none;
}

/* Social Media Links */
#contact .text-white {
  font-weight: 500;
  font-size: 15px;
}

#contact .text-white i {
  font-size: 18px;
  margin-right: 6px;
}

/* Contact Form */
#contact .form-control {
  border-radius: 30px;
  padding: 10px 20px;
  border: none;
  box-shadow: none;
}

#contact .form-control:focus {
  outline: none;
  border: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

/* Submit Button */
#contact .btn {
  background-color: #fff;
  color: #ff0057;
  font-weight: 600;
  padding: 10px 30px;
  border-radius: 30px;
  border: none;
  transition: all 0.3s ease-in-out;
}

#contact .btn:hover {
  background-color: #ffe4e1;
  color: #ff0057;
}

.btn-vibrant:hover::before {
    left: 0;
}

.btn-vibrant:hover {
    color: var(--text-white);
    box-shadow: 0 8px 20px rgba(93, 93, 255, 0.5); /* Shadow for electric blue */
    transform: translateY(-2px);
}

/* Pulsate for hero button */
#hero .btn-vibrant {
    animation: pulsate 2s infinite alternate;
}

/* Stats Section */
#stats {
       background-color: rgba(26, 26, 46, 0.8);
    padding: 4rem 0;
    text-align: center;
}

#stats .stat-item {
    padding: 2rem 1rem;
  
    border-radius: 15px;
    margin-bottom: 1.5rem;
   
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.profile{
    display:flex;
    justify-content: center;
}
#stats .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

#stats .stat-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color:#000000;
    margin-bottom: 0.5rem;
    display: block; /* Ensures it takes full width for animation */
}

#stats .stat-label {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    text-transform: uppercase;
    letter-spacing: 1px;
    color:#000000;
}

/* Core Offerings */
#offerings {
    padding: 5rem 0;
    background-color: #ffffff;
}

#offerings .card {
    background-color: #ffffff;
    border: none;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%; /* Ensures uniform height */
}

#offerings .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

#offerings .card i {
    font-size: 3rem;
    color: var(--accent-coral);
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}
#offerings .card:hover i {
    color: var(--accent-coral);
}

#offerings .card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

#offerings .card p {
    font-size: 1rem;
    line-height: 1.6;
    
}

/* Visual Showcase */
#showcase {
    padding: 6rem 0;
    background-color: var(--secondary-dark);
}
.showcase{
    background-image: url('./img2.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}
#showcase .showcase-img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-height: 550px;
    object-fit: cover;
}

/* Specific image styling for visual coherence */
#img-dash { max-height: 400px; }
#img-mobile { max-height: 300px; }
#img-laptop { max-height: 450px; }


#showcase h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

#showcase ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

#showcase ul li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    position: relative;
    padding-left: 30px;
}

#showcase ul li i {
    color: var(--accent-coral);
    position: absolute;
    left: 0;
    top: 5px;
}

/* Distribution Partners */
#partners {
    background-color: var(--primary-dark);
    padding: 5rem 0;
    text-align: center;
    background-image: url('./img7.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}

#partners h2 {
    margin-bottom: 3rem;
}

#partners .partner-logo {
    max-width: 150px;
    /*filter: grayscale(100%); */
    transition: filter 0.3s ease, transform 0.3s ease;
    /*opacity: 0.7;*/
    margin: 1.5rem auto; 
    display: block; 
}

#partners .partner-logo:hover {
    filter: grayscale(0%); /* Full color on hover */
    transform: scale(1.05);
    opacity: 1;
}

/* Detailed Services */
#detailed-services {
    background-color: var(--secondary-dark);
    padding: 6rem 0;
}

#detailed-services .service-card {
    background-color: var(--primary-dark);
    border: none;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%; /* Ensures uniform height */
    text-align: center;
    margin-bottom: 2rem;
}

#detailed-services .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

#detailed-services .service-icon {
    font-size: 3.5rem;
    color: var(--accent-electric-blue);
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

#detailed-services .service-card:hover .service-icon {
    color: var(--accent-coral);
}

#detailed-services h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

#detailed-services .service-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
    min-height: 100px; /* Ensure some minimum height for text consistency */
}

.btn-secondary-vibrant {
    background-color: var(--accent-electric-blue);
    border-color: var(--accent-electric-blue);
    color: var(--text-white);
    padding: 0.6rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary-vibrant:hover {
    background-color: var(--accent-coral);
    border-color: var(--accent-coral);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

/* Testimonials Section */
#testimonials {
background: url('./img5.jpg') no-repeat center center/cover;
position: relative;
z-index: 1;
}

#testimonials::before {
content: "";
position: absolute;
inset: 0;
background-color: rgba(0, 0, 0, 0.6);
z-index: -1;
}

.testimonial-card {
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
border-radius: 15px;
padding: 2rem;
color: white;
text-align: center;
margin: 10px;
border: 1px solid rgba(255, 255, 255, 0.2);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
height:300px;
}

.client-avatar {
width: auto;
height: 80px;
border-radius: 50%;
object-fit: cover;
border: 3px solid var(--accent-coral, #FF6B6B);
margin-bottom: 1rem;
}

.testimonial-text {
font-style: italic;
font-size: 1.1rem;
margin-bottom: 1rem;
}

.client-name {
font-weight: bold;
font-size: 1rem;
}
.owl-carousel .owl-item img{
display: block;
width:50%;

}
.carousel-indicators [data-bs-target] {
    background-color: var(--accent-electric-blue);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
    border: none;
}
.carousel-indicators .active {
    background-color: var(--accent-coral);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1); /* Make arrows visible on dark background */
}

/* Secondary CTA */
#cta-bottom {
    background: linear-gradient(to right, var(--accent-coral), var(--accent-electric-blue));
    padding: 5rem 0;
    text-align: center;
    background-image: url('./img4.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0cm;
}

#cta-bottom h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--text-white);
    margin-bottom: 2rem;
}

/* Blog/Insights */
#insights {
    background-color: white;
    padding: 6rem 0;
    background-image: url('./img6.webp');
    background-repeat: no-repeat;
    background-size: cover;
}

#insights .blog-card {
    background-color: var(--secondary-dark);
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

#insights .blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

#insights .blog-card img {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    height: 200px;
    object-fit: cover;
}

#insights .blog-card .card-body {
    padding: 1.5rem;
}

#insights .blog-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

#insights .blog-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.btn-outline-vibrant {
    color: var(--accent-coral);
    border-color: var(--accent-coral);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-outline-vibrant:hover {
    background-color: var(--accent-coral);
    color: var(--text-white);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

/* Footer */
footer {
    background-color: var(--primary-dark);
    color: var(--text-light);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer h5 {
    color: var(--text-white);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 0.8rem;
}

footer ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer ul li a:hover {
    color: var(--accent-coral);
}

footer .social-icons a {
    color: var(--text-light);
    font-size: 1.8rem;
    margin-right: 1.2rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

footer .social-icons a:hover {
    color: var(--accent-electric-blue);
    transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    #hero { height: auto; min-height: 70vh; padding: 4rem 1rem; }
    #hero h1 { font-size: 2.2rem; }
    #hero p { font-size: 0.9rem; }

    #stats .stat-number { font-size: 2rem; }
    #stats .stat-label { font-size: 0.9rem; }

    #showcase .order-md-2 { order: 2 !important; } /* For alternating layout on mobile */
    #showcase .order-md-1 { order: 1 !important; }
    #showcase .showcase-img { margin-bottom: 2rem; }

    #partners .partner-logo { max-width: 100px; margin: 1rem auto; }
    
    #testimonials .carousel-item { padding: 2rem 1rem; }
    #testimonials .testimonial-text { font-size: 1rem; }
    #testimonials .testimonial-text::before, #testimonials .testimonial-text::after { font-size: 3rem; }

    #cta-bottom h2 { font-size: 1.8rem; }
    
    .logo{
        height:40px;
        width:40px;
    }
}
