


body {
    font-family:monospace, serif;
    margin: 0;
    background-color: black;
    color: #fff;
    text-align: center;
    overflow-x: hidden;
    overflow-y: auto; /* Allow vertical scrolling */
}

.gfg {
    display: flex;
    font-size: 80px;
    font-weight: bold;
    opacity: 0;
    transform: translateY(-50px);
    animation: fadeIn 1s forwards, joinLetters 2s 1.5s forwards;
}

.letter {
    position: relative;
    display: inline-block;
}

.g { transform: translateX(-30px); }
.f { transform: translateX(0); }
.g2 { transform: translateX(30px); }

.media {
    font-size: 50px;
    opacity: 0;
    transform: translateX(-50px);
    animation: slideIn 1s 2s forwards;
}

/* Fading out intro */
.fade-out {
    animation: fadeOut 1s forwards;
}



/* Intro section */
.intro {
    position: relative;
    width: 100%;
    height: 100vh; /* Full viewport height */
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    color: #fff;
    overflow: hidden; /* Hide overflow */
}

.intro::after {
    content: ""; /* Create a pseudo-element */
    position: absolute; /* Position it absolutely */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('imgs/pexels-mikhail-nilov-7624888.jpg'); /* Background image */
    background-size: cover; /* Cover the entire area */
    background-position: center; /* Center the image */
    opacity: 0.2; /* Initially hidden */
    transition: opacity 1s ease; /* Smooth transition for opacity */
    z-index: 1; /* Place it behind the content */
}
.software .intro::after{
    content: ""; /* Create a pseudo-element */
    position: absolute; /* Position it absolutely */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:url('imgs/IMG_0019.JPG'); /* Background image */
    background-size: cover; /* Cover the entire area */
    background-position: top; /* Center the image */
    opacity: 0.2; /* Initially hidden */
    transition: opacity 1s ease; /* Smooth transition for opacity */
    z-index: 1; /* Place it behind the content */ 
}
.branding .intro::after{
    content: ""; /* Create a pseudo-element */
    position: absolute; /* Position it absolutely */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:url('imgs/pexels-prime-cinematics-1005175-2057477.jpg'); /* Background image */
    background-size: cover; /* Cover the entire area */
    background-position: top; /* Center the image */
    opacity: 0.2; /* Initially hidden */
    transition: opacity 1s ease; /* Smooth transition for opacity */
    z-index: 1; /* Place it behind the content */ 
}

.branding-taps .intro::after{
    content: ""; /* Create a pseudo-element */
    position: absolute; /* Position it absolutely */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:url('imgs/IMG_0018.JPG'); /* Background image */
    background-size: contain; /* Cover the entire area */
    /* Center the image */
    opacity: 0.2; /* Initially hidden */
    transition: opacity 1s ease; /* Smooth transition for opacity */
    z-index: 1; /* Place it behind the content */ 
}
.intro-text {
    position: relative; /* Position relative to place it above the background */
    z-index: 2; /* Ensure text is above the background */
    color: white; /* Text color for better visibility */
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    margin-top: 20px;
}

/* When animation completes */
.show-text {
    opacity: 1;
    transform: translateY(0);
}

/* Header and Navigation */
header {
    background: #000;
    color: white;
    padding: 15px 0;
    text-align: center;
}



.logo {
    font-size: 24px;
    font-weight: 700;
    opacity: 0; /* Initially hidden */
    transform: scale(2) translateY(50px);
    transition: all 1s ease-in-out;
    color: white;
    position: relative;
    left: 200px;
    margin-bottom: 10px;
}

.show-logo {
    opacity: 1; /* Show the logo */
    transform: scale(1) translateY(0);
}

