/* General Styles */
body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background: radial-gradient(circle, #1c1c1c, #0a0a0a); /* Tech-inspired background */
    color: #E0E0E0;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/hexellence.png');
    opacity: 0.1; /* Subtle texture for a tech look */
    z-index: -1;
}

header {
    background-color: #121212; /* Soft Black */
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 25px; /* Increased padding */
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    transition: background-color 0.5s ease, box-shadow 0.5s ease;
}

header:hover {
    background-color: #1a1a1a; /* Slightly lighter black */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
}

.logo img {
    height: 60px; /* Slightly larger logo */
    transition: transform 0.5s ease, filter 0.5s ease;
}

.logo img:hover {
    transform: rotate(15deg) scale(1.2);
    filter: brightness(1.2);
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: space-around;
}

nav ul li {
    margin: 0 1.5rem; /* Increased spacing between nav items */
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    position: relative;
    padding-bottom: 5px;
    font-size: 1.1rem; /* Slightly larger font */
    transition: color 0.4s, transform 0.4s;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 3px;
    background-color: #FF6600;
    bottom: 0;
    left: 0;
    transition: width 0.4s;
}

nav ul li a:hover {
    color: #FF6600;
    transform: scale(1.15);
}

nav ul li a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-content {
    text-align: center;
    padding: 6rem 2rem; /* Increased padding for emphasis */
    background: linear-gradient(135deg, rgba(47, 79, 79, 0.9), rgba(26, 26, 26, 0.9)); /* Subtle gradient */
    color: white;
    animation: fadeIn 1s ease-in-out;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    border-radius: 15px; /* Slightly more rounded corners */
    position: relative;
    overflow: hidden;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 102, 0, 0.3), transparent);
    z-index: 0;
    opacity: 0.8;
    animation: backgroundPulse 8s infinite;
}

.hero-content h1 {
    font-size: 3.5rem; /* Increased font size */
    font-family: 'Poppins', sans-serif;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    z-index: 1;
    position: relative;
    animation: fadeInDown 1s ease-in-out;
}

.hero-content p {
    font-size: 1.6rem;
    margin: 1rem 0;
    line-height: 1.8;
    z-index: 1;
    position: relative;
    animation: fadeInUp 1s ease-in-out;
}

.cta-button {
    background-color: #FF6600;
    color: white;
    border: none;
    padding: 1.2rem 2.5rem; /* Slightly larger button */
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.4s, transform 0.4s, box-shadow 0.4s;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    z-index: 1;
    position: relative;
}

.cta-button:hover {
    background-color: #8E44AD;
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
}

/* Particle Background */
#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    z-index: -1;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes backgroundPulse {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 100% 100%;
    }
}















/* Base styles for the pricing section */
#pricing {
    padding: 4rem 1rem;
    background-color: #121212;
    color: #E0E0E0;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease-in-out;
}

/* Pricing Heading */
#pricing h1 {
    font-size: 2.8rem;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 2rem;
    background: -webkit-linear-gradient(#FF6600, #1ABC9C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

#pricing p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #ffffffb3;
    line-height: 1.6;
    font-weight: 300;
}

/* Pricing Plans Grid */
.pricing-plans {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 0 2rem;
}

