/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevent horizontal overflow */
    font-family: 'Roboto', sans-serif;
    background-color: #141414;
    color: white;
    width: 100%;
    cursor: none;
    user-select: none;
}

body {
    animation: fadeIn 5s ease-in-out; /* Smooth fade-in animation */
}

/* Sure all elements respect the viewport width */
* {
    box-sizing: border-box;
    max-width: 100%;
}

/* Navbar styles */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: transparent;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    width: 30px;
    height: 21px;
}

.menu-toggle .bar {
    display: block;
    width: 100%;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: white;
}

/* Responsive styles */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        background-color: #1a1a1a;
        text-align: center;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Remove cursor effects for mobile users */
    #custom-cursor {
        display: none;
    }

    body {
        cursor: auto; /* Show default cursor */
    }
}

/* CTA Button styles */
.cta-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.2rem;
    color: white;
    background-color: #00e1ff;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    background-color: #ff007f;
    transform: scale(1.1);
    box-shadow: 0 0 10px #ff007f, 0 0 20px #ff007f, 0 0 30px #ff007f; /* Add a glow pick on hover */
}

#navbar {
    position: absolute;
    top: 0;
    width: 100%;
    background: transparent; /* Transparent background */
    padding: 10px 20px;
    z-index: 999;
    transition: opacity 1s ease-in-out;
    margin-top: 22px; /* Move navbar down slightly */
}

#navbar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    margin-right: 75px; /* Move navbar buttons slightly to the left */
}

#navbar ul li {
    display: inline;
}

#navbar ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}

#navbar ul li a:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #00e1ff;
    box-shadow: 0 0 10px #00e1ff, 0 0 20px #00e1ff, 0 0 30px #00e1ff;
    cursor: pointer;
}

#main-content {
    display: none;
    padding: 20px;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes textGlow {
    from {
        text-shadow: 0 0 10px #00e1ff, 0 0 20px #00e1ff, 0 0 30px #00e1ff;
    }
    to {
        text-shadow: 0 0 20px #ff007f, 0 0 30px #ff007f, 0 0 40px #ff007f;
    }
}

header {
    text-align: center;
    color: white;
    padding: 20px 0;
    animation: slideDown 1s ease-in-out; /* Slide-down animation */
}

.content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    animation: slideUp 1s ease-in-out; /* Slide-up animation */
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between; /* make sure space between logo and nav items */
    animation: fadeIn 2s ease-in; /* Smooth fade-in animation */
    width: 100%; /* Make the nav bar full width */
    background: transparent; /* Gradient background */
    box-shadow: transparent; /* Subtle shadow for depth */
    border-radius: 5px; /* Rounded corners */
    padding: 10px 20px; /* Padding for better spacing */
    z-index: 1000; /*make sure is above other elements */
}

.logo {
    margin-right: auto; /* Align logo to the left */
}

.logo img {
    margin-top: 0px;
    z-index: 1001; /* Ensure it's higher than other elements */
    position: absolute; /* Position the logo at the top */
    top: 0; /* Align to the top */
    max-width: 150px; /* Adjust the size of the logo */
    color: white;
    transition: transform 0.3s; /* Smooth transition for transform */
    margin-top: 0; /* Remove margin from the top */
}

.logo img:hover {
    transform: scale(1.1); /* pick */
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 0;
    margin-bottom: 50px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s; /* Smooth transition for background, color, and box-shadow */
}

nav ul li a:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #00e1ff; /* Change text color on hover */
    box-shadow: 0 0 10px #00e1ff, 0 0 20px #00e1ff, 0 0 30px #00e1ff; /* pick */
    cursor: none; /* Change cursor on hover */
}

.animated-background {
    width: 100%;
    height: 100%;
    overflow: hidden;
    top: 0;
    left: 0;
    z-index: -1; /* make sure is behind other elements */
}

.stars {
    position: absolute;
    width: 10px; /* Smaller size for subtle pick */
    height: 10px; /* Smaller size for subtle pick */
    background: white;
    border-radius: 50%; /* Make stars circular */
    box-shadow: 0 0 10px white, 0 0 20px #00e1ff, 0 0 30px #00e1ff, 0 0 40px #00e1ff; /* Added more glow pick */
    animation: moveStars 20s linear infinite; /* Reduced duration for faster movement */
}

