/* -------- RESET -------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f7fa;
    color: #333;
}

/* HEADER */
header {
    width: 100%;
    background-color: #ffffff;
    padding: 12px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LOGO */
header .container img {
    width: 110px;
    cursor: pointer;
    transition: 0.3s ease;
}

header .container img:hover {
    transform: scale(1.07);
}

/* NAVIGATION (Desktop) */
.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-menu ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 1rem;
    padding-bottom: 3px;
    transition: 0.3s ease;
}

.nav-menu ul li a:hover,
.nav-menu ul li a.active {
    color: #0066ff;
    border-bottom: 2px solid #0066ff;
}

/* HIDE CHECKBOX */
#menu-toggle {
    display: none;
}

/* HAMBURGER ICON */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #333;
    transition: 0.3s ease;
}

/* Hamburger Animation */
#menu-toggle:checked+.hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

#menu-toggle:checked+.hamburger span:nth-child(2) {
    opacity: 0;
}

#menu-toggle:checked+.hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------------------------------------- */
/* MOBILE STYLES */
/* ---------------------------------------- */
@media (max-width: 768px) {

    /* Hamburger visible */
    .hamburger {
        display: flex;
    }

    /* Hide desktop menu */
    .nav-menu {
        position: absolute;
        top: 130px;
        right: 0;
        background: white;
        width: 100%;
        display: none;
        border-top: 1px solid #ddd;
    }

    /* Show when checked */
    #menu-toggle:checked~.nav-menu {
        display: block;
    }

    .nav-menu ul {
        flex-direction: column;
        padding: 15px 0;
        gap: 0;
        text-align: center;
    }

    .nav-menu ul li {
        padding: 12px 0;
    }
}


