/**************************************/
/************ General CSS *************/
/**************************************/
body {
    color: #757575;
    font-family: 'Raleway', sans-serif;
    background: #ffffff;
}

a {
    color: #4F84C4;
    transition: 0.3s;
}

a:hover,
a:active,
a:focus {
    color: #666666;
    outline: none;
    text-decoration: none;
}

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

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

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

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



/**************************************/
/********** Back to Top CSS ***********/
/**************************************/
.back-to-top {
    position: fixed;
    display: none;
    background: #4F84C4;
    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;
}

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



/**************************************/
/************ Modern Navbar ***********/
/**************************************/

/* Navbar wrapper */
#nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: 76px;
    background: rgba(0, 0, 0, 0.85); /* dark background */
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    z-index: 999;
    transition: all 0.3s ease;
}

/* Sticky Navbar */
#nav.nav-sticky {
    height: 68px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

/* Navbar container */
#nav .navbar {
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent !important;
}

/* Logo */
#nav .navbar-brand {
    display: flex;
    align-items: center;
}

#nav .navbar-brand img {
    max-height: 44px;
    transition: all 0.3s ease;
}

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

/* Menu alignment desktop */
#nav .navbar-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Links */
#nav .nav-link {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    padding: 10px 18px;
    border-radius: 999px;
    transition: all 0.25s ease;
}

#nav .nav-link:hover {
    background: rgba(79,132,196,0.2);
    color: #4F84C4;
}

#nav .nav-link.active {
    background: #4F84C4;
    color: #ffffff;
}

/* Dropdown */
#nav .dropdown-menu {
    margin-top: 12px;
    border: none;
    border-radius: 14px;
    padding: 10px;
    box-shadow: 0 24px 48px rgba(0,0,0,0.12);
    background: #fff;
}

#nav .dropdown-item {
    font-size: 14px;
    padding: 10px 14px;
    border-radius: 10px;
    color: #353535;
}

#nav .dropdown-item:hover {
    background: rgba(79,132,196,0.12);
    color: #4F84C4;
}

/* Hamburger button */
.navbar-toggler {
    display: none; /* hide on desktop */
    font-size: 28px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    z-index: 1000;
}

/* Desktop menu layout */
@media (min-width: 769px) {
    #nav .navbar {
        flex-direction: row !important;
        align-items: center;
    }

    /* Hamburger hilang */
    .navbar-toggler {
        display: none !important;
    }

    /* Menu duduk kanan */
    #nav .navbar-collapse {
        display: flex !important;
        margin-left: auto;
    }

    #nav .navbar-nav {
        flex-direction: row;
        align-items: center;
    }
}

/* Mobile styles */
@media (max-width: 768px) {

    #nav {
        height: auto;
        padding: 10px 0;
    }

    #nav .navbar {
        flex-direction: column;
        align-items: stretch;
    }

    /* Hamburger muncul */
    .navbar-toggler {
        display: block;
        align-self: flex-end;
    }

    #nav .navbar-collapse {
        display: none;
        flex-direction: column;
        gap: 10px;
        margin-top: 12px;
        background: rgba(0, 0, 0, 0.9);
        border-radius: 16px;
        padding: 14px;
    }

    #nav .navbar-collapse.show {
        display: flex;
    }

    #nav .navbar-nav {
        flex-direction: column;
    }

    #nav .nav-link {
        color: #fff;
        text-align: center;
    }

    #nav .nav-link:hover {
        background: rgba(79,132,196,0.2);
        color: #4F84C4;
    }
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: #4F84C4;
    color: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    z-index: 999;
    font-size: 18px;
}

/**************************************/
/************* Header CSS *************/
/**************************************/
.header {
    position: relative;
    width: 100%;
    background: #ffffff;
    margin-top: 100px;
}