.stars:nth-child(1) { top: 20%; left: 25%; animation-duration: 20s; }
.stars:nth-child(2) { top: 50%; left: 50%; animation-duration: 25s; }
.stars:nth-child(3) { top: 80%; left: 75%; animation-duration: 30s; }
.stars:nth-child(4) { top: 10%; left: 10%; animation-duration: 35s; }
.stars:nth-child(5) { top: 30%; left: 70%; animation-duration: 40s; }
.stars:nth-child(6) { top: 60%; left: 20%; animation-duration: 45s; }
.stars:nth-child(7) { top: 90%; left: 40%; animation-duration: 50s; }
.stars:nth-child(8) { top: 15%; left: 80%; animation-duration: 55s; }
.stars:nth-child(9) { top: 45%; left: 30%; animation-duration: 60s; }
.stars:nth-child(10) { top: 75%; left: 60%; animation-duration: 65s; }
.stars:nth-child(11) { top: 25%; left: 15%; animation-duration: 70s; }
.stars:nth-child(12) { top: 35%; left: 85%; animation-duration: 75s; }
.stars:nth-child(13) { top: 55%; left: 45%; animation-duration: 80s; }
.stars:nth-child(14) { top: 65%; left: 55%; animation-duration: 85s; }
.stars:nth-child(15) { top: 85%; left: 35%; animation-duration: 90s; }
.stars:nth-child(16) { top: 5%; left: 5%; animation-duration: 95s; }
.stars:nth-child(17) { top: 95%; left: 95%; animation-duration: 100s; }
.stars:nth-child(18) { top: 10%; left: 90%; animation-duration: 105s; }
.stars:nth-child(19) { top: 90%; left: 10%; animation-duration: 110s; }
.stars:nth-child(20) { top: 40%; left: 60%; animation-duration: 115s; }

.white-slate {
    position: relative;
    margin: 0 auto;
    padding: 20px;
    width: 80%;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.8); /* Slightly translucent white background */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Soft shadow for depth */
    border-radius: 10px; /* Rounded corners */
    text-align: center;
    z-index: 1; /* make sure is above the background */
    animation: fadeInUp 1s ease-in-out; /* Fade-in and slide-up animation */
}

@keyframes moveStars {
    0% {
        transform: translateY(0) translateX(0);
    }
    100% {
        transform: translateY(-2000px) translateX(calc(100vw * var(--random-x))); /* Increased vertical movement */
    }
}

header, main, footer {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

main p {
    margin: 20px 0;
    color: black;
}

footer p {
    margin: 20px 0;
    animation: slideUp 1s ease-in-out; /* Slide-up animation */
}

/* Custom Cursor */
#custom-cursor {
    position: fixed; /* Use fixed positioning to keep the cursor visible */
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #00e1ff;
    pointer-events: none;
    transition: transform 0.1s ease;
    z-index: 1000; /* pick the cursor is above other elements */
    box-shadow: 0 0 10px #00e1ff, 0 0 20px #00e1ff, 0 0 30px #00e1ff;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px; /* Slimmer width */
}

::-webkit-scrollbar-track {
    background: #1a1a1a; /* Background color of the scrollbar track */
}

::-webkit-scrollbar-thumb {
    background: #00e1ff; /* Aqua color for the scrollbar thumb */
    border-radius: 10px; /* Rounded corners for the scrollbar thumb */
    box-shadow: 0 0 10px rgba(0, 225, 255, 0.5), 0 0 20px rgba(0, 225, 255, 0.3), 0 0 30px rgba(0, 225, 255, 0.2); /* Glowing pick */
}

::-webkit-scrollbar-thumb:hover {
    background: #00b3cc; /* Darker aqua color on hover */
    box-shadow: 0 0 15px rgba(0, 179, 204, 0.7), 0 0 30px rgba(0, 179, 204, 0.5), 0 0 45px rgba(0, 179, 204, 0.3); /* Stronger glowing pick on hover */
}

/* Mentor Section */
.hero {
    position: relative;
    height: 75vh; /* Set height to 75vh */
    display: flex;
    justify-content: space-between; /* Align content to the left and right */
    align-items: center;
    color: white;
    padding: 0 50px; /* Add padding to the sides */
    animation: slideDown 3s ease-in-out; /* Slide-down animation */
}