/* Plan Card Styling */
.plan {
    background-color: #1F1F1F;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    width: 100%;
    max-width: 350px;
    text-align: center;
    padding: 2rem 1rem;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    position: relative;
    background: linear-gradient(145deg, #1F1F1F, #333333);
    border: 1px solid #222222;
}

/* 3D Hover effect for pricing plans */
.plan:hover {
    transform: translateY(-20px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

/* Plan Title and Description */
.plan h2 {
    font-size: 1.8rem;
    font-family: 'Poppins', sans-serif;
    color: #FF6600;
    margin-bottom: 1rem;
}

.plan .original-price {
    font-size: 1.2rem;
    color: #E0E0E0;
    text-decoration: line-through;
}

.plan .discounted-price {
    font-size: 1.8rem;
    color: #1ABC9C;
    margin: 1rem 0;
    font-weight: 600;
}

.plan .price-description {
    font-size: 1.1rem;
    color: #ffffffb3;
    margin-bottom: 1rem;
    font-weight: 300;
}

/* Plan Features List */
.plan ul {
    list-style-type: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
    font-size: 1rem;
    color: #E0E0E0;
}

.plan ul li {
    margin-bottom: 1rem;
}

/* Plan Button */
.plan .btn {
    display: inline-block;
    background: linear-gradient(135deg, #FF6600, #FF4500);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.plan .btn:hover {
    background: linear-gradient(135deg, #FF4500, #FF6600);
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.plan .btn a {
    color: white;
    text-decoration: none;
}

/* Hover effects for text */
.plan h2:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .pricing-plans {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .plan {
        width: 100%;
        margin-bottom: 20px;
    }
}

/* Animation for the pricing section */
@keyframes fadeInSection {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

#pricing {
    animation: fadeInSection 1.5s ease-out;
}

/* Dark Mode transition effect */
body {
    background-color: #121212;
    color: #E0E0E0;
    transition: background-color 0.3s ease, color 0.3s ease;
}






/* Blog Section */
#blog {
    text-align: center;
    padding: 3rem 1rem;
    /* background: linear-gradient(135deg, #1e1f23, #292c33); */
    color: #E0E0E0;
}

#blog h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #FF6600;
    position: relative;
    display: inline-block;
    animation: fadeInDown 1s ease-in-out;
}

#blog h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #FF6600;
    animation: expandLine 1s ease-in-out;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.blog-card {
    background: linear-gradient(135deg, #292c33, #3a3e47);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s, box-shadow 0.4s ease-in-out;
    position: relative;
    overflow: hidden;
}

.blog-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
}

.blog-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    transition: transform 0.5s ease, filter 0.5s ease;
}

.blog-card:hover img {
    transform: scale(1.1);
    filter: brightness(1.2);
}

.blog-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #FF6600;
    position: relative;
    animation: fadeInUp 1s ease-in-out;
}

.blog-card h3::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #FF6600;
    opacity: 0;
    transition: opacity 0.4s ease-in-out, width 0.4s ease-in-out;
}

.blog-card:hover h3::before {
    opacity: 1;
    width: 100%;
}

.blog-card p {
    font-size: 1.1rem;
    color: #D3D3D3;
    line-height: 1.6;
    animation: fadeIn 1.5s ease-in-out;
}

.blog-card a {
    display: inline-block;
    margin-top: 1rem;
    background: #FF6600;
    color: white;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.blog-card a:hover {
    background: #8E44AD;
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes expandLine {
    from {
        width: 0;
    }
    to {
        width: 50px;
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    #blog h2 {
        font-size: 2rem;
    }

    .blog-card h3 {
        font-size: 1.5rem;
    }

    .blog-card p {
        font-size: 1rem;
    }

    .blog-card img {
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-card {
        padding: 1rem;
    }
}






/* Contact Section */
#contact {
    text-align: center;
    padding: 3rem 1rem;
    /* background: linear-gradient(135deg, #292c33, #3a3e47); */
    color: #E0E0E0;
    position: relative;
    overflow: hidden;
}

#contact h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #FF6600;
    position: relative;
    display: inline-block;
    animation: fadeInDown 1.5s ease-in-out;
}

#contact p {
    font-size: 1.2rem;
    color: #D3D3D3;
    margin-bottom: 3rem;
}

form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #1F1F1F;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    animation: formSlideIn 1s ease-in-out;
}

form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #E0E0E0;
}

