/* Global Reset and Box-Sizing */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

/* Body Styling */
body {
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
    font-family: 'Arial', sans-serif;
}

/* Links */
a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

a:hover {
    color: #3498db;
}

/* Header Styling */
header {
    background-color: #222;
    color: #fff;
    padding: 1.5rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header .logo {
    display: inline-block;
    margin-left: 1rem;
}

header .logo img {
    width: 150px;
}

nav {
    display: inline-block;
    float: right;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
}

nav ul li {
    font-size: 1rem;
}

nav ul li a {
    color: #fff;
    font-weight: 600;
    padding: 0.5rem 1rem;
    transition: background-color 0.3s ease, color 0.3s ease;
    border-radius: 5px;
}

nav ul li a:hover {
    background-color: #3498db;
    color: #fff;
}

/* Hero Section with Parallax Effect */
/* Hero Section Styling */
.hero {
    background: url('images/1.jpg') no-repeat center center/cover;
    color: #fff;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Overlay for text readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* Content in Hero Section */
.hero-content {
    z-index: 2;
    padding: 2rem;
    animation: fadeInUp 2s ease-out;
}

/* Hero Heading */
.hero-heading {
    font-size: 4.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    animation: slideInLeft 1.5s ease-out;
}

/* Hero Subheading */
.hero-subheading {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 400;
    opacity: 0.9;
    animation: fadeInUp 1.8s ease-out;
}

/* CTA Button Styling */
.cta-btn {
    font-size: 1.2rem;
    padding: 1.2rem 3rem;
    background-color: #3498db;
    color: #fff;
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    letter-spacing: 2px;
}

.cta-btn:hover {
    background-color: #2980b9;
    transform: translateY(-5px);
}

.cta-btn:focus {
    outline: none;
}

/* Animations */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Parallax Effect */
.hero {
    background-position: center;
    background-attachment: fixed;
}

/* Mobile and Tablet Adjustments */
@media (max-width: 768px) {
    .hero-heading {
        font-size: 3.5rem;
    }

    .hero-subheading {
        font-size: 1.4rem;
    }

    .cta-btn {
        font-size: 1rem;
        padding: 1rem 2rem;
    }
}

@media (max-width: 480px) {
    .hero-heading {
        font-size: 2.5rem;
    }

    .hero-subheading {
        font-size: 1.2rem;
    }

    .cta-btn {
        font-size: 0.9rem;
        padding: 1rem 2.5rem;
    }
}


.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    z-index: 2;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease-out;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    z-index: 2;
    animation: fadeInUp 1.5s ease-out;
}

.cta-btn {
    font-size: 1.2rem;
    padding: 1rem 2rem;
    background-color: #3498db;
    color: #fff;
    text-transform: uppercase;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    z-index: 2;
}

.cta-btn:hover {
    background-color: #2980b9;
    transform: translateY(-5px);
}

/* About Us Section */
.about-us {
    background-color: #fff;
    padding: 5rem 0;
    text-align: center;
}

.about-us h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 1.5s ease-out;
}

.about-text {
    flex: 1 1 50%;
    padding: 2rem;
    text-align: left;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
}

.about-image {
    flex: 1 1 40%;
}

.about-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services {
    background-color: #f9f9f9;
    padding: 5rem 0;
}

.services h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    animation: fadeInUp 1.5s ease-out;
}

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

.service-item img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.service-item h3 {
    margin-top: 1.5rem;
    font-size: 1.8rem;
    color: #333;
}

