/* Base Styles */
:root {
    --primary-color:#ffc35b;
    --secondary-color: #F5F5F5;
    --accent-color: #DAA520;
    --text-color:#ffc35b;
}

* {
    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:#002855 ;
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    font-size: 2rem;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 2px;
}

/* Navigation Links (Desktop) */
.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-color);
    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: var(--primary-color);
    transition: 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Mobile Menu Button */
.menu-toggle {
    display: none;
    font-size: 2rem;
    color: var(--primary-color);
    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:#002855 ;
        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;
    align-items: center;
    padding: 0 10%;
    background:#F5F5F5;
	
}

.hero-content {
    max-width: 600px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    background: #F5F5F5;
    color:#002855 ;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
	color:#000000;
}

/* Container for buttons */
.button-container {
    display: flex; /* Use flexbox for alignment */
    justify-content: flex-start; /* Align buttons to the left */
    gap: 20px; /* Add some space between the buttons */
    flex-wrap: nowrap; /* Prevent buttons from wrapping to the next line */
    margin: 0; /* Remove any default margin */
    padding: 0; /* Remove any padding */
    width: 100%; /* Ensure the container takes full width */
}

/* 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; /* Prevents buttons from becoming too small */
    text-align: center; /* Center the text inside */
}

/* Styling for the CTA button */
.cta-button {
    background:#002855 ;
}

.cta-button:hover {
    background-color:#DAA520;
}

/* Styling for the Services button */
.services-button {
    background: #DAA520;
}

.services-button:hover {
    background-color:#002855 ;
}

/* Responsive design */
@media (max-width: 768px) {
    .cta-button, .services-button {
        width: 45%; /* Make each button take up 45% of the container */
        padding: 15px; /* Slightly smaller padding for mobile */
        font-size: 1rem; /* Slightly smaller font size for mobile */
    }
}

@media (max-width: 480px) {
    .cta-button, .services-button {
        width: 45%; /* Keep the buttons at 45% width for very small screens */
        font-size: 0.9rem; /* Further reduce font size */
        padding: 12px; /* Smaller padding for very small screens */
    }
}



/* 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-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.about-photo img {
    width: 300px; /* Defined image size */
    height: 300px;
    border-radius: 5%;
    object-fit: cover;
    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:#002855 ;
    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:#DAA520;
	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:#002855 ;
}


.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--primary-color);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    padding: 50px 0;
}

/* Elegant Service Card Shape */
.service-card {
    background: linear-gradient(135deg, #002855 30%, #004e89 100%);
    padding: 50px;
    border-radius: 20px; /* Soft rounded edges */
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
    color: #ffc35b;
}

/* Unique Soft Wave Shape */
.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 195, 91, 0.15);
    clip-path: ellipse(80% 60% at 50% -20%);
    z-index: 0;
}