.hero-content {
    z-index: 1;
    text-align: left; /* Align text to the left */
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 0 0 10px #00e1ff, 0 0 20px #00e1ff, 0 0 30px #00e1ff; /* Aqua pick */
    animation: fadeIn 5s ease-in-out; /* Fade-in animation */
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    animation: fadeIn 5s ease-in-out; /* Fade-in animation */
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1rem;
    color: black;
    background-color: white;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s, box-shadow 0.3s, transform 0.3s; /* Added transform transition */
    box-shadow: 0 0 10px white, 0 0 20px white, 0 0 30px white; /* White pick */
    animation: fadeIn 5s ease-in; /* Fade-in animation */
}

.cta-button:hover {
    background-color: #00e1ff; /* Aqua color on hover */
    box-shadow: 0 0 10px #00e1ff, 0 0 20px #00e1ff, 0 0 30px #00e1ff; /* Aqua pick */
    transform: scale(1.1); /* Zoom pick on hover */
}

.hero-image {
    max-width: 50%; /* Adjust the size of the image */
    height: auto;
    perspective: 1000px; /* Add perspective for 3D pick */
    animation: fadeIn 5s ease-in-out; /* Fade-in animation */
}
.hero-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease; /* Smooth transition for transform */
}

.hero-image {
    max-width: 50%; /* Adjust the size of the image */
    height: auto;
    perspective: 1000px; /* Add perspective for 3D pick */
    position: relative; /* make sure the image is positioned about to its container */
    overflow: hidden; /* Hide overflow */
}

.hero-image img {
    width: 100%;
    height: auto;
    transition: transform 0.1s ease; /* Smooth transition for transform */
}
/* Trusted by the Best Section */
.trusted {
    padding: 90px 0;
    text-align: center;
    /* background-color: #1a1a1a; Dark background for contrast */
    color: white;
    overflow: hidden; /* Hide overflow for scrolling pick */
    animation: fadeInUp 1s ease-in-out; /* Fade-in and slide-up animation */
}

.trusted h2 {
    font-size: 3rem;
    margin-bottom: 50px;
    color: #00e1ff; /* Aqua color for heading */
    text-shadow: 0 0 10px #00e1ff, 0 0 20px #00e1ff, 0 0 30px #00e1ff; /* Aqua pick */
}

.trusted-logos {
    display: flex;
    justify-content: flex-start; /* Align logos to the start */
    align-items: center;
    gap: 40px; /* Adjust the gap between logos */
    animation: scroll 20s linear infinite; /* Add scrolling animation with slower speed */
    width: 200%; /* Double the width for continuous scrolling */
}

.trusted-logos img {
    max-width: 150px; /* Increase the size of the logos */
    height: auto;
    filter: grayscale(100%); /* Make logos grayscale */
    transition: filter 0.3s, transform 0.3s; /* Smooth transition for filter and transform */
}

.trusted-logos img:hover {
    filter: none; /* Remove grayscale on hover */
    transform: scale(1.3); /* Increased zoom pick on hover */
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* About Us Section */
.about {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 20px; /* Increased padding for more gap from top */
    background: #141414;
    background-blend-mode: overlay;
    position: relative;
    overflow: hidden;
    color: white;
    animation: fadeInUp 1s ease-in-out; /* Fade-in and slide-up animation */
}

.about-content {
    text-align: center;
    z-index: 1; /* make sure content is above the background */
    margin-bottom: 40px; /* Space between top content and bottom content */
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #00e1ff; /* Aqua color for heading */
    text-shadow: 0 0 10px #00e1ff, 0 0 20px #00e1ff, 0 0 30px #00e1ff; /* Aqua pick */
}

.about .tagline {
    font-size: 1.5rem;
    font-weight: bold;
    color: white; /* Aqua color for tagline */
    margin-bottom: 20px;
}

.about-bottom {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 20px; /* Add gap between cards */
}

.card {
    margin: 0 auto;
    padding: 2em;
    width: 400px;
    background: #141414;
    text-align: center;
    border-radius: 10px;
    position: relative;
    overflow: hidden; /* make sure the pseudo-elements don't overflow */
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5); /* Optional: Add a shadow for better visibility */
    animation: glow 5s infinite; /* Add glow animation */
}

