/* Base Styles */
:root {
    --primary-color: #11dbd5;
    --secondary-color: #f2f1f3;
    --accent-color: #64ffda;
    --text-color: #ccd6f6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

html {
     scroll-behavior: smooth; /* Enables smooth scrolling */
}

body {
    background-color: var(--secondary-color);
    color: var(--text-color);
    overflow-x: hidden;
}

/* Header Styles */
/* Header Styling */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    background: linear-gradient(180deg, 
                                rgba(89, 139, 175, 1) 0%, 
                                rgba(130, 175, 210, 0.9) 30%, 
                                rgba(200, 220, 240, 0.7) 60%, 
                                rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.5s ease-in-out;
}


/* Logo */
.logo {
    font-size: 1.3rem;
    color: #000000;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 2px;
    animation: pulse 2s infinite;
}

/* Logo image styling */
.logo-image {
    width: 30px; /* Adjust size */
    height: auto;
    margin-right: 10px;
    filter: brightness(0) saturate(100%) invert(26%) sepia(98%) saturate(1884%) hue-rotate(196deg) brightness(94%) contrast(95%);
}


/* Navigation Links (Desktop) */
.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #000000;
    text-decoration: none;
    position: relative;
    padding: 5px 10px;
    transition: 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: #000000;
    transition: 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Mobile Menu Button */
.menu-toggle {
    display: none;
    font-size: 2rem;
    color: #2C516E;
    cursor: pointer;
}

/* Mobile Responsive Navigation */
@media screen and (max-width: 768px) {
    .nav-links {
        display: none; /* Hide menu on small screens */
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgb(90, 140, 176); /* Smooth match */
        text-align: center;
        padding: 20px 0;
        transition: 0.3s ease-in-out;
    }

    .nav-links a {
        display: block;
        padding: 15px 0;
        font-size: 1.2rem;
    }

    .menu-toggle {
        display: block; /* Show hamburger menu */
    }

    .nav-links.active {
        display: flex; /* Show menu when toggled */
    }
}


/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    text-align: center; /* Center text */
    padding: 120px 10% 0; /* Adjust top padding to account for header */
    background: url('banner2.jpg') no-repeat center center/cover;
}

/* Hero Content */
.hero-content {
    max-width: 600px;
	
}

/* Hero Title */
.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ffffff; /* White text */
    background: none; /* Remove previous background */
}

/* Hero Subtitle */
.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #ffffff; /* White text */
}


/* Container for Buttons */
.button-container {
    display: flex;
    justify-content: center; /* Center buttons */
    gap: 20px;
    flex-wrap: nowrap;
    margin: 0;
    padding: 0;
    width: 100%;
}

/* Base Button Styling */
.cta-button, .services-button {
    font-size: 1.1rem;
    color: #ffffff;
    text-decoration: none;
    border-radius: 0 50px 0 50px; /* Curvy on two sides, pointy on the other two */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    transition: 0.3s;
    padding: 20px;
    display: inline-block;
    min-width: 150px;
    text-align: center;
}

/* CTA Button Styling */
.cta-button {
    background: rgba(90, 140, 176, 0.9); /* Smooth match */
}

.cta-button:hover {
    background-color: rgba(102, 153, 181, 0.9);
}

/* Services Button Styling */
.services-button {
    background: #ffffff;
    color: #000000;
}

.services-button:hover {
    background-color: #ddd;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cta-button, .services-button {
        width: 45%;
        padding: 15px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .cta-button, .services-button {
        width: 45%;
        font-size: 0.9rem;
        padding: 12px;
    }
}




/* About Me Section */
#about {
    padding: 80px 10%;
    background-color: var(--secondary-color);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

#about .section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
}

.about-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.about-photo img {
    width: 250px; /* Defined image size */
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    animation: bounce 2s infinite;
    transition: transform 0.3s ease;
}

.about-photo img:hover {
    transform: scale(1.1);
}

.about-description {
    max-width: 700px;
    font-size: 1.2rem;
    color: #000000;
    text-align: left;
}

.about-description p {
    margin-bottom: 20px;

}

.btn-consultation {
    background-color: rgba(90, 140, 176, 0.9);
    color: #ffffff;
    padding: 12px 25px;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 10px; /* Curvy on two sides, pointy on the other two */
    transition: background-color 0.3s ease;
	
}

.btn-consultation:hover {
    background-color:rgba(102, 153, 181, 0.9);
	color:#ffffff;
}

/* Bounce Animation */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    #about {
        padding: 60px 5%;
    }

    .about-content {
        flex-direction: column;
        align-items: center;
    }

    .about-photo img {
        width: 200px;
        height: 200px;
    }

    .about-description {
        font-size: 1rem;
        text-align: center;
    }
}