form input, form textarea, form select {
    width: 100%;
    padding: 1.2rem;
    margin-bottom: 1.5rem;
    border: 1px solid #333;
    border-radius: 10px;
    background-color: #333;
    color: #E0E0E0;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

form input:focus, form textarea:focus, form select:focus {
    border-color: #0078FF;
    background-color: #444;
    transform: scale(1.05);
}

form button {
    background-color: #FF6600;
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

form button:hover {
    background-color: #8E44AD;
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

form .form-group {
    position: relative;
}

form .form-group::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #FF6600;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

form input:focus ~ .form-group::after,
form textarea:focus ~ .form-group::after,
form select:focus ~ .form-group::after {
    transform: scaleX(1);
}

#otherService {
    display: none;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes formSlideIn {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    form {
        padding: 1.5rem;
    }

    form button {
        padding: 1rem 2rem;
    }

    #contact h2 {
        font-size: 2rem;
    }

    .social-media a {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    main {
        padding: 1rem;
    }

    form {
        padding: 1rem;
        width: 90%;
    }
}
/* Country Dropdown */
#contact .form-group select {
    width: 100%;
    padding: 1.2rem;
    margin-bottom: 1.5rem;
    border: 1px solid #333;
    border-radius: 10px;
    background-color: #333;
    color: #E0E0E0;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

/* Responsive Design */
@media (max-width: 768px) {
    #contact .form-group select,
    #contact .form-group input,
    #contact .form-group textarea {
        width: 100%;
    }
}













/* Base styles for the team section */
.team-section {
    padding: 4rem 1rem;
    background-color: #121212;
    color: white;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease-in-out;
}

/* Heading and paragraph styling */
.team-section h1 {
    font-size: 2.8rem;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 2rem;
    background: -webkit-linear-gradient(#FF6600, #1ABC9C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.team-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #ffffffb3;
    line-height: 1.6;
    font-weight: 300;
}

/* Team grid layout */
.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 0 2rem;
}

/* Team card styling */
.team-card {
    background-color: #1F1F1F;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    width: 100%;
    max-width: 300px;
    text-align: center;
    padding: 2rem 1rem;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    position: relative;
    background: linear-gradient(145deg, #1F1F1F, #333333);
    border: 1px solid #222222;
}

/* 3D Hover effect for team cards */
.team-card:hover {
    transform: translateY(-20px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

/* Team member image styling */
.team-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

/* Hover effect for team member images */
.team-card:hover img {
    transform: rotate(360deg);
}

/* Team card title and role styling */
.team-card h2 {
    font-size: 1.5rem;
    font-family: 'Poppins', sans-serif;
    color: #FF6600;
    margin-bottom: 0.5rem;
}

.team-card h3 {
    font-size: 1rem;
    color: #1ABC9C;
    margin-bottom: 1rem;
}

/* Team member description */
.team-card p {
    font-size: 0.9rem;
    color: #E0E0E0;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

/* Social media icon styling */
.team-card .social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.team-card .social-icons a {
    color: #ffffffb3;
    font-size: 1.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

/* Hover effect for social media icons */
.team-card .social-icons a:hover {
    color: #FF6600;
    transform: scale(1.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .team-grid {
        flex-direction: column;
        align-items: center;
    }
}

/* Dark Mode transition effect */
body {
    background-color: #121212;
    color: #E0E0E0;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Animation for the team section */
@keyframes fadeInSection {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.team-section {
    animation: fadeInSection 1.5s ease-out;
}

/* Hover animation for text */
h1:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Dark mode toggle button */
#dark-mode-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #FF6600;
    border: none;
    padding: 10px 20px;
    color: white;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#dark-mode-toggle:hover {
    background-color: #E74C3C;
}













#why-us {
    text-align: center;
    padding: 3rem 1rem;
    
    color: #E0E0E0;
    animation: fadeIn 1.5s ease-in-out;
}

#why-us h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #FF6600;
    font-family: 'Poppins', sans-serif;
    position: relative;
    display: inline-block;
    animation: slideInDown 1s ease-in-out;
}

#why-us p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    animation: fadeInUp 1.5s ease-in-out;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 1rem;
    animation: fadeIn 2s ease-in-out;
}

.why-us-card {
    perspective: 1000px;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 300px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    background: #1F1F1F;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: zoomIn 1s ease-in-out;
}

.card-inner:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}

.card-front, .card-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    backface-visibility: hidden;
    border-radius: 15px;
}

.card-front {
    background: linear-gradient(135deg, #292c33, #3a3e47);
    color: white;
    text-align: center;
    padding: 1rem;
    animation: fadeInUp 1.5s ease-in-out;
}

.card-front i {
    font-size: 4rem; /* Increase the size (e.g., 4rem for larger icons) */
    color: #FF6600;
    margin-bottom: 1rem;
}


.card-front h3 {
    margin-top: 1rem;
    font-size: 1.5rem;
    color: #FF6600;
    font-family: 'Poppins', sans-serif;
}

.card-back {
    background: #1e1f23;
    color: white;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    padding: 1rem;
    animation: fadeIn 1.5s ease-in-out;
}

.card-back p {
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
}

.card-inner:hover .card-back {
    transform: translateY(0%);
    opacity: 1;
}

.card-inner:hover .card-front {
    transform: translateY(-100%);
    opacity: 0;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-360deg);
    }
    to {
        opacity: 1;
        transform: rotate(0deg);
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    #why-us h2 {
        font-size: 2.2rem;
    }

    .why-us-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .card-inner {
        height: 280px;
    }

    .card-front h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    #why-us {
        padding: 2rem 1rem;
    }

    #why-us h2 {
        font-size: 2rem;
    }

    #why-us p {
        font-size: 1rem;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .card-inner {
        height: 260px;
    }

    .card-front img {
        width: 70px;
        height: 70px;
    }

    .card-front h3 {
        font-size: 1.2rem;
    }

    .card-back p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    #why-us h2 {
        font-size: 1.8rem;
    }

    #why-us p {
        font-size: 0.9rem;
    }

    .card-inner {
        height: 240px;
    }

    .card-front img {
        width: 60px;
        height: 60px;
    }

    .card-front h3 {
        font-size: 1.1rem;
    }

    .card-back p {
        font-size: 0.85rem;
    }
}