/* Hero Section */
.hero {
    height: 100vh; /* Full viewport height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: url('https://source.unsplash.com/1600x900/?creative,art') no-repeat center center/cover;
}

.hero .cta {
    display: inline-block;
    background: #ff5722;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 20px;
}
.icons{
    display: flex;
    justify-content: center;
}
/* Footer */
footer {
    text-align: center;
    padding: 15px;
    background: #000;
    color: white;
}

/* Keyframes */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes joinLetters {
    0% { transform: translateY(0); }
    50% { transform: translateY(10px); }
    100% { transform: translateY(0); }
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeOut {
    to { opacity: 0; visibility: hidden; }
}

/* Navbar */
nav {
    display: grid;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 15px;
    background: rgba(0, 0, 0, 0); /* Transparent background */
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: background 0.3s ease-in-out, opacity 0.3s ease-in-out; /* Smooth transition for background and opacity */
    opacity: 0; /* Initially hidden */
    visibility: hidden; /* Hide visibility */
}

nav.visible {
    opacity: 1; /* Make visible */
    visibility: visible; /* Ensure visibility */
}

nav.scrolled {
    background: rgba(0, 0, 0, 0.9); /* Black background when scrolled */
}

nav ul {
    list-style: none;
    display: flex;
    gap: 10px;
    margin: 0;
    padding: 0;
}

nav ul li {
    position: relative; /* Position relative for sub-menu positioning */
}

.logo {
    font-size: 24px;
    font-weight: 700;
    opacity: 0; /* Initially hidden */
    transform: scale(2) translateY(50px);
    transition: all 1s ease-in-out;
    color: white;
    margin-right: auto; /* Pushes the logo to the left */
}

.show-logo {
    opacity: 1; /* Show the logo */
    transform: scale(1) translateY(0);
}

/* Navbar Links */
nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s ease-in-out;
    padding: 8px 12px;
}

nav ul li a:hover {
    color: #00ffcc;
    text-shadow: 0px 0px 10px rgba(0, 255, 204, 0.6);
}

/* Mobile Menu Button */
.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 28px;
    color: white;
    position: relative;
    left: -50px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    nav{
        display: flex;
    }
    .logo{
        position: relative;
        left: 0;
    }
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 5%;
        background: rgba(0, 0, 0, 0.9);
        width: 200px;
        border-radius: 8px;
        text-align: center;
    }

    nav ul.show {
        display: flex;
    }

    nav ul li {
        padding: 12px 0;
        display: block;
    }
    .container{
        display:flex;
        flex-wrap: wrap;
        justify-content: left;
    }
    .service-grid {
        grid-template-columns: auto; /* Stack items on smaller screens */
    }
}

/* Additional styles for the About, Gallery, Blog, and Contact sections */
.about, .gallery, .blog, .contact {
    padding: 50px 20px; /* Add padding for spacing */
    background: #1e1e1e; /* Dark background for contrast */
    margin: 20px 0; /* Space between sections */
}

.services {
    padding: 50px 20px; 
    /* Add padding for spacing */
}
.services h2{
    font-size: 52px;
}
.service-package {
    
    display: flex; /* Use flexbox for layout */
    align-items: center; /* Center items vertically */
    margin: 20px 0; /* Space between service packages */
    flex-direction: column; /* Stack items vertically on small screens */
}

.service-info {
    flex: 1; /* Take up equal space */
    padding: 20px; /* Padding for the info section */
    text-align: center; /* Center text on small screens */
    
}
.service-infoo {
    flex: 1; /* Take up equal space */
    padding: 20px; /* Padding for the info section */
    text-align: center; /* Center text on small screens */
    
}

.service-list {
    flex: 1; /* Take up equal space */
    padding: 20px; /* Padding for the list section */
}

.service-list ul {
    list-style-type: none; /* Remove default list styling */
    padding: 0; /* Remove padding */
}

.service-list ul li {
    padding: 10px; /* Padding for list items */
    border-bottom: 1px solid #444; /* Divider between items */
}

.service-package.reverse {
    flex-direction: row-reverse; /* Reverse the order for zig-zag effect */
}

.service-package.reverse .service-info {
    text-align: right; /* Align text to the right for reversed packages */
}

.service-package.reverse .service-list {
    text-align: left; /* Align text to the left for reversed packages */
}

.service-package h3 {
    margin-bottom: 10px; /* Space below the heading */
    font-size: 24px; /* Increase heading size */
    color: #ff5722; /* Distinct color for headings */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); /* Text shadow for better readability */
}

.service-package ul {
    list-style-type: none; /* Remove default list styling */
    padding: 0; /* Remove padding */
}

.service-package ul li {
    padding: 10px; /* Padding for list items */
    border-bottom: 1px solid #444; /* Divider between items */
    transition: background 0.3s; /* Smooth transition for hover effect */
}