.service-item p {
    font-size: 1rem;
    color: #555;
    margin-top: 1rem;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

/* Portfolio Section */
.portfolio {
    padding: 5rem 0;
    background-color: #fff;
}

.portfolio h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.portfolio-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

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

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

/* Testimonials Section */
.testimonials {
    background-color: #f9f9f9;
    padding: 5rem 0;
    text-align: center;
}

.testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.testimonial-carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.testimonial-item {
    max-width: 300px;
    padding: 2rem;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.testimonial-item p {
    font-size: 1.2rem;
    color: #555;
}

.testimonial-item h3 {
    margin-top: 1rem;
    font-size: 1.5rem;
    color: #333;
    font-weight: 600;
}

.testimonial-item:hover {
    transform: translateY(-5px);
}

/* Call to Action Section */
.cta-section {
    background-color: #3498db;
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.cta-btn {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    background-color: #fff;
    color: #3498db;
    border: none;
    border-radius: 5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-btn:hover {
    background-color: #2980b9;
    transform: translateY(-5px);
}

/* Footer Styling */
footer {
    background-color: #222;
    color: #fff;
    padding: 2rem 0;
    text-align: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

footer .footer-logo img {
    width: 150px;
    margin-bottom: 1rem;
}

footer nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

footer nav ul li a {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

footer nav ul li a:hover {
    color: #3498db;
}

footer p {
    margin-top: 1rem;
    font-size: 1rem;
}

/* Media Queries for Responsiveness */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .about-content {
        flex-direction: column;
    }

    .cta-btn {
        width: 100%;
    }

    .testimonial-carousel {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    header .logo img {
        width: 120px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .portfolio-item {
        max-width: 100%;
    }
}

/* About Us Section */
.about-us {
    background-color: #f9f9f9;
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-us h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    animation: fadeInUp 1s ease-out;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3rem;
    align-items: center;
    padding-top: 3rem;
    animation: fadeInUp 1.5s ease-out;
}

/* About Text */
.about-text {
    flex: 1;
    padding: 2rem;
    max-width: 50%;
    text-align: left;
    animation: fadeInUp 1.8s ease-out;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.about-text .cta-btn {
    font-size: 1.2rem;
    padding: 1rem 2.5rem;
    background-color: #3498db;
    color: #fff;
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 2px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.about-text .cta-btn:hover {
    background-color: #2980b9;
    transform: translateY(-5px);
}

/* About Image */
.about-image {
    flex: 1;
    max-width: 45%;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 2s ease-out;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Animations */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        align-items: center;
    }

    .about-text {
        max-width: 100%;
        padding: 2rem;
        text-align: center;
    }

    .about-image {
        max-width: 100%;
        margin-top: 2rem;
    }

    .cta-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .about-us h2 {
        font-size: 2rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    .cta-btn {
        font-size: 1rem;
        padding: 1rem 2rem;
    }
}

/* Services Section Styling */
.services {
    background-color: #f9f9f9;
    padding: 6rem 2rem;
    text-align: center;
}

.services h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    animation: fadeInUp 1s ease-out;
}

/* Service Items Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1.5s ease-out;
}

/* Individual Service Item */
.service-item {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.service-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.service-info {
    padding: 2rem;
}

.service-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 600;
}

.service-info p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Hover Effects for Service Items */
.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-item:hover .service-info h3 {
    color: #3498db;
}

/* Call to Action Button Styling */
.cta-btn {
    font-size: 1.2rem;
    padding: 1.2rem 3rem;
    background-color: #3498db;
    color: #fff;
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 2px;
    margin-top: 3rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cta-btn:hover {
    background-color: #2980b9;
    transform: translateY(-5px);
}

/* Animations */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .service-item {
        margin-bottom: 2rem;
    }

    .cta-btn {
        width: 100%;
        padding: 1rem 2.5rem;
    }
}

@media (max-width: 480px) {
    .services h2 {
        font-size: 2rem;
    }

    .service-info h3 {
        font-size: 1.6rem;
    }

    .service-info p {
        font-size: 0.9rem;
    }

    .cta-btn {
        font-size: 1rem;
        padding: 1rem 2rem;
    }
}

/* Footer Styling */
footer {
    background-color: #222;
    color: #fff;
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
}

footer .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Footer Logo */
footer .footer-logo img {
    width: 150px;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

footer .footer-logo img:hover {
    transform: scale(1.05);
}

/* Footer Navigation */
footer .footer-nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 0;
}

footer .footer-nav ul li {
    font-size: 1rem;
    font-weight: 500;
}

footer .footer-nav ul li a {
    color: #fff;
    text-transform: uppercase;
    transition: color 0.3s ease;
    letter-spacing: 1px;
}

footer .footer-nav ul li a:hover {
    color: #3498db;
}

/* Footer Bottom Section */
footer .footer-bottom {
    margin-top: 2rem;
    font-size: 1rem;
    color: #aaa;
}

/* Responsive Footer Styling */
@media (max-width: 768px) {
    footer .container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    footer .footer-nav ul {
        flex-direction: column;
        gap: 1rem;
    }

    footer .footer-bottom {
        font-size: 0.9rem;
        margin-top: 1.5rem;
    }

    footer .footer-logo img {
        width: 120px;
    }
}

/* Header Styling */
header {
    background-color: #222;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

header .logo img {
    width: 150px;
    transition: transform 0.3s ease;
}

header .logo img:hover {
    transform: scale(1.1);
}

/* Navigation Menu */
nav {
    display: flex;
    align-items: center;
}

/* Horizontal Nav Links */
nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav ul li {
    font-size: 1rem;
    font-weight: 600;
}

nav ul li a {
    color: #fff;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #3498db;
}

/* Mobile Hamburger Menu */
.menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 0.5rem;
}

.menu-toggle .bar {
    width: 30px;
    height: 3px;
    background-color: #fff;
    border-radius: 10px;
}

#nav-links {
    display: flex;
    gap: 2rem;
}

#nav-links.active {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    background-color: #222;
    width: 250px;
    height: 100vh;
    padding-top: 5rem;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
}

#nav-links li {
    text-align: center;
    margin: 1.5rem 0;
}

#nav-links li a {
    font-size: 1rem;
}

/* Media Query for Mobile */
@media (max-width: 768px) {
    nav ul {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    #nav-links {
        display: none;
        width: 100%;
        margin-top: 2rem;
    }

    #nav-links.active {
        display: block;
    }

    #nav-links li {
        font-size: 1.2rem;
    }

    header {
        padding: 1rem 1.5rem;
    }

    header .logo img {
        width: 120px;
    }
}

/* Services Section Styling */
.services {
    background-color: #f9f9f9;
    padding: 6rem 2rem;
    text-align: center;
}

.services h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    animation: fadeInUp 1s ease-out;
}

/* Service Items Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1.5s ease-out;
}

/* Individual Service Item */
.service-item {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    padding: 2rem;
    text-align: center;
}

/* Service Icon */
.service-icon {
    background-color: #3498db;
    color: #fff;
    padding: 1.5rem;
    border-radius: 50%;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

/* Hover Effects for Service Items */
.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-item:hover .service-icon {
    background-color: #2980b9;
    transform: translateY(-5px);
}

.service-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 600;
}

.service-info p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Call to Action Button Styling */
.cta-btn {
    font-size: 1.2rem;
    padding: 1.2rem 3rem;
    background-color: #3498db;
    color: #fff;
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 2px;
    margin-top: 3rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cta-btn:hover {
    background-color: #2980b9;
    transform: translateY(-5px);
}

/* Animations */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .service-item {
        margin-bottom: 2rem;
    }

    .cta-btn {
        width: 100%;
        padding: 1rem 2.5rem;
    }
}

@media (max-width: 480px) {
    .services h2 {
        font-size: 2rem;
    }

    .service-info h3 {
        font-size: 1.6rem;
    }

    .service-info p {
        font-size: 0.9rem;
    }

    .cta-btn {
        font-size: 1rem;
        padding: 1rem 2rem;
    }
}


/* Container */
.container {
    width: 80%;
    margin: 0 auto;
}

/* About Section */
.about {
    background: linear-gradient(135deg, #1a73e8, #ff8a00);
    color: #fff;
    padding: 6rem 2rem;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
    transition: transform 0.3s ease;
}

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

.about h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Mission and Vision Section */
.mission-vision {
    display: flex;
    justify-content: space-between;
    padding: 5rem 2rem;
}

.mission, .vision {
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 45%;
    transition: transform 0.3s ease;
}

.mission:hover, .vision:hover {
    transform: scale(1.05);
}

.mission h2, .vision h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a73e8;
}

.mission p, .vision p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Core Values Section */
.values {
    background-color: #fff;
    padding: 4rem 2rem;
    text-align: center;
    margin-bottom: 3rem;
}

.values h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a73e8;
}

