/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
    --indigo: #4B0082;
    --teal: #008080;
    --green: #008000;
    --light-indigo: #6A5ACD;
    --bright-indigo: #5D3FD3;
    --indigo-blue: #3F51B5;
    --light-teal: #40E0D0;
    --light-green: #90EE90;
    --white: #FFFFFF;
    --black: #000000;
    --gray: #F8F9FA;
    --dark-gray: #343A40;
}

body {
    font-family: "Times New Roman", Times, serif;
    color: var(--indigo);
    background-color: var(--white);
    scroll-behavior: smooth;
}

a {
    color: var(--teal);
    text-decoration: none;
}

a:hover {
    color: var(--light-teal);
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Times New Roman", Times, serif;
    font-weight: bold;
    color: var(--indigo-blue);
}

.section-padding {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: bold;
    position: relative;
    color: var(--indigo);
    margin-bottom: 20px;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--teal);
    bottom: 0;
    left: calc(50% - 25px);
}

.section-title p {
    margin-bottom: 0;
    font-size: 18px;
    color: var(--dark-gray);
}

.btn-primary {
    background: linear-gradient(135deg, #008080 0%, #40E0D0 50%, #8A5FD3 100%);
    border: none;
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,128,128,0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #006666 0%, #20B2B2 50%, #7B3FD3 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,128,128,0.4);
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    background: var(--white);
    transition: all 0.5s;
    z-index: 997;
    padding: 10px 0;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .navbar-brand h1 {
    font-size: 20px;
    margin: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--indigo);
}

#header .logo-img {
    height: 50px;
    width: auto;
}

#header .navbar-nav .nav-link {
    padding: 7px 12px;
    color: var(--dark-gray);
    transition: 0.3s;
    font-size: 14px;
    font-weight: 500;
}

#header .navbar-nav .nav-link:hover,
#header .navbar-nav .nav-link.active {
    color: var(--teal);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 80vh;
    background-color: #ffffff;
    position: relative;
}

#hero .container {
    position: relative;
    text-align: center;
    padding-top: 150px;
}

#hero h1 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    color: var(--white);
}

#hero h2 {
    color: var(--white);
    margin: 10px 0 0 0;
    font-size: 24px;
}

#hero .btn-get-started {
    font-family: "Times New Roman", Times, serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 28px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 30px;
    color: var(--white);
    background: var(--teal);
    border: 2px solid var(--teal);
}

#hero .btn-get-started:hover {
    background: transparent;
    color: var(--white);
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
    font-weight: 600;
    font-size: 26px;
    color: var(--indigo);
}

.about .content p {
    margin-bottom: 15px;
}

.about .content ul {
    list-style: none;
    padding: 0;
}

.about .content ul li {
    padding-bottom: 10px;
    padding-left: 28px;
    position: relative;
}

.about .content ul i {
    font-size: 20px;
    color: var(--teal);
    position: absolute;
    left: 0;
    top: 2px;
}

.about .image-container {
    position: relative;
    min-height: 300px;
}

.about .image-container img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services {
    background: var(--gray);
}

.services .icon-box {
    padding: 30px;
    position: relative;
    overflow: hidden;
    margin: 0 0 40px 0;
    background: var(--white);
    box-shadow: 0 5px 26px 0 rgba(68, 88, 144, 0.14);
    transition: all 0.3s ease-in-out;
    text-align: center;
    border: 1px solid var(--white);
    border-radius: 8px;
}

.services .icon {
    margin: 0 auto 20px auto;
    padding-top: 17px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    width: 72px;
    height: 72px;
    background: var(--teal);
}

.services .icon i {
    font-size: 36px;
    line-height: 1;
    color: var(--white);
}

.services .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
}

.services .title a {
    color: var(--indigo);
    transition: 0.3s;
}

.services .icon-box:hover .title a {
    color: var(--teal);
}

.services .description {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 0;
}