.card h3 {
    margin-bottom: 1em; /* Add gap between h3 and p */
    font-size: 1.5rem; /* Modern font size for h3 */
    color: #00e1ff; /* Aqua color for h3 */
    text-shadow: 0 0 10px #00e1ff, 0 0 20px #00e1ff, 0 0 30px #00e1ff; /* Aqua pick */
}

.card p {
    font-size: 1.1rem; /* Slightly larger font size for p */
    line-height: 1.8; /* Increased line height for better readability */
    color: #ffffff; /* White color for text */
    margin: 0; /* Remove default margin */
    padding: 0 10px; /* Add padding for better spacing */
}

@keyframes glow {
    0% {
        box-shadow: 0 0 15px #ffffff, 0 0 30px rgba(255, 255, 255, 0.5), 0 0 45px rgba(255, 255, 255, 0.5);
    }
    50% {
        box-shadow: 0 0 15px #000000, 0 0 30px rgba(0, 0, 0, 0.5), 0 0 45px rgba(0, 0, 0, 0.5);
    }
    100% {
        box-shadow: 0 0 15px #ffffff, 0 0 30px rgba(255, 255, 255, 0.5), 0 0 45px rgba(255, 255, 255, 0.5);
    }
}

/* Reputation Section */
.reputation {
    padding: 75px 20px; /* Increased padding for more gap from top */
    /* background: #1a1a1a; Dark background for contrast */
    color: white;
    text-align: center;
    animation: fadeInUp 1s ease-in-out; /* Fade-in and slide-up animation */
}

.reputation .heading {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #00e1ff; /* Aqua color for heading */
    text-shadow: 0 0 10px #00e1ff, 0 0 20px #00e1ff, 0 0 30px #00e1ff; /* Aqua pick */
}

.reputation .highlight {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 30px; /* Add margin-bottom for space between h2 and icons */
}

.reputation-items {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px; /* Decreased the gap between items */
}

.reputation-item {
    flex: 1;
    min-width: 200px; /* make sure items don't get too small */
    text-align: center;
}

.reputation-item i {
    font-size: 2rem; /* Adjust the size of the icons */
    margin-bottom: 10px; /* Decreased margin-bottom for less space */
    color: #00e1ff; /* Aqua color for icons */
    text-shadow: 0 0 10px #00e1ff, 0 0 20px #00e1ff, 0 0 30px #00e1ff; /* Aqua pick */
    transition: transform 0.3s, color 0.3s; /* Smooth transition for transform and color */
    animation: float 3s ease-in-out infinite; /* Add floating animation */
}

.reputation-item i:hover {
    transform: scale(1.2); /* Slight zoom pick on hover */
    color: #ffffff; /* Change color on hover */
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

.reputation-item p {
    font-size: 1.2rem;
    line-height: 1.6; /* Improved line height for readability */
}

/* Services Section */

.services {
    padding: 50px 20px;
    background-color: transparent;
    text-align: center;
}

.services-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.services h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #00e1ff; /* Aqua color for heading */
    text-shadow: 0 0 10px #00e1ff, 0 0 20px #00e1ff, 0 0 30px #00e1ff; /* Aqua pick */

}

.services-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.services-list li {
    background: #2a2a2a;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Soft shadow for depth */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for transform and box-shadow */
}

.services-list li:hover {
    transform: translateY(-10px); /* Lift up on hover */
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3); /* Deeper shadow on hover */
}

.services-list li i {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #00e1ff; /* Aqua color for icons */
}

.services-list li strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #ffffff; /* White color for strong text */
}

.services-list li p {
    font-size: 1rem;
    color: #cccccc; /* Light grey color for paragraph text */
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    margin-left: 45px; /* Increased from 25px to 45px to move it right */
    font-size: 1rem;
    color: white;
    background-color: #1a1a1a;
    border: 2px solid #00e1ff;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s, transform 0.3s;
    box-shadow: 0 0 10px #00e1ff, 0 0 20px #00e1ff, 0 0 30px #00e1ff;
}