/* -------- HERO SECTION -------- */
main {
    width: 100%;
    height: 90vh;
    background-image: url('images/hero.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}

/* Dark overlay */
main::before {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    position: absolute;
    top: 0;
    left: 0;
}

/* Content */
main .main {
    position: relative;
    z-index: 2;
    padding-left: 7%;
    max-width: 650px;
}

.main h1 {
    font-size: 3.5rem;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease forwards;
}

.main h1 span {
    color: #00ccff;
    font-style: italic;
}

.main p {
    font-size: 1.2rem;
    color: #e8e8e8;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease forwards;
}

/* Button */
.main a {
    display: inline-block;
    padding: 12px 28px;
    background-color: #007bff;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s ease;
    animation: fadeInUp 1.2s ease forwards;
}

.main .btnfirst {
    background-color: #00ccff;
    color: #000;
}

.main .btnfirst:hover {
    background-color: #00b8e6;
    transform: translateY(-3px);
}

.main a:hover {
    background-color: #0056d6;
    transform: translateY(-3px);
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===========================
    RESPONSIVE DESIGN
=========================== */

/* ---------- Tablets (≤ 992px) ---------- */
@media (max-width: 992px) {
    main {
        height: 80vh;
    }

    .main h1 {
        font-size: 2.8rem;
    }

    .main p {
        font-size: 1.1rem;
    }

    .main a {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
}

/* ---------- Mobile Landscape + Small Tablets (≤ 768px) ---------- */
@media (max-width: 768px) {
    main {
        height: 75vh;
        justify-content: center;
    }

    main .main {
        padding-left: 5%;
        max-width: 90%;
    }

    .main h1 {
        font-size: 2.4rem;
        line-height: 1.3;
    }

    .main p {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .main a {
        padding: 10px 22px;
        font-size: 0.9rem;
    }
}

/* ---------- Mobile (≤ 576px) ---------- */
@media (max-width: 576px) {
    main {
        height: auto;
        padding: 100px 0 80px;
        text-align: center;
    }

    main .main {
        padding-left: 0;
        max-width: 90%;
        margin: auto;
    }

    .main h1 {
        font-size: 2rem;
    }

    .main p {
        font-size: 0.95rem;
    }

    .main a {
        display: block;
        width: 80%;
        margin: 10px auto;
        font-size: 0.9rem;
        padding: 12px;
    }
}

/* ---------- Extra Small Mobile (≤ 400px) ---------- */
@media (max-width: 400px) {
    .main h1 {
        font-size: 1.7rem;
    }

    .main p {
        font-size: 0.9rem;
    }

    .main a {
        width: 90%;
        font-size: 0.85rem;
    }
}


/* Service Section */

.section-service {
    width: 100%;
    padding: 60px 0;
    background-color: #ffffff;
    margin: 40px 0;
}

.section-service .section {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

.section .content h1 {
    font-size: 2.5rem;
    color: #333;
    font-weight: 700;
    margin-bottom: 10px;
}

.section .content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.section .cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cards .card {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    flex: 0 0 calc(33.333% - 20px);
    min-width: 250px;
    transition: 0.3s ease;
}

.cards .card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-10px);
}

.cards .card svg {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    fill: #007bff;
}

.cards .card h2 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.cards .card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
}


/* ---------- Large Tablets (≤ 1024px) ---------- */
@media (max-width: 1024px) {
    .section .cards {
        gap: 25px;
    }

    .cards .card {
        flex: 0 0 calc(50% - 20px);
        /* 2 cards per row */
    }

    .section .content h1 {
        font-size: 2.2rem;
    }

    .section .content p {
        font-size: 1.05rem;
    }
}

/* ---------- Tablets (≤ 768px) ---------- */
@media (max-width: 768px) {
    .section-service {
        padding: 50px 0;
    }

    .section .content h1 {
        font-size: 2rem;
    }

    .section .content p {
        font-size: 1rem;
    }

    .cards .card {
        flex: 0 0 100%;
        /* 1 card per row */
        padding: 22px;
    }

    .cards .card svg {
        width: 45px;
        height: 45px;
    }
}

/* ---------- Mobile (≤ 576px) ---------- */
@media (max-width: 576px) {
    .section .content {
        text-align: center;
    }

    .section .content h1 {
        font-size: 1.8rem;
    }

    .section .content p {
        width: 90%;
        margin: 0 auto 20px;
    }

    .cards .card {
        padding: 20px;
    }

    .cards .card h2 {
        font-size: 1.3rem;
    }

    .cards .card p {
        font-size: 0.95rem;
    }
}

/* ---------- Extra Small Mobile (≤ 400px) ---------- */
@media (max-width: 400px) {
    .section .content h1 {
        font-size: 1.6rem;
    }

    .cards .card svg {
        width: 40px;
        height: 40px;
    }

    .cards .card h2 {
        font-size: 1.2rem;
    }

    .cards .card p {
        font-size: 0.9rem;
    }
}

/* project-section */

.project-section {
    width: 100%;
    padding: 60px 0;
}

.project-section .project-sec {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    background-color: #fff;
    height: auto;
    padding: 50px 20px;
    border-radius: 10px;
}

.project-sec .view-all{
    text-align: center;
    margin-top: 30px;
}
.project-sec .view-all a {
    display: inline-block;
    padding: 12px 28px;
    background-color: #007bff;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s ease;
}
.project-sec .view-all a:hover {
    background-color: #0056d6;
    transform: translateY(-3px);
}

.project-sec .project-content h1 {
    font-size: 2.5rem;
    color: #333;
    font-weight: 700;
    margin-bottom: 10px;
}

.project-sec .project-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.project-sec .project-cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.project-cards .project-card {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    flex: 0 0 calc(33.333% - 20px);
    min-width: 250px;
    transition: 0.3s ease;
}

.project-cards .project-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-10px);
}

.project-cards .project-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 15px;
}

.project-cards .project-card h2 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.project-cards .project-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
}

.project-cards .project-card .lang {
    margin-top: 10px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    color: #777;
}

.project-cards .project-card .lang span {
    background-color: #e0e0e0;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9rem;
}