.service-package ul li:hover {
    background: rgba(255, 87, 34, 0.1); /* Highlight effect on hover */
}

.gallery {
    padding: 50px 20px; /* Add padding for spacing */
    background-color: black;
}

.gallery-content {
    display: flex; /* Use flexbox for layout */
    align-items: flex-start; /* Align items to the top */
    margin-top: 20px; /* Space above the content */
    flex-direction: column; /* Stack items vertically on small screens */
}

.gallery-grid {
    display: grid; /* Use grid layout for images */
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); /* Responsive grid */
    gap: 10px; /* Space between grid items */
    flex: 1; /* Take up equal space */
}

.gallery-image {
    width: 100%; /* Make images responsive */
    height: auto; /* Maintain aspect ratio */
    border-radius: 8px; /* Rounded corners for images */
    object-fit: cover; /* Cover the area without distortion */
}

.gallery-description {
    flex: 1; /* Take up equal space */
    padding: 20px; /* Padding for the description section */
}

.show-more {
    display: inline-block;
    margin-top: 10px;
    background: #ff5722; /* Button color */
    color: white; /* Button text color */
    padding: 10px 15px; /* Button padding */
    text-decoration: none; /* Remove underline */
    border-radius: 5px; /* Rounded corners */
    transition: background 0.3s; /* Smooth transition for hover effect */
}

.show-more:hover {
    background: #e64a19; /* Darker shade on hover */
}

.blog {
    padding: 50px 20px; /* Add padding for spacing */
    background: #1e1e1e; /* Dark background for contrast */
    text-align: center; /* Center the text */
}

.blog h2 {
    margin-bottom: 30px; /* Space below the heading */
    color: #ff5722; /* Distinct color for headings */
}

.blog-posts {
    display: flex;
    flex-direction: column;
    gap: 20px; /* Space between blog posts */
}

.blog-post {
    background: #2a2a2a; /* Background for each blog post */
    border-radius: 8px; /* Rounded corners */
    padding: 20px; /* Padding for content */
    transition: transform 0.3s; /* Smooth transition for hover effects */
}

.blog-post:hover {
    transform: translateY(-5px); /* Lift effect on hover */
}

.blog-post h3 {
    margin-bottom: 10px; /* Space below the heading */
    color: #ff5722; /* Distinct color for headings */
}

.read-more {
    display: inline-block;
    margin-top: 10px;
    background: #ff5722; /* Button color */
    color: white; /* Button text color */
    padding: 10px 15px; /* Button padding */
    text-decoration: none; /* Remove underline */
    border-radius: 5px; /* Rounded corners */
    transition: background 0.3s; /* Smooth transition for hover effect */
}

.read-more:hover {
    background: #e64a19; /* Darker shade on hover */
}

.footer-content {
    display: flex;
    justify-content: center;
    padding: 20px;
    background: #000; /* Footer background */
    color: white; /* Footer text color */
}

.footer-section {
    flex: 1; /* Equal width for sections */
    margin: 0 20px; /* Margin between sections */
}

.footer-section h4 {
    margin-bottom: 10px; /* Space below the heading */
}

.footer-section ul {
    list-style-type: none; /* Remove default list styling */
    padding: 0; /* Remove padding */
}

.footer-section ul li {
    margin: 5px 0; /* Space between links */
}

.footer-section ul li a {
    color: white; /* Link color */
    text-decoration: none; /* Remove underline */
}

.footer-section ul li a:hover {
    text-decoration: underline; /* Underline on hover */
}

.footer-bottom {
    text-align: center;
    padding: 10px;
    background: #000; /* Footer background */
    color: white; /* Footer text color */
}

.light-effect {
    width: 100px; /* Adjust width as needed */
    margin: 20px 0; /* Space around the image */
    opacity: 0; /* Initially hidden */
    transition: opacity 1s ease-in-out; /* Smooth transition for visibility */
    animation: twitch 1s infinite; /* Apply the twitch animation */
}

/* Show the light effect after the intro animation */
.show-light {
    opacity: 1; /* Make the image visible */
}