/* General Section Styling */
#services {
    text-align: center;
    padding: 50px 20px;
    font-family: 'Poppins', sans-serif;
    
    color: #E0E0E0;
}

#services h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #FF6600;
    position: relative;
    display: inline-block;
    animation: fadeInDown 1s ease-in-out;
}

/* Grid Layout for Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
    animation: fadeInUp 1s ease-in-out;
    perspective: 1500px;
}

/* Service Card Styling */
.service-card {
    position: relative;
    background: linear-gradient(145deg, #202124, #2a2a2d);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5), -5px -5px 15px rgba(50, 50, 50, 0.2);
    transition: transform 0.6s ease-in-out, box-shadow 0.4s ease, background 0.4s ease;
    transform-style: preserve-3d;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 102, 0, 0.2), transparent 80%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s ease;
}

.service-card i {
    font-size: 3rem;
    color: #FF6600;
    margin-bottom: 15px;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), color 0.4s ease;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #FFFFFF;
    font-family: 'Poppins', sans-serif;
    transform: translateZ(20px);
}

.service-card p {
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
    transform: translateZ(10px);
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 1;
}

/* Hover Effects for Service Cards */
.service-card:hover {
    transform: rotateY(15deg) rotateX(-10deg);
    background: linear-gradient(145deg, #262626, #323232);
    box-shadow: 10px 10px 25px rgba(0, 0, 0, 0.7), -10px -10px 25px rgba(50, 50, 50, 0.2);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover i {
    transform: scale(1.5) translateZ(30px);
    color: #FFD700;
}

.service-card:hover p {
    transform: translateZ(30px);
    opacity: 1;
}

/* Background Glow for Card */
.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.05), rgba(255, 102, 0, 0.1));
    mix-blend-mode: overlay;
    z-index: -1;
}

/* Adding Glowing Borders */
.service-card:hover {
    border: 2px solid rgba(255, 102, 0, 0.3);
    transition: all 0.4s ease-in-out;
}

/* Responsive Animation on Page Load */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 'See More' Button Styling */
.see-more {
    margin-top: 30px;
}

.btn-see-more {
    display: inline-block;
    background: linear-gradient(135deg, #FF6600, #FF4500);
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.2rem;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.btn-see-more:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.6);
}

/* Additional Animations */
@keyframes rotateIn {
    0% {
        opacity: 0;
        transform: rotateY(-90deg);
    }
    100% {
        opacity: 1;
        transform: rotateY(0deg);
    }
}

.service-card {
    animation: rotateIn 1s ease-in-out;
}

/* Media Queries for Smaller Screens */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .service-card {
        padding: 20px;
    }
}













/* humber menu design */
/* Base Navigation Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    background: #121212;
    color: #fff;
}

nav ul {
    display: flex;
    gap: 15px;
}

nav ul li {
    list-style: none;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

/* Hide Navigation by Default */


