:root {
    --brand-color: #0E459A;
    --brand-color: #050a30;
    /* Brand color */

    --accent-blue: #1A73E8;
    --accent-blue: #050a30;
    /* Accent blue color */
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #F7F8FC;
}



.services-main-container {
    display: flex;
    padding: 50px;
    gap: 50px;
}

.services-text-section {
    display: flex;
    flex-direction: column;
    justify-content:center;
    padding-right: 40px;
}

.services-title {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 30px;
}

.services-subtitle {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 40px;
    color: #000;
    text-wrap: balance;
}

.services-footer-text {
    font-size: 32px;
    color: #000000;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}

.information p {
    color: #f0f0f0;
}
.services-image-container {
    flex: 1;
}

.services-image-holder {
    width: 100%;
    height: 400px;
    border-radius: 200px 0 200px 0;
    overflow: hidden;
}

.services-image-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-title {
        font-size: 38px;
    }

    .services-subtitle {
        font-size: 20px;
    }

    .services-footer-text {
        font-size: 28px;
    }

    .services-image-container {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .services-main-container {
        flex-direction: column;
        padding: 20px;
    }

    .container{
        background-color: white;
    }

    .services-text-section {
        padding-right: 0;
    }

    .services-title {
        font-size: 36px;
    }

    .services-subtitle {
        font-size: 20px;
    }

    .services-footer-text {
        font-size: 28px;
    }

    .services-image-container {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .services-title {
        font-size: 32px;
    }

    .services-subtitle {
        font-size: 18px;
    }

    .services-footer-text {
        font-size: 24px;
    }

    .services-image-container {
        padding: 15px;
    }
}

/* Reset default margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
}

.content-container {
    padding: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.description-container {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.line {
    width: 4px;
    background: linear-gradient(to bottom, #ff6600, #ffcc00);
    min-height: 100px;
}

.description-text {
    font-size: 18px;
    color: #000;
    line-height: 1.6;
    text-wrap: balance; 
}

.buttons-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.button {
    padding: 15px 30px;
    background-color: #f0f0f0;
    border: 2px solid #ff6600;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s;
    text-align: center;
    width: 100%;
}

.button:hover {
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (min-width: 769px) {
    .buttons-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .buttons-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .buttons-container {
        grid-template-columns: 1fr;
    }
    
    .button {
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* Our Services Section */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

.services-section {
    text-align: center;
    padding: 80px 0;
    background-color: #ffffff;
    min-height: 90vh;
}

.services-section h2 {
    font-size: 36px;
    font-weight: bold;
    color: #000;
}

.services-section h2 span {
    color: var(--accent-blue);
}

.services-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.service-box {
    width: 100%;
    border: 3.5px solid #000000;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    text-align: center;
    box-shadow: 0 4px 6px rgb(255, 253, 253);
    transition: transform 0.3s ease-in-out;
}

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

.service-image {
    position: relative;
}

.service-image img {
    width: 90%;
    height: auto;
    object-fit: contain;
    filter: brightness(50%);
}

.service-image .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 43, 43, 0.3);
}

.service-box h3 {
    font-size: 30px;
    font-weight: 600;
    color: #fff;
    position: absolute;
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
}

.read-more-btn {
    border: 2px solid white;
    padding: 12px 25px;
    color: white;
    background-color: transparent;
    border-radius: 25px;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background-color: #fff;
    color: #000;
    transition: 0.3s;
}

/* Responsive Design */

