/**************************************/
/************ General CSS *************/
/**************************************/
:root {
    --primary: #1d3557;
    --accent: #4f84c4;
    --accent-light: #6b94d4;
    --accent-dark: #3a6aa8;
    --muted: #f5f7fb;
    --text: #1b1b1b;
    --text-light: #555555;
    --border: #e0e0e0;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    color: var(--text);
    font-family: 'Raleway', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    line-height: 1.6;
}

main {
    flex: 1;
}

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

a:hover,
a:active,
a:focus {
    color: var(--accent-dark);
    outline: none;
    text-decoration: none;
}

p {
    color: #1f1f1f;
    padding: 0;
    margin: 0 0 15px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: #0c0c0c;
    margin: 0 0 15px 0;
    padding: 0;
}

h4,
h5,
h6 {
    font-weight: 400;
}

.mt-100 {
    margin-top: 100px;
}

/**************************************/
/******* Carousel Animations **********/
/**************************************/
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.carousel-badge {
    animation: slideInDown 0.8s ease-out;
}

.carousel-title {
    animation: slideInUp 1s ease-out 0.2s both;
}

.carousel-text {
    animation: slideInUp 1s ease-out 0.4s both;
}

.carousel-button {
    animation: slideInUp 1s ease-out 0.6s both;
}


/**************************************/
/********** Back to Top CSS ***********/
/**************************************/
.back-to-top {
    position: fixed;
    display: none;
    background: var(--accent);
    color: #ffffff;
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 1;
    font-size: 44px;
    right: 15px;
    bottom: 15px;
    transition: background 0.3s;
    z-index: 9;
    border-radius: 50%;
}

.back-to-top i {
    color: #ffffff;
}



/**************************************/
/************** Nav CSS ***************/
/**************************************/
#nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    padding: 12px 0;
    z-index: 999;
    background: #ffffff !important;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

#nav.nav-sticky {
    height: 70px;
    padding: 8px 0;
    box-shadow: var(--shadow-md);
}

#nav .navbar {
    height: 100%;
    background: transparent !important;
}

#nav .navbar-brand {
    padding: 0;
    font-weight: 700;
    color: var(--primary);
}

#nav .navbar-brand img {
    position: relative;
    max-height: 50px;
    transition: var(--transition);
}

#nav.nav-sticky .navbar-brand img {
    max-height: 45px;
}

#nav .nav-link {
    color: var(--text) !important;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    margin: 0 8px;
    padding: 8px 12px !important;
    position: relative;
    transition: var(--transition);
}

#nav .nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

#nav .nav-link:hover:after,
#nav .nav-link.active:after {
    width: 100%;
}

#nav .nav-link:hover,
#nav .nav-link.active {
    color: var(--accent) !important;
    background: transparent !important;
}

#nav .dropdown-menu {
    margin-top: 0;
    border: 0;
    border-radius: 0;
    background: #f8f9fa;
}
.custom-nav {
    background-color: #ffffff; /* Lacivert */
}

@media (min-width: 768px) {
    #nav,
    #nav .navbar {
        background: #ffffff !important;
    }
    
    #nav a.nav-link {
        padding: 8px 15px;
        font-size: 15px;
        text-transform: uppercase;
        font-weight: bold !important;
    }
}

@media (max-width: 768px) {   
    #nav,
    #nav .navbar {
       background: #ffffff !important;
    }
    
    #nav a.nav-link {
        padding: 5px;
    }
    
    #nav .dropdown-menu {
        box-shadow: none;
    }
    
    #nav .container-fluid {
        padding: 0;
    }
}



/**************************************/
/************* Header CSS *************/
/**************************************/
.header {
    position: relative;
    width: 100%;
    background: #ffffff;
    margin-top: 100px;
    height: clamp(480px, 80vh, 720px);
    min-height: 600px;
}

#nav {
    background: #ffffff !important;
}

.header .carousel {
    height: 100%;
}

.header .carousel-inner {
    height: 100%;
}

.header .carousel-item {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.header .carousel-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    background-color: #f0f0f0;
}

.header .carousel-img picture,
.header .carousel-img img,
.header .carousel-img video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
}

.header .carousel-img img {
    image-rendering: auto;
}