/* Keyframes for twitch animation */
@keyframes twitch {
    0%, 100% {
        transform: rotate(0deg); /* Start and end at original position */
    }
    25% {
        transform: rotate(1deg); /* Bend to the right */
    }
    50% {
        transform: rotate(-5deg); /* Bend to the left */
    }
    75% {
        transform: rotate(2deg); /* Slightly bend to the right */
    }
}

.about {
    padding: 50px 20px; /* Add padding for spacing */
    background: #000; /* Black background */
    color: #fff; /* White text color */
}

.about-content {
    display: flex; /* Use flexbox for layout */
    align-items: center; /* Center items vertically */
    margin-top: 20px; /* Space above the content */
    flex-direction: column; /* Stack items vertically on small screens */
}

.about img{
    width: 500px;
    height: 500px;
    object-fit: contain;
}

.about-info {
    flex: 1; /* Take up equal space */
    padding: 20px; /* Padding for the info section */
    text-align: center; /* Center text on small screens */
}

.about-image {
    flex: 1; /* Take up equal space */
    padding: 20px; /* Padding for the image section */
}

.about-image img {
    width: 100%; /* Make the image responsive */
    height: auto; /* Maintain aspect ratio */
    border-radius: 8px; /* Rounded corners for the image */
}

.about-info,
.service-info,
.intro-text {
    opacity: 0; /* Initially hidden */
    transform: translateY(20px); /* Start slightly lower */
    transition: opacity 0.6s ease-out, transform 0.6s ease-out; /* Smooth transition */
}

.show {
    opacity: 1; /* Make visible */
    transform: translateY(0); /* Move to original position */
}

/* Sidebar styles */
.sidebar {
    position: fixed;
    top: 0px;
    right: -250px; /* Adjust based on your sidebar width */
    width: 250px; /* Adjust width as needed */
    height: 100%;
    transition: right 0.3s ease; /* Smooth transition */
    background-color: black;
    z-index: 10000;
}

.sidebar.active {
    right: 0; /* Show sidebar */
}

.sidebar-links {
    list-style: none; /* Remove default list styling */
    padding: 20px; /* Padding for the sidebar */
}

.sidebar-links li {
    margin: 15px 0; /* Space between items */
}

.sidebar-links a {
    color: white; /* Link color */
    text-decoration: none; /* Remove underline */
    font-size: 18px; /* Font size */
}

/* Responsive styles */
@media (min-width: 768px) {
    .sidebar {
        display: none; /* Hide sidebar on larger screens */
    }
    .service-package {
        flex-direction: row; /* Align items side by side on larger screens */
    }

    .service-info, .service-list {
        text-align: left; /* Align text to the left for larger screens */
    }
}

/* Responsive styles */
@media (min-width: 768px) {
    .gallery-content {
        flex-direction: row; /* Align items side by side on larger screens */
    }

    .gallery-description {
        flex: 1; /* Take up equal space */
        padding: 20px; /* Padding for the description section */
    }
}

/* Responsive styles */
@media (min-width: 768px) {
    .about-content {
        flex-direction: row; /* Align items side by side on larger screens */
    }

    .about-info {
        text-align: left; /* Align text to the left for larger screens */
    }

    .about-image img {
        width: 100%; /* Make the image responsive */
        height: auto; /* Maintain aspect ratio */
        border-radius: 8px; /* Rounded corners for the image */
    }
}

.contact {
    padding: 50px 20px; /* Add padding for spacing */
    background: #1e1e1e; /* Dark background for contrast */
    color: #fff; /* White text color */
    
}
a{
    text-decoration: none;
    color: inherit;
}
.contact h2 {
    margin-bottom: 20px; /* Space below the heading */
    font-size: 2.5em; /* Larger font size for the heading */
    font-weight: bold; /* Bold heading */
}



.contact-info {
    margin-bottom: 20px; /* Space below contact info */
}

.contact-info p {
    margin: 5px 0; /* Space between contact info lines */
    font-size: 1.2em; /* Slightly larger font size */
}

.social-media {
    margin-top: 20px; /* Space above social media icons */
}

.social-media h3 {
    margin-bottom: 10px; /* Space below the subheading */
    font-size: 1.5em; /* Font size for subheading */
}

