﻿:root {
    --primary-color: #007bff; /*Blue color--*/
    --secondary-color: #6c757d;
    --accent-color: #ff6b35;  /*OrangeColor*/
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Reset */
a {
    text-decoration: none;
    color: inherit;
}


.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

    .whatsapp-float:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    }

    .whatsapp-float i {
        color: white;
        font-size: 28px;
    }

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8);
    }

    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}
@media (max-width: 768px) {
   
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }

        .whatsapp-float i {
            font-size: 24px;
        }
}






/* Header styles */
.header {
    padding: 15px 0;
    position: relative;
    z-index: 999;
    box-shadow: 0 2px 2px rgba(0,0,0,0.1);
    /*background: linear-gradient(135deg, #d9e6f2 0%, #e8f1fd 100%);*/
}

.nav-style {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #007BFF;
}

/* Desktop nav */
.nav-menu {
    display: flex;
    gap: 20px;
    list-style: none;
}

.nav-item {
    position: relative;
    color: #007bff;
}
.nav-item:hover {
    color:midnightblue;
}


.nav-link {
    position: relative;
    padding: 10px 15px;
    font-weight: 500;
}

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        height: 2px;
        width: 0;
        background-color: #007BFF;
        transition: width 0.4s ease;
    }

    .nav-link:hover::after {
        width: 100%;
    }