/* Carousel Item */
.header .carousel-item {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Image */
.header .carousel-img {
    text-align: center;
}

.header .carousel-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Content */
.header .carousel-content {
    padding: 40px 20px;
    text-align: center;
}

.header .carousel-content h2 {
    color: #1e3a8a; /* corporate navy */
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.header .carousel-content p {
    color: #475569;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-bottom: 26px;
}

/* Button */
.header .carousel-content .btn {
    padding: 12px 32px;
    background: #1e3a8a;
    color: #ffffff;
    border-radius: 2px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.header .carousel-content .btn:hover {
    background: #162f6a;
}

/**************************************/
/******** Carousel Arrows *************/
/**************************************/
.carousel-control-prev,
.carousel-control-next {
    width: 6%;
    opacity: 1;
}

.carousel-control-prev i,
.carousel-control-next i {
    font-size: 22px;
    color: #64748b;
    background: transparent;
    transition: color 0.3s ease;
}

.carousel-control-prev:hover i,
.carousel-control-next:hover i {
    color: #1e3a8a;
}

/**************************************/
/******** Indicators (Minimal) ********/
/**************************************/
.carousel-indicators {
    bottom: 14px;
}

.carousel-indicators li {
    width: 18px;
    height: 2px;
    background: #cbd5e1;
    margin: 0 4px;
    border-radius: 0;
}

.carousel-indicators .active {
    background: #1e3a8a;
}

/**************************************/
/************ Responsive **************/
/**************************************/
@media (max-width: 991px) {
    .header .carousel-content h2 {
        font-size: 34px;
    }

    .header .carousel-content p {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .header {
        margin-top: 80px;
    }

    .carousel-control-prev i,
    .carousel-control-next i {
        font-size: 18px;
    }
}




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

.section-header h2 {
    color: #666666;
    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: #cccccc;
    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;
}

/**************************************/
/********* About + Single CSS Redesign *********/
/**************************************/
.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;
}

/* ==== IMAGE ==== */
.about .about-img,
.single .single-img {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: transform 0.4s ease;
}

.about .about-img img,
.single .single-img img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

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

/* ==== CONTENT CARD ==== */
.about .about-content,
.single .single-content {
    position: relative;
    width: 80%;
    margin: -80px auto 0 auto;
    padding: 40px 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about .about-content:hover,
.single .single-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 38px rgba(0,0,0,0.12);
}

/* ==== TEXT ==== */
.about .about-content h2,
.single .single-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
}

.about .about-content p,
.single .single-content p {
    font-size: 16px;
    font-weight: 400;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* ==== BUTTON ==== */
.about .btn,
.single .btn {
    font-size: 14px;
    letter-spacing: 1px;
    color: #ffffff;
    background: #4F84C4;
    padding: 10px 25px;
    border-radius: 6px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.about .btn:hover,
.single .btn:hover {
    background: #3a6ca8;
    transform: translateY(-2px);
}


/**************************************/
/************ Services CSS *************/
/**************************************/

.service {
    background: #ffffff;
    padding: 90px 0 60px 0;
}

/* semua column stretch sama tinggi */
.service .row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.service .service-item {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border-radius: 12px;
    overflow: hidden;
}

/* ICON PART */
.service .service-icon {
    background: #4F84C4;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px; /* penting supaya semua sama tinggi */
}

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

/* DETAIL PART */
.service .service-detail {
    background: #f2f2f2;
    padding: 30px 20px;
    flex: 1; /* isi ruang baki supaya sama panjang */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service .service-detail h4,
.service .service-detail h4 a {
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 1px;
    text-transform: capitalize;
    margin-bottom: 10px;
    color: #333;
}

.service .service-detail p {
    margin: 0;
    font-size: 14px;
    line-height: 24px;
    color: #666;
}



/**************************************/
/********* Call To Action CSS *********/
/**************************************/
.call-to-action {
    position: relative;
    padding: 90px 0;
    background: #4F84C4;
}

.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: #4F84C4;
    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: #4F84C4;
}

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

.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;
    background: #f9fafb; /* soft corporate background */
}

/* Section Header */
.skills .section-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 60px;
}

.skills .section-header h2 {
    font-size: 30px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 14px;
}

.skills .section-header p {
    font-size: 15px;
    color: #475569;
    line-height: 1.7;
}

/* Each Skill Item */
.skills .skill-item {
    width: 100%;
    margin-bottom: 30px;
}

/* Skill Name + Percentage */
.skills .skill-name {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.skills .skill-name p {
    margin: 0; /* font untouched */
}

/* Progress Bar Container */
.skills .progress {
    height: 12px;
    background: #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.05);
}

/* Base Progress Bar */
.skills .progress .progress-bar {
    height: 100%;
    border-radius: 8px;
    transition: width 1s ease-in-out;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* ===== Corporate Solid Color Variants ===== */

.skills .progress-primary {
    background-color: #dd2295; /* muted magenta */
}

.skills .progress-secondary {
    background-color: #d8c349; /* soft gold */
}

.skills .progress-tertiary {
    background-color: #53974a; /* corporate green */
}

/* Responsive */
@media (max-width: 768px) {
    .skills .progress {
        height: 10px;
    }
}


/**************************************/
/************ Counters CSS ************/
/**************************************/
.counters {
    position: relative;
    width: 100%;
    padding: 90px 0;
    background-color: #4159c4; /* corporate blue */
    overflow: hidden;
}

/* subtle overlay for depth */
.counters::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at top,
        rgba(255,255,255,0.12),
        transparent 60%
    );
    pointer-events: none;
}

.counters .row {
    row-gap: 40px;
}

/* Counter Item */
.counters .col-lg-3 {
    position: relative;
    padding: 10px 20px;
}

/* Icon */
.counters i {
    font-size: 38px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 16px;
    display: inline-block;
}

/* Number */
.counters h2 {
    font-family: 'Arial, Helvetica', sans-serif;
    font-size: 50px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #ffffff;
    margin-bottom: 6px;
}

/* Label */
.counters p {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    margin: 0;
}

/* Divider line */
.counters .col-lg-3::after {
    content: "";
    position: absolute;
    top: 25%;
    right: 0;
    width: 1px;
    height: 50%;
    background: rgba(255,255,255,0.18);
}

/* Remove divider last */
.counters .col-lg-3:last-child::after {
    display: none;
}

/* Hover – very subtle corporate interaction */
.counters .col-lg-3:hover i {
    transform: translateY(-2px);
    transition: transform 0.3s ease;
}

/* Mobile */
@media (max-width: 991px) {
    .counters {
        padding: 70px 0;
    }

    .counters .col-lg-3::after {
        display: none;
    }

    .counters h2 {
        font-size: 42px;
    }
}




/**************************************/
/******** Corporate Portfolio *********/
/**************************************/
.portfolio {
    padding: 90px 24px 70px;
    background: #f9fafb;
}

/* ================= Section Header ================= */
.portfolio .section-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 72px;
}

.portfolio .section-header h2 {
    font-size: 30px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 14px;
    letter-spacing: -0.3px;
}

.portfolio .section-header p {
    font-size: 15px;
    color: #475569;
    line-height: 1.75;
}

/* ================= Grid ================= */
.portfolio-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 32px;
}

