/**************************************/
/************ General CSS *************/
/**************************************/
:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --secondary-color: #6366f1;
    --accent-color: #8b5cf6;
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --text-light: #9ca3af;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

body {
    color: #374151;
    font-family: 'Inter', 'Segoe UI', 'Raleway', sans-serif;
    background: #ffffff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--primary-color);
    transition: all 0.3s ease;
    text-decoration: none;
}

a:hover,
a:active,
a:focus {
    color: var(--primary-dark);
    outline: none;
    text-decoration: none;
}

p {
    color: var(--text-gray);
    padding: 0;
    margin: 0 0 15px 0;
    font-size: 16px;
    line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 15px 0;
    padding: 0;
    line-height: 1.2;
}

h4,
h5,
h6 {
    font-weight: 600;
}

.mt-100 {
    margin-top: 100px;
}



/**************************************/
/********** Back to Top CSS ***********/
/**************************************/
.back-to-top {
    position: fixed;
    display: none;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #ffffff;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    font-size: 24px;
    right: 20px;
    bottom: 20px;
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    z-index: 999;
    cursor: pointer;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
}

.back-to-top i {
    color: #ffffff;
    line-height: 50px;
}



/**************************************/
/************** Nav CSS ***************/
/**************************************/
#nav {
    position: fixed;
    top: 0;
    width: 100%;
    min-height: 110px;
    padding: 20px 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

#nav.nav-sticky {
    min-height: 85px;
    padding: 12px 0;
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.98) !important;
    transition: all 0.3s ease;
}

#nav .navbar {
    min-height: 100%;
    background: transparent !important;
}

#nav .navbar-brand {
    padding: 0;
    height: 100%;
    display: flex;
    align-items: center;
}

#nav .navbar-brand img {
    max-height: 90px;
    height: auto;
    width: auto;
    margin-top: 0;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

#nav.nav-sticky .navbar-brand img {
    max-height: 75px;
    height: auto;
    width: auto;
    transition: all 0.3s ease;
}

#nav .nav-link,
#nav .nav-link:focus,
#nav .nav-link:hover,
#nav .nav-link.active {
    color: var(--text-dark);
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin: 0 3px;
}

#nav .nav-link:hover,
#nav .nav-link.active {
    color: var(--primary-color);
    background: rgba(37, 99, 235, 0.1);
    transform: translateY(-2px);
}

#nav .dropdown-menu {
    margin-top: 10px;
    border: none;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: var(--shadow-lg);
    padding: 10px 0;
}

#nav .dropdown-item {
    padding: 10px 20px;
    color: var(--text-dark);
    transition: all 0.2s ease;
    border-radius: 0;
}

#nav .dropdown-item:hover {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
    padding-left: 25px;
}

@media (min-width: 768px) {
    #nav,
    #nav .navbar {
        background: rgba(255, 255, 255, 0.95) !important;
    }
    
    #nav a.nav-link {
        padding: 10px 18px;
        font-size: 15px;
        text-transform: none;
        letter-spacing: 0.3px;
    }
}

@media (max-width: 768px) {   
    #nav,
    #nav .navbar {
        background: rgba(255, 255, 255, 0.98) !important;
    }
    
    #nav a.nav-link {
        padding: 10px 15px;
    }
    
    #nav .dropdown-menu {
        box-shadow: var(--shadow-md);
        border-radius: 8px;
    }
    
    #nav .container-fluid {
        padding: 0 15px;
    }
}



/**************************************/
/************* Header CSS *************/
/**************************************/
.header {
    position: relative;
    width: 100%;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    margin-top: 90px;
}

.header .carousel-item {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.header .carousel-img {
    text-align: center;
}

.header .carousel-img img {
    max-width: 100%;
    max-height: 100%;
}

.header .carousel-content {
    padding: 30px;
    text-align: center;
}

.header .carousel-content h2 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-transform: none;
    margin-bottom: 20px;
    line-height: 1.2;
}

.header .carousel-content p {
    color: var(--text-gray);
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0;
    margin-bottom: 30px;
    line-height: 1.6;
}

.header .carousel-content .btn {
    padding: 14px 35px;
    color: #ffffff;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    font-weight: 600;
    font-size: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
}

.header .carousel-content .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
}

.carousel-control-next i,
.carousel-control-prev i {
    color: var(--primary-color);
    font-size: 40px;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.carousel-control-next i:hover,
.carousel-control-prev i:hover {
    color: var(--primary-dark);
    transform: scale(1.1);
}

.carousel-indicators li {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
}

.carousel-indicators li.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 6px;
}



/**************************************/
/******** Section Header CSS **********/
/**************************************/
.section-header {
    position: relative;
    max-width: 800px;
    margin: 0 auto 70px auto;
    padding-bottom: 30px;
}