/* Dropdown */
.dropdown-menu {
    display: none;
    position: absolute;
    background: #fff;
    top: 40px;
    left: 0;
    min-width: 200px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border-radius: 4px;
    z-index: 1000;
    flex-direction: column;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-item {
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
}

    .dropdown-item:hover {
        background-color: #f0f0f0;
        color: #007BFF;
    }

/* Buttons */
.action-buttons .btn {
    padding: 8px 15px;
    margin-left: 10px;
    border-radius: 4px;
    font-weight: bold;
    border: none;
    transition: background 0.3s ease;
    color: white;
}

.btn-call {
    background-color: rgba(0,0,0,0.1);
}

    .btn-call:hover {
        background-color: #92c1f0;
    }

.btn-login {
    background-color: #007bff;
}

    .btn-login:hover {
        background-color: #0056b3;
    }




/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

    .mobile-toggle span {
        width: 25px;
        height: 3px;
        background-color: #333;
    }

/* Mobile menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    height: 100%;
    width: 80%;
    background-color: #fff;
    z-index: 1000;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease;
}

    .mobile-menu.active {
        left: 0;
    }

.mobile-menu-content {
    padding: 20px;
    height: 100%;
    overflow-y: auto;
}

.mobile-close {
    font-size: 28px;
    font-weight: bold;
    text-align: right;
    cursor: pointer;
    margin-bottom: 20px;
}

/* Mobile nav */
.mobile-nav-link {
    display: block;
    padding: 10px 0;
    font-weight: 500;
    color: #333;
}

.mobile-dropdown {
    margin-bottom: 10px;
}

.mobile-dropdown-menu {
    padding-left: 15px;
    display: none;
}

.mobile-dropdown-toggle::after {
    content: " ▼";
    font-size: 12px;
}

.mobile-dropdown.open .mobile-dropdown-menu {
    display: block;
}

.mobile-dropdown-item {
    display: block;
    padding: 6px 0;
    color: #666;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .nav-menu,
    .action-buttons {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }
}



/*background: #f9fafb;*/
/*-------------------Body------------------------------*/
.hero-section {
    background: linear-gradient(135deg, #a2c8f6 0%, white 30%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.1)" points="0,0 1000,300 1000,1000 0,700"/></svg>');
        z-index: 1;
    }

.hero-content {
    color:bisque;
    position: relative;
    z-index: 2;
    color: black;
    margin-top:8px;
}

.hero-title {
    color: #007bff;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
}

.hero-subtitle {
    color: #007bff;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.7s forwards;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.9s forwards;
    color: black;
}

.btn-primary-custom {
    background: var(--accent-color);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInUp 1s ease 1.1s forwards;
}

    .btn-primary-custom:hover {
        background: #e55a2b;
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    }

.hero-image {
    position: relative;
    opacity: 0;
    animation: fadeInRight 1s ease 1.3s forwards;
}

    .hero-image img {
        width: 100%;
        max-width:500px;
        margin-left:85px;
        border-radius: 20px;
    }

.floating-element {
    position: absolute;
    animation: float 6s ease-in-out infinite;
}

    .floating-element:nth-child(1) {
        top: 20%;
        left: 10%;
        animation-delay: 0s;
    }

    .floating-element:nth-child(2) {
        top: 60%;
        right: 10%;
        animation-delay: 2s;
    }

    .floating-element:nth-child(3) {
        bottom: 20%;
        left: 5%;
        animation-delay: 4s;
    }






/*-------Youtube section--------*/
.youtube-section {
    /*background: linear-gradient(45deg, #d9e6f2 135%, #ffe6b3 25%);*/
    /*background: #f9fafb;*/
    
}

.video-frame {
    position: relative;
    animation: fadeInUp 1s ease 0.5s forwards;
}

    .video-frame video {
        border: 3px solid #fff;
        border-radius: 12px;
    }

/* Sticker Icons */
.sticker-icon {
    position: absolute;
    font-size: 2rem;
    color: #dc3545;
    background: #fff;
    padding: 6px 10px;
    border-radius: 30px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.top-icon {
    top: -15px;
    left: 10%;
    transform: translateX(-50%);
}

.bottom-icon {
    bottom: -5px;
    left: 90%;
    transform: translateX(-50%);
}

@media (max-width: 767.98px) {
    .youtube-section h1 {
        font-size: 1.7rem;
    }

    .youtube-section p {
        font-size: 1rem;
    }

    .sticker-icon {
        font-size: 1.5rem;
    }
}






.scrolling-services {
    /*background: linear-gradient(1deg, #d9e6f2 0%, #ffe6b3 300%);*/
    overflow: hidden;
    padding: 15px 0;
    position: relative;
}

.scroll-wrapper {
    display: flex;
    white-space: nowrap;
}

.scroll-content {
    display: flex;
    animation: scroll-left 25s linear infinite;
}

.scroll-items {
    display: flex;
}

.service-item {
    display: inline-block;
    margin-right: 50px;
    font-weight: 600;
    font-size: 1.2rem;
    font-family: 'Segoe UI', sans-serif;
    color: #f71f1f;
}

    .service-item i {
        margin-right: 8px;
        color: #007bff;
        animation: pulse 2s infinite;
    }

/* Scroll animation */
@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Icon animation */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-item {
        font-size: 1rem;
        margin-right: 30px;
    }
}





/* About Page Styling */
.h-section-about {
    background: var(--bg-light);
}

.about-intro, .about-youtube, .about-mission, .why-choose-us, .about-services, .faq-section {
    padding: 60px 0;
}

    .about-intro h1,
    .about-youtube h2,
    .about-mission h2,
    .why-choose-us h2,
    .about-services h2,
    .faq-section h2 {
        font-weight: 700;
        color: #1a1a1a;
    }

    .about-intro p,
    .about-youtube p,
    .about-mission p,
    .why-choose-us li,
    .about-services p {
        font-size: 1.05rem;
        line-height: 1.6;
        color: #444;
    }

    .about-intro img,
    .about-youtube img {
        max-width: 100%;
        height: auto;
        border-radius: 12px;
        box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    }

    .why-choose-us ul {
        list-style: none;
        padding-left: 0;
    }

    .why-choose-us li {
        padding: 10px 0;
        position: relative;
        padding-left: 24px;
    }

        .why-choose-us li::before {
            content: "✓";
            color: green;
            font-weight: bold;
            position: absolute;
            left: 0;
            top: 10px;
        }

    .about-services i {
        color: #007bff;
    }

    .about-services h5 {
        font-weight: 600;
        margin-top: 10px;
        color: #222;
    }

.accordion-button {
    font-weight: 600;
}

    .accordion-button:focus {
        box-shadow: none;
        border-color: #007bff;
    }

.accordion-item {
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.accordion-body {
    background-color: #f9f9f9;
}

.scroll-skill-tools {
    background: #f9fafb;
}
/*-----Digidisha Software solution section-------*/
.company-showcase {
    /* background: linear-gradient(135deg, #ffe6b3 0%, #d9e6f2 15%);*/ /* Light section background */
    /*background: #f9fafb;*/
}

    .company-showcase .tagline {
        font-size: 18px;
        letter-spacing: 1px;
    }

    .company-showcase h1 {
        font-size: 30px;
        color: #222;
    }

    .company-showcase h3 {
        font-size: 20px;
        color: #555;
    }

    .company-showcase p {
        font-size: 16px;
        color: #444;
        line-height: 1.6;
    }

    .company-showcase .btn {
        font-weight: 600;
        border-radius: 6px;
        transition: all 0.3s ease;
        animation: fadeInUp 2s ease 0.5s forwards;
    }

    .company-showcase .btn-primary:hover {
        background-color: #0056b3;
    }

    .company-showcase .btn-outline-secondary:hover {
        background-color: #eaeaea;
        color: #000;
    }

@media (max-width: 767.98px) {
    .company-showcase h1 {
        font-size: 22px;
    }

    .company-showcase h3 {
        font-size: 18px;
    }

    .company-showcase p {
        font-size: 15px;
    }

    .company-showcase .btn {
        width: 100%;
        text-align: center;
    }

    .company-showcase .d-flex {
        flex-direction: column;
        gap: 10px;
    }
}







/*background: #f9fafb;*/
.services-section {
    padding: 100px 0;
    /*background: linear-gradient(165deg, #f9fafb 0%, #ffe6b3 300%);*/
    /*background: var(--bg-light);*/
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    }

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-description {
    color: var(--text-light);
    line-height: 1.8;
}








/*-------About Section-------*/
.about-section {
    padding: 100px 0;
    /*background: linear-gradient(45deg, #d9e6f2 135%, #ffe6b3 25%);*/
    background:#fff;
}

    .skill-item {
        background: var(--bg-light);
        border-radius: 10px;
        padding: 1rem;
        margin-bottom: 1rem;
        transition: all 0.3s ease;
    }

        .skill-item:hover {
            background: var(--primary-color);
            color: white;
            transform: translateX(10px);
        }


.lead{
    color:black;
}



/*--------GetIn Touch--------*/

.contact-section {
    padding: 100px 0;
    /*background: linear-gradient(135deg, #ffe6b3 0%, #d9e6f2 30%);*/
    background: var(--bg-light);
}

    .contact-form {
        background: #fff;
        backdrop-filter: blur(10px);
        border-radius: 15px;
        padding: 2rem;
    }

    .form-control {
        background: #d9e6f2;
        border: 1px solid rgba(255, 255, 255, 0.2);
        color:black;
        border-radius: 10px;
    }

        .form-control:focus {
            background: rgba(255, 255, 255, 0.2);
            border-color: var(--accent-color);
            box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
            color: black;
        }

        .form-control::placeholder {
            color: #007bff;
        }



.d-social-icon {
    display: inline-block;
    width: 45px;
    height: 45px;
    background-color: #ffffff;
    border:1px solid #007bff;
    color: white;
    text-align: center;
    line-height: 45px;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}
    .d-social-icon:hover {
        background-color: #b3d7ff;
        color: #ffffff;
        transform: scale(1.1);
    }

    .social-links a {
        color: chocolate;
        font-size: 1.5rem;
        margin: 0 10px;
        transition: all 0.3s ease;
    }

        .social-links a:hover {
            color: var(--accent-color);
            transform: translateY(-3px);
        }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeInRight {
        from {
            opacity: 0;
            transform: translateX(30px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes float {
        0%, 100% {
            transform: translateY(0px);
        }

        50% {
            transform: translateY(-20px);
        }
    }

    .typing-effect {
        border-right: 3px solid;
        animation: blink 1s infinite;
        color: #ff6600;
    }

    @keyframes blink {
        0%, 50% {
            border-color: transparent;
        }

        51%, 100% {
            border-color: white;
        }
    }

    /* Mobile Responsive Styles */
    @media (max-width: 575px) {
        .hero-title {
            font-size: 2rem;
        }

        .hero-subtitle {
            font-size: 1.1rem;
        }

        .hero-description {
            font-size: 0.95rem;
        }

        .section-title {
            font-size: 1.8rem;
        }

        .service-title {
            font-size: 1.2rem;
        }

        .service-description {
            font-size: 0.9rem;
        }

        .hero-image {
            margin-top: 2rem;
        }

            .hero-image div {
                width: 280px !important;
                height: 280px !important;
            }

            .hero-image i {
                font-size: 5rem !important;
            }

        .contact-section p {
            font-size: 0.95rem !important;
        }

        .about-section p {
            font-size: 0.95rem !important;
        }

        .services-section {
            padding: 60px 0;
        }

        .about-section {
            padding: 60px 0;
        }

        .contact-section {
            padding: 60px 0;
        }
    }

    /* Tablet Responsive Styles */
    @media (min-width: 576px) and (max-width: 768px) {
        .hero-title {
            font-size: 2.5rem;
        }

        .hero-subtitle {
            font-size: 1.3rem;
        }

        .hero-description {
            font-size: 1rem;
        }

        .section-title {
            font-size: 2.2rem;
        }

        .service-title {
            font-size: 1.3rem;
        }

        .hero-image div {
            width: 350px !important;
            height: 350px !important;
        }

        .hero-image i {
            font-size: 6rem !important;
        }
    }

    /* Large Tablet / Small Desktop */
    @media (min-width: 769px) and (max-width: 991px) {
        .hero-title {
            font-size: 3rem;
        }

        .hero-subtitle {
            font-size: 1.4rem;
        }

        .section-title {
            font-size: 2.3rem;
        }

        .hero-image div {
            width: 380px !important;
            height: 380px !important;
        }

        .hero-image i {
            font-size: 7rem !important;
        }
    }

    /* Desktop */
    @media (min-width: 992px) {
        .hero-title {
            font-size: 3.5rem;
        }

        .hero-subtitle {
            font-size: 1.5rem;
        }

        .section-title {
            font-size: 2.5rem;
        }
    }



/*-----------Project section style------------*/
.Project-section {
    /*background: linear-gradient(1deg, #d9e6f2 0%, #ffe6b3 300%);*/
    /*background: linear-gradient(165deg, #f9fafb 0%, #ffe6b3 300%);*/
}

    .project-card {
        position: relative;
        overflow: hidden;
        border-radius: 10px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }

        .project-card img {
            width: 100%;
            height: 260px;
            object-fit: cover;
        }

.project-title {
    padding: 15px;
    font-size: 1.2rem;
    color: #ff6b35;
    font-weight: 600;
    text-align: center;
    background-color:floralwhite;
}

    .view-more {
        position: absolute;
        bottom: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.7);
        color: #fff;
        text-align: center;
        padding: 10px 0;
        opacity: 0;
        transform: translateY(100%);
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .project-card:hover .view-more {
        opacity: 1;
        transform: translateY(0);
    }

    .project-card:hover {
        transform: translateY(-5px);
    }


    .section-title {
        font-size: 2rem;
        font-weight: 700;
        position: relative;
        display: inline-block;
        padding-bottom: 10px;
        margin-bottom: 20px;
        color: #333;
    }

        .section-title::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background-color: #007bff;
            border-radius: 5px;
        }







/* Footer */
.digi-footer {
    /*background: linear-gradient(135deg, #85a3e0, var(--primary-color));*/
    background-color: #397cb6;
    padding: 50px 0 20px;
    margin-top: auto; /* This helps prevent overlap */
}

.digi-footer-section {
    margin-bottom: 30px;
}

.digi-footer-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: white;
}

.digi-footer-section{
    color:white;
}

.digi-footer-links {
    list-style: none;
    padding: 0;
}

    .digi-footer-links li {
        margin-bottom: 10px;
    }
.digi-footer-links li a{
  color:white;
}

.digi-footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

        .digi-footer-links a:hover {
            color:antiquewhite;
        }

.digi-social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.digi-social-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color:antiquewhite;
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}



.digi-social-icon:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    color: white;
}

.digi-footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    margin-top: 30px;
    text-align: center;
    color:ghostwhite;
}

/* Additional fixes for .NET Layout overlap issues */
.digi-footer {
    position: relative;
    z-index: 1;
    clear: both;
}

/* Responsive Design */
@media (max-width: 768px) {
    .digi-footer {
        padding: 30px 0 15px;
    }

    .digi-footer-section {
        margin-bottom: 20px;
    }

    .digi-social-icons {
        justify-content: center;
        flex-wrap: wrap;
    }
}




/*---------------Project Section---------------*/
.project-hero-section {
    background: linear-gradient(135deg, #d8e6f3, #5190c8);
    color: white;
    padding: 40px 0;
    text-align: center;
}

  
.projects-showcase {
    padding: 30px 0;
    background: var(--bg-light);
}


.portfolio-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    height: 100%;
    animation: fadeInUp 2s ease 0.5s forwards;
}

    .portfolio-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }

    .portfolio-item img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .portfolio-item:hover img {
        transform: scale(1.05);
    }