/* Hover Effect */
.service-card:hover {
    transform: translateY(-10px) scale(1.03);
    background: linear-gradient(135deg, #004e89 30%, #0066b2 100%);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    color: #ffc35b;
}

/* Icon Styling */
.service-card i {
    font-size: 3.5rem;
    margin-bottom: 15px;
    color: #ffc35b;
    transition: transform 0.3s ease, color 0.4s ease;
    z-index: 1;
    position: relative;
}

.service-card:hover i {
    transform: scale(1.1) rotateY(360deg);
    color: #ffc35b;
}

/* Service Title */
.service-card h3 {
    font-size: 1.8rem;
    color: #ffc35b;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

/* Service Description */
.service-card p {
    font-size: 1.1rem;
    color: #ffebc2;
    font-family: 'Poppins', sans-serif;
    margin-top: 10px;
    position: relative;
    z-index: 1;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .services-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        width: 100%;
        margin-bottom: 30px;
    }
}



/* Portfolio Section */
#portfolio {
    padding: 100px 10%;
    background: #F5F5F5; /* Light background for a clean, professional look */
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    color: #333;
    text-align: center;
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

/* Portfolio Item */
.portfolio-item {
    background: linear-gradient(135deg, #002855 30%, #004e89 100%); /* Deep navy blue gradient */
    padding: 50px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
    color: #ffc35b; /* Gold for contrast */
    position: relative;
    overflow: hidden;
}

/* Hover Effect */
.portfolio-item:hover {
    transform: translateY(-10px) scale(1.02);
    background: linear-gradient(135deg, #004e89 30%, #0066b2 100%);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    color: #ffc35b;
}

/* Portfolio Item Title */
.portfolio-item h3 {
    font-size: 1.8rem;
    color: #ffc35b; /* Gold for elegance */
    margin-top: 20px;
    font-family: 'Poppins', sans-serif;
}

/* Portfolio Item Text */
.portfolio-item p {
    font-size: 1.1rem;
    color: #ffebc2; /* Soft golden for readability */
    margin-top: 10px;
    font-family: 'Poppins', sans-serif;
}

/* Portfolio Icons */
.portfolio-icon {
    font-size: 3.5rem;
    color: #ffc35b; /* Gold */
    margin: 0 auto;
    transition: transform 0.3s ease, color 0.4s ease;
}

.portfolio-item:hover .portfolio-icon {
    transform: rotateY(360deg);
    color: #ffc35b;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    #portfolio {
        padding: 80px 5%;
    }

    .portfolio-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .portfolio-item {
        width: 100%;
        margin-bottom: 30px;
    }
}




/* Numbers Section */
/* Background for the numbers area */
#numbers {
    background: #E0E0E0;
}

.numbers-background {
    background: #002855; /* Dark blue background */
    padding: 50px 10%;
    border-radius: 0 50px 0 50px;
    margin: 50px 0;
    backdrop-filter: blur(10px);
}

/* Flexbox to display number cards in one row */
.numbers-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

/* Number card styles */
.number-card {
    background: linear-gradient(145deg, #002855 30%, #004e89 100%);
    padding: 30px;
    border-radius: 10px;
    transition: transform 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    flex: 1;
    min-width: 150px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    color: #ffc35b;
}

/* Number card hover effect */
.number-card:hover {
    background: linear-gradient(145deg, #004e89 30%, #0066b2 100%);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Styling for the numbers */
.numbers-grid .number-card h3 {
    display: inline-block;
    font-size: 3rem;
    color: #ffc35b;
}

/* Styling for the plus sign */
.numbers-grid .number-card span {
    font-size: 3rem;
    color: #ffc35b;
    margin-left: 5px;
}

/* Mobile View Adjustments */
@media screen and (max-width: 768px) {
    .numbers-background {
        padding: 30px 5%;
    }

    .numbers-grid {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .number-card {
        min-width: unset;
        width: 100%;
        padding: 20px;
    }

    .numbers-grid .number-card h3 {
        font-size: 2rem;
    }

    .numbers-grid .number-card span {
        font-size: 2rem;
    }
}


.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    padding: 50px 0;
    text-align: center;
}

/* Modern Tech Card */
.tech-card {
    background: linear-gradient(145deg, #002855 30%, #004e89 100%);
    padding: 40px;
    border-radius: 20px; /* Smooth modern shape */
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
    color: #ffc35b; /* Gold for contrast */
}

/* Glow Effect */
.tech-card::before {
    content: "";
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    clip-path: polygon(0% 0%, 100% 0%, 85% 100%, 15% 100%);
    z-index: 0;
    transition: 0.3s ease-in-out;
}

/* Tech Card Hover Effect */
.tech-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    background: linear-gradient(145deg, #004e89 30%, #0066b2 100%);
    color: #ffc35b;
}

/* Icon Styling */
.tech-card i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #ffc35b; /* Gold */
    transition: transform 0.3s ease, color 0.4s ease;
    z-index: 1;
    position: relative;
}

.tech-card:hover i {
    transform: scale(1.1) rotateY(360deg);
    color: #ffc35b;
}

/* Tech Name */
.tech-card h3 {
    font-size: 1.3rem;
    font-weight: bold;
    color: #ffc35b;
    z-index: 1;
    position: relative;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .tech-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .tech-card {
        width: 100%;
        margin-bottom: 20px;
    }
}



/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Adjusted min-width for better mobile fit */
    gap: 30px;
    padding: 20px;
    max-width: 100%;
    margin: 0 auto; /* Centers the grid */
}

/* Testimonial Card */
.testimonial-card {
    background: linear-gradient(135deg, #ffffff, #f9f9f9); /* Soft gradient */
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(0, 40, 85, 0.15);
    color: #002855;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

/* Testimonial Content */
.testimonial-card p {
    font-size: 1rem;
    font-style: italic;
    line-height: 1.6;
    color: #333;
    margin-bottom: 10px;
}

.testimonial-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 15px;
    color: #002855;
}

/* Stars Rating */
.stars {
    margin-top: 12px;
}

.stars i {
    color: #ffc35b;
    font-size: 1.2rem;
    margin-right: 3px;
    transition: transform 0.3s ease;
}

.testimonial-card:hover .stars i {
    transform: scale(1.1);
}

/* Subtle Quote Icon */
.testimonial-card::before {
    content: "“";
    font-size: 80px;
    font-weight: bold;
    color: rgba(0, 40, 85, 0.1);
    position: absolute;
    top: 10px;
    left: 15px;
    font-family: serif;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr; /* Single column layout for small screens */
        padding: 15px;
    }

    .testimonial-card {
        padding: 25px;
    }

    .testimonial-card p {
        font-size: 1rem;
    }

    .stars i {
        font-size: 1rem;
    }

    .testimonial-card::before {
        font-size: 60px;
        top: 5px;
        left: 10px;
    }
}



/* Contact Section Styles */
/* Contact Section */
#contact {
    padding: 80px 10%;
    background-color:#002855 ;
    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: var(--primary-color);
	
}

/* Contact Container */
.contact-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    max-width: 600px;
    margin: 0 auto;
    background: #C2C2C2;
    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: #002855 ;
    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: #003f7d ;
    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:#002855 ;
    color: var(--text-color);
    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: var(--text-color);
    font-weight: bold;
    transition: color 0.3s ease;
}

.footer-menu ul li a:hover {
    color: var(--accent-color);
}

/* Right Section (Social Links) */
.footer-social {
    flex: 1;
    text-align: right;
    margin-bottom: 20px;
}

.footer-social a {
    text-decoration: none;
    color: var(--text-color);
    margin: 0 10px;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--accent-color);
}

/* Footer Bottom (Copyright) */
.footer-bottom {
    text-align: center;
    font-size: 1.0rem;
    color: var(--text-color);
    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:#003f7d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    animation: pulse 2s infinite;
	color:#FFFFFF;
}

.chat-btn:hover{
	
	background-color:#00509e ;
}

@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;
    }
}