.social-icons {
    display: flex; /* Use flexbox for social icons */
    justify-content: center; /* Center icons */
}

.social-icon {
    display: inline-block; /* Inline block for icons */
    margin: 0 10px; /* Space between icons */
    color: #fff; /* Icon color */
    font-size: 24px; /* Icon size */
    transition: color 0.3s; /* Smooth transition for hover effect */
}

.social-icon:hover {
    color: #ff5722; /* Change color on hover */
}

/* Responsive styles */
@media (min-width: 768px) {
    .contact {
        text-align: left; /* Align text to the left on larger screens */
    }

    .contact-container {
        flex-direction: row; /* Align items side by side on larger screens */
        justify-content: space-between; /* Space between contact info and social media */
    }

    .contact-info, .social-media {
        flex: 1; /* Take up equal space */
    }
}
.reveals h1{
    font-size: 54px;
}
.reveals p{
    padding: 10px;
    letter-spacing: 2px;
    margin-bottom: 30px;
}
.reveals button{
    width: fit-content;
}
.reveals {
    padding: 50px 20px; /* Add padding for spacing */
    background: #000; /* Black background for the reveals section */
    color: #fff; /* White text color */
    text-align: center; /* Center text */
    border-radius: 10px; /* Rounded corners for the section */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5); /* Subtle shadow for depth */
}

.reveal-container {
    position: relative; /* Position relative for absolute positioning of reveals */
    max-width: 800px; /* Set a max width for the reveals section */
    margin: 0 auto; /* Center the reveals section */
    overflow: hidden; /* Hide overflow for smooth transitions */
}

.reveal {
    display: none; /* Hide all reveals by default */
    padding: 20px; /* Padding for each reveal */
    background: #111; /* Dark background for each reveal */
    border-radius: 10px; /* Rounded corners for reveals */
    transition: opacity 0.5s ease, transform 0.5s ease; /* Smooth transition for opacity and transform */
    opacity: 0; /* Start hidden */
    transform: translateY(20px); /* Start slightly below */
}

.reveal.active {
    display: block; /* Show the active reveal */
    opacity: 1; /* Fully visible */
    transform: translateY(0); /* Move to original position */
}

button {
    background-color: #ff5722; /* Button color */
    color: white; /* Button text color */
    border: none; /* Remove border */
    padding: 10px 20px; /* Button padding */
    margin: 10px; /* Space around buttons */
    cursor: pointer; /* Pointer cursor on hover */
    border-radius: 5px; /* Rounded corners */
    transition: background 0.3s; /* Smooth transition for hover effect */
}

button:hover {
    background-color: #e64a19; /* Darker shade on hover */
}

/* Responsive styles */
@media (max-width: 768px) {
    button {
        width: 100%; /* Full width buttons on small screens */
    }
}
/* Dark Mode Pricing Section */
.pricing-section {
    text-align: center;
    padding: 60px 20px;
    color: #fff;
}

.pricing-title {
    font-size: 2.5rem;
    color: #f5f5f5;
    margin-bottom: 10px;
}

.pricing-subtitle {
    font-size: 1.2rem;
    color: #bbb;
    margin-bottom: 30px;
}

.pricing-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.pricing-card{
    background: #151515; /* Darker card background */
    padding: 30px;
    border-radius: 10px;
    width: 300px;
    box-shadow: 0px 4px 10px rgba(77, 50, 1, 0.2); /* Soft orange glow */
    transition: 0.3s;
    text-align: left;
}

.pricing-card div{
    margin-bottom: 20px;
   
   
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 15px rgba(255, 165, 0, 0.3);
}

.highlight {
    border: 2px solid #ffa500; /* Orange border for highlighted card */
}

.pricing-plan {
    font-size: 1.8rem;
    color: #ffa500; /* Orange Plan Title */
    margin-bottom: 10px;
}

.pricing-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f5f5f5;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.pricing-features li {
    font-size: 1rem;
    padding: 8px 0;
    color: #ddd; /* Lighter text for readability */
}

.pricing-btn {
    display: inline-block;
    padding: 12px 20px;
    font-size: 1rem;
    background: #ffa500; /* Orange button */
    color: #121212;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: bold;
}

.pricing-btn:hover {
    background: #ff8c00; /* Darker orange */
}