.header .carousel-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 800px;
    padding: 30px;
    color: #ffffff;
}

.header .carousel-content h2 {
    color: #ffffff;
    font-size: 45px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: capitalize;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8), 0 0 10px rgba(0, 0, 0, 0.8), 2px 2px 8px rgba(0, 0, 0, 0.8);
    margin-bottom: 20px;
}

.header .carousel-content h1 {
    color: #ffffff;
    font-size: 45px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: capitalize;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8), 0 0 10px rgba(0, 0, 0, 0.8), 2px 2px 8px rgba(0, 0, 0, 0.8);
    margin-bottom: 20px;
}

.header .carousel-content p {
    color: #ffffff;
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 25px;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8), 0 0 10px rgba(0, 0, 0, 0.8), 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.header .carousel-content .btn {
    padding: 14px 36px;
    color: #ffffff;
    border-radius: 6px;
    background: var(--accent);
    border: 2px solid var(--accent);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: var(--transition);
    text-shadow: none;
    box-shadow: 0 4px 12px rgba(79, 132, 196, 0.3);
}

.header .carousel-content .btn:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(79, 132, 196, 0.4);
}

/* Animasyonları active carousel-item'da yeniden oynat */
.carousel-item.active .carousel-badge {
    animation: slideInDown 0.8s ease-out;
}

.carousel-item.active .carousel-title {
    animation: slideInUp 1s ease-out 0.2s both;
}

.carousel-item.active .carousel-text {
    animation: slideInUp 1s ease-out 0.4s both;
}

.carousel-item.active .carousel-button {
    animation: slideInUp 1s ease-out 0.6s both;
}

.btn-primary-solid {
    display: inline-block;
    padding: 14px 32px;
    background: var(--accent);
    color: #ffffff;
    border: 2px solid var(--accent);
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-primary-solid:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.carousel-control-next i,
.carousel-control-prev i {
    color: #724343;
    font-size: 45px;
}

.carousel-indicators li {
    width: 20px;
    height: 0px;
    background: #ffffff;
}

.header .carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

@media (max-width: 768px) {
    .header {
        height: calc(100vh - 100px);
        min-height: 500px;
    }
    
    .header .carousel-content {
        max-width: 90%;
        padding: 20px;
    }
    
    .header .carousel-content h2 {
        font-size: 28px;
    }
    
    .header .carousel-content p {
        font-size: 18px;
    }
    
    .header .carousel-content .btn {
        font-size: 18px;
        padding: 12px 30px;
    }
}

@media (max-width: 576px) {
    .header {
        min-height: 400px;
    }
    
    .header .carousel-content {
        padding: 15px;
    }
    
    .header .carousel-content h2 {
        font-size: 22px;
        letter-spacing: 1px;
    }
    
    .header .carousel-content p {
        font-size: 16px;
    }
}



/**************************************/
/******** Section Header CSS **********/
/**************************************/
.section-header {
    position: relative;
    max-width: 700px;
    margin: 0 auto 60px auto;
    padding-bottom: 25px;
}

.section-header h2 {
    color: var(--primary);
    font-size: 35px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 6px;
    text-align: center;
}

.section-header::after {
    content: '';
    position: absolute;
    display: inline-block;
    width: 100px;
    height: 5px;
    background: var(--accent);
    border-radius: 0 0 5px 5px;
    bottom: 0;
    left: calc(50% - 50px);
}

.section-header p {
    font-size: 22px;
    font-weight: 300;
    text-align: center;
    margin: 0;
}

.section-soft {
    background: var(--muted);
    padding: 90px 0;
}

.card-elevated {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
}

.card-elevated:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.badge-pill {
    display: inline-block;
    padding: 8px 14px;
    background: rgba(0, 0, 0, 0.4);
    color: #ffffff;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

.cta-banner {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary), #0f233d);
    color: #ffffff;
}

.cta-banner .container {
    position: relative;
    z-index: 2;
}

.cta-banner h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
}

.cta-banner p {
    font-size: 18px;
    color: #dce6f5;
    margin-bottom: 25px;
}

.cta-banner .btn-primary-solid {
    background: #ffffff;
    color: var(--primary);
    border-color: #ffffff;
}