.values-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.value-item {
    background-color: #f4f4f4;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.value-item h3 {
    font-size: 1.8rem;
    color: #1a73e8;
    margin-bottom: 1rem;
}

.value-item p {
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Team Section */
.team {
    background: #e9f1f8;
    padding: 5rem 2rem;
    text-align: center;
}

.team h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #1a73e8;
}

.team p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.team-members {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.team-member {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    width: 30%;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.team-member img {
    width: 100%;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.team-member h3 {
    font-size: 1.8rem;
}



/* Body and Container Styling */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 80%;
    margin: 0 auto;
    padding: 3rem 0;
}

/* Header */
header {
    background-color: #2c3e50;
    padding: 1.5rem 0;
    color: #fff;
}

header .logo img {
    width: 150px;
}

header nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: #3498db;
}

/* Contact Info Section */
.contact-info {
    background: #ecf0f1;
    padding: 3rem 0;
    text-align: center;
}

.contact-info h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-details {
    display: flex;
    justify-content: space-around;
    margin-top: 2rem;
}

.contact-item {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 25%;
    text-align: left;
}

.contact-item h3 {
    color: #3498db;
    margin-bottom: 1rem;
}

.contact-item p {
    font-size: 1.1rem;
}

.contact-item a {
    color: #3498db;
}

/* Map Section */
.map {
    margin-top: 3rem;
    text-align: center;
}

.map-container iframe {
    border-radius: 15px;
}

/* Contact Form Section */
.contact-form {
    background: #fff;
    padding: 4rem 0;
    text-align: center;
}

.contact-form h2 {
    margin-bottom: 2rem;
    color: #2c3e50;
}

.contact-form form {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.contact-form input, 
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1rem;
}

.contact-form button {
    background-color: #3498db;
}

/* General Card Styling */
.contact-item {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    width: 25%;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

/* Hover Effects */
.contact-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Title and Text Styling */
.contact-item h3 {
    font-size: 1.5rem;
    color: #3498db;
    margin-bottom: 1rem;
    font-weight: bold;
}

/* Description Text */
.contact-item p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #555;
}

/* Adding Icons */
.contact-item i {
    font-size: 2rem;
    color: #3498db;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

/* Icon Hover Effect */
.contact-item:hover i {
    transform: scale(1.2);
}

/* Optional: Add a small animation for card appearance */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Media Query for Smaller Screens */
@media (max-width: 768px) {
    .contact-details {
        flex-direction: column;
        gap: 2rem;
    }

    .contact-item {
        width: 80%;
        margin: 0 auto;
    }
}