.cta-button:hover {
    background: #00e1ff; /* Aqua color on hover */
    color: #1a1a1a; /* Dark text color on hover */
    box-shadow: 0 0 10px #00e1ff, 0 0 20px #00e1ff, 0 0 30px #00e1ff; /* Glow pick */
    transform: scale(1.1); /* Zoom pick on hover */
    cursor: none; /* Change cursor on hover */
}

/* About Us Section Styling */
#about-us {
    padding: 50px 20px;
    margin: 40px 50px;
    text-align: center;
    background-color: transparent;
  }
  
  #about-us h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #00e1ff; /* Aqua color for heading */
    text-shadow: 0 0 10px #00e1ff, 0 0 20px #00e1ff, 0 0 30px #00e1ff; /* Aqua pick */
  }
  
  .about-us-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .about-us-box {
    flex: 1;
    padding: 20px;
    border: 2px solid #00e1ff;
    border-radius: 10px;
    background-color: transparent;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    perspective: 1000px;
  }
  
  .about-us-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }
  
  .about-us-box p {
    font-size: 1.2em;
    color: white;
    margin: 0;
    line-height: 1.6;
  }
  
  .about-us-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #00e1ff, #1a1a1a);
    opacity: 0.1;
    transition: opacity 0.3s ease;
  }

/* Clints by the Best Section */
.clints {
    padding: 90px 0;
    text-align: center;
    /* background-color: #1a1a1a; Dark background for contrast */
    color: white;
    overflow: hidden; /* Hide overflow for scrolling pick */
    animation: fadeInUp 1s ease-in-out; /* Fade-in and slide-up animation */
}

.clints h2 {
    font-size: 3rem;
    margin-bottom: 50px;
    color: #00e1ff; /* Aqua color for heading */
    text-shadow: 0 0 10px #00e1ff, 0 0 20px #00e1ff, 0 0 30px #00e1ff; /* Aqua pick */
}

.clints-logos {
    display: flex;
    justify-content: flex-start; /* Align logos to the start */
    align-items: center;
    gap: 40px; /* Adjust the gap between logos */
    animation: scroll 20s linear infinite; /* Add scrolling animation with slower speed */
    width: 200%; /* Double the width for continuous scrolling */
}

.clints-logos img {
    max-width: 150px; /* Increase the size of the logos */
    height: auto;
    filter: grayscale(100%); /* Make logos grayscale */
    transition: filter 0.3s, transform 0.3s; /* Smooth transition for filter and transform */
}

.clints img:hover {
    filter: none; /* Remove grayscale on hover */
    transform: scale(1.3); /* Increased zoom pick on hover */
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Testimonials Section */
.testimonials {
    padding: 50px 0;
    background-color: transparent;
    color: white;
    text-align: center;
}

.testimonials-content {
    max-width: 800px;
    margin: 0 auto;
}

.testimonials-carousel {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial {
    width: 45%;
    margin: 10px;
    padding: 20px;
    background-color: #333;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.testimonial.hidden {
    display: none;
}

.testimonial-content p {
    font-size: 1rem;
    margin-bottom: 10px;
}

.testimonial-content span {
    display: block;
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 10px;
}

.star-rating i {
    color: #ffdd00;
}

.show-more-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 1rem;
    color: white;
    background-color: transparent;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-shadow: 0 0 10px #00e1ff, 0 0 20px #00e1ff, 0 0 30px #00e1ff;

}

.show-more-btn:hover {
    background-color: #00e1ff;
    color: #000;
}

.testimonials-content h2 {
    font-size: 3rem;
    margin-bottom: 50px;
    color: #00e1ff; /* Aqua color for heading */
    text-shadow: 0 0 10px #00e1ff, 0 0 20px #00e1ff, 0 0 30px #00e1ff; /* Aqua pick */
}

/* FAQ Section Styling */
#faq {
    padding: 30px 0px; /* Reduce padding */
    margin: 2px 0; /* Reduce margin */
    text-align: center;
    background-color: transparent;
    border-radius: 10px;
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#faq h2 {
    font-size: 2rem; /* Reduce font size */
    margin-bottom: 20px; /* Reduce margin */
    color: #00e1ff;
    text-shadow: 0 0 10px #00e1ff, 0 0 20px #00e1ff, 0 0 30px #00e1ff;
}