/* Menu Toggle Button for Small Screens */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

/* Responsive Navigation for Tablets and Small Devices */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    nav {
        position: absolute;
        top: 70px;
        left: 0;
        background: #121212;
        width: 100%;
        text-align: center;
        display: none;
        z-index: 999;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
        padding: 20px 0;
    }

    nav.show {
        display: block;
        animation: fadeIn 0.3s ease-in-out;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}



/* Footer Styling */
footer {
    background-color: #121212;
    color: #E0E0E0;
    text-align: center;
    padding: 2rem 1rem;
    position: relative;
    bottom: 0;
    width: 100%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: background-color 0.3s ease, color 0.3s ease;
}

footer p {
    font-size: 1rem;
    margin-top: 1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

footer .social-media {
    margin-bottom: 1rem;
}

/* Social Media Icons Styling */
footer .social-media a {
    color: #E0E0E0;
    font-size: 2rem;
    margin: 0 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

footer .social-media a:hover {
    color: #FF6600; /* Hover color */
    transform: translateY(-5px); /* Slight movement on hover */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Dark Mode Styling */
footer.dark-mode {
    background-color: #121212;
    color: #E0E0E0;
}

footer.dark-mode .social-media a {
    color: #E0E0E0;
}

footer.dark-mode .social-media a:hover {
    color: #FF6600;
}

/* Responsive Styles */
@media (max-width: 768px) {
    footer {
        padding: 1.5rem 1rem;
    }

    footer p {
        font-size: 0.9rem;
    }
}

/* Footer animations */
@keyframes fadeInFooter {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

footer {
    animation: fadeInFooter 1s ease-out;
}
















/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #121212; /* Dark background */
    color: #fff;
    margin: 0;
    padding: 0;
}

/* Projects Section */
#projects {
    padding: 50px 20px;
    text-align: center;
    background-color: #1e1e1e;
}

#projects h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #ff9800;
}

#projects p {
    font-size: 1.1em;
    color: #dcdcdc;
    margin-bottom: 40px;
}

/* Project Gallery */
.project-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; /* 3 columns for larger screens */
    gap: 30px;
    justify-items: center;
}

.project-item {
    background-color: #2c2c2c;
    border-radius: 8px;
    overflow: hidden;
    max-width: 350px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}

.project-image {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.project-item:hover .project-image {
    transform: scale(1.1); /* Zoom in effect on hover */
}

.project-details {
    padding: 20px;
    background-color: #333;
    color: #fff;
    border-top: 2px solid #ff9800;
}

.project-details h3 {
    font-size: 1.5em;
    color: #ff9800;
    margin-bottom: 15px;
}

.project-details p {
    font-size: 1.1em;
    color: #dcdcdc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .project-gallery {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .project-gallery {
        grid-template-columns: 1fr;
    }

    #projects h1 {
        font-size: 2em;
    }

    #projects p {
        font-size: 1em;
    }
}

/* CTA Button */
.cta-button {
    background-color: #ff9800;
    color: #121212;
    font-size: 1.2em;
    padding: 15px 25px;
    text-transform: uppercase;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #e68900;
}










/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styles */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #111;
    color: #fff;
    line-height: 1.6;
}

/* Container for Services Section */
#services {
    padding: 80px 30px;
    background: #222;
    text-align: center;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Title */
.section-title {
    font-size: 3.5rem;
    font-weight: 600;
    color: #ffcc00;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-description {
    font-size: 1.5rem;
    color: #ccc;
    margin-bottom: 50px;
    font-weight: 300;
}

/* Service Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 40px;
}

/* Service Item Styling */
.service-item {
    background: #333;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.service-icon {
    font-size: 3rem;
    color: #ffcc00;
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.service-item:hover .service-icon {
    transform: rotate(360deg);
    color: #fff;
}

.service-item h2 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 15px;
}

.service-item p {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 20px;
}

/* Contact Button Styling */
.contact-btn {
    display: inline-block;
    background-color: #ffcc00;
    color: #333;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}

.contact-btn:hover {
    background-color: #e6b800;
    color: #fff;
}

/* Contact Section */
#contact {
    padding: 60px 30px;
    background: #222;
    color: #fff;
    text-align: center;
}