html {
    scroll-behavior: smooth; /* Enable smooth scrolling */
}

/* Branding Page Styles */
.branding-hero {
    background: url('imgs/branding-hero.jpg') no-repeat center center/cover; /* Background image for hero section */
    height: 100vh; /* Full viewport height */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white; /* Text color */
    text-align: center; /* Center text */
}

.branding-hero h1 {
    font-size: 3.5rem; /* Large heading */
    margin: 0; /* Remove default margin */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Text shadow for better readability */
}

.branding-hero p {
    font-size: 1.5rem; /* Subheading size */
    margin: 20px 0; /* Space around the paragraph */
}

.branding-hero .cta-btn {
    background: #ff5722; /* Button color */
    color: white; /* Button text color */
    padding: 15px 30px; /* Button padding */
    border: none; /* Remove border */
    border-radius: 5px; /* Rounded corners */
    text-decoration: none; /* Remove underline */
    font-size: 1.2rem; /* Button text size */
    transition: background 0.3s; /* Smooth transition for hover effect */
    position: relative;
    top: 20px;
}

.branding-hero .cta-btn:hover {
    background: #e64a19; /* Darker shade on hover */
}

/* Branding Intro Section */
.branding-intro {
    padding: 50px 20px; /* Padding for spacing */
    background-color: #1e1e1e; /* Dark background */
    color: white; /* Text color */
}

.branding-intro h2 {
    font-size: 2.5rem; /* Heading size */
    margin-bottom: 20px; /* Space below heading */
}

.branding-intro p {
    font-size: 1.2rem; /* Paragraph size */
    line-height: 1.6; /* Line height for readability */
}