.faq-tagline {
    font-size: 1rem; /* Reduce font size */
    margin-bottom: 15px; /* Reduce margin */
    color: white;
}

.faq-item {
    margin-bottom: 0%; /* Reduce margin */
    text-align: left;
    cursor: pointer;
    padding: 2px; /* Reduce padding */
    background-color: transparent; /* Background color */
    transition: background-color 0.3s ease, transform 0.3s ease; /* Add transition */
}

.faq-item:hover {
    background-color: transparent; /* Change background color on hover */
    transform: scale(1.02); /* Slightly enlarge on hover */
}

.faq-item h3 {
    font-size: 1.3rem; /* Reduce font size */
    margin-bottom: 2px;
    color: #00e1ff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid white; /* Add border to question */
    border-radius: 10px; /* Rounded corners */
    padding: 10px; /* Add padding */
}

.faq-item p {
    font-size: 0.9rem; /* Reduce font size */
    color: white;
    line-height: 1.6;
    display: none;
    transition: max-height 0.3s ease-out;
    overflow: hidden;
}

.toggle-icon {
    font-size: 1.3rem; /* Reduce font size */
    color: white;
    transition: transform 0.3s ease;
}

.toggle-icon.rotate {
    transform: rotate(45deg);
}

/* Navbar styles */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: transparent;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Responsive styles */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        background-color: #1a1a1a;
        text-align: center;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .menu-close {
        display: none;
        background: none;
        border: none;
        color: white;
        font-size: 1.5rem;
        cursor: pointer;
        position: absolute;
        top: 10px;
        right: 20px;
    }

    .menu-close.active {
        display: block;
    }
}

/* Cursor effects for PC users */
#custom-cursor {
    position: fixed; /* Use fixed positioning to keep the cursor visible */
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #00e1ff;
    pointer-events: none;
    transition: transform 0.1s ease;
    z-index: 1000; /* Sure the cursor is above other elements */
    box-shadow: 0 0 10px #00e1ff, 0 0 20px #00e1ff, 0 0 30px #00e1ff;
}

/* About Us Page Styling */
#about-us {
    padding: 50px 20px;
    margin: 40px 0;
    text-align: center;
    background-color: transparent;
}

#about-us h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #00e1ff; /* Aqua color for heading */
    text-shadow: 0 0 10px #00e1ff, 0 0 20px #00e1ff, 0 0 30px #00e1ff; /* Aqua glow */
}

.about-us-tagline {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: white;
}

.about-us-content {
    display: flex;
    width: 50%;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.about-us-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 0 auto; /* Center the content */
}

.about-us-box {
    flex: 1;
    padding: 20px;
    border: 2px solid #00e1ff;
    border-radius: 10px;
    background-color: transparent;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    perspective: 1000px;
}

.about-us-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.about-us-box p {
    font-size: 1.2em;
    color: white;
    margin: 0;
    line-height: 1.6;
}

.about-us-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #00e1ff, #1a1a1a);
    opacity: 0.1;
    transition: opacity 0.3s ease;
}

/* Blog Section */
.blog {
    padding: 50px 20px;
    background-color: transparent;
    color: white;
    text-align: center;
}

.blog h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #00e1ff;
    text-shadow: 0 0 10px #00e1ff, 0 0 20px #00e1ff, 0 0 30px #00e1ff;
}

.blog-posts {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Ensure 4 columns */
    gap: 20px;
    padding: 0 10px; /* Add padding to the container */
}

.blog-post {
    display: flex;
    flex-direction: column;
    background-color: transparent;
    border-radius: 10px;
    box-shadow: 0 0 3px #00e1ff, 0 0 8px #00e1ff, 0 0 15px #00e1ff;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0 10px; /* Add margin to each post */
}

.blog-post:hover {
    transform: scale(1.05);
    box-shadow: 0 0 5px #00e1ff, 0 0 10px #00e1ff, 0 0 20px #00e1ff;
}