/* Sections Common Styles */
section {
    padding: 100px 10%;
    min-height: 100vh;
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
	color: rgba(90, 140, 176, 0.9);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: rgba(90, 140, 176, 0.9);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Ensures exactly 4 services per row */
    gap: 30px;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 services per row for tablets */
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(1, 1fr); /* 1 service per row for mobile */
    }
}

.service-card {
    background: rgba(90, 140, 176, 0.9);
    padding: 30px;
    border-radius: 0 50px 0 50px; /* Curvy on two sides, pointy on the other two */
    transition: 0.3s;
    border: 1px solid rgba(100, 255, 218, 0.1);
    text-align: center;
	color:#000000;
}

.service-card i {
    font-size: 2rem;
    margin-bottom: 20px;
    color:#ffffff;
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(70, 120, 160, 1);
	color: #ffffff;
}

/* Portfolio Section */
/* Portfolio Section */
#portfolio {
    padding: 80px 10%;
    background: var(--secondary-color); /* Dark background to fit tech theme */
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    color: #000000;
}

#portfolio .section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
	color: rgba(90, 140, 176, 0.9);
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.portfolio-item {
    background: rgba(90, 140, 176, 0.9); /* Slightly transparent white to match the dark theme */
    padding: 40px;
    border-radius: 0 50px 0 50px; /* Curvy on two sides, pointy on the other two */
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #ffffff;
}


.portfolio-item:hover {
    transform: translateY(-10px);
    background: rgba(70, 120, 160, 1);
	color: #ffffff;
}

.portfolio-item h3 {
    font-size: 2rem;
    color: #ffffff; /* Tech-inspired accent color */
    margin-top: 20px;
    font-family: 'Roboto', sans-serif;
}

.portfolio-item p {
    font-size: 1.1rem;
    color: #000000; /* Light gray for readability */
    margin-top: 10px;
    font-family: 'Roboto', sans-serif;
}

/* Portfolio Icons */
.portfolio-icon {
    font-size: 4rem;
    color: #ffffff; /* Teal icon color to match theme */
    margin: 0 auto;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    #portfolio {
        padding: 60px 5%;
    }

    .portfolio-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .portfolio-item {
        width: 100%; /* Full width on mobile */
        margin-bottom: 30px;
    }
}


/* Numbers Section */
/* Background for the numbers area */
#numbers{
	
	background: var(--text-color);
}
.numbers-background {
    background: rgba(90, 140, 176, 0.9); /* Dark background */
    padding: 50px 10%;
    border-radius: 0 50px 0 50px; /* Curvy on two sides, pointy on the other two */
    margin: 50px 0;
    backdrop-filter: blur(10px); /* Blur effect */
}

/* Flexbox to display number cards in one row */
.numbers-grid {
    display: flex;
    justify-content: space-between; /* Even spacing between the cards */
    align-items: center; /* Center vertically */
    gap: 20px; /* Space between number cards */
}

/* Number card styles */
.number-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    transition: 0.3s;
    border: 1px solid rgba(100, 255, 218, 0.1);
    text-align: center;
    flex: 1; /* Cards take equal width */
    min-width: 150px; /* Minimum width for better text fit */
}

/* Styling for the plus sign */
.numbers-grid .number-card h3 {
    display: inline-block;
    font-size: 3rem;
    color: #ffffff;
}

.numbers-grid .number-card span {
    font-size: 3rem;
    color: #ffffff;
    margin-left: 5px;
}
.numbers-grid .number-card p {

    color: #000000;
}

/* Mobile View Adjustments */
@media screen and (max-width: 768px) {
    .numbers-background {
        padding: 30px 5%; /* Reduced padding for smaller screens */
    }

    .numbers-grid {
        flex-direction: column; /* Stack the cards vertically */
        align-items: center; /* Center the cards */
        gap: 20px; /* Space between the cards */
    }

    .number-card {
        min-width: unset; /* Remove minimum width to allow the cards to be smaller */
        width: 100%; /* Full width of the container */
        padding: 20px;
    }

    .numbers-grid .number-card h3 {
        font-size: 2rem; /* Smaller font size for numbers */
    }

    .numbers-grid .number-card span {
        font-size: 2rem; /* Smaller font size for plus sign */
    }
}

#tech-stack p {
    color: black; /* Set text color to black */
    font-size: 1.2rem; /* Increase font size for better readability */
    line-height: 1.8; /* Improve spacing between lines */
    text-align: justify; /* Align text for a cleaner look */
    padding-bottom: 20px; /* Add bottom padding */
}

/* Responsive Styling */
@media (max-width: 768px) {
    #tech-stack p {
        font-size: 1.1rem; /* Adjust font size for smaller screens */
        text-align: left; /* Align left for better readability on mobile */
        padding: 0 15px 20px; /* Add padding on sides & bottom */
    }
}



