/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styles */
body {
    font-family: Arial, sans-serif; /* Default font */
    color: #333; /* Text color */
    line-height: 1.6; /* Line height for readability */
    background-color: #f9f9f9; /* Background color */
}

/* Container to center content */
.container {
    width: 90%; /* Fluid width */
    max-width: 1200px; /* Maximum width */
    margin: auto; /* Centering */
    padding: 20px; /* Padding around content */
}

/* General Styling */
* {
    box-sizing: border-box; /* Ensures padding/border do not affect width */
}

/* Mobile-specific styles */
@media (max-width: 768px) {
    body {
        font-size: 14px; /* Smaller font size for mobile */
    }

    .container {
        padding: 15px; /* Less padding on mobile */
    }
}

/* Header */
header {
    background: #333;
    color: white;
    padding: 15px;
    position: relative;
}

header h1 {
    display: inline;
    font-size: 1.8em;
}

header nav {
    float: right;
}

header nav a {
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    font-size: 1em;
}

header nav a:hover {
    background-color: #4CAF50;
    border-radius: 4px;
}

/* Mobile Menu Icon */
.menu-icon {
    display: none;
    font-size: 2em;
    cursor: pointer;
    color: white;
    float: right;
}

/* Responsive Styles */
/* Responsive Styles */
@media (max-width: 768px) {
    /* Hide Navbar by Default */
    header nav {
        display: none;
        flex-direction: column;
        position: fixed;
        background-color: #000; /* Solid black background */
        top: 60px;
        left: 0;
        width: 100%;
        height: calc(100vh - 60px);
        padding-top: 20px;
        z-index: 1000;
        opacity: 0;
        transform: translateY(-20px); /* Slide-up effect */
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    /* Navbar Active State */
    header nav.active {
        display: flex;
        opacity: 1;
        transform: translateY(0);
    }

    /* Navbar Links */
    header nav a {
        padding: 15px;
        display: block;
        text-align: center;
        color: #fff;
        font-weight: 600;
        font-size: 1.2rem;
        text-transform: uppercase;
        position: relative;
    }

    /* Menu Icon Styling */
    .menu-icon {
        display: block;
        color: #fff;
        font-size: 1.8rem;
        cursor: pointer;
    }

    /* Background Overlay */
    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.6);
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: 999; /* Just behind the navbar */
    }

    /* Show Overlay on Active */
    .menu-overlay.active {
        display: block;
        opacity: 1;
    }
}
/* Team Section Styling */
.team-section {
    background-color: #f9f9f9;
    padding: 60px 0;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    position: relative;
    margin-bottom: 1.5em;
}

