body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    background-color: #f9f9f9;
    /* Add padding to prevent content from hiding under fixed navbar */
    padding-top: 76px;
}

/* Fixed Header Styles */
.fixed-header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}


.navbar.fixed-top {
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(5px);
    transition: background-color 0.3s ease;
}
/* Hero Section */
.hero {
    background: linear-gradient(135deg, #6c63ff, #ab47bc);
    color: white;
    padding: 40px 0;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-image {
    flex-shrink: 0;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: #f5f5f5;
    border: 8px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.hero-text {
    flex: 1;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* General Styles */
.services, .contact {
    padding: 50px 0;
}

.card {
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.contact {
    background: #f1f3f4;
}

.contact h2 {
    font-weight: 700;
}

phonenumber {
    font-weight: 700;
    color: #f0f0f0;
}

footer {
    background: #343a40;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

footer p {
    margin: 0;
    font-weight: 300;
}

.btn-primary {
    background-color: white;
    color: #6c63ff;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #f0f0f0;
    color: #574bcc;
}

/* About Section */
.about-image-wrapper {
    position: relative;
    padding: 15px;
    overflow: hidden;
}

.about-image-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, #6c63ff, #ab47bc);
    opacity: 0.3;
    z-index: 1;
    border-radius: 10px;
}

.about-image-wrapper img {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.about-image-wrapper img:hover {
    transform: scale(1.05);
}

/* List Styling */
.styled-list {
    padding-left: 0;
    font-family: 'Roboto', Arial, sans-serif;
}

.styled-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    color: #333;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.styled-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 10px;
    height: 10px;
    background-color: #6c63ff;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.styled-list li:hover {
    color: #ab47bc;
    transform: translateX(5px);
}

.styled-list li:hover::before {
    transform: scale(1.2);
}

/* Services Section */
.services {
    background-color: #f9f9f9;
}

.service-card {
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
    background: linear-gradient(to bottom right, #ffffff, #f5f5f5);
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.service-card .card-body {
    padding: 2rem;
}

.service-card .card-title {
    color: #6c63ff;
    margin-bottom: 1rem;
}

.service-card .card-text {
    color: #333;
    line-height: 1.6;
}

/* Contact Form */
.contact form .form-control {
    border-radius: 25px;
    padding: 10px 20px;
}

.contact .btn-primary {
    background-color: #6c63ff;
    border-radius: 25px;
    padding: 12px 30px;
}

/* Navbar */
.logo-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 10px;
    display: inline-block;
    vertical-align: middle;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.navbar-brand {
    padding-top: 0;
    padding-bottom: 0;
}

.brand-text {
    font-size: 1.5rem;
    color: #333;
    margin-left: 10px;
    white-space: nowrap;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-image {
        width: 240px;
        height: 240px;
    }
    
    .brand-text {
        font-size: 1rem;
    }
}

/* Bootstrap Icons */
i.bi {
    font-size: 1.2rem;
    vertical-align: middle;
    color: #6c63ff;
}body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    background-color: #f9f9f9;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #6c63ff, #ab47bc);
    color: white;
    padding: 40px 0;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-image {
    flex-shrink: 0;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: #f5f5f5;
    border: 8px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.hero-text {
    flex: 1;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* General Styles */
.services, .contact {
    padding: 50px 0;
}

.card {
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.contact {
    background: #f1f3f4;
}

.contact h2 {
    font-weight: 700;
}

footer {
    background: #343a40;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

footer p {
    margin: 0;
    font-weight: 300;
}

.btn-primary {
    background-color: white;
    color: #6c63ff;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #f0f0f0;
    color: #574bcc;
}

/* About Section */
.about-image-wrapper {
    position: relative;
    padding: 15px;
    overflow: hidden;
}

.about-image-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, #6c63ff, #ab47bc);
    opacity: 0.3;
    z-index: 1;
    border-radius: 10px;
}

.about-image-wrapper img {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.about-image-wrapper img:hover {
    transform: scale(1.05);
}

/* List Styling */
.styled-list {
    padding-left: 0;
    font-family: 'Roboto', Arial, sans-serif;
}

.styled-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    color: #333;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.styled-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 10px;
    height: 10px;
    background-color: #6c63ff;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.styled-list li:hover {
    color: #ab47bc;
    transform: translateX(5px);
}

.styled-list li:hover::before {
    transform: scale(1.2);
}

/* Services Section */
.services {
    background-color: #f9f9f9;
}

.service-card {
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
    background: linear-gradient(to bottom right, #ffffff, #f5f5f5);
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.service-card .card-body {
    padding: 2rem;
}

.service-card .card-title {
    color: #6c63ff;
    margin-bottom: 1rem;
}

.service-card .card-text {
    color: #333;
    line-height: 1.6;
}

/* Contact Form */
.contact form .form-control {
    border-radius: 25px;
    padding: 10px 20px;
}

.contact .btn-primary {
    background-color: #6c63ff;
    border-radius: 25px;
    padding: 12px 30px;
}

/* Navbar */
.logo-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 10px;
    display: inline-block;
    vertical-align: middle;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.navbar-brand {
    padding-top: 0;
    padding-bottom: 0;
}

.brand-text {
    font-size: 1.5rem;
    color: #333;
    margin-left: 10px;
    white-space: nowrap;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-image {
        width: 240px;
        height: 240px;
    }
    
    .brand-text {
        font-size: 1rem;
    }
}

/* Bootstrap Icons */
i.bi {
    font-size: 1.2rem;
    vertical-align: middle;
    color: #6c63ff;
}