/* Branding Services Section */
.branding-services {
    display: block;
    padding: 80px 0;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: gainsboro;
    margin-bottom: 40px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Service Card Styling */
.service-card {
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    position: relative;
}
.service-card img{
    width: 200px;
    height: 200px;
    object-fit: contain;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Icons Styling */
.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

/* Text Styling */
.service-card h3 {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: gainsboro;
}

.service-card p {
    font-size: 1rem;
    color: #888;
    line-height: 1.5;
}


/* Branding Process Section */
.branding-process {
    padding: 50px 20px; /* Padding for spacing */
    background-color: #1e1e1e; /* Dark background */
}

.branding-process h2 {
    font-size: 2.5rem; /* Heading size */
    color: #ff5722; /* Distinct color for headings */
    margin-bottom: 30px; /* Space below heading */
}

.process-steps {
    display: flex; /* Use flexbox for layout */
    flex-direction: column; /* Stack items vertically */
    gap: 20px; /* Space between steps */
}

.step {
    background: #333; /* Step background */
    padding: 20px; /* Padding for step */
    border-radius: 8px; /* Rounded corners */
}

.step h3 {
    font-size: 1.5rem; /* Step heading size */
    color: #ff5722; /* Distinct color for headings */
    margin-bottom: 10px; /* Space below heading */
}

.step p {
    font-size: 1rem; /* Step paragraph size */
    color: #ddd; /* Lighter text for readability */
}

/* Branding CTA Section */
.branding-cta {
    padding: 50px 20px; /* Padding for spacing */
    background-color: #121212; /* Darker background */
    color: white; /* Text color */
    text-align: center; /* Center text */
}

.branding-cta h2 {
    font-size: 2.5rem; /* Heading size */
    margin-bottom: 20px; /* Space below heading */
}

.branding-cta p {
    font-size: 1.2rem; /* Paragraph size */
    margin-bottom: 30px; /* Space below paragraph */
}

.branding-cta .cta-btn {
    background: #ff5722; /* Button color */
    color: white; /* Button text color */
    padding: 15px 30px; /* Button padding */
    border: none; /* Remove border */
    border-radius: 5px; /* Rounded corners */
    text-decoration: none; /* Remove underline */
    font-size: 1.2rem; /* Button text size */
    transition: background 0.3s; /* Smooth transition for hover effect */
}

.branding-cta .cta-btn:hover {
    background: #e64a19; /* Darker shade on hover */
}



.branding-highlights {
    padding: 60px 0;
}

.branding-highlights .container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px;
}

.branding-cta .container{
    display: block;
}
.container img{
    max-width: 500px;
    height: 500px;
    border-radius: 6px;
}
.highlight-card {
    background: #121212;
    padding: 60px;
    text-align: left;
    flex: 1;
    position: relative; /* Needed for absolute positioning */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 60px;
}


.highlight-card div{
    min-height: 200px;
}
.highlight-card h3 {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.highlight-card p {
    font-size: 1rem;
    color: gainsboro;
    line-height: 30px;
}
.highlight-number {
    color: black;
    position: absolute;
    bottom: -140px; /* Adjust positioning */
    right: 20px;
    font-size: 150px; /* Keep the size fixed */
    font-weight: 200;
    line-height: 1;
    opacity: 0.2; /* Reduce opacity for subtle effect */
}

.highlight-number h1 {
    font-size: clamp(60px, 10vw, 150px); /* Adjusts between 60px and 150px based on screen size */
    font-weight: 200;
    margin-top: -20px;
    line-height: 1;
}

.why-choose-us {
    padding: 50px 20px; /* Padding for spacing */
    background-color: #1e1e1e; /* Dark background */
    color: white; /* Text color */
    text-align: center; /* Center text */
}

.why-choose-us h2 {
    font-size: 2.5rem; /* Heading size */
    margin-bottom: 30px; /* Space below heading */
}

.choose-us-content {
    display: flex; /* Use flexbox for layout */
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    justify-content: center; /* Center items */
    gap: 20px; /* Space between items */
}

.choose-us-item {
    background: #333; /* Item background */
    padding: 20px; /* Padding for item */
    border-radius: 8px; /* Rounded corners */
    flex: 1; /* Allow items to grow */
    min-width: 250px; /* Minimum width for items */
    max-width: 300px; /* Maximum width for items */
    transition: transform 0.3s; /* Smooth transition for hover effect */
}

.choose-us-item:hover {
    transform: translateY(-5px); /* Lift effect on hover */
}

.choose-us-item h3 {
    font-size: 1.5rem; /* Heading size for items */
    color: #ff5722; /* Distinct color for headings */
    margin-bottom: 10px; /* Space below heading */
}

.choose-us-item p {
    font-size: 1rem; /* Paragraph size */
    color: #ddd; /* Lighter text for readability */
}

/* Why Choose Us Section */
#why-choose-us {
    background-color: #111; /* Dark background */
    color: #fff; /* White text */
    text-align: center;
    padding: 80px 20px;
}

#why-choose-us .container {
    max-width: 1100px;
    margin: auto;
}

#why-choose-us h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ff8c00; /* Orange theme color */
}

#why-choose-us p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.8;
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}
.feature li{
    list-style: none;
    margin-top: 10px;
}

.feature {
    border-radius: 10px;
    width: 250px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.feature i {
    font-size: 2.5rem;
    color: #ff8c00; /* Orange theme */
    margin-bottom: 15px;
}

.feature h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    height: 80px;
}

.feature p {
    font-size: 1rem;
    opacity: 0.8;
    font-family: serif;
    letter-spacing: 2px;
}