.section-header h2 {
    color: var(--text-dark);
    font-size: 42px;
    font-weight: 800;
    text-transform: none;
    letter-spacing: -0.5px;
    text-align: center;
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-header::after {
    content: '';
    position: absolute;
    display: inline-block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 2px;
    bottom: 0;
    left: calc(50% - 40px);
}

.section-header p {
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    margin: 0;
    color: var(--text-gray);
    line-height: 1.7;
}



/**************************************/
/********* About + Single CSS *********/
/**************************************/
.about,
.single {
    position: relative;
    padding: 100px 0 70px 0;
    background: var(--bg-light);
}

.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%;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.about .about-img:hover img,
.single .single-img:hover img {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.about .about-content,
.single .single-content {
    position: relative;
    width: 80%;
    margin: -100px auto 0 auto;
    padding: 40px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.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: 15px;
    letter-spacing: 0.5px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    border: none;
    display: inline-block;
}

.about .btn:hover,
.single .btn:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}



/**************************************/
/************ Services CSS ************/
/**************************************/
.service {
    background: #ffffff;
    padding: 100px 0 70px 0;
    text-align: center;
}

.service .service-item {
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.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(--primary-color) 0%, var(--secondary-color) 100%);
    transition: all 0.3s ease;
}

.service .service-item:hover .service-icon {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
}

.service .service-icon i {
    font-size: 64px;
    line-height: 0;
    color: #ffffff;
    transition: all 0.3s ease;
}

.service .service-item:hover .service-icon i {
    transform: scale(1.1) rotate(5deg);
}

.service .service-detail {
    position: relative;
    width: 100%;
    padding: 35px 20px;
    background: var(--bg-white);
    border-top: 3px solid transparent;
    transition: all 0.3s ease;
}

.service .service-item:hover .service-detail {
    border-top-color: var(--primary-color);
}