.cta-banner .btn-primary-solid:hover {
    background: #f5f7fb;
    color: var(--primary);
    border-color: #f5f7fb;
}

.cta-dots {
    position: absolute;
    right: -60px;
    bottom: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.25) 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.4;
}



/**************************************/
/********* About + Single CSS *********/
/**************************************/
.about,
.single {
    position: relative;
    padding: 90px 0 60px 0;
    background: #f2f2f2;
}

.about .col-md-12,
.about .col-md-6,
.single .col-md-12,
.single .col-md-6 {
    margin-bottom: 30px;
}

.about .about-img,
.single .single-img {
    position: relative;
    overflow: hidden;
}

.about .about-img img,
.single .single-img img {
    width: 100%;
}

.about .about-content,
.single .single-content {
    position: relative;
    width: 80%;
    margin: -100px auto 0 auto;
    padding: 30px;
    background: #ffffff;
}

.about .about-content h2,
.single .single-content h2 {
    font-size: 25px;
    font-weight: 700;
}

.about .about-content p,
.single .single-content p {
    font-size: 16px;
    font-weight: 300;
}

.about .btn,
.single .btn {
    font-size: 14px;
    letter-spacing: 1px;
    color: #ffffff;
    background: #999999;
    border-radius: 0;
}

.about .btn:hover,
.single .btn:hover {
    background: #4F84C4;
}

/**************************************/
/********** About Hero CSS ************/
/**************************************/
.about-hero {
    position: relative;
    padding: 100px 0 80px 0;
    background: #ffffff;
}

.about-hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 15px;
}

.about-hero-content h2 {
    font-size: 32px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 25px;
}