.feature:hover {
    transform: translateY(-5px); /* Slight lift on hover */
}
/* Case Studies Section */
.case-studies {
    background-color: #111;
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.case-card {
    background: #222;
    padding: 20px;
    margin: 20px auto;
    border-radius: 10px;
    max-width: 600px;
}

.case-card h3 {
    color: #ff8c00;
    margin-bottom: 10px;
}

.testimonials h3,
.analytics h3 {
    margin-top: 40px;
    color: #ff8c00;
}

.testimonial-card {
    background: #222;
    padding: 20px;
    margin: 20px auto;
    border-radius: 10px;
    max-width: 500px;
    font-style: italic;
}

.testimonial-card span {
    display: block;
    margin-top: 10px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.analytics-img {
    max-width: 100%;
    border-radius: 10px;
    margin-top: 20px;
}
/* Pricing Plans Section */
.pricing-plans {
    background-color: black;
    color: #fff;
    text-align: center;
    padding: 80px 20px;
    margin-top: 10px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: auto;
    padding: 20px;
}

.pricing-card {
    background: #121212;
    padding: 30px;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

.featured {
    background: #ff8c00;
    color: #111;
    font-weight: bold;
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #ff8c00;
}

.featured h3 {
    color: #111;
}

.price {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
}

.pricing-card ul li {
    margin: 10px 0;
    font-size: 1rem;
}

.cta-btn {
    background: #ff8c00;
    color: #111;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 15px;
    transition: 0.3s;
}

.cta-btn:hover {
    background: #ffa533;
}
/* Call to Action Section */
.cta-section {
    color: gainsboro;
    text-align: center;
    padding: 80px 20px;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.cta-btn {
    background: #111;
    color: #ff8c00;
    border: none;
    padding: 12px 25px;
    font-size: 1.2rem;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
}

.cta-btn:hover {
    background: #222;
}

/* Contact Form */
.contact-form {
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    margin: 30px auto;
}

.contact-form h3 {
    margin-bottom: 15px;
    color: #ff8c00;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: none;
    background: #222;
    color: #fff;
    font-size: 18px;
}

.contact-form button {
    width: 100%;
}

/* Social Media Links */
.social-links {
    margin-top: 40px;
}

.social-links h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.social-icon {
    display: inline-block;
    margin: 10px;
    font-size: 1.2rem;
    color: #111;
    background: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s;
}

.social-icon:hover {
    background: #ddd;
}
/* FAQ Section */
.faq-section {
    background-color: black;
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.faq-section .section-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #ff8c00;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    margin-bottom: 10px;
    border-radius: 5px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: #121212;
    color: white;
    padding: 15px;
    border: none;
    text-align: left;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
 
    padding: 0 15px;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-answer p {
    margin: 10px 0;
}

/* Show answer when active */
.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 15px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}
.service-pricing {
    margin-bottom: 50px;
}

.service-pricing h3 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 20px;
}



.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.timeline {
    position: relative;
    max-width: 800px;
    margin: auto;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease-in-out;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-icon {
    width: 80px;
    height: 80px;
    background: #FF8C00;
    color: #121212;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 20px;
    box-shadow: 0px 0px 15px rgba(255, 140, 0, 0.5);
}

.timeline-content {
    background: #1E1E1E;
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    width: 60%;
    box-shadow: 0px 0px 10px rgba(255, 140, 0, 0.2);
}

.timeline-content h3 {
    font-size: 1.5rem;
    color: #FF8C00;
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 1rem;
    color: #ddd;
}

/* Vertical Line */
.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 5px;
    height: 100%;
    background: #FF8C00;
    transform: translateX(-50%);
}

/* Animate on Scroll */
.show {
    opacity: 1;
    transform: translateY(0);
}
.about-section {
    padding: 60px 20px;
    background-color: #000; /* Black background */
    color: #fff; /* White text */
    text-align: center;
}

.about-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.about-text {
    flex: 1;
    text-align: left;
}

.about-text h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #FFA500; /* Orange headings */
}

.about-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #ccc; /* Light gray text */
    margin-bottom: 20px;
}

.about-text ul {
    list-style-type: disc;
    padding-left: 20px;
    color: #ccc; /* Light gray text */
}

.about-text ul li {
    margin-bottom: 10px;
}

.about-text ul li strong {
    color: #FFA500; /* Orange for strong text */
}

.about-image {
    flex: 1;
    text-align: right;
}

.about-image img {
    max-width: 100%;
    border-radius: 10px;
    border: 2px solid #FFA500; /* Orange border */
    box-shadow: 0 4px 8px rgba(255, 165, 0, 0.3); /* Orange shadow */
}
/* Popup Overlay */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: flex-end;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Popup Content */
.popup-content {
    background-color: #121212;
    padding: 20px;
    border-radius: 10px 10px 0 0;
    width: 100%;
    max-width: 400px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.popup-overlay.active .popup-content {
    transform: translateY(0);
}

/* Platform Buttons */
.platform-options {
    display: flex;
    gap: 10px;
}

.platform-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background-color: #222;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.platform-btn:hover {
    background-color: #ddd;
}

.platform-btn img {
    width: 24px;
    height: 24px;
}

/* Close Button */
.close-btn {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #FFA500;
    border: none;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.close-btn:hover {
    background-color: #e59400;
}