.project-cards .project-card a {
    display: inline-block;
    margin-top: 10px;
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.project-cards .project-card a:hover {
    text-decoration: underline;
}

/* ---------- Large Tablets (≤ 1024px) ---------- */
@media (max-width: 1024px) {
    .project-sec .project-content h1 {
        font-size: 2.2rem;
    }

    .project-sec .project-content p {
        font-size: 1.05rem;
    }

    .project-cards .project-card {
        flex: 0 0 calc(50% - 15px);
        /* 2 cards per row */
    }

    .project-cards .project-card img {
        height: 180px;
    }
}

/* ---------- Tablets (≤ 768px) ---------- */
@media (max-width: 768px) {
    .project-section {
        padding: 40px 0;
    }

    .project-sec {
        padding: 40px 20px;
    }

    .project-sec .project-content h1 {
        font-size: 2rem;
        text-align: center;
    }

    .project-sec .project-content p {
        font-size: 1rem;
        text-align: center;
        width: 90%;
        margin: 0 auto 25px;
    }

    .project-cards .project-card {
        flex: 0 0 100%;
        /* Full width */
        padding: 20px;
    }

    .project-cards .project-card img {
        height: 170px;
    }
}

/* ---------- Mobile (≤ 576px) ---------- */
@media (max-width: 576px) {
    .project-sec {
        padding: 30px 15px;
    }

    .project-sec .project-content h1 {
        font-size: 1.8rem;
    }

    .project-cards .project-card {
        padding: 18px;
    }

    .project-cards .project-card h2 {
        font-size: 1.3rem;
    }

    .project-cards .project-card p {
        font-size: 0.95rem;
    }

    .project-cards .project-card img {
        height: 160px;
    }
}

/* ---------- Extra Small Mobile (≤ 400px) ---------- */
@media (max-width: 400px) {
    .project-sec .project-content h1 {
        font-size: 1.6rem;
    }

    .project-sec .project-content p {
        font-size: 0.95rem;
    }

    .project-cards .project-card h2 {
        font-size: 1.2rem;
    }

    .project-cards .project-card img {
        height: 150px;
    }

    .project-cards .project-card p {
        font-size: 0.9rem;
    }
}

/* Team Section */

.team-section {
    width: 100%;
    padding: 60px 0;
    background-color: #ffffff;
    margin: 40px 0;
}

.team-section .team-sec {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

.team-sec .team-content h1 {
    font-size: 2.5rem;
    color: #333;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}

.team-sec .team-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}

.team-sec .team-cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.team-cards .team-card {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    flex: 0 0 calc(33.333% - 20px);
    min-width: 250px;
    transition: 0.3s ease;
    text-align: center;
}

.team-cards .team-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-10px);
}

.team-cards .team-card img {
    width: 200px;
    height: 250px;
    border-radius: 10px;
    margin-bottom: 15px;
    border: 1px solid blue;
    object-fit: cover;
    object-position: center top;
}

.team-cards .team-card h2 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.team-cards .team-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
}

.team-cards .team-card .title {
    font-weight: 600;
    color: #777;
    margin-top: 8px;
}

/* ============================
   📱 RESPONSIVE BREAKPOINTS
   ============================ */

/* Tablets (2 cards per row) */
@media (max-width: 992px) {
    .team-cards .team-card {
        flex: 0 0 calc(50% - 20px);
    }

    .team-cards .team-card img {
        width: 180px;
        height: 230px;
    }
}

/* Mobile (1 card per row) */
@media (max-width: 600px) {
    .team-cards {
        justify-content: center;
    }

    .team-cards .team-card {
        flex: 0 0 100%;
        max-width: 350px;
        margin: auto;
    }

    .team-cards .team-card img {
        width: 160px;
        height: 200px;
    }

    .team-sec .team-content h1 {
        font-size: 2rem;
    }
}


/* FOOTER */
.footer {
    width: 100%;
    background-color: #0066ff;
    /* same as your header */
    color: #fff;
    padding: 40px 0 0 0;
    margin-top: 40px;
}

.footer-container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

/* Columns */
.footer-about,
.footer-links,
.footer-contact {
    flex: 1 1 0px;
    min-width: 250px;
}

/* Logo */
.footer-about a img {
    width: 120px;
    margin-bottom: 15px;
}

/* Text */
.footer-about p,
.footer-contact p {
    font-size: 1rem;
    line-height: 1.6;
    color: #f0f0f0;
}

/* Headings */
.footer-links h3,
.footer-contact h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

/* Quick Links */
.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    text-decoration: none;
    color: #f0f0f0;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: #ffffff;
}

/* Contact */
.footer-contact a {
    color: #f0f0f0;
    text-decoration: none;
    transition: 0.3s;
}

.footer-contact a:hover {
    color: #ffffff;
}

.footer .footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 1rem;
    color: #e0e0e0;
    background-color: #095ddb;
    padding: 20px;
}

.footer .footer-bottom a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-style: italic;
}


/* -------------------------
   RESPONSIVE DESIGN
------------------------- */

/* Tablets */
@media (max-width: 900px) {
    .footer-container {
        text-align: center;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .footer-about a img {
        width: 100px;
    }
}


/* About Page */

.about-section {
    width: 100%;
    padding: 80px 0;
    background-color: #f5f7fa;
}

.about-container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 320px;
}

.about-section h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #222;
}

.about-section h2 span {
    color: #0066ff;
    font-style: italic;
}

.about-text p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.about-text h3 {
    font-size: 1.6rem;
    margin: 20px 0 10px;
    color: #0066ff;
}

.about-text ul {
    margin-bottom: 20px;
    list-style: none;
}