.about-hero-content .lead {
    font-size: 20px;
    font-weight: 400;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-hero-content p {
    font-size: 16px;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-hero-img {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-hero-img img {
    width: 100%;
    height: auto;
    transition: transform 0.3s;
}

.about-hero-img:hover img {
    transform: scale(1.05);
}

/**************************************/
/******** About Features CSS **********/
/**************************************/
.about-features {
    position: relative;
    padding: 80px 0;
    background: #f8f9fa;
}

.about-feature-item {
    text-align: center;
    padding: 40px 30px;
    background: #ffffff;
    border-radius: 10px;
    margin-bottom: 30px;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.about-feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.about-feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #4F84C4 0%, #357abd 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-feature-icon i {
    font-size: 40px;
    color: #ffffff;
}

.about-feature-item h3 {
    font-size: 24px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 15px;
}

.about-feature-item p {
    font-size: 16px;
    color: #666666;
    line-height: 1.8;
    margin: 0;
}

/**************************************/
/********** About Story CSS ***********/
/**************************************/
.about-story {
    position: relative;
    padding: 80px 0;
    background: #ffffff;
}

.about-story-img {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-story-img img {
    width: 100%;
    height: auto;
    transition: transform 0.3s;
}

.about-story-img:hover img {
    transform: scale(1.05);
}

.about-story-content {
    padding: 20px 0 20px 40px;
}

.about-story-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 25px;
}

.about-story-content p {
    font-size: 16px;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-story-list {
    list-style: none;
    padding: 0;
    margin: 30px 0 0 0;
}

.about-story-list li {
    padding: 12px 0;
    font-size: 16px;
    color: #666666;
    display: flex;
    align-items: center;
}

.about-story-list li i {
    color: #4F84C4;
    font-size: 24px;
    margin-right: 15px;
}

/**************************************/
/********* About Mission CSS **********/
/**************************************/
.about-mission {
    position: relative;
    padding: 80px 0;
    background: #f8f9fa;
}

.about-mission-img {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-mission-img img {
    width: 100%;
    height: auto;
    transition: transform 0.3s;
}

.about-mission-img:hover img {
    transform: scale(1.05);
}

.about-mission-content {
    padding: 20px 40px 20px 0;
}

.about-mission-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 25px;
}

.about-mission-content p {
    font-size: 16px;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-mission-content p strong {
    color: #4F84C4;
    font-weight: 700;
}

.about-mission-values {
    margin-top: 40px;
}

.mission-value-item {
    margin-bottom: 25px;
    padding: 20px;
    background: #ffffff;
    border-radius: 8px;
    border-left: 4px solid #4F84C4;
    transition: all 0.3s;
}

.mission-value-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.mission-value-item h4 {
    font-size: 20px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.mission-value-item h4 i {
    color: #4F84C4;
    font-size: 24px;
    margin-right: 10px;
}

.mission-value-item p {
    font-size: 15px;
    color: #666666;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .about-story-content,
    .about-mission-content {
        padding: 20px 0;
        margin-top: 40px;
    }
    
    .about-hero-content h1 {
        font-size: 36px;
    }
    
    .about-hero-content h2 {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 60px 0 40px 0;
    }
    
    .about-features,
    .about-story,
    .about-mission {
        padding: 60px 0;
    }
    
    .about-hero-content h1 {
        font-size: 32px;
    }
    
    .about-hero-content h2 {
        font-size: 22px;
    }
    
    .about-story-content h2,
    .about-mission-content h2 {
        font-size: 28px;
    }
}



/**************************************/
/************ Services CSS ************/
/**************************************/
.service {
    background: #ffffff;
    padding: 90px 0 60px 0;
    text-align: center;
}

.service .service-item {
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
    transition: var(--transition);
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: var(--shadow);
}

.service .service-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service .service-icon {
    position: relative;
    width: 100%;
    padding: 40px 15px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    transition: var(--transition);
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service .service-item:hover .service-icon {
    background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
}

.service .service-icon i {
    font-size: 60px;
    line-height: 1;
    color: #ffffff;
}

.service .service-detail {
    position: relative;
    width: 100%;
    padding: 30px 20px;
    background: #ffffff;
    border-top: 4px solid var(--accent);
    transition: var(--transition);
}

.service .service-item:hover .service-detail {
    border-top-color: var(--accent-dark);
}

.service .service-detail h4,
.service .service-detail h4 a {
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.5px;
    text-transform: capitalize;
    color: var(--primary);
}

.service .service-detail p {
    margin: 0;
    color: var(--text-light);
    font-size: 14px;
}



/**************************************/
/******** Trust Section CSS ***********/
/**************************************/
.trust-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
}

.trust-card {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    height: 100%;
    border-top: 4px solid var(--accent);
}

.trust-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--accent-dark);
}

.trust-icon {
    font-size: 50px;
    color: var(--accent);
    margin-bottom: 15px;
    display: inline-block;
    width: 70px;
    height: 70px;
    background: var(--muted);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.trust-card:hover .trust-icon {
    background: var(--accent);
    color: #ffffff;
    transform: scale(1.1);
}

.trust-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin: 15px 0 10px 0;
    letter-spacing: 0.5px;
}

.trust-card p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/**************************************/
.call-to-action {
    position: relative;
    padding: 90px 0;
    background: linear-gradient(135deg, var(--accent), #3d5ba3);
}

.call-to-action .container {
    max-width: 700px;
}

.call-to-action .section-header h2 {
    color: #ffffff;
}

.call-to-action .section-header::before {
    background: #ffffff;
}

.call-to-action .section-header p {
    color: #ffffff;
}

.call-to-action .btn {
    padding: 15px 30px;
    color: #4F84C4;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: #ffffff;
    border-radius: 0;
    transition: 0.3s;
}

.call-to-action .btn:hover {
    color: #ffffff;
    background: #353535;
}



/**************************************/
/************* Pricing CSS ************/
/**************************************/
.pricing {
    background: #f2f2f2;
    padding: 90px 0 60px 0;
}

.pricing .price-content {
    position: relative;
    background: #ffffff;
    text-align: center;
    margin-bottom: 30px;
}

.pricing .price-plan {
    display: block;
    background: #353535;
    margin: 0 0 30px;
    padding: 20px 0;
}

.pricing .price-plan i {
    color: #ffffff;
    font-size: 60px;
    line-height: 80px;
}

.pricing .price-title {
    display: block;
    color: #ffffff;
    font-size: 30px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.pricing .price-amount {
    position: relative;
    font-family: 'Arial, Helvetica', sans-serif;
    color: #ffffff;
    font-size: 60px;
    font-weight: 900;
    margin: 0;
    text-transform: uppercase;
}

.pricing .price-amount span {
    color: #ffffff;
    font-size: 22px;
    font-weight: 400;
    text-transform: lowercase;
}

.pricing .price-amount span:first-child {
    position: relative;
    top: -27px;
    left: -5px;
}

.pricing .price-date {
    color: #ffffff;
    font-size: 12px;
    margin-top: 5px;
    text-transform: uppercase;
    margin-bottom:0;
}

.pricing .price-details {
    font-size: 16px;
    list-style: none;
    text-align: left;
}

.pricing .price-details li {
    padding: 5px 0;
}

.pricing .price-details li i.ion-md-checkmark {
    color: var(--accent);
    margin-right: 8px;
}

.pricing .price-details li i.ion-md-close {
    color: #ea4335;
    margin-right: 10px;
}

.pricing .btn {
    color: #ffffff;
    padding: 10px 30px;
    text-transform: uppercase;
    border: none;
    border-radius: 0;
}

.pricing .price-btn {
    margin-top: 10px;
    margin-bottom: 30px;
    background: #353535;
    color: #ffffff;
}

.pricing .price-btn:hover {
    background: var(--accent);
}

.pricing .features-price-btn {
    background: var(--accent);
}

.pricing .features-price-btn:hover {
    background: #353535;
}

.pricing .features-price .price-plan {
    background: #4F84C4;
}

.pricing .features-price .price-plan p{
    color:#FFFFFF;
}

.pricing .features-price .price-plan .price-amount, 
.pricing .features-price .price-plan .price-amount span {
    color: #ffffff;
}

.pricing .features-price .price-plan .price-title {
    color:#ffffff;
}



/**************************************/
/*********** Our Skills CSS ***********/
/**************************************/
.skills {
    position: relative;
    padding: 90px 0 60px 0;
}

.skills .skill-item {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
}

.skills .skill-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: #666666;
    margin-bottom: 15px;
}

.skills .skill-name {
    position: relative;
    width: 100%;
}

.skills .skill-name p {
    display: inline-block;
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 400;
}

.skills .skill-name p:last-child {
    float: right;
}

.skills .progress {
    margin-bottom: 15px;
    border-radius: 0;
}

.skills .progress .progress-bar {
    background: var(--accent);
    border-radius: 0;
}



/**************************************/
/************ Counters CSS ************/
/**************************************/
.counters {
    position: relative;
    width: 100%;
    padding: 90px 0;
    background: var(--accent);
}

.counters i {
    display: inline-block;
    font-size: 90px;
    line-height: 0;
    color: #ffffff;
    margin-bottom: 10px;
}

.counters h2 {
    font-family: 'Arial, Helvetica', sans-serif;
    font-size: 60px;
    font-weight: 900;
    letter-spacing: 5px;
    color: #ffffff;
}

.counters p {
    font-size: 22px;
    color: #ffffff;
}



/**************************************/
/************ Portfolio CSS ***********/
/**************************************/
.portfolio {
    position: relative;
    padding: 90px 0 60px 0;
    background: #f2f2f2;
}

.portfolio .portfolio-item {
    margin-bottom: 30px;
    overflow: hidden;
}

.portfolio .portfolio-item .portfolio-img {
    position: relative;
    background: #000000;
    overflow: hidden;
    
}

.portfolio .portfolio-item .link-preview,
.portfolio .portfolio-item .link-details {
    position: absolute;
    display: inline-block;
    padding: 5px 0;
    line-height: 1;
    text-align: center;
    width: 45px;
    height: 35px;
    background: var(--accent);
    border: 1px solid #ffffff;
    transition: 0.3s;
    opacity: 0;
}

.portfolio .portfolio-item .link-preview i,
.portfolio .portfolio-item .link-details i {
    font-size: 22px;
    color: #ffffff;
}

.portfolio .portfolio-item .link-preview:hover,
.portfolio .portfolio-item .link-details:hover {
    background: #ffffff;
    border: 1px solid var(--accent);
    color: var(--accent);
}
}

.portfolio .portfolio-item .link-preview:hover i,
.portfolio .portfolio-item .link-details:hover i {
    color: #353535;
}

.portfolio .portfolio-item .link-preview {
    left: 0;
    top: calc(50% - 18px);
}

.portfolio .portfolio-item .link-details {
    right: 0;
    top: calc(50% - 18px);
}

.portfolio .portfolio-item:hover .link-preview {
    opacity: 1;
    left: calc(50% - 50px);
}

.portfolio .portfolio-item:hover .link-details {
    opacity: 1;
    right: calc(50% - 50px);
}

.portfolio .portfolio-item .portfolio-info {
    position: relative;
    width: 100%;
    padding: 30px 15px;
    text-align: center;
    background: #ffffff;
}

.portfolio .portfolio-item .portfolio-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.portfolio .portfolio-item .portfolio-info p {
    margin: 0;
    font-size: 14px;
    font-weight: 300;
    text-transform: uppercase;
}



/**************************************/
/************** Team CSS **************/
/**************************************/
.team {
    position: relative;
    padding: 90px 0;
    background: #ffffff;
}

.team .team-item {
    margin-bottom: 30px;
    overflow: hidden;
}

.team .team-item .team-img {
    position: relative;
    background: #000000;
    overflow: hidden;
    
}

.team .team-item .team-social {
    position: absolute;
    display: block;
    text-align: center;
    width: 100%;
    height: 35px;
    top: 0;
    left: 0;
    transition: 0.3s;
    opacity: 0;
}

.team .team-item .team-social a {
    display: inline-block;
    padding: 5px 0;
    line-height: 1;
    text-align: center;
    width: 35px;
    height: 35px;
    background: #4F84C4;
    border: 1px solid #ffffff;
}

.team .team-item .team-social a i {
    font-size: 22px;
    color: #ffffff;
}

.team .team-item .team-social a:hover {
    background: #ffffff;
    border: 1px solid #4F84C4;
}

.team .team-item .team-social a:hover i {
    color: #353535;
}

.team .team-item:hover .team-social {
    opacity: 1;
    top: calc(50% - 18px);
}

.team .team-item .team-info {
    position: relative;
    width: 100%;
    padding: 30px 15px;
    text-align: center;
    background: #f2f2f2;
}

.team .team-item .team-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.team .team-item .team-info p {
    margin: 0;
    font-size: 14px;
    font-weight: 300;
    text-transform: uppercase;
}



/**************************************/
/*********** Testimonials CSS *********/
/**************************************/
.testimonials {
    position: relative;
    padding: 90px 0 60px 0;
    background: #f2f2f2;
}

.testimonials .testimonial-item {
    position: relative;
    margin: 0 15px 30px 15px;
    background: #ffffff;
}

.testimonials .testimonial-img {
    position: relative;
    background: #000000;
    overflow: hidden;
}

.testimonials .testimonial-text {
    position: relative;
    width: 100%;
    padding: 30px 15px;
    text-align: center;
    background: #ffffff;
}

.testimonials .testimonial-text h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.testimonials .testimonial-text h4 {
    font-size: 12px;
    font-weight: 300;
    text-transform: uppercase;
}

.testimonials .testimonial-text p {
    margin: 0;
    font-size: 16px;
    font-weight: 300;
}

.testimonials .owl-nav,
.testimonials .owl-dots {
    margin-top: 5px;
    text-align: center;
}

.testimonials .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #dddddd;
}

.testimonials .owl-dot.active {
    background-color: var(--accent);
}

@media (max-width: 575px) {
    .testimonials .testimonial-text {
        padding: 25px;
    }
}



/**************************************/
/************* Clients CSS ************/
/**************************************/
.clients {
    position: relative;
    padding: 90px 0;
}

.clients .section-header p {
    padding-bottom: 10px;
}

.clients .owl-carousel {
    padding: 20px 0;
}

.clients img {
    max-width: 100% !important;
    max-height: 150px !important;
    min-height: 80px;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    opacity: 1;
    transition: all 0.3s ease;
    padding: 25px 20px !important;
    filter: grayscale(100%);
    display: block;
    margin: 0 auto;
}

.clients img:hover {
    opacity: 1 !important;
    filter: grayscale(0%) !important;
    transform: scale(1.1) !important;
}

.clients .owl-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
}

.clients .client-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
    padding: 10px;
}

.clients img.lazy {
    opacity: 0;
    transition: opacity 0.3s;
}

.clients img.lazy.loaded {
    opacity: 1;
}

.clients .owl-nav,
.clients .owl-dots {
    margin-top: 5px;
    text-align: center;
}

.clients .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
}