#contact h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

#contact p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

form input, form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 6px;
    border: 1px solid #ccc;
    background-color: #444;
    color: #fff;
}

form textarea {
    height: 150px;
}

.submit-btn {
    background-color: #ffcc00;
    color: #333;
    padding: 15px 30px;
    border-radius: 6px;
    font-size: 1.2rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.submit-btn:hover {
    background-color: #e6b800;
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }

    .section-description {
        font-size: 1.2rem;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }

    .service-item {
        padding: 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}


/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background: #111;
    color: #fff;
    line-height: 1.8;
}

/* Header Section */
#blog-header {
    background: linear-gradient(120deg, #ffcc00, #ff9900);
    color: #111;
    text-align: center;
    padding: 50px 20px;
}

#blog-header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

#blog-header p {
    font-size: 1.5rem;
}

/* Blog Content */
#blog-content {
    padding: 50px 20px;
}

#blog-content h2 {
    color: #ffcc00;
    margin-bottom: 10px;
    font-size: 2rem;
}

#blog-content p {
    margin-bottom: 20px;
}

#blog-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

#blog-content ul li {
    list-style: circle;
    margin-bottom: 10px;
}

/* CTA Section */
.cta {
    text-align: center;
    margin-top: 40px;
}

.cta h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.contact-btn {
    background-color: #ffcc00;
    color: #111;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: background 0.3s;
}

.contact-btn:hover {
    background-color: #ff9900;
}

/* Footer */
footer {
    text-align: center;
    background: #222;
    color: #fff;
    padding: 20px 10px;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    #blog-header h1 {
        font-size: 2.5rem;
    }

    #blog-header p, #blog-content ul, #blog-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    #blog-header h1 {
        font-size: 2rem;
    }

    #blog-header p, #blog-content p {
        font-size: 0.9rem;
    }
}




.signup-redirect {
    margin-top: 1.5rem; /* Adds more spacing for better alignment */
    text-align: center;
    font-size: 1rem; /* Slightly larger for better readability */
    font-family: 'Arial', sans-serif; /* Clean and modern font */
    color: #555; /* Neutral text color for balance */
}

.signup-redirect a {
    color: #3498db; /* Soft and attractive blue */
    text-decoration: none; /* Removes underline for a clean look */
    font-weight: bold; /* Makes the link stand out */
    transition: color 0.3s ease, transform 0.3s ease; /* Smooth hover effect */
}

.signup-redirect a:hover {
    color: #2ecc71; /* Changes to a green shade on hover */
    transform: scale(1.1); /* Slightly enlarges link */
    text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2); /* Adds a soft glow effect */
}
/* Navigation Buttons */
.navigation-buttons {
    margin-top: 2rem;
    text-align: center;
}

.nav-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    margin: 0.5rem;
    font-size: 1rem;
    color: #fff;
    background-color: #007BFF;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
}

.nav-button:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}




/* Floating Buttons - Fixed on Right Side */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000; /* Ensures it stays on top */
}

.floating-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #25D366; /* Default color for WhatsApp */
    color: white;
    font-size: 1.5rem;
    border-radius: 50%;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, background-color 0.3s ease;
    text-decoration: none;
}

/* WhatsApp Button */
.floating-button.whatsapp {
    background-color: #25D366; /* WhatsApp green */
}

.floating-button.whatsapp:hover {
    background-color: #1da851; /* Darker WhatsApp green */
    transform: scale(1.1); /* Slightly enlarge on hover */
}

/* Call Button */
.floating-button.call {
    background-color: #007BFF; /* Call button color */
}

.floating-button.call:hover {
    background-color: #0056b3; /* Darker Call button blue */
    transform: scale(1.1); /* Slightly enlarge on hover */
}

/* Contact Button */
.floating-button.contact {
    background-color: #FF5733; /* Contact button color (Orange) */
}

.floating-button.contact:hover {
    background-color: #c74d29; /* Darker Contact button color */
    transform: scale(1.1); /* Slightly enlarge on hover */
}

/* Icon Styling */
.floating-button i {
    line-height: 50px;
}