.about-text ul li {
    font-size: 1.05rem;
    color: #444;
    margin: 8px 0;
    padding-left: 20px;
    position: relative;
}

.about-text ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #00ccff;
}

.about-btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: #0066ff;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s ease;
}

.about-btn:hover {
    background-color: #004fcc;
    transform: translateY(-3px);
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
    min-width: 320px;
}

.about-image img {
    width: 100%;
    max-width: 520px;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
}


/* Contact Page */
.contact-wrapper {
    width: 100%;
    padding: 80px 0;
    background: linear-gradient(135deg, #e8f1ff, #ffffff);
}

/* Header */
.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-header h1 {
    font-size: 3rem;
    color: #222;
    font-weight: 700;
}

.contact-header h1 span {
    color: #0066ff;
    font-style: italic;
}

.contact-header p {
    font-size: 1.1rem;
    color: #555;
    margin-top: 8px;
}

/* CONTACT BOX */
.contact-box {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    display: flex;
    gap: 40px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

/* LEFT SIDE */
.contact-left {
    flex: 1;
    padding-right: 20px;
}

.contact-left h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #222;
}

.info {
    margin-bottom: 18px;
    padding-left: 12px;
    border-left: 4px solid #0066ff;
}

.info h3 {
    font-size: 1.1rem;
    color: #0066ff;
}

.info p {
    color: #444;
    margin-top: 3px;
}

/* RIGHT SIDE */
.contact-right {
    flex: 1.2;
}

.input-field {
    position: relative;
    margin: 22px 0;
}

.input-field input,
.input-field textarea {
    width: 100%;
    padding: 12px;
    background: transparent;
    border: none;
    border-bottom: 2px solid #ccc;
    font-size: 1rem;
    outline: none;
    color: #333;
}

.input-field textarea {
    height: 120px;
    resize: none;
}

.input-field label {
    position: absolute;
    left: 12px;
    bottom: 12px;
    color: #777;
    transition: 0.3s ease;
    pointer-events: none;
}

.input-field input:focus+label,
.input-field input:valid+label,
.input-field textarea:focus+label,
.input-field textarea:valid+label {
    transform: translateY(-22px);
    font-size: 0.85rem;
    color: #0066ff;
}

.send-btn {
    width: 100%;
    padding: 14px 0;
    font-size: 1.1rem;
    font-weight: 600;
    background: #0066ff;
    color: #fff;
    border: none;
    border-radius: 8px;
    transition: 0.3s;
    cursor: pointer;
}

.send-btn:hover {
    background: #004ccc;
    transform: translateY(-3px);
}


/* ===========================================
   RESPONSIVE BREAKPOINTS
=========================================== */

/* ----- 1024px (Tablets) ----- */
@media (max-width: 1024px) {
    .about-section h2 {
        font-size: 2.4rem;
    }

    .contact-box {
        padding: 30px;
        gap: 30px;
    }
}

/* ----- 900px ----- */
@media (max-width: 900px) {
    .contact-box {
        flex-direction: column;
    }

    .contact-left {
        padding-right: 0;
    }
}

/* ----- 768px (Mobile) ----- */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .about-section h2 {
        font-size: 2.2rem;
    }

    .about-btn {
        margin-top: 15px;
    }

    .contact-header h1 {
        font-size: 2.3rem;
    }
}

/* ----- 480px (Small phones) ----- */
@media (max-width: 480px) {

    .about-section {
        padding: 50px 0;
    }

    .about-section h2 {
        font-size: 1.8rem;
    }

    .about-text p,
    .about-text ul li {
        font-size: 0.95rem;
    }

    .contact-header h1 {
        font-size: 1.9rem;
    }

    .contact-box {
        padding: 20px;
    }

    .send-btn {
        font-size: 1rem;
        padding: 12px;
    }
}

/* Service Page */

/* ------------------ SERVICES SECTION ------------------ */
.services-section {
    width: 100%;
    padding: 80px 0;
    background: linear-gradient(135deg, #e8f1ff, #ffffff);
}

/* Header */
.services-header {
    text-align: center;
    margin-bottom: 50px;
}

.services-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #222;
}

.services-header h1 span {
    color: #0066ff;
}

.services-header p {
    font-size: 1.1rem;
    color: #555;
    margin-top: 8px;
}

/* Container */
.services-container {
    width: 90%;
    max-width: 1250px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

/* Cards */
.service-card {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: 0.3s ease;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

/* Icon */
.service-card .icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

/* Titles */
.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #222;
}

/* Content */
.service-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    .services-header h1 {
        font-size: 2.4rem;
    }
}
