@import url(//fonts.googleapis.com/css?family=Roboto+Condensed:300,400,700);

body {
    font-family: "Roboto Condensed", sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

a:visited {
    color: inherit;
}

i.fa {
    margin-right: 5px;
}

header {
    background-color: #9c8f464d;
}

#about {
    font-size: 1.2rem;
}

@media only screen and (max-width: 600px) {
    .features-img {
        width: 300px;
    }
}

@media only screen and (max-width: 450px) {
    .features-img {
        width: 200px;
    }
}
@media screen and (max-width: 768px) {
[data-aos-delay] {
    transition-delay: 0 !important;
}
}
#hero img {
    max-width: 100% !important;
    max-height: 100% !important;
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    background: rgba(71, 85, 105, 0.95);
    transition: all 0.4s ease-in-out;
    z-index: 997;
    height: 90px;
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
    font-size: 26px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1.5px;
}

.modern-logo {
    color: #fff !important;
    transition: all 0.3s ease;
    padding: 8px 15px;
    border-radius: 12px;
}

.modern-logo:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.navbar {
    padding: 0;
}

.nav-list {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    gap: 10px;
}

.navbar li {
    position: relative;
}

.navbar>ul>li {
    padding: 10px 5px;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    padding: 8px 15px;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    white-space: nowrap;
    transition: all 0.3s ease;
    border-radius: 10px;
}

.hover-effect:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transform: translateY(-2px);
}

.navbar .active {
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 0;
    top: calc(100% + 15px);
    margin: 0;
    padding: 15px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.navbar .dropdown ul li {
    min-width: 220px;
}

.navbar .dropdown ul a {
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #2a2a2a;
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.dropdown-item:hover {
    background: #f8f9fa !important;
}

/* Mobile Navigation */
.mobile-nav-toggle {
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    display: none;
    transition: 0.3s ease;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
    
    #header {
        height: 80px;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(71, 85, 105, 0.98);
    backdrop-filter: blur(10px);
    transition: 0.3s ease;
    z-index: 999;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 70px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 20px;
    background-color: #fff;
    overflow-y: auto;
    border-radius: 15px;
    transition: 0.3s ease;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 15px;
    font-size: 15px;
    color: #2a2a2a;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px;
    border-radius: 8px;
    background: #f8f9fa;
    box-shadow: none;
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}
#hero {
    width: 100%;
    height: 100vh;
    position: relative;
    background: url('/img/image-background.png') top center;
    background-size: cover;
    transition: all 0.5s ease;
}

#hero:before {
    content: '';
    background: linear-gradient(135deg, rgba(255, 82, 99, 0.9), rgba(255, 82, 99, 0.7));
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    border-radius: 0 0 30px 30px;
}

#hero .container {
    padding-top: 120px;
    z-index: 1;
}

#hero h1 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 30px;
}

#hero h2 {
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 30px 0;
    font-size: 24px;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.5;
}

#hero .btn-get-started {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 24px;
    display: inline-flex;
    align-items: center;
    padding: 20px 45px;
    border-radius: 50px;
    transition: all 0.4s ease;
    margin-top: 40px;
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

#hero .btn-get-started:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.arrow-icon {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.btn-get-started:hover .arrow-icon {
    transform: translateX(5px);
}

.animate-text {
    animation: slideUp 1s ease-out;
}

.animate-fade {
    animation: fadeIn 1.5s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media (min-width: 1024px) {
    #hero {
        background-attachment: fixed;
    }
}

@media (max-width: 992px) {
    #hero {
        height: auto;
        min-height: 100vh;
    }

    #hero h1 {
        font-size: 36px;
        line-height: 1.3;
    }

    #hero h2 {
        font-size: 20px;
    }

    #hero .btn-get-started {
        font-size: 20px;
        padding: 15px 35px;
    }
}

@media (max-width: 768px) {
    #hero h1 {
        font-size: 30px;
    }

    #hero h2 {
        font-size: 18px;
    }
}
.feature-section {
    background-color: #f8f9fa;
    font-family: 'Montserrat', sans-serif;
}

