* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    color: #333;
    padding-top: 60px;
    /* Adjust based on your header height */

}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #fff;
    padding: 10px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}


.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    /* background: gradient(to right, #000000, #434343); */
    color: white;
    position: relative;
    z-index: 1000;
}

.logo img {
    height: 60px;
    width: 100px;

}

.nav__list {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav__item a {
    color: #000;
    padding: 10px 15px;
    text-decoration: none;
    font-weight: bold;
}

.nav__submenu {
    display: none;
    position: absolute;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 10px;
}

ul.nav__submenu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav__subitem {
    margin: 5px 0;
}

.nav__sublink {
    color: #333;
    text-decoration: none;
    padding: 5px 10px;
    display: block;
}

.nav__sublink:hover {
    background-color: #151515;
    border-radius: 5px;
}

.nav__item:hover>a {
    color: #232ca7;
}

.nav__item:hover .nav__submenu {
    display: block;
}


.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* Hero area section  */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    background: linear-gradient(to right, #ffffff, #f9c67a);
    color: rgb(4, 4, 4);
    position: relative;
    z-index: 1;

}

.left-content {
    flex: 1;
    margin: 0 40px;
}

.left-content h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.left-content h2 {
    color: #e96c00;
    font-size: 22px;
    margin-bottom: 20px;
}

.offer-list {
    list-style: "📘 ";
    margin-left: 1rem;
    line-height: 2;
}

.contact-buttons {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.btn {
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 5px;
    margin-right: 10px;
    display: inline-block;
    color: #fff;
    font-weight: 600;
}

.call-btn {
    background: linear-gradient(to right, #5c5c5c, #767676);
}

.whatsapp-btn {
    background: linear-gradient(to right, #5c5c5c, #009688);
}

.mail-btn {
    background: linear-gradient(to right, #5c5c5c, #d84315);
}

.right-form {
    flex: 1;
    max-width: 400px;
    background: #f8f8f8;
    padding: 1.5rem;
    border-radius: 10px;

}

.right-form h3 {
    margin-bottom: 1rem;
}

.right-form input,
.right-form select,
.right-form button {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    font-size: 16px;
}

.right-form button {
    background-color: #f57c00;
    border: none;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
}

.floating-buttons {
    position: fixed;
    right: 0;
    top: 40%;
    display: flex;
    flex-direction: column;
    z-index: 999;
}

.float-btn {
    padding: 10px;
    text-align: center;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 2rem;
    line-height: 20px;
}

.float-btn i {
    font-size: 2.5rem;
}

.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: white;
}

.hamburger.active {
    color: #000;
}


.about {
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
}

.section-title {
    text-align: center;
    font-size: 24px;
    color: red;
    margin-bottom: 40px;
    position: relative;
}

.section-title::before,
.section-title::after {
    content: "➤";
    color: red;
    margin: 0 10px;
}

/* Top Section */
.top-section {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    justify-content: center;
}
.image-box img {
    max-width: 100%;
    border-radius: 10px;
}

.content-box {
    flex: 1;
    min-width: 300px;
}

.content-box h3 {
    color: red;
    font-size: 18px;
    margin-bottom: 5px;
}

.content-box h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.service-list {
    columns: 2;
    margin-top: 15px;
    padding-left: 20px;
}

.service-list li {
    margin-bottom: 10px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.service-card {
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 10px;
    background-color: #f9f9f9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.service-card h4 {
    color: #c62828;
    margin-bottom: 10px;
    font-size: 18px;
}

/* Animations */
@keyframes slideInLeft {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(50px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.animate-left {
    animation: slideInLeft 1s ease-out forwards;
}

.animate-right {
    animation: slideInRight 1s ease-out forwards;
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

.delay-5 {
    animation-delay: 1s;
}

body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #f4f7fc;
    color: #333;
}

.pricing-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.pricing-title {
    font-size: 24px;
    color: #1e2b56;
    margin-bottom: 40px;
    line-height: 1.4;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.cards {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    text-align: left;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards;
}

.card-header {
    background: #007bff;
    color: white;
    padding: 8px 16px;
    font-weight: bold;
    font-size: 16px;
    display: inline-block;
    border-radius: 6px;
    margin-bottom: 12px;
}

h6 {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    align-items: center;
    text-align: center;
}

.basic {
    background: #1e88e5;
}

.startup {
    background: #0288d1;
}

.pro {
    background: #5e35b1;
}

.elite {
    background: #d81b60;
}

.corporate {
    background: #43a047;
}

.business {
    background: #f4511e;
}

.price {
    font-size: 18px;
    margin-bottom: 5px;
}

.price del {
    color: #999;
    margin-right: 8px;
}

.price strong {
    color: #d32f2f;
}

.subtitle {
    font-size: 14px;
    margin-bottom: 15px;
    color: #666;
}

.features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.features li {
    padding: 6px 0;
    position: relative;
    padding-left: 20px;
}

.features li::before {
    content: "✔";
    color: #2e7d32;
    position: absolute;
    left: 0;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn:hover {
    background: #0056b3;
}

/* Animation */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation-delay: 0.3s;
}

.delay-1 {
    animation-delay: 0.5s;
}

.delay-2 {
    animation-delay: 0.7s;
}

.delay-3 {
    animation-delay: 0.9s;
}

.delay-4 {
    animation-delay: 1.1s;
}

.delay-5 {
    animation-delay: 1.3s;
}

/* Filter Button Styles */
.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    justify-content: center;
}

.filter-btn {
    padding: 8px 16px;
    border: none;
    background-color: #e0e0e0;
    color: #333;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: #007bff;
    color: #fff;
}

/* Grid Layout */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* Card Styles */
.card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeIn 0.5s ease;
}

.card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.5s ease;
    animation-fill-mode: forwards;
    animation-delay: 0.2s;

}

.card:hover img {
    transform: scale(1.05);

}

/* Hide Class */
.hide {
    display: none;
}

/* Fade Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.98);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* blog cards  */

.blog-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 20px auto;
    padding: 20px;
}

.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}

.blog-content {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-source {
    font-size: 13px;
    color: #777;
    margin-bottom: 6px;
}

.blog-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #222;
}

.blog-actions {
    display: flex;
    gap: 10px;
    font-size: 13px;
    color: #777;
}

.blog-actions i {
    margin-right: 4px;
}

.blog-actions span {
    cursor: pointer;
    user-select: none;
    transition: color 0.3s;
}

.blog-actions span:hover {
    color: #333;
}

/* footer section  */

/* Footer Styles */
footer {
    background: #181818;
    color: #ccc;
    font-family: 'Roboto', Arial, sans-serif;
}

.footer-contents {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    padding: 40px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-contents>div {
    min-width: 220px;
}

.footer-contents img {
    width: 150px;
    margin-bottom: 15px;
}

.footer-contents h4 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 18px;
}

.footer-contents ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contents ul li {
    margin-bottom: 8px;
}

.footer-contents ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contents ul li a:hover {
    color: #e91e63;
}

.footer-contents form input,
.footer-contents form textarea {
    width: 100%;
    margin-bottom: 8px;
    padding: 7px;
    border: none;
    border-radius: 3px;
    font-size: 15px;
    background: #222;
    color: #fff;
}

.footer-contents form textarea {
    resize: vertical;
    min-height: 60px;
}

.footer-contents form button {
    width: 100%;
    background: #e91e63;
    color: #fff;
    border: none;
    padding: 8px 0;
    border-radius: 3px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.2s;
}

.footer-contents form button:hover {
    background: #c2185b;
}

.footer-bottom {
    text-align: center;
    padding: 10px 0;
    background: #222;
    color: #fff;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 900px) {
    .footer-contents {
        flex-direction: column;
        gap: 30px;
        padding: 30px 10px;
    }

    .footer-contents>div {
        min-width: 0;
    }
}

/* Responsive */
@media (max-width: 768px) {}


/* Responsive Styles */
@media (max-width: 768px) {
    .nav__list {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background-color: #c4c3c3;
        width: 100%;
        padding: 10px 0;
    }

    .nav__list.active {
        display: flex;
    }

    .hamburger {
        display: block;
        color: #000;
    }

    .hero {
        flex-direction: column;
    }

    .left-content,
    .right-form {
        width: 100%;
        margin-bottom: 20px;

    }

    .left-content h1 {
        font-size: 28px;
    }

    .portfolio-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        padding: 30px;

    }

    .card img {
        height: 240px;
        object-fit: cover;

    }

    .card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        animation: fadeIn 0.5s ease;
    }

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
        animation: fadeIn 0.5s ease;
        animation-fill-mode: forwards;
        animation-delay: 0.2s;
    }

    .card:hover img {
        transform: scale(1.05);
    }

    .footer-contents {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    #callbackForm {
        width: 100%;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-links ul {
        padding: 0;
        text-align: center;
    }
}