/* ===== General ===== */
:root {
  --primary-color: #1a042b;
  --primary-light: rgb(154 79 216);;
  --secondary-color: #ffc10f;

  --font16: 16px;
  --font-poppins:'Poppins';
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, Poppins, sans-serif;
    color: #333;
    background: #fafafa;
}
a{text-decoration: none;}
h1, h2, h3, h4, h5, h6 {
    color: #1a042b;
    font-weight: 600;
}
.bg-primary.cta-section {
    background: linear-gradient(135deg, #1a042b, #3a1b5e);
}
.title_span{color: var(--primary-light);font-style: italic;font-size: 15px;}

/* ===== Header / Logo ===== */
.top_header{background-color: var(--primary-color);padding:3px 0px;}
.social_list ul li{margin-right: 10px;}
.social_list ul li a, .phone_list ul li a{color: #ccc;line-height: 1.5;}
.phone_list ul li a i{margin-right:7px;}
/* ===== Header / Logo ===== */
.header{
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);}
.navbar {
    padding:0px;
}
.navbar-brand{padding:0;}
.navbar-brand h3{color: var(--primary-color);font-weight: 700;}
.logo-img {
    height: 80px;          /* adjust as needed */
    width: auto;
    transition: transform 0.3s;
}
.logo-img:hover {
    transform: scale(1.05);
}
.navbar-nav .nav-link {
    color: #555 !important;
    font-weight: 500;
    margin: 0 5px;
    padding: 0px 15px !important;
    border-radius: 6px;
    transition: background-color 0.3s, color 0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    background-color: rgba(255,255,255,0.15);
    color: var(--primary-light) !important;
}

.navbar-toggler {
    border-color: rgba(255,255,255,0.5);
}

/* ===== Banner Slider ===== */
.banner-slide{}
.banner-slide .banner_content{padding-left:100px;}
.banner-slide .banner_content h1 {color:var(--primary-light);text-shadow: 2px 2px 8px rgba(0,0,0,0.6);}
.banner-slide p.lead {background-color: var(--secondary-color);display: inline-block;padding:2px 10px 5px;border-radius: 50px;}

.swiper-button-next,.swiper-button-prev {color: #eee;}
.swiper-button-next:after,.swiper-button-prev:after{font-size: 30px;}
.swiper-pagination-bullet{background: var(--primary-color);}
.swiper-pagination-bullet-active {
    background: var(--secondary-color);
}

/* ===== Breadcrumb Section ===== */
.breadcrumb-section {
    background: linear-gradient(135deg, #1a042b, #8819c6, #1a042b);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    padding: 60px 0;
    margin-bottom: 0;
    text-align: center;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.breadcrumb-section .breadcrumb {
    background: transparent;
    margin-bottom: 0;
    padding: 0;
    display: flex;
    justify-content: left;
}

.breadcrumb-section .breadcrumb-item a {
    color: var(--secondary-color);                  /* yellow */
    text-decoration: none;
    font-weight: 500;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.breadcrumb-section .breadcrumb-item a:hover {
    color: #fff;
    text-decoration: underline;
}

.breadcrumb-section .breadcrumb-item.active {
    color: var(--secondary-color);                 /* yellow */
    font-weight: 600;
    font-size: 1.5rem;
}

.breadcrumb-section .breadcrumb-item + .breadcrumb-item::before {
    color: var(--secondary-color);                 /* yellow separator */
    content: "›";                    /* alternative to default "/" */
    font-weight: 300;
    padding: 0 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .breadcrumb-section {
        padding: 30px 0;
    }
    .breadcrumb-section .breadcrumb-item a,
    .breadcrumb-section .breadcrumb-item.active {
        font-size: 1rem;
    }
}

/* ===== Sections ===== */
section {
    padding-top: 60px;
    padding-bottom: 60px;
}

.bg-light {
    background-color: #f4f2f7 !important; /* slight tint from logo colour */
}

.home_about .home_about_content span{font-style: italic;color: var(--primary-light);display: block;margin-bottom:15px;}

/* ===== Cards ===== */
.card {
    border: none;
    border-radius: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.13);
}
.card img{height: 250px;width: 250px;object-fit: cover;}
.card-title, .card h5 {
    color: #1a042b;
}

/* ===== Buttons ===== */
.btn-primary {
    background-color: #1a042b;
    border-color: #1a042b;
    font-weight: 500;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #2d0a4a;
    border-color: #2d0a4a;
}

.btn-light {
    background-color: #fff;
    color: #1a042b;
    border: 2px solid #fff;
    font-weight: 600;
}

.btn-light:hover {
    background-color: #f8f8f8;
    color: #1a042b;
}

.btn-outline-light {
    border: 2px solid #fff;
    color: #fff;
}

.btn-outline-light:hover {
    background-color: #fff;
    color: #1a042b;
}

/* ===== Footer ===== */
footer {
    background-color: var(--primary-color);
    color: #ddd;
}

footer h5 {
    color: #fff;
}

footer a {
    color: #ddd;
    transition: color 0.3s;
}

footer a:hover {
    color: #fff;
}

footer hr {
    border-color: rgba(255,255,255,0.15);
}
footer .link_widgets ul li{margin-bottom:15px;}
footer .link_widgets ul li a::before {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    display: inline-block;
    margin-right: 8px;transition: ease .5s;
}
footer .link_widgets ul li:hover a::before {
    content: "\f101";
    font-family: "Font Awesome 6 Free";
    font-weight: 900; /* Required for Solid icons */
    display: inline-block;
    margin-right: 8px;
}

/* ===== Contact Form ===== */
.form-control:focus {
    border-color: #1a042b;
    box-shadow: 0 0 0 0.2rem rgba(26, 4, 43, 0.25);
}

/* ===== Team & Gallery ===== */
.rounded-circle {
    object-fit: cover;
    border: 4px solid #1a042b;
}
.team_div{background: #fff;padding:20px;border-radius: 500px;box-shadow: 5px 5px 20px -10px #00000080;overflow: hidden;}
.team_div img{height: 250px;width: 220px;}
.service_card{border-radius: 20px;overflow: hidden;padding:20px;}
.service_card img{width: 100%;height:250px;object-fit: cover;border-radius: 20px;margin-bottom: 15px;}
.service_card .card-body{padding: 0;}
.service_card p{margin-bottom: 0;}
.infra_div img{height:600px;width: 100%;}
.infra_div .card-body{position:absolute;bottom:20px;left:20px;background-color: rgba(255, 255, 255, 0.7);border-radius: 15px;}
.infra_div .card-body h5{color:var(--primary-light);}
.gallery_div img{height:250px;width:auto;}
.contact h5{color: var(--primary-light);}
.contact h3{color: var(--primary-color);font-size: 40px; font-weight: 900;}
.faq_accordion .title_div span{color: var(--primary-light);font-size: 15px;font-style: italic;}

/* ===== Responsive Logo ===== */
@media (max-width: 768px) {
	.top_header{display: none;}
    .logo-img {
        height: 70px;
    }
    .navbar-nav .nav-link {
        padding: 10px 20px !important;font-size: 19px;
        border-bottom: 1px dashed #777;
        margin: 3px 0;
    }
.banner-slide{height: 30vh !important;}
.banner-slide .banner_content h1 {font-size: 25px;}
.banner-slide p.lead {font-size: 15px;}
.infra_div img{height: 400px;}

}
