/* Reset default styles */
body, h1, h2, h3, p, ul {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    /* color: #333; */
    background-color: #000; /* Black background */
    color: #fff; /* White text for better contrast */
    
}



.section-divider {
    width: 80%; /* Adjust width */
    height: 4px; /* Thin line */
    background-color: white; /* White color */
    margin: 40px auto; /* Spacing above and below */
    opacity: 0.6; /* Slight transparency */
}

.section-spacing {
    margin: 10px 0; /* Adds space above and below */
}





/* Hero Section 
.hero {
    padding: 100px;
    text-align: center;
    background: #f4f4f4;
}*/

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #333;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.cta-button:hover {
    background-color: #555;
}

/* Content Sections */
.services, .statistics {
    padding: 50px;
    text-align: center;
}



.logo {
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
    height: 100%;
    
}



/* Hero Section (Slider) */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content Inside Slides */
.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}

.brand-logo {
    width: 500px !important;
    height: auto !important;
    display: block;
    margin: 0 auto 15px; /* Center the logo */
}

/* Animated Text */
.animated-text {
    font-size: 36px;
    font-weight: bold;
    opacity: 0;
    transform: translateY(-50px);
    animation: slideDown 1s ease-out forwards;
    color: rgb(255, 251, 251);
    text-shadow: 0 0 10px rgba(21, 20, 18, 0.8);
}

.animated-text1 {
    font-size: 36px;
    font-weight: bold;
    opacity: 0;
    transform: translateY(-50px);
    animation: slideDown 1s ease-out forwards;
    
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 36px;
    font-weight: bold;
    opacity: 0; /* Initially hidden */
    animation: slideDown 1s ease-out forwards;
}

/* Buttons */
/* Existing button styles */
.buttons {
    margin-top: 20px;
}

.btn {
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    background: #020241;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin: 5px;
    font-weight: bold;
    overflow: hidden; /* Ensures sparkles do not go outside */
    transition: background 0.3s ease-in-out;
}

.btn:hover {
    background: #0b033a;
}

/* Sparkle effect0.1 */
/* .sparkle {
    position: absolute;
    width: 5px;
    height: 5px;
    background: white;
    border-radius: 50%;
    opacity: 0.8;
    pointer-events: none;
    animation: sparkle-animation 0.6s linear infinite;
}

@keyframes sparkle-animation {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.5);
    }
    100% {
        opacity: 0;
        transform: scale(2);
    }
} */


/* Navigation Arrows */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    padding: 10px;
}

.prev { left: 20px; }
.next { right: 20px; }




#lineCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none; /* Prevent interaction */
}


/* Introduction Section */
.introduction {
    padding: 50px 20px;
    background: #333;
    text-align: center;
}

.container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;  /* Ensures responsiveness on smaller screens */
}

.box {
    width: 250px;
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
    text-align: center;
}

.box:hover {
    transform: scale(1.05);
}

.box img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.info {
    margin-top: 10px;
    font-size: 16px;
    transition: transform 0.3s ease, color 0.3s ease;
    color: #020202;
}

/* Click Highlight Effect */
.highlight {
    color: #007bff;  /* Change text color to blue */
    font-weight: bold;
    transform: scale(1.1);
}

.who-we-are-heading {
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    position: relative;
    display: inline-block;
    color: #fbf5f5;
    
    /* 🔥 Static shadow effect */
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);
}

.who-we-are-heading::after {
    content: "";
    display: block;
    width: 0;
    height: 3px;
    background: #007BFF;
    transition: width 0.3s ease-in-out;
    margin: 5px auto 0;
}

/* 🔥 Underline effect on hover */
.who-we-are-heading:hover::after {
    width: 100%;
}




/* Expertise Section Styling */
.expertise {
    background: linear-gradient(to right, #0a1931, #1b2a49);
    padding: 80px 10%;
    text-align: center;
    color: #fff;
}

/* Stylish Heading */
.expertise-heading {
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    color: #fff;
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
}

.expertise-heading::after {
    content: "";
    display: block;
    width: 0;
    height: 3px;
    background: #ffcc00;
    transition: width 0.3s ease-in-out;
    margin: 5px auto 0;
}

.expertise-heading:hover::after {
    width: 100%;
}

/* Service Item Box */
.container-exp {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 40px;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 30%;
    position: relative;
    margin-bottom: 30px;
}

/* Title Box */
.title-box {
    background: #ffcc00;
    color: #222;
    padding: 15px 20px;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 5px 5px 15px rgba(255, 204, 0, 0.3);
}

/* Description Cloud */
.description-cloud {
    background: #fff;
    color: #222;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: normal;
    border-radius: 20px;
    margin-top: 15px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 3px 3px 10px rgba(255, 255, 255, 0.3);
}

/* Speech Bubble Effect */
.description-cloud::before {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-bottom-color: #fff;
    transform: translateX(-50%);
}

/* Zoom-out Effect on Hover */
.service-item:hover .title-box,
.service-item:hover .description-cloud {
    transform: scale(1.1);
    box-shadow: 5px 5px 20px rgba(255, 204, 0, 0.5);
}

/* Animations */
.service-item .title-box {
    opacity: 0;
    transform: translateX(-50px);
    animation: fadeInLeft 1s forwards;
}

.service-item .description-cloud {
    opacity: 0;
    transform: translateX(50px);
    animation: fadeInRight 1s forwards;
}

/* Keyframes for Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* stats */

/* Statistics Section */
.statistics {
    text-align: center;
    padding: 50px 20px;
    background: url('/images/analytics.jpeg') no-repeat center center/cover; 
    color: #b1e4eb;
}

/* .statistics::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); 
    z-index: 1;
} */


.impact-heading {
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    position: relative;
    display: block; /* Change from inline-block to block */
    color: #2f13bf;
    text-align: left;  /* Align text to the left */
    margin-left: 5%; /* Adjust this value to shift more left */
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 153, 0, 0.8);
}


.impact-heading::after {
    content: '';
    display: block;
    width: 150px;
    height: 4px;
    background: linear-gradient(to right, #2f13bf, #2f13bf);
    margin-top: 8px;
}

.stats-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.stat-item {
    width: 180px;
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center; /* Ensures text is centered below the circle */
    justify-content: center;
}


.circle {
    width: 140px;
    height: 140px;
    line-height: 140px;
    font-size: 24px;
    font-weight: bold;
    background: radial-gradient(circle, #ffcc00, #ff9900);
    color: #1a1a2e;
    border-radius: 50%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 0 20px rgba(255, 153, 0, 0.6);
}

.circle:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(255, 153, 0, 0.9);
}

.stat-item p {
    position: relative;
    margin-top: 15px;
    font-size: 1rem;
    color: #1b1414;
    z-index: 2;
    font-weight: bold;
}

.stat-item p::before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    background: rgba(251, 251, 251, 0.5); /* Dark background */
    filter: blur(5px); /* Apply blur effect */
    z-index: -1;
    border-radius: 5px;
}




/* footer */

/* .footer {
    background: url('/images/footerimg.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 50px 20px;
    position: relative;
} */


@media screen and (max-width: 768px) {
   
    .brand-logo {
        max-width: 100%; 
    }

    /* our expertise */
    .title-box {
        font-size: 0.7rem;
       
       
    }
    
    .description-cloud {
       
        font-size: 0.8rem;
    }
    
}
