/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding-top: 30px;
    background-color: #ffffff;
    color: #2c3e50;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    background-color: #2b69ab !important;
}

.navbar-brand {
    padding: 0;
    margin-right: 2rem;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #ffffff;
    position: relative;
    display: inline-block;
}

.logo-highlight {
    color: #63b3ed;
    position: relative;
}

.logo-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #63b3ed;
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.logo-text:hover .logo-highlight::after {
    transform: scaleX(1);
    transform-origin: left;
}

.navbar-brand,
.nav-link {
    color: #ffffff !important;
}

.nav-link:hover {
    color: #63b3ed !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #ffffff 0%, #ebf8ff 100%);
    padding: 30px 0;
    min-height: calc(60vh - 76px);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%231a365d' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
    animation: patternMove 20s linear infinite;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    color: #1a365d;
    margin-bottom: 20px;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.hero-section p {
    color: #4a5568;
    margin-bottom: 30px;
    font-size: 1.25rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.3s forwards;
}

.hero-buttons {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.6s forwards;
}

.hero-image-wrapper {
    flex: 1 1 45%;
    text-align: center;
}

.hero-image {
    max-width: 120%;
    height: 600px;
    border: none;
    padding: 0;
    background: none;
    box-shadow: none;
    display: block;
}

/* Buttons */
.btn {
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: width 0.3s ease;
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn-primary {
    background: linear-gradient(45deg, #1a365d, #2c5282);
    border: none;
    box-shadow: 0 4px 15px rgba(26, 54, 93, 0.2);
}

.btn-success {
    background: linear-gradient(45deg, #2c5282, #2b6cb0);
    border: none;
    box-shadow: 0 4px 15px rgba(44, 82, 130, 0.2);
}

.btn-outline-primary {
    color: #1a365d;
    border-color: #1a365d;
}

.btn-outline-primary:hover {
    background-color: #1a365d;
    color: #ffffff;
}

/* Modal Styles */
.modal-content {
    background-color: #ffffff;
    border-radius: 15px;
    border: none;
    color: #2c3e50;
}

.modal-header {
    background-color: #1a365d;
    border-radius: 15px 15px 0 0;
    border-bottom: none;
}

.modal-title {
    color: #ffffff;
    font-weight: 600;
}

.btn-close {
    filter: brightness(0) invert(1);
}

/* Form Styles */
.form-control {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    color: #2c3e50;
    border-radius: 8px;
    padding: 12px;
}

.form-control:focus {
    background-color: #ffffff;
    border-color: #1a365d;
    color: #2c3e50;
    box-shadow: 0 0 0 0.2rem rgba(26, 54, 93, 0.25);
}

.form-label {
    color: #4a5568;
}

/* Services Section */
.services-section {
    background-color: #ffffff;
}

.service-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border: 1px solid #e2e8f0;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    color: #1a365d;
}

.feature-item span {
    color: #2c3e50;
}

.feature-item p {
    color: #4a5568;
}

/* Benefits Section */
.benefit-item {
    background: #ffffff;
    color: #2c3e50;
    border: 1px solid #e2e8f0;
}

.benefit-item h4 {
    color: #1a365d;
}

.benefit-item p {
    color: #4a5568;
}

/* Pricing Section */
.pricing-section {
    background-color: #f7fafc;
}

.pricing-card {
    background: #ffffff;
    color: #2c3e50;
    border: 1px solid #e2e8f0;
}

.pricing-card .card-title {
    color: #1a365d;
}

.pricing-card ul li {
    color: #4a5568;
}

.price-tag {
    color: #1a365d;
}

/* Contact Info */
.contact-info p {
    color: #4a5568;
}

.contact-info i {
    color: #1a365d;
}

/* Footer */
footer {
    background-color: #1a365d;
}

footer h5 {
    color: #ffffff;
}

footer p,
footer a {
    color: #e2e8f0;
}

footer a:hover {
    color: #63b3ed !important;
}

/* Select Styles */
.form-select {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    color: #2c3e50;
}

.form-select:focus {
    background-color: #ffffff;
    border-color: #1a365d;
    color: #2c3e50;
}

/* Popular Tag */
.popular-tag {
    background-color: #1a365d;
    color: #ffffff;
}

/* Service Icons */
.service-icon {
    background: linear-gradient(135deg, #1a365d, #2c5282);
}

/* Animations */
@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 patternMove {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 100px 100px;
    }
}

/* Floating Elements */
.floating-element {
    position: absolute;
    background: rgba(26, 54, 93, 0.05);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }

    100% {
        transform: translateY(0) rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
        padding: 20px 0;
        min-height: calc(50vh - 76px);
    }

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

    .hero-section p {
        font-size: 1.1rem;
    }

    .hero-section .btn {
        width: 100%;
        margin-bottom: 10px;
    }

    .hero-image {
        margin-top: 30px;
    }

    .floating-element {
        display: none;
    }
}

.client-logos-section {
    background-color: #f7fafc;
    padding: 40px 0;
    overflow: hidden;
}

.logos-wrapper {
    display: flex;
    animation: scrollLeft 25s linear infinite;
    gap: 60px;
    align-items: center;
}

.logos-track {
    display: flex;
    width: fit-content;
}

.logo-item {
    flex: 0 0 auto;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: transform 0.3s, opacity 0.3s;
}

.logo-item:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.logo-item img {
    max-height: 60px;
    max-width: 120px;
    object-fit: contain;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.contact-section {
    background-color: #ffffff;
    padding: 40px 20px;
}

.contact-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: flex-start;
}

.contact-form {
    flex: 1 1 480px;
    background: linear-gradient(145deg, #e6eef5, #ffffff);
    padding: 25px;
    border-radius: 16px;
    box-shadow: 10px 10px 15px #d2dbe3, -6px -6px 15px #ffffff;
}

.contact-form h2 {
    margin-bottom: 20px;
    font-size: 22px;
    color: #1a202c;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    border: none;
    border-radius: 8px;
    font-size: 0.95em;
    background-color: #f8f9fa;
    box-shadow: inset 2px 2px 5px #d4d9de, inset -2px -2px 5px #ffffff;
    outline: none;
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form label {
    font-size: 0.9em;
    color: #444;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.contact-form input[type="checkbox"] {
    margin-top: 4px;
}

.contact-form button {
    background-color: #1a73e8;
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 0.95em;
    cursor: pointer;
    width: fit-content;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #155cc4;
}

.contact-info {
    flex: 1 1 480px;
    padding: 10px;
}

.contact-info h2 {
    margin-bottom: 15px;
    font-size: 22px;
    color: #1a202c;
}

.map-container iframe {
    width: 100%;
    height: 180px;
    border: 0;
    border-radius: 10px;
    margin-bottom: 10px;
}

.contact-details p {
    margin: 8px 0;
    font-size: 0.95em;
    color: #444;
}

.contact-details strong {
    display: block;
    color: #000;
}

.founders {
    display: flex;
    gap: 16px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.founder {
    display: flex;
    align-items: center;
    gap: 10px;
}

.founder img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #ccc;
}

.founder-info {
    font-size: 0.9em;
    color: #333;
}

.founder-info strong {
    display: block;
    font-size: 1em;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    margin-right: 12px;
    font-size: 1.2em;
    color: #1a202c;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #1a73e8;
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }

    .founders {
        flex-direction: column;
    }

    .contact-form button {
        width: 100%;
        text-align: center;
    }
}

.footer {
    background-color: #1a202c;
    color: #ffffff;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    gap: 30px;
}

.footer-column {
    flex: 1 1 220px;
    min-width: 220px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #f7fafc;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: #e2e8f0;
    text-decoration: none;
}

.footer-column ul li a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.logo,
.msme-logo {
    width: 100px;
    margin-bottom: 10px;
}

.footer-about {
    font-size: 14px;
    color: #cbd5e0;
    max-width: 300px;
}

.footer-column p {
    font-size: 14px;
    color: #cbd5e0;
    margin: 6px 0;
}

.footer-column a {
    color: #cbd5e0;
}

.footer-column a:hover {
    color: #ffffff;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-icon {
    width: 16px;
    height: 16px;
    fill: #ffffff;
    transition: transform 0.2s ease, fill 0.2s ease;
}

.social-icons a:hover .social-icon {
    transform: scale(1.2);
    fill: #63b3ed;
    /* soft blue highlight */
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    margin-top: 30px;
    text-align: center;
    padding-top: 15px;
    font-size: 14px;
    color: #a0aec0;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-column {
        width: 100%;
    }

    .social-icons {
        justify-content: flex-start;
    }
}

.navbar {
    background-color: #2b69ab !important;
}

.logo-text {
    font-weight: bold;
    color: #ffffff;
    font-size: 1.5rem;
}

.logo-highlight {
    color: #ffdd57;
}

.nav-link {
    color: #ffffff !important;
    margin-right: 15px;
}

.nav-link:hover {
    color: #ffdd57 !important;
}

.book-btn {
    background-color: #ffffff;
    color: #2b69ab;
    border-radius: 15px;
    padding: 8px 16px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s ease;
}

.book-btn:hover {
    background-color: #f1f1f1;
    color: #2b69ab;
}

.testimonials-section {
    background-color: #ffffff;
    padding: 60px 20px;
    text-align: center;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-heading {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #333;
}

.testimonials-subtext {
    color: #666;
    font-size: 1.1em;
    margin-bottom: 50px;
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.testimonial-card {
    background-color: #f9f9f9;
    border-radius: 12px;
    padding: 25px;
    flex: 1 1 300px;
    max-width: 360px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.testimonial-card p {
    font-size: 1.05em;
    color: #444;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-card h4 {
    font-size: 1em;
    color: #000;
    font-weight: 600;
}

@media (max-width: 768px) {
    .testimonial-card {
        flex: 1 1 100%;
    }
}