/* ================= Item ================= */
.portfolio-item {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease;
    box-shadow: 0 6px 18px rgba(15,23,42,0.06);
}

.portfolio-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(15,23,42,0.10);
}

/* ================= Image ================= */
.portfolio-img {
    height: 190px;
    background: linear-gradient(180deg, #f8fafc, #f1f5f9);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
}

.portfolio-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform .35s ease;
}

.portfolio-item:hover .portfolio-img img {
    transform: scale(1.03);
}

/* ================= Info ================= */
.portfolio-info {
    padding: 22px 26px 26px;
    display: flex;
    flex-direction: column;
}

.portfolio-info h3 {
    font-size: 16px;
    font-weight: 500;
    color: #0f172a;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.portfolio-info p {
    font-size: 14px;
    color: #64748b;
    margin-top: 8px;
    line-height: 1.6;
}

/* ================= Link ================= */
.portfolio-info a {
    margin-top: auto;
    font-size: 13.5px;
    font-weight: 500;
    color: #2563eb;
    text-decoration: none;
    transition: color .25s ease;
}

.portfolio-info a:hover {
    color: #1e40af;
}

/* ================= Responsive ================= */
@media (max-width: 1024px) {
    .portfolio-container {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 28px;
    }
}

@media (max-width: 640px) {
    .portfolio {
        padding: 70px 16px 60px;
    }

    .portfolio-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .portfolio-img {
        height: 170px;
    }
}


/**************************************/
/************** 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: #4F84C4;
}

@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 img {
    max-width: 100%;
    opacity: 1;
    transition: 0.3s;
    padding: 15px 0;
}

.clients img:hover {
    opacity: .5;
}

.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: #4F84C4;
}



/**************************************/
/************* 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: #4F84C4 transparent #4F84C4 transparent;
}

.contact .form button[type="submit"] {
    color: #ffffff;
    background: #888888;
    border-radius: 0;
}

.contact .form button[type="submit"]:hover {
    background: #4F84C4;
}

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

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



/**************************************/
/************ Modern Light Footer *****/
/**************************************/
.footer {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0,0,0,0.06);
    color: #475569;
    font-size: 14px;
}

/* Top section */
.footer .footer-top {
    max-width: 1200px;
    margin: 0 auto;
    padding: 70px 24px 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

/* Headings */
.footer h4 {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Text */
.footer p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 12px;
}

/* Links */
.footer a {
    color: #475569;
    transition: all 0.25s ease;
}

.footer a:hover {
    color: #4F84C4;
    transform: translateX(4px);
}

/* Social */
.footer .social-links {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.footer .social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(15,23,42,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f172a;
    font-size: 16px;
}

.footer .social-links a:hover {
    background: #4F84C4;
    color: #ffffff;
}

/* Newsletter */
.footer .footer-newsletter input[type="email"] {
    width: 100%;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid #cbd5e1;
    background: #ffffff;
    color: #0f172a;
    margin-bottom: 10px;
}

.footer .footer-newsletter input::placeholder {
    color: #94a3b8;
}

.footer .footer-newsletter input[type="submit"] {
    width: 100%;
    padding: 10px;
    border-radius: 999px;
    border: none;
    background: #4F84C4;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.footer .footer-newsletter input[type="submit"]:hover {
    background: #3b6fa8;
}

/* Bottom bar */
.footer-bottom {
    border-top: 1px solid rgba(0,0,0,0.06);
    padding: 20px 24px;
}

.footer-bottom .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* center horizontal */
    align-items: center;     /* center vertical */
    gap: 20px;
    text-align: center;      /* center text */
}


.footer-bottom p {
    margin: 0;
    font-size: 13px;
    color: #64748b;
}

/* Mobile */
@media (max-width: 768px) {
    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
    }
}