.section-title {
    font-size: 42px;
    color: #445566;
    font-weight: 600;
    margin-bottom: 3rem;
}

.feature-row {
    margin-bottom: 2rem;
}

.feature-image-wrapper {
    transition: transform 0.3s ease;
}

.feature-image-wrapper:hover {
    transform: translateY(-10px);
}

.image-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.feature-content {
    padding: 2rem;
}

.feature-title {
    font-size: 32px;
    color: #445566;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.feature-description {
    font-size: 24px;
    line-height: 1.6;
    color: #667788;
}

.rounded-xl {
    border-radius: 20px;
}

.fade-in {
    animation: fadeIn 1s ease-in;
}

.slide-in {
    animation: slideIn 1s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateX(50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@media (max-width: 992px) {
    .feature-row {
        text-align: center;
    }

    .feature-content {
        padding: 1rem;
    }

    .feature-title {
        font-size: 28px;
    }

    .feature-description {
        font-size: 20px;
    }
}
.team .member {
text-align: center;
margin-bottom: 20px;
box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
padding: 30px 20px;
background: #fff;
}

.team .member img {
max-width: 60%;
border-radius: 50%;
margin: 0 0 30px 0;
}

.team .member h4 {
font-weight: 700;
margin-bottom: 2px;
font-size: 18px;
}

.team .member span {
font-style: italic;
display: block;
font-size: 13px;
}

.team .member p {
padding-top: 10px;
font-size: 14px;
font-style: italic;
color: #aaaaaa;
}

.team .member .social {
margin-top: 15px;
}

.team .member .social a {
color: #919191;
transition: 0.3s;
}

.team .member .social a:hover {
color: #cc1616;
}

.team .member .social i {
font-size: 18px;
margin: 0 2px;
}
/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services {
    background-color: #f8f9fa !important;
    font-family: 'Montserrat', sans-serif;
}

.section-title h2 {
    color: #4a4a4a;
    margin-bottom: 2rem;
    font-size: 3.5rem;
    position: relative;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #6c757d;
    border-radius: 2px;
}

.service-card {
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 8px 8px 20px rgba(0,0,0,0.15);
}

.service-icon {
    fill: #6c757d;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    fill: #495057;
    transform: scale(1.1);
}

.service-card h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-card h4 a {
    color: #4a4a4a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-card:hover h4 a {
    color: #495057;
}

.service-card p {
    color: #6c757d;
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 2.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }

    .service-card h4 {
        font-size: 20px;
    }

    .service-card p {
        font-size: 16px;
    }
}
/* FAQ Section Styles */
.faq-section {
    background-color: #f8f9fa;
    font-family: 'Montserrat', sans-serif;
    padding: 80px 0;
}

.faq-title-wrapper {
    text-align: left;
    position: sticky;
    top: 20px;
}

.faq-icon {
    fill: #6c757d;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

.faq-title-wrapper h2 {
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.3;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-item {
    background: white;
    border-radius: 16px;
    padding: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.faq-item summary {
    padding: 24px;
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    cursor: pointer;
    position: relative;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 16px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 24px;
    font-size: 28px;
    color: #6c757d;
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.number {
    color: #6c757d;
    font-size: 28px;
    font-weight: 700;
    min-width: 40px;
}

.faq-content {
    padding: 0 24px 24px 80px;
    animation: slideDown 0.3s ease-out;
}

.faq-content p {
    font-size: 24px;
    line-height: 1.6;
    color: #4a5568;
    margin: 0;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 991.98px) {
    .faq-title-wrapper {
        text-align: center;
        margin-bottom: 40px;
        position: static;
    }

    .faq-title-wrapper h2 {
        font-size: 36px;
    }

    .faq-item summary {
        font-size: 20px;
        padding: 20px;
    }

    .faq-content {
        padding: 0 20px 20px 60px;
    }

    .faq-content p {
        font-size: 20px;
    }

    .number {
        font-size: 24px;
        min-width: 32px;
    }
}
#contact {
    background-color: #f8f9fa;
    font-family: 'Montserrat', sans-serif;
}

.contact-heading {
    font-size: 42px;
    font-weight: 600;
    color: #4a4a4a;
    text-align: center;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.contact-heading:hover {
    transform: scale(1.02);
}

.contact-form {
    position: relative;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.contact-form:hover {
    transform: translateY(-5px);
}

.custom-input {
    height: 60px;
    font-size: 24px;
    border-radius: 12px;
    border: 2px solid #e9ecef;
    padding-left: 50px;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

textarea.custom-input {
    height: auto;
    padding-top: 15px;
}

.custom-input:focus {
    border-color: #6c757d;
    box-shadow: none;
    background-color: white;
}

.form-group {
    position: relative;
}

.input-icon, .textarea-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.textarea-icon {
    top: 25px;
}

.custom-button {
    font-size: 24px;
    padding: 15px 40px;
    border-radius: 12px;
    background-color: #6c757d;
    border: none;
    color: white;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.custom-button:hover {
    background-color: #5a6268;
    transform: translateY(-2px);
}

.button-arrow {
    transition: transform 0.3s ease;
}

.custom-button:hover .button-arrow {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .contact-heading {
        font-size: 32px;
    }

    .custom-input {
        font-size: 20px;
        height: 50px;
    }

    .custom-button {
        width: 100%;
        font-size: 20px;
        padding: 12px 30px;
    }
}
/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
    background-color: #f8f9fa;
    font-family: 'Montserrat', sans-serif;
}

.section-title h2 {
    color: #2d4b6e;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.underline {
    height: 4px;
    width: 70px;
    background-color: #2d4b6e;
    margin: 0 auto;
    border-radius: 2px;
}

.info-wrapper {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    transition: transform 0.3s ease;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item:hover {
    transform: translateY(-5px);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: #2d4b6e;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 1.5rem;
    transition: all 0.3s ease;
}

.icon {
    width: 30px;
    height: 30px;
    color: white;
}

.info-item:hover .icon-box {
    background: #3e6691;
    transform: rotate(8deg);
}

.content {
    flex: 1;
}

.content h4 {
    color: #2d4b6e;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.content p {
    color: #576d85;
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 991px) {
    .info-wrapper {
        margin-bottom: 2rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .content h4 {
        font-size: 20px;
    }
    
    .content p {
        font-size: 16px;
    }
}
/*--------------------------------------------------------------
# Modern Footer Styles
--------------------------------------------------------------*/
.footer {
    --footer-bg: #f8f9fa;
    --text-color: #4a4a4a;
    --accent-color: #3498db;
    --hover-color: #2980b9;
    --heading-color: #2c3e50;
    
    background-color: var(--footer-bg);
    color: var(--text-color);
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    padding: 80px 0;
    border-radius: 30px 30px 0 0;
    transition: all 0.3s ease;
}

.animate-footer {
    animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.footer .footer-top {
    padding: 40px 0;
}

.footer .brand-text {
    color: var(--heading-color);
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 1.5px;
    font-family: 'Oswald', sans-serif;
    transition: color 0.3s ease;
}

.footer .social-links {
    gap: 20px;
}

.footer .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 15px;
    background-color: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.footer .social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.footer .social-icon svg {
    color: var(--text-color);
    transition: color 0.3s ease;
}

.footer h4 {
    color: var(--heading-color);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    font-family: 'Raleway', sans-serif;
}

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

.footer .footer-links ul li {
    padding: 12px 0;
}

.footer .hover-effect {
    color: var(--text-color);
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.footer .hover-effect::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.footer .hover-effect:hover {
    color: var(--accent-color);
}

.footer .hover-effect:hover::after {
    width: 100%;
}

.footer .contact-info {
    background-color: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.footer .contact-info p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.footer .contact-info strong {
    color: var(--heading-color);
}

@media (max-width: 768px) {
    .footer {
        font-size: 20px;
        padding: 40px 0;
    }
    
    .footer h4 {
        font-size: 24px;
    }
    
    .footer .brand-text {
        font-size: 30px;
    }
    
    .footer .social-icon {
        width: 40px;
        height: 40px;
    }
    
    .footer .contact-info {
        padding: 20px;
    }
}