.post-image {
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 200px; /* Adjust height to make the box smaller */
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post-image:hover img {
    transform: scale(1.1);
}

.post-content {
    padding: 20px;
    text-align: left;
}

.post-content h2 {
    font-size: 1.5em; /* Adjust font size to make the box smaller */
    margin-bottom: 10px;
    color: aqua;
}

.post-content .meta-description {
    font-size: 0.9em; /* Adjust font size to make the box smaller */
    line-height: 1.6;
    color: #666;
    margin-bottom: 10px;
}

.post-content .published-date {
    font-size: 0.8em; /* Adjust font size to make the box smaller */
    color: #999;
    margin-bottom: 10px;
}

.post-content .read-more {
    display: inline-block;
    margin-top: 10px;
    color: #00e1ff;
    text-decoration: none;
    font-weight: bold;
}
/* Individual Article Page */
.article-page {
    background-color: transparent;
    color: rgb(219, 219, 219);
    padding: 50px 20px;
    max-width: 800px;
    margin: 0 auto;
    text-align: justify;
}

.article-page h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: aqua;
    text-align: center;
}

.article-page h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #98A2B3;
}

.article-page h3 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: #aebdd3;
}

.article-page p {
    font-size: 1.2em;
    line-height: 1.8;
    color: whitesmoke;
    margin-bottom: 20px;
    text-align: left;
}

.article-page blockquote {
    margin: 20px 0;
    padding: 10px 20px;
    background-color: #f9f9f9;
    border-left: 5px solid #00e1ff;
    color: #333;
    font-style: italic;
}

.article-page ul {
    margin: 20px 0;
    padding-left: 20px;
}

.article-page ul li {
    margin-bottom: 10px;
    list-style-type: disc;
}

.article-page a {
    color: #00e1ff;
    text-decoration: underline;
}

/* Blog Section */

.blog {
    padding: 50px 20px;
    background-color: transparent;
    color: white;
    text-align: center;
}

.blog h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #00e1ff;
    text-shadow: 0 0 10px #00e1ff, 0 0 20px #00e1ff, 0 0 30px #00e1ff;
}

.blog-posts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 0 10px;
}

.blog-post {
    display: flex;
    flex-direction: column;
    background-color: transparent;
    border-radius: 10px;
    box-shadow: 0 0 3px #00e1ff, 0 0 8px #00e1ff, 0 0 15px #00e1ff;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0 10px;
}

.blog-post:hover {
    transform: scale(1.05);
    box-shadow: 0 0 5px #00e1ff, 0 0 10px #00e1ff, 0 0 20px #00e1ff;
}

.post-image {
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post-image:hover img {
    transform: scale(1.1);
}

.post-content {
    padding: 20px;
    text-align: left;
}

.post-content h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: aqua;
}

.post-content h2 a {
    color: aqua;
    text-decoration: none;
}

.post-content h2 a:hover {
    text-decoration: underline;
}

.post-content .meta-description {
    font-size: 0.9em;
    line-height: 1.6;
    color: #666;
    margin-bottom: 10px;
}

.post-content .published-date {
    font-size: 0.8em;
    color: #999;
    margin-bottom: 10px;
}

.post-content .read-more {
    display: inline-block;
    margin-top: 10px;
    color: #00e1ff;
    text-decoration: none;
    font-weight: bold;
}

/* Contact Section */
#contact {
  padding: 50px 20px;
  background-color: #141414;
  color: white;
  text-align: center;
}

#contact h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #00e1ff;
  text-shadow: 0 0 10px #00e1ff, 0 0 20px #00e1ff, 0 0 30px #00e1ff;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.contact-info {
  max-width: 600px;
  background-color: #1a1a1a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  perspective: 1000px; /* Add perspective for 3D effect */
  transition: transform 0.3s ease; /* Smooth transition for transform */
}

.contact-info:hover {
  transform: rotateY(10deg) rotateX(10deg); /* 3D rotation on hover */
}

.contact-info .title {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #00e1ff;
}

.contact-info .text {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #ccc;
}

.contact-info .info {
  margin-bottom: 20px;
}

.contact-info .information {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 1rem;
  color: #ccc;
}

.contact-info .information i {
  font-size: 1.2rem;
  margin-right: 10px;
  color: #00e1ff;
}

.social-media {
  margin-top: 20px;
}

.social-media p {
  font-size: 1rem;
  color: #ccc;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(45deg, #00e1ff, #00e1ff);
  color: #fff;
  text-align: center;
  line-height: 40px;
  transition: transform 0.3s;
}

.social-icons a:hover {
  transform: scale(1.1);
}