.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.tech-card {
    background: rgba(90, 140, 176, 0.9);
    padding: 30px;
    border-radius: 0 50px 0 50px; /* Curvy on two sides, pointy on the other two */
    transition: 0.3s;
    border: 1px solid rgba(100, 255, 218, 0.1);
    text-align: center;
	 color: #ffffff;
}
.tech-card img {
    width: 150px;
    height: auto;
    margin-bottom: 10px;
}

.tech-card i {
    font-size: 2.5rem;
    margin-bottom: 15px;
   
}

.tech-card h3 {
    font-size: 1.2rem;
    font-weight: bold;
}

.tech-card:hover {
    transform: translateY(-10px);
    background: rgba(70, 120, 160, 1);
	color: #ffffff;
}



/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background:  var(--text-color);
    padding: 30px;
     border-radius: 0 50px 0 50px; /* Curvy on two sides, pointy on the other two */
    border: 1px solid rgba(100, 255, 218, 0.1);
	color:#1e438a;
}
.stars {
    color: #2C516E;
    font-size: 30px;
    margin-bottom: 10px;
}

/* Contact Section Styles */
/* Contact Section */
#contact {
    padding: 80px 10%;
    background-color: rgba(90, 140, 176, 0.9);
    color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#contact .section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
	color: #000000;
	
}

/* Contact Container */
.contact-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    max-width: 600px;
    margin: 0 auto;
    background: rgba(160, 190, 215, 0.9);
    padding: 30px;
    border-radius: 0 50px 0 50px; /* Curvy on two sides, pointy on the other two */
    border: 1px solid rgba(100, 255, 218, 0.1);
}

/* Input & Textarea Styling */
.contact-form .input-group {
    width: 100%;
    margin-bottom: 20px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: #f7f7f7;
    color: #000000;
    font-size: 1.1rem;
    transition: 0.3s;
}

.contact-form input:focus, .contact-form textarea:focus {
    background: #ffffff;
    outline: none;
}

/* Placeholder Text */
.contact-form input::placeholder, .contact-form textarea::placeholder {
    color: #717171;
}

/* Submit Button */
.submit-button {
    width: 100%;
    padding: 15px;
    background:  #2C516E;
    color: #ffffff;
    font-size: 1.2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.submit-button i {
    margin-right: 10px;
    font-size: 1.3rem;
}

.submit-button:hover {
    background: #1A3D58 ;
    transform: translateY(-5px);
}

.submit-button:active {
    transform: translateY(0);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    #contact {
        padding: 60px 5%;
    }

    .contact-container {
        padding: 25px;
    }

    .contact-form input, .contact-form textarea {
        font-size: 1rem;
    }

    .submit-button {
        font-size: 1rem;
    }
}


/* Footer Styles */
/* Footer Styling */
#footer {
    background-color: rgba(90, 140, 176, 0.9);
    color: #ffffff;
    padding: 40px 10%;
    font-size: 1rem;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Footer Container */
.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

/* Left Section (Address, Hours, Phone, Email) */
.footer-left {
    flex: 1;
    padding-right: 20px;
    margin-bottom: 20px;
}

.footer-left p {
    margin: 5px 0;
}

/* Middle Section (Menu) */
.footer-menu {
    flex: 1;
    text-align: center;
    margin-bottom: 20px;
}

.footer-menu ul {
    list-style-type: none;
    padding: 0;
}

.footer-menu ul li {
    margin: 10px 0;
}

.footer-menu ul li a {
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
    transition: color 0.3s ease;
}

.footer-menu ul li a:hover {
    color: #2C516E;
}

/* Right Section (Social Links) */
.footer-social {
    flex: 1;
    text-align: right;
    margin-bottom: 20px;
}

.footer-social a {
    text-decoration: none;
    color: #ffffff;
    margin: 0 10px;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #2C516E;
}

/* Footer Bottom (Copyright) */
.footer-bottom {
    text-align: center;
    font-size: 1.0rem;
    color: #ffffff;
    margin-top: 20px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    /* Stack the sections on smaller screens */
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    /* Adjust Menu Section */
    .footer-menu ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-menu ul li {
        margin: 5px 0;
    }

    /* Adjust Social Icons */
    .footer-social {
        text-align: center;
        margin-top: 20px;
    }

    .footer-social a {
        margin: 0 8px;
    }
}

/* Chat Button */
.chat-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #2C516E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    animation: pulse 2s infinite;
}

.chat-btn:hover{
	
	background-color:#1A3D58 ;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    header {
        padding: 20px;
    }

    .hero h1 {
        font-size: 3rem;
    }
}