/* Medium screens (tablets) */
@media (max-width: 768px) {
    .services-section h2 {
        font-size: 28px;
    }

    .service-box {
        width: 250px;
    }

    .service-box h3 {
        font-size: 24px;
        top: 100px;
    }

    .service-image img {
        height: 250px;
    }

    .read-more-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Small screens (mobile devices) */
@media (max-width: 480px) {
    .services-section {
        padding: 60px 0;
    }

    .services-section h2 {
        font-size: 24px;
    }

    .services-container {
        gap: 20px;
    }

    .service-box {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .service-box h3 {
        font-size: 20px;
        top: 80px;
    }

    .service-image img {
        height: 200px;
    }

    .read-more-btn {
        padding: 8px 18px;
        font-size: 12px;
    }
}

.banner {
    background-color: #ffd700;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 50px 0;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: #ff6600;
    border-radius: 50%;
}

.marketing-features {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    text-wrap: balance;
    text-align: left;
    gap: 40px;
}

.feature {
    text-align: center;
    padding: 20px;
}

.feature .icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 2px solid #0E459A;
}

.feature .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature h3 {
    font-size: 24px;
    color: #000;
    margin-bottom: 15px;
    font-weight: bold;
}

.feature p {
    color: #666;
    line-height: 1.6;
    font-size: 16px;
    max-width: 350px;
    margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .marketing-features {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .feature .icon {
        width: 70px;
        height: 70px;
    }

    .feature h3 {
        font-size: 20px;
    }

    .feature p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .feature .icon {
        width: 60px;
        height: 60px;
    }

    .feature h3 {
        font-size: 18px;
    }
}

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

/* Centered Content Wrapper */
.centered-content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    /* Adjust as needed */
}

/* Main Container */
.container {
    max-width: 800px;
    width: 100%;
    text-align: center;
}

.section {
    margin: 40px 0;
}

.icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: #00356b;
}

.icon img {
    width: 30px;
    height: 30px;
}

h2 {
    font-size: 1.5em;
    color: #000;
    font-weight: bold;
    margin-bottom: 20px;
}

p {
    font-size: 1em;
    color: #ffffff;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    h2 {
        font-size: 1.3em;
    }

    p {
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .icon {
        width: 50px;
        height: 50px;
    }

    .icon img {
        width: 25px;
        height: 25px;
    }

    h2 {
        font-size: 1.1em;
    }

    p {
        font-size: 0.85em;
    }
}

/* Testimonials Section */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Add these styles for the updated services section */

.all-services-section {
    padding: 50px 20px;
    text-align: center;
}

.all-services-section h2 {
    font-size: 32px;
    font-weight: bold;
    color: #000;
    margin-bottom: 20px;
}

.services-description {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-cards-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 40px auto;
}

.service-card {
    width: 300px;
    height: 350px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    background-color: #fff;
    box-shadow: none;
    padding: 1px;
    background: linear-gradient(
        45deg,
        #0E459A,
        #6236FF,
        #FFD700,
        #0E459A
    );
    background-size: 200% 200%;
    animation: borderGradient 4s ease infinite;
}

/* Add gradient animation */
@keyframes borderGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Add inner container for content */
.service-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 14px;
    overflow: hidden;
}

/* Update hover effect */
.service-card:hover {
    transform: translateY(-10px);
    background-size: 150% 150%;
}

/* Move the overlay and content styles to inner container */
.service-card-inner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.service-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(14, 69, 154, 0.9),
        rgba(98, 54, 255, 0.9)
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.service-card:hover .service-card-inner::after {
    background-color: rgba(0, 0, 0, 0.4);
}

.service-card:hover .service-card-inner::before {
    opacity: 1;
}

/* Update image container */
.service-card-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card h3 {
    color: white;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    opacity: 1; /* Make title always visible */
    transform: translateY(0);
    transition: all 0.4s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); /* Add text shadow for better visibility */
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.service-card:hover h3 {
    opacity: 0; /* Hide the centered title on hover */
}

.service-card:hover .card-content h3 {
    opacity: 1;
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin-bottom: 15px;
}

/* Add a read more button */
.card-content .read-more {
    display: inline-block;
    padding: 10px 25px;
    background-color: transparent;
    border: 2px solid white;
    color: white;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.2s;
}

.service-card:hover .read-more {
    opacity: 1;
    transform: translateY(0);
}

.card-content .read-more:hover {
    background-color: white;
    color: #0E459A;
}

