/* General Body Styling */
body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #0d6efd 30%, #7ab8f7); /* Soft blue gradient for the whole page */
    color: #333;
    margin: 0;
    height: 100vh; /* Ensures the gradient covers the full height */
    display: flex;
    flex-direction: column;
}

/* Navbar Styling */
.custom-navbar {
    background-color: #ffffff; /* White navbar */
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-bottom: 2px solid #e1e1e1;
}

.custom-brand {
    font-size: 24px;
    font-weight: 700;
    color: #000;
}

.custom-brand:hover {
    color: #0d6efd;
}

/* Nav Links Styling */
.custom-nav .nav-link {
    font-weight: 500;
    color: #333;
    margin: 0 10px;
    position: relative;
}

.custom-nav .nav-link:hover,
.custom-nav .nav-link.active {
    color: #0d6efd;
}

.custom-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background-color: #0d6efd;
    transition: width 0.3s ease;
}

.custom-nav .nav-link:hover::after,
.custom-nav .nav-link.active::after {
    width: 100%;
}

.navbar-icon {
    font-size: 24px;
    color: #0d6efd;
}

/* Navbar with rounded icon */
.navbar {
    display: flex;
    align-items: center;
    gap: 1rem;  /* Space between the icon and the text */
}

/* Icon styling (rounded and increased size) */
.navbar-icon {
    font-size: 24px; /* Icon size */
    background-color: #0d6efd; /* Blue background */
    color: white; /* Icon color */
    padding: 10px; /* Padding inside the icon */
    border-radius: 50%; /* Fully rounded */
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

/* Custom button for mobile */
.custom-btn-sm {
    background-color: #0d6efd;
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
}

.custom-btn-sm:hover {
    background-color: #084298;
}

/* Avatar Image (rounded) */
.avatar-image {
    width: 4rem; /* 60px */
    height: 4rem; /* 60px */
    object-fit: cover;
}

/* Hero Image Wrap (Blue Circle) */
.hero-image-wrap {
    width: 20rem; /* Increased size */
    height: 20rem; /* Increased size */
    background-color: #0d6efd; /* Blue background */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    position: absolute;
    top: -30%; /* Adjusted to fit the new size */
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-top: 100px;
}

/* Hero Image (inside the blue circle) */
.hero-image {
    width: 12rem; /* Increased size */
    height: 12rem; /* Increased size */
    object-fit: cover;
    border-radius: 50%;
    border: 0.375rem solid #ffffff; /* White border */
    margin-top: 10%; /* Adjusted margin-top */
}

/* Hero Section Styling */
.hero {
    background: linear-gradient(135deg, #0d6efd 30%, #7ab8f7); /* Soft blue gradient */
    padding: 80px 0;
    color: white;
}

/* Hero Text Styling */
.hero-text {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
}

.hero-text h2 {
    font-size: 24px;
    color: #666;
}

/* Hero Button */
.custom-btn {
    background-color: #0d6efd;
    color: #fff;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 16px;
    text-decoration: none;
}

.custom-btn:hover {
    background-color: #084298;
}

/* Responsive adjustments for Hero Image */
@media (max-width: 991px) {
    .hero-image-wrap {
        display: none; /* Hide the image wrap on tablet and smaller screens */
    }

    .hero-image {
        width: 6.25rem; /* 100px */
        height: 6.25rem; /* 100px */
    }
}

@media (max-width: 576px) {
    .hero-image-wrap {
        display: none; /* Hide the image wrap on mobile screens */
    }

    .hero-image {
        width: 5rem; /* 80px */
        height: 5rem; /* 80px */
    }
}

/* About Section */
.about {
    background-color: #f8f9fa;  /* Light background color */
    padding: 80px 0;
}

/* About Section Image */
.about-image {
    border-radius: 12px;
}

/* Section Title Styling */
.section-title-wrap h2 {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
}

.section-title-wrap img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

/* About Content Section */
.about-thumb {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Subtitle */
.about-thumb h3 {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

/* Paragraph Styling */
.about-thumb p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

/* Link Styling */
.about-thumb a {
    color: #0d6efd;
    text-decoration: none;
}

.about-thumb a:hover {
    text-decoration: underline;
}

/* Responsive adjustments for About Section */
@media (max-width: 991px) {
    .about .row {
        flex-direction: column-reverse;  /* Stack the content on smaller screens */
    }

    .about-image {
        width: 100%;
        height: auto;
        margin-bottom: 30px;
    }

    .section-title-wrap h2 {
        font-size: 24px;
    }

    .about-thumb {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .about .row {
        flex-direction: column-reverse;
    }

    .section-title-wrap h2 {
        font-size: 22px;
    }

    .about-thumb h3 {
        font-size: 20px;
    }

    .about-thumb p {
        font-size: 14px;
    }
}

/* Clients Section */
.clients-section {
    background-color: #f9f9f9;
    padding: 60px 0;
}

.clients-title {
    font-size: 28px;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
}

/* Client Box */
.client-box {
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Client Logo Styling */
.client-box img {
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.client-box img:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Featured Section */
.featured {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.profile-card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.profile-header {
    margin-bottom: 20px;
}

.profile-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.profile-body p {
    font-size: 16px;
    margin: 8px 0;
}

.profile-small-title {
    font-weight: bold;
    color: #555;
}

/* .profile-info a { */
   