.team-member {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-media img {
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.team-member:hover .team-media img {
    transform: scale(1.1);
}

.title {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
    margin: 10px 0 5px;
}

.description {
    color: #777;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .team-media img {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 576px) {
    .team-media img {
        width: 100px;
        height: 100px;
    }
}


/* for app developnet screen  */
/* Hero Section */

/* General styles for the hero section */
.hero {
    background-color: #f8f9fa; /* Light background for the hero section */
    padding: 40px 20px; /* Padding for the hero section */
    animation: backgroundAnimation 10s infinite alternate; /* Apply animation */
}
/* Keyframes for Background Animation */
@keyframes backgroundAnimation {
    0% {
        background-color: #ff6a6a; /* Color at the start */
    }
    25% {
        background-color: #ffb76a; /* Color at 25% */
    }
    50% {
        background-color: #6affb7; /* Color at 50% */
    }
    75% {
        background-color: #6aafff; /* Color at 75% */
    }
    100% {
        background-color: #6a6aff; /* Color at the end */
    }
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Style for the text part */
.hero-text {
    flex: 1; /* Allow text to take up available space */
    padding-right: 20px; /* Add some space to the right */
}

.hero-text h1 {
    font-size: 2.5rem; /* Adjust font size for the title */
    margin-bottom: 15px; /* Space below the title */
}

.hero-text p {
    font-size: 1.2rem; /* Adjust font size for the paragraph */
    line-height: 1.5; /* Increase line height for readability */
}
/* Premium Button Styling */
.btn-premium {
    background: linear-gradient(135deg, #ff7e5f, #feb47b); /* Premium gradient */
    color: #fff; /* White text for contrast */
    padding: 12px 30px; /* Larger padding for a substantial look */
    font-size: 1.1rem; /* Larger font size */
    font-weight: bold;
    border: none;
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 5px 15px rgba(255, 126, 95, 0.4); /* Shadow for depth */
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Hover Effect for Premium Button */
.btn-premium:hover {
    background: linear-gradient(135deg, #feb47b, #ff7e5f); /* Reverse gradient on hover */
    box-shadow: 0 8px 20px rgba(255, 126, 95, 0.6); /* Stronger shadow */
    transform: translateY(-2px); /* Slight lift */
}

/* Ripple Effect */
.btn-premium::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s ease;
    opacity: 0;
}

.btn-premium:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

/* Icon styling (optional, if you want an arrow) */
.btn-premium::before {
    content: "\f061"; /* FontAwesome right arrow */
    font-family: "Font Awesome 5 Free"; /* Ensure Font Awesome is linked */
    font-weight: 900;
    margin-right: 8px;
    transition: margin-right 0.3s;
}

.btn-premium:hover::before {
    margin-right: 15px; /* Slight movement on hover */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column; /* Stack vertically on smaller screens */
        text-align: center;
    }
    
    .hero-text,
    .hero-video {
        max-width: 100%; /* Full width on smaller screens */
    }
}

.cta-button {
    display: inline-block;
    padding: 12px 25px;
    background: #333;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;
}

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

/* About Section */
.about {
    padding: 60px 0;
    text-align: center;
    background: #f4f4f4; /* Light background for contrast */
}

.about h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #4CAF50; /* Use brand color */
}

.about p {
    margin-bottom: 40px;
    font-size: 1.1em;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* About Content Styling */
.about-content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /* Allow items to wrap on small screens */
    gap: 20px; /* Space between items */
}

.about-item {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    flex: 1 1 250px; /* Responsive flexbox item */
    transition: transform 0.3s ease;
}

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

/* main/css/styles.css */
.card {
    transition: transform 0.2s; /* Smooth transition effect */
}

.card:hover {
    transform: scale(1.05); /* Scale up on hover */
}

.services {
    background-color: #f8f9fa; /* Light gray background */
}

.card-title {
    font-weight: bold;
    color: #333; /* Darker text for better visibility */
}

.card-text {
    color: #666; /* Lighter text color for descriptions */
}

.about-item img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 15px; /* Space between image and text */
}

.about-item h3 {
    font-size: 1.8em;
    color: #333;
    margin-bottom: 10px;
}

.about-item p {
    font-size: 1em;
    color: #666;
}

/* Responsive Media Queries */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column; /* Stack items on small screens */
        align-items: center; /* Center align */
    }
}
/* General Styling */
.service-item {
    text-align: center;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px); /* Subtle lift effect on hover */
}

/* Video Styling */
.service-video {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    margin-bottom: 15px;
}

/* Text Styling */
.service-item h3 {
    font-size: 1.3rem;
    font-weight: bold;
    color: #333;
    margin: 1rem 0 0.5rem;
}

.service-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .service-item {
        margin-bottom: 20px;
    }
    
    .service-item h3 {
        font-size: 1.2rem;
    }
    
    .service-item p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .service-item {
        padding: 15px;
    }
    
    .service-item h3 {
        font-size: 1.1rem;
    }
    
    .service-item p {
        font-size: 0.9rem;
    }
}

/* Portfolio Section Styling */
.portfolio {
    padding: 60px 20px;
    background-color: #f3f4f6;
    text-align: center;
}

.portfolio .container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 30px;
    font-weight: bold;
}

/* Portfolio List Grid */
.portfolio-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.portfolio-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.portfolio-item img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.15);
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

.portfolio-content {
    padding: 20px;
    text-align: left;
}

.portfolio-content h3 {
    font-size: 1.3em;
    margin: 0 0 10px;
    color: #333;
    font-weight: 600;
}

.portfolio-content p {
    font-size: 1em;
    color: #666;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 600px) {
    .section-title {
        font-size: 2em;
    }
    
    .portfolio-content h3 {
        font-size: 1.2em;
    }
    
    .portfolio-content p {
        font-size: 0.95em;
    }
}
/* Premium Section Title Styling */
.section-title {
    font-family: 'Poppins', sans-serif; /* Sleek, modern font */
    font-size: 2.5rem; /* Larger font size for desktop */
    font-weight: 700; /* Bold for prominence */
    color: #333; /* Dark text for readability */
    text-align: center;
    position: relative;
    padding-bottom: 0.5em;
    margin-bottom: 2em;
    letter-spacing: 1.5px; /* Spacing for elegance */
    text-transform: uppercase;
    line-height: 1.2;
}