/* Update the section title styling */
.all-services-section h2 {
    font-size: 36px;
    font-weight: bold;
    color: var(--accent-blue);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.all-services-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 3px;
    background: linear-gradient(to right, #0E459A, #6236FF);
    border-radius: 2px;
}

/* Update the buttons styling */
.button {
    padding: 12px 25px;
    background-color: #f5f5f5;
    border: 2px solid #ff6600;
    border-radius: 25px;
    font-weight: bold;
    font-size: 16px;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.button:hover {
    background-color: #ff6600;
    color: white;
}

/* Add the All Services link */
.all-services-link {
    display: block;
    text-align: center;
    color: #0E459A;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    margin: 30px 0;
    position: relative;
}

.all-services-link::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -5px;
    width: 50px;
    height: 2px;
    background-color: #0E459A;
}

/* Update the banner styling */
.banner {
    background-color: #FFD700;
    padding: 20px;
    border-radius: 30px;
    margin: 40px auto;
    max-width: 800px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.banner span {
    color: #000;
    font-weight: bold;
    font-size: 18px;
    white-space: nowrap; /* Prevent text wrapping within spans */
}

.banner .dot {
    width: 8px;
    height: 8px;
    background-color: #ff6600;
    border-radius: 50%;
    flex-shrink: 0; /* Prevent dots from shrinking */
}

/* Responsive styles for the banner */
@media (max-width: 768px) {
    .banner {
        padding: 15px;
        margin: 30px 15px;
        gap: 15px;
        justify-content: center;
    }

    .banner span {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .banner {
        flex-direction: column;
        padding: 20px 15px;
        gap: 12px;
    }

    .banner span {
        font-size: 16px;
        text-align: center;
    }

    .banner .dot {
        display: none; /* Hide dots on very small screens */
    }

    /* Add decorative line between items */
    .banner span:not(:last-child)::after {
        content: '';
        display: block;
        width: 50px;
        height: 2px;
        background-color: #ff6600;
        margin: 8px auto 0;
    }
}

/* Update card content styles */
.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    text-align: center;
    transform: translateY(100%);
    transition: all 0.4s ease;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.service-card:hover .card-content {
    transform: translateY(0);
}

/* Update title styles */
.service-card h3 {
    color: white;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    opacity: 1;
    transition: all 0.4s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

/* Add description text */
.card-content p {
    color: white;
    font-size: 16px;
    line-height: 1.5;
    margin: 15px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s;
}

/* Update hover states */
.service-card:hover .card-content {
    top: 50%;
    transform: translateY(-50%);
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(14, 69, 154, 0.95),
        rgba(98, 54, 255, 0.95)
    );
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.service-card:hover h3 {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    margin-bottom: 15px;
}

.service-card:hover .card-content p {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover .read-more {
    opacity: 1;
    transform: translateY(0);
}

/* Update service card and title styles */
.service-card {
    /* Keep existing styles */
    position: relative;
}

/* Add a permanent title overlay */
.service-card .permanent-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    z-index: 2;
    width: 100%;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    transition: opacity 0.4s ease;
}

/* Update card content styles */
.card-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 30px;
    text-align: center;
    opacity: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease;
    background: linear-gradient(
        to bottom,
        rgba(14, 69, 154, 0.95),
        rgba(98, 54, 255, 0.95)
    );
    pointer-events: none;
}

/* Update hover states */
.service-card:hover .card-content {
    opacity: 1;
    pointer-events: auto;
}

.service-card:hover .permanent-title {
    opacity: 0;
}

/* Keep the rest of your hover effects */
.card-content h3,
.card-content p,
.card-content .read-more {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.service-card:hover .card-content h3,
.service-card:hover .card-content p,
.service-card:hover .card-content .read-more {
    opacity: 1;
    transform: translateY(0);
}

/* Adjust timing for smooth transitions */
.service-card:hover .card-content h3 { transition-delay: 0.1s; }
.service-card:hover .card-content p { transition-delay: 0.2s; }
.service-card:hover .card-content .read-more { transition-delay: 0.3s; }