.clients .owl-dot.active {
    background-color: var(--accent);
}



/**************************************/
/************* Contact CSS ************/
/**************************************/
.contact {
    position: relative;
    padding: 90px 0;
    background: #f2f2f2;
}

.contact .container {
    max-width: 900px;
}

.contact .container .col-md-6 {
    padding: 0;
    background: #ffffff;
}

.contact .form {
    background: #ffffff;
    padding: 30px;
    color: #353535;
}

.contact .form input,
.contact .form textarea {
    padding: 10px 0;
    border-color: #dddddd transparent #dddddd transparent;
    border-radius: 0;
    box-shadow: none;
    font-size: 15px;
}

.contact .form input:focus,
.contact .form textarea:focus {
    border-color: var(--accent) transparent var(--accent) transparent;
    box-shadow: 0 0 5px rgba(79, 132, 196, 0.2);
}

.contact .form button[type="submit"] {
    color: #ffffff;
    background: var(--accent);
    border-radius: 6px;
    padding: 12px 30px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.contact .form button[type="submit"]:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact .map {
    position: relative;
    background: #ffffff;
}

.contact .map iframe {
    width: 100%;
    height: 375px;
    margin-bottom: -7px;
}



/**************************************/
/************* Footer CSS *************/
/**************************************/
.footer {
    position: relative;
    background: var(--primary);
    color: #ffffff;
}

.footer .footer-top {
    background: #f8f9fa;
    padding: 60px 0 40px 0;
    color: #333333;
}

.footer .footer-top .footer-info,
.footer .footer-top .footer-links,
.footer .footer-top .footer-contact {
    margin-bottom: 30px;
}

.footer .footer-top .footer-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.footer .footer-top .footer-info p {
    font-size: 15px;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer .footer-top .social-links {
    display: flex;
    gap: 10px;
}

.footer .footer-top .social-links a {
    font-size: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s;
    text-decoration: none;
}

.footer .footer-top .social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer .footer-top h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer .footer-top h4::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 50px;
    background: var(--accent);
    border-radius: 2px;
}

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

.footer .footer-top .footer-links ul i {
    padding-right: 8px;
    color: var(--accent);
    font-size: 14px;
    transition: all 0.3s;
}

.footer .footer-top .footer-links ul li {
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
    transition: all 0.3s;
}

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

.footer .footer-top .footer-links ul li:last-child {
    border-bottom: none;
}

.footer .footer-top .footer-links ul li:hover {
    padding-left: 5px;
}

.footer .footer-top .footer-links ul li:hover i {
    color: var(--primary);
    transform: translateX(3px);
}

.footer .footer-top .footer-links ul a {
    font-size: 15px;
    color: #666666;
    text-decoration: none;
    transition: all 0.3s;
}

.footer .footer-top .footer-links ul a:hover {
    color: var(--accent);
}

.footer .footer-top .footer-contact p {
    color: #666666;
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 10px;
}

.footer .footer-top .footer-contact p i {
    color: var(--accent);
    margin-right: 10px;
    width: 20px;
}

.footer .footer-top .footer-contact p a {
    color: #666666;
    text-decoration: none;
    transition: all 0.3s;
}

.footer .footer-top .footer-contact p a:hover {
    color: var(--accent);
}

.footer .footer-top .footer-contact p strong {
    color: var(--primary);
    font-weight: 600;
}

.footer .footer-top .footer-newsletter input[type="email"] {
    padding: 6px 8px;
    width: 60%;
    border: 1px solid #ffffff;
    background: transparent;
    color: #ffffff;
}

.footer .footer-top .footer-newsletter input[type="submit"] {
    border: 0;
    width: 40%;
    padding: 6px 0;
    text-align: center;
    color: #ffffff;
    border: 1px solid var(--accent);
    background: var(--accent);
    transition: 0.3s;
    cursor: pointer;
    font-weight: 600;
}

.footer .footer-top .footer-newsletter input[type="submit"]:hover {
    color: #ffffff;
    background: var(--primary);
    border: 1px solid var(--primary);
}

.footer .footer-top .footer-newsletter p {
    color: #ffffff;
    font-size: 14px;
}

.footer .footer-bottom {
    background: var(--primary);
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .footer-bottom .copyright,
.footer .footer-bottom .credit {
    color: #ffffff;
    font-size: 14px;
}

.footer .footer-bottom .copyright p,
.footer .footer-bottom .credit p {
    margin: 0;
    color: #ffffff;
}

.footer .footer-bottom .copyright a,
.footer .footer-bottom .credit a {
    color: var(--accent);
    text-decoration: none;
    transition: all 0.3s;
}

.footer .footer-bottom .copyright a:hover,
.footer .footer-bottom .credit a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer .footer-bottom .copyright strong {
    color: #ffffff;
    font-weight: 600;
}

@media (max-width: 768px) {
    .footer .footer-top {
        padding: 40px 0 30px 0;
    }
    
    .footer .footer-top h4 {
        font-size: 16px;
    }
    
    .footer .footer-bottom {
        text-align: center;
    }
    
    .footer .footer-bottom .credit {
        margin-top: 10px;
    }
}

/**************************************/
/********** Page Hero CSS *************/
/**************************************/
.page-hero {
    position: relative;
    padding: 80px 0 60px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: #ffffff;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.page-hero .lead {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

/**************************************/
/********** Service Card CSS **********/
/**************************************/
.service-card {
    text-align: center;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon-modern {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.service-card:hover .service-icon-modern {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(79, 132, 196, 0.3);
}

.service-icon-modern i {
    font-size: 40px;
    color: #ffffff;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.service-card p {
    font-size: 16px;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-card .btn-link {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.service-card .btn-link:hover {
    color: var(--primary);
    gap: 12px;
}

.service-card .btn-link i {
    transition: transform 0.3s;
}

.service-card .btn-link:hover i {
    transform: translateX(5px);
}

/**************************************/
/******** Service Detail CSS **********/
/**************************************/
.service-detail-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.service-detail-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary);
    margin-top: 30px;
    margin-bottom: 15px;
}

.service-detail-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.service-detail-content .lead {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.service-detail-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-sidebar .card-elevated {
    position: sticky;
    top: 100px;
}

.service-sidebar h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.service-sidebar ul li {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}

.service-sidebar .btn-primary-solid {
    margin-top: 15px;
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 36px;
    }
    
    .page-hero .lead {
        font-size: 18px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-detail-content h2 {
        font-size: 28px;
    }
    
    .service-detail-content h3 {
        font-size: 22px;
    }
    
    .service-sidebar .card-elevated {
        position: relative;
        top: 0;
        margin-top: 30px;
    }
}

/**************************************/
/********** Career Page CSS ***********/
/**************************************/
.career-position-card {
    transition: all 0.3s;
    border-left: 4px solid transparent;
    overflow: hidden;
}

.career-position-card:hover {
    transform: translateY(-5px);
    border-left-color: var(--accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.career-position-card > .p-4 {
    padding: 30px !important;
}

.career-position-card h3 {
    color: var(--primary);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.career-position-card h5 {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.career-position-card ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.career-position-card ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

.career-position-card ul li:before {
    content: "\f122";
    font-family: "Ionicons";
    position: absolute;
    left: 0;
    top: 8px;
    color: var(--accent);
    font-size: 16px;
}

.career-position-card .btn-primary-solid {
    min-width: 150px;
    white-space: nowrap;
}

.career-position-card hr {
    margin: 20px 0;
    border-top: 1px solid #e0e0e0;
}

.career-form label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: block;
}

.career-form .form-control {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 12px 15px;
    font-size: 15px;
    transition: all 0.3s;
}

.career-form .form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 0.2rem rgba(79, 132, 196, 0.25);
    outline: none;
}

.career-form .form-control-file {
    padding: 8px 0;
}

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

@media (max-width: 768px) {
    .career-position-card h3 {
        font-size: 20px;
    }
    
    .career-position-card > .p-4 {
        padding: 20px !important;
    }
    
    .career-position-card .btn-primary-solid {
        width: 100%;
        margin-top: 15px;
    }
    
    .career-position-card .col-md-6 {
        margin-bottom: 20px;
    }
}