/* Decorative Underline */
.section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px; /* Centered underline */
    height: 4px;
    background: linear-gradient(90deg, #ff7e5f, #feb47b); /* Gradient for style */
    border-radius: 2px;
}

/* Glow Effect for Premium Feel */
.section-title {
    color: #333;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
}

/* Animation for Subtitle Entrance */
.section-title {
    opacity: 0;
    animation: fadeInUp 1s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styling */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem; /* Smaller font for tablets */
        padding-bottom: 0.3em;
        margin-bottom: 1.5em;
    }
    
    .section-title::after {
        width: 80px; /* Smaller underline for tablets */
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem; /* Even smaller font for mobile */
        padding-bottom: 0.2em;
        margin-bottom: 1.2em;
        letter-spacing: 1px; /* Adjust letter spacing */
    }
    
    .section-title::after {
        width: 60px; /* Narrower underline for mobile */
    }
}
/* Premium Paragraph Styling */
.premium-para {
    font-family: 'Arial', sans-serif; /* Clean and modern font */
    font-size: 1.25rem; /* Size for readability */
    font-weight: 400; /* Normal weight for body text */
    color: #555; /* Soft dark color for text */
    text-align: center; /* Center alignment for uniformity */
    line-height: 1.6; /* Adequate line height for spacing */
    max-width: 800px; /* Max width for paragraph */
    margin: 0 auto; /* Center alignment for block element */
    padding: 0 15px; /* Padding for small screens */
    position: relative; /* For any decorative elements */
    opacity: 0; /* Start with hidden opacity for animation */
    animation: fadeInUp 1s forwards; /* Fade-in animation */
}

/* Animation for Paragraph Entrance */
@keyframes fadeInUp {
    from {
        opacity: 0; /* Start from hidden */
        transform: translateY(20px); /* Slide in from below */
    }
    to {
        opacity: 1; /* Fully visible */
        transform: translateY(0); /* Normal position */
    }
}

/* Responsive Styling */
@media (max-width: 768px) {
    .premium-para {
        font-size: 1.1rem; /* Slightly smaller font for tablets */
        line-height: 1.5; /* Adjust line height for readability */
        padding: 0 10px; /* Less padding for tablets */
    }
}

@media (max-width: 480px) {
    .premium-para {
        font-size: 1rem; /* Even smaller font for mobile */
        line-height: 1.4; /* Adjust line height for mobile */
        padding: 0 5px; /* Minimal padding for mobile */
    }
}

/* General Styling */
section.blog-list, section.blog-detail {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.section-title {
    font-size: 2.5em;
    color: #333;
    text-align: center;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-cta {
    background: linear-gradient(to right, #007bff, #00c6ff); /* Gradient background */
    color: white; /* Text color */
    text-align: center; /* Center text */
    padding: 50px 20px; /* Padding for top/bottom and left/right */
    border-radius: 10px; /* Rounded corners */
    margin: 20px 0; /* Margin for spacing */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.cta-title {
    font-size: 2.5rem; /* Large font size for title */
    margin-bottom: 20px; /* Space below title */
}

.cta-button {
    display: inline-block; /* Make button an inline-block for padding */
    background: #28a745; /* Button background color */
    color: white; /* Button text color */
    padding: 15px 30px; /* Padding inside button */
    text-decoration: none; /* Remove underline */
    border-radius: 5px; /* Rounded corners for button */
    transition: background 0.3s ease, transform 0.3s ease; /* Smooth transitions */
    font-size: 1.25rem; /* Font size for button */
}

.cta-button:hover {
    background: #218838; /* Darker green on hover */
    transform: translateY(-2px); /* Slight lift effect */
}

/* Responsive styles */
@media (max-width: 768px) {
    .cta-title {
        font-size: 2rem; /* Smaller title font size for mobile */
    }

    .cta-button {
        padding: 12px 24px; /* Adjust button padding for smaller screens */
        font-size: 1rem; /* Adjust button font size for smaller screens */
    }
}
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    font-size: 24px;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1000;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Responsive Sizing */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 20px;
        bottom: 15px;
        right: 15px;
    }
}