.services .icon-box:hover {
    border-color: var(--teal);
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
    margin-bottom: 20px;
    overflow: hidden;
    text-align: center;
    border-radius: 5px;
    background: var(--white);
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.team .member .member-img {
    position: relative;
    overflow: hidden;
}

.team .member .social {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 40px;
    opacity: 0;
    transition: ease-in-out 0.3s;
    background: rgba(0, 128, 128, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team .member .social a {
    transition: color 0.3s;
    color: var(--white);
    margin: 0 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.team .member .social a:hover {
    color: var(--light-indigo);
}

.team .member .social i {
    font-size: 18px;
    line-height: 0;
}

.team .member .member-info {
    padding: 25px 15px;
}

.team .member .member-info h4 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 18px;
    color: var(--indigo);
}

.team .member .member-info span {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: var(--dark-gray);
}

.team .member .member-info p {
    font-style: italic;
    font-size: 14px;
    line-height: 26px;
    color: var(--dark-gray);
}

.team .member:hover .social {
    opacity: 1;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://pixabay.com/get/g9247f8373674c4044733c38fcca118c57c88de0c35809ea52585ea14c46e4b547e636f21a0624c340134677500eb217f118e5f15a49246b4c7fe925e173f93c4_1280.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    position: relative;
}

.testimonials::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
}

.testimonials .section-title {
    margin-bottom: 40px;
}

.testimonials .section-title h2,
.testimonials .section-title p {
    color: var(--white);
}

.testimonials .testimonial-item {
    text-align: center;
    color: var(--white);
}

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 auto 15px auto;
    font-size: 15px;
}

.testimonials .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 0;
    color: var(--white);
}

.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: var(--light-teal);
    margin: 0;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
    padding: 30px;
    width: 100%;
    background: var(--white);
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.contact .info i {
    font-size: 20px;
    color: var(--teal);
    float: left;
    width: 44px;
    height: 44px;
    background: var(--gray);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}

.contact .info h4 {
    padding: 0 0 0 60px;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--indigo);
}

.contact .info p {
    padding: 0 0 0 60px;
    margin-bottom: 0;
    font-size: 14px;
    color: var(--dark-gray);
}

.contact .info .email, .contact .info .phone {
    margin-top: 40px;
}

.contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i {
    background: var(--teal);
    color: var(--white);
}

.contact .php-email-form {
    width: 100%;
    padding: 30px;
    background: var(--white);
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .php-email-form .form-group {
    padding-bottom: 8px;
}

.contact .php-email-form input, 
.contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    border: 1px solid #d5d5d5;
}

.contact .php-email-form input:focus, 
.contact .php-email-form textarea:focus {
    border-color: var(--teal);
}

.contact .php-email-form input {
    height: 44px;
}

.contact .php-email-form textarea {
    padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
    background: var(--teal);
    border: 0;
    padding: 10px 24px;
    color: var(--white);
    transition: 0.4s;
    border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
    background: var(--indigo);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: var(--indigo);
    padding: 0 0 30px 0;
    color: var(--white);
    font-size: 14px;
}

#footer .footer-section {
    padding: 60px 0 30px 0;
}

#footer .footer-info {
    margin-bottom: 30px;
}

#footer .footer-info h3 {
    font-size: 24px;
    margin: 0 0 20px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
}

#footer .footer-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
}

#footer .social-links a {
    font-size: 18px;
    display: inline-block;
    background: var(--teal);
    color: var(--white);
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .social-links a:hover {
    background: var(--light-teal);
    color: var(--white);
    text-decoration: none;
}

#footer .footer-links {
    margin-bottom: 30px;
}

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

#footer .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

#footer .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-links ul li a {
    color: var(--white);
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-links ul li a:hover {
    color: var(--light-teal);
}

#footer .footer-contact {
    margin-bottom: 30px;
}

#footer .footer-contact p {
    line-height: 26px;
}

#footer .copyright {
    text-align: center;
    padding-top: 30px;
}

.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: var(--teal);
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 24px;
    color: var(--white);
    line-height: 0;
}

.back-to-top:hover {
    background: var(--light-teal);
    color: var(--white);
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/* Flash Messages */
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}

.alert-success {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6;
}

.alert-error {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
}