.portfolio-content {
    padding: 2rem;
}

.portfolio-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.portfolio-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.tech-tag {
    background: var(--primary-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.project-links {
    display: flex;
    gap: 1rem;
}

.project-link {
    background: var(--accent-color);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

    .project-link:hover {
        background: #d97706;
        color: white;
        transform: translateY(-2px);
    }

.services-overview {
    padding: 30px 0;
    background: var(--bg-light);
}

.service-card {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: var(--bg-light);
    height: 100%;
    transition: all 0.3s ease;
}

    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    }

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.cta-section {
    background: var(--bg-light);
    padding: 20px 0;
    text-align: center;
}

.cta-button {
    background: var(--accent-color);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

    .cta-button:hover {
        background: #d97706;
        color: white;
        transform: translateY(-2px);
    }







.blog-content {
    padding: 1rem;
}

.blog-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.blog-snippet {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.read-more {
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
}

    .read-more:hover {
        text-decoration: underline;
    }








.published-on-section {
    background: #f9fafb;
}

.external-platform {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    background: white;
    border-radius: 10px;
    padding: 1.2rem;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    height: 100%;
}

    .external-platform i {
        font-size: 2.5rem;
        margin-bottom: 0.6rem;
        color: var(--accent-color);
    }

    .external-platform span {
        font-size: 1rem;
        font-weight: 600;
        color: var(--text-dark);
    }

    .external-platform:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }








    