.service .service-detail h4,
.service .service-detail h4 a {
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: 0;
    text-transform: none;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.service .service-detail h4 a:hover {
    color: var(--primary-color);
}

.service .service-detail p {
    margin: 0;
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.6;
}



/**************************************/
/********* Call To Action CSS *********/
/**************************************/
.call-to-action {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
    overflow: hidden;
}

.call-to-action::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.call-to-action .container {
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.call-to-action .section-header h2 {
    color: #ffffff;
}

.call-to-action .section-header::after {
    background: #ffffff;
}

.call-to-action .section-header p {
    color: rgba(255, 255, 255, 0.95);
}

.call-to-action .btn {
    padding: 16px 40px;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
    text-transform: none;
    background: #ffffff;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    border: none;
    display: inline-block;
}

.call-to-action .btn:hover {
    color: #ffffff;
    background: var(--text-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}



/**************************************/
/************* Pricing CSS ************/
/**************************************/
.pricing {
    background: var(--bg-light);
    padding: 100px 0 70px 0;
}

.pricing .price-content {
    position: relative;
    background: #ffffff;
    text-align: center;
    margin-bottom: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    overflow: hidden;
}

.pricing .price-content:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.pricing .price-plan {
    display: block;
    background: linear-gradient(135deg, var(--text-dark) 0%, #374151 100%);
    margin: 0 0 30px;
    padding: 30px 0;
    position: relative;
}

.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(--primary-color);
    margin-right: 8px;
    font-size: 18px;
}

.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: linear-gradient(135deg, var(--text-dark) 0%, #374151 100%);
    color: #ffffff;
    border-radius: 50px;
    padding: 12px 35px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.pricing .price-btn:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.pricing .features-price-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50px;
    padding: 12px 35px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.pricing .features-price-btn:hover {
    background: linear-gradient(135deg, var(--text-dark) 0%, #374151 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.pricing .features-price .price-plan {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.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: #4F84C4;
    border-radius: 0;
}



/**************************************/
/************ Counters CSS ************/
/**************************************/
.counters {
    position: relative;
    width: 100%;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    overflow: hidden;
}

.counters::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.counters i {
    display: inline-block;
    font-size: 56px;
    line-height: 0;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.counters .col-lg-3:hover i {
    transform: scale(1.1);
    color: #ffffff;
}

.counters h2 {
    font-family: 'Inter', 'Arial', sans-serif;
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -1px;
    color: #ffffff;
    margin-bottom: 10px;
}

.counters p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}



/**************************************/
/************ 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: #4F84C4;
    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 #4F84C4;
}

.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: 100px 0;
    background: #ffffff;
}

.team .team-item {
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.team .team-item:hover {
    transform: translateY(-8px);
}

.team .team-item .team-img {
    position: relative;
    background: #000000;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.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: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: 2px solid #ffffff;
    border-radius: 50%;
    margin: 0 3px;
    transition: all 0.3s ease;
}

.team .team-item .team-social a:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: var(--shadow-md);
}

.team .team-item .team-social a i {
    font-size: 22px;
    color: #ffffff;
}

.team .team-item .team-social a:hover {
    background: #ffffff;
    border-color: var(--primary-color);
}

.team .team-item .team-social a:hover i {
    color: var(--primary-color);
}

.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: var(--bg-white);
    border-radius: 0 0 16px 16px;
    box-shadow: var(--shadow-md);
}

.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: 100px 0 70px 0;
    background: var(--bg-light);
}

.testimonials .testimonial-item {
    position: relative;
    margin: 0 15px 30px 15px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    overflow: hidden;
}

.testimonials .testimonial-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.testimonials .testimonial-img {
    position: relative;
    background: #000000;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.testimonials .testimonial-text {
    position: relative;
    width: 100%;
    padding: 35px 20px;
    text-align: center;
    background: #ffffff;
    border-radius: 0 0 16px 16px;
}

.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: #e5e7eb;
    transition: all 0.3s ease;
}

.testimonials .owl-dot:hover {
    background-color: var(--primary-light);
    transform: scale(1.2);
}

.testimonials .owl-dot.active {
    background-color: var(--primary-color);
    width: 30px;
    border-radius: 6px;
}

@media (max-width: 575px) {
    .testimonials .testimonial-text {
        padding: 25px;
    }
}



/**************************************/
/************* Clients CSS ************/
/**************************************/
.clients {
    position: relative;
    padding: 100px 0;
    background: #ffffff;
}

.clients .section-header p {
    padding-bottom: 10px;
}

.clients img {
    max-width: 100%;
    opacity: 0.6;
    transition: all 0.3s ease;
    padding: 20px;
    filter: grayscale(100%);
}

.clients img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.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: #e5e7eb;
    transition: all 0.3s ease;
}

.clients .owl-dot:hover {
    background-color: var(--primary-light);
    transform: scale(1.2);
}

.clients .owl-dot.active {
    background-color: var(--primary-color);
    width: 30px;
    border-radius: 6px;
}



/**************************************/
/************* Contact CSS ************/
/**************************************/
.contact {
    position: relative;
    padding: 100px 0;
    background: var(--bg-light);
}

.contact .container {
    max-width: 900px;
}

.contact .container .col-md-6 {
    padding: 0;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.contact .form {
    background: #ffffff;
    padding: 40px;
    color: var(--text-dark);
    border-radius: 16px 0 0 16px;
}

.contact .map {
    border-radius: 0 16px 16px 0;
    overflow: hidden;
}

.contact .form input,
.contact .form textarea {
    padding: 12px 0;
    border-color: #e5e7eb transparent #e5e7eb transparent;
    border-radius: 0;
    box-shadow: none;
    font-size: 15px;
    transition: all 0.3s ease;
}

.contact .form input:focus,
.contact .form textarea:focus {
    border-color: var(--primary-color) transparent var(--primary-color) transparent;
    outline: none;
}

.contact .form button[type="submit"] {
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50px;
    padding: 14px 40px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.contact .form button[type="submit"]:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.contact .map {
    position: relative;
    background: #ffffff;
}

.contact .map iframe {
    width: 100%;
    height: 375px;
    margin-bottom: -7px;
}



/**************************************/
/************* Footer CSS *************/
/**************************************/
.footer {
    position: relative;
    padding: 0 0 30px 0;
    background: linear-gradient(135deg, var(--text-dark) 0%, #111827 100%);
}

.footer .footer-top {
    background: linear-gradient(135deg, var(--text-dark) 0%, #111827 100%);
    padding: 80px 0 40px 0;
}

.footer .footer-top .footer-info,
.footer .footer-top .footer-links,
.footer .footer-top .footer-contact,
.footer .footer-top .footer-newsletter {
    margin-bottom: 30px;
}

.footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    line-height: 1;
    padding: 10px 0;
    margin-right: 8px;
    text-align: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.footer .footer-top .social-links a:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.footer .footer-top h4 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    text-transform: none;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 25px;
    letter-spacing: 0.3px;
}

.footer .footer-top h4::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 50px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    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: #ffffff;
    font-size: 16px;
}

.footer .footer-top .footer-links ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 0;
    transition: all 0.2s ease;
}

.footer .footer-top .footer-links ul li:hover {
    padding-left: 5px;
}

.footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

.footer .footer-top .footer-links ul a {
    font-size: 14px;
    color: #ffffff;
}

.footer .footer-top .footer-links ul a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.footer .footer-top .footer-contact p {
    color: #ffffff;
    line-height: 26px;
}

.footer .footer-top .footer-newsletter input[type="email"] {
    padding: 12px 15px;
    width: 60%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border-radius: 50px 0 0 50px;
    transition: all 0.3s ease;
}

.footer .footer-top .footer-newsletter input[type="email"]:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.1);
}

.footer .footer-top .footer-newsletter input[type="submit"] {
    border: 0;
    width: 40%;
    padding: 12px 0;
    text-align: center;
    color: #ffffff;
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 0 50px 50px 0;
    font-weight: 600;
}

.footer .footer-top .footer-newsletter input[type="submit"]:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.footer .footer-top .footer-newsletter p {
    color: #ffffff;
    font-size: 14px;
}

.footer .credit,
.footer .copyright {
    text-align: center;
    padding-top: 30px;
    color: rgba(255, 255, 255, 0.7);
}

.footer .credit a,
.footer .copyright a {
    color: var(--primary-light);
    transition: all 0.3s ease;
}

.footer .credit a:hover,
.footer .copyright a:hover {
    color: #ffffff;
}

@media (min-width: 768px) {
    .footer .credit {
        text-align: right;
    }
    
    .footer .copyright {
        text-align: left;
    }
}