:root{
--primary-color:#1F4E79;
--secondary-color:#C0392B;
}
.text-primary1{
color:var(--primary-color) !important;
}
.text-secondary1{
color:var(--secondary-color) !important;
}

.hero{
padding:100px 0;
background:linear-gradient(120deg,#1F4E79 0%, #163a59 100%);
position:relative;
overflow:hidden;
}

.hero-content{
max-width:550px;
color:#fff;
}

.hero-tag{
background:rgba(255,255,255,0.12);
padding:6px 14px;
border-radius:30px;
font-size:14px;
display:inline-block;
margin-bottom:15px;
}

.hero h1{
font-size:48px;
font-weight:700;
margin-bottom:15px;
line-height:1.2;
}

.hero p{
font-size:18px;
opacity:.9;
margin-bottom:30px;
}

.hero-buttons{
display:flex;
gap:15px;
flex-wrap:wrap;
}

.btn-primary{
background:var(--secondary-color);
color:#fff;
padding:14px 28px;
border-radius:40px;
text-decoration:none;
font-weight:600;
transition:.3s;
box-shadow:0 10px 30px rgba(192,57,43,.4);
}

.btn-primary:hover{
transform:translateY(-3px);
box-shadow:0 15px 40px rgba(192,57,43,.6);
}

.btn-outline{
border:2px solid #fff;
color:#fff;
padding:14px 28px;
border-radius:40px;
text-decoration:none;
font-weight:600;
transition:.3s;
}

.btn-outline:hover{
background:#fff;
color:var(--primary-color);
transform:translateY(-3px);
}

.hero-image img{
width:520px;
max-width:100%;
border-radius:20px;
box-shadow:0 20px 60px rgba(0,0,0,.4);
}

@media(max-width:992px){

.hero{
padding:70px 0;
}

.hero h1{
font-size:36px;
}

.hero-wrapper{
text-align:center;
justify-content:center;
}

.hero-buttons{
justify-content:center;
}

.hero-image img{
margin-top:30px;
}
}


.vision-mission-card{
transition: all 0.35s ease;
position: relative;
overflow: hidden;
}

.vision-mission-card:hover{
transform: translateY(-8px);
box-shadow: 0 20px 40px rgba(0,0,0,0.12);
border-color:#0d6efd !important;
}

.vision-mission-card i{
transition: all 0.35s ease;
}

.vision-mission-card:hover i{
color:#0d6efd;
transform: scale(1.2);
}

.vision-mission-card p{
transition: all 0.35s ease;
}

.vision-mission-card:hover p{
color:#333 !important;
}

.vision-mission-card::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:0;
background:linear-gradient(120deg,#0d6efd10,#dc354510);
transition:0.4s;
z-index:0;
}

.vision-mission-card:hover::before{
height:100%;
}

.vision-mission-card *{
position:relative;
z-index:1;
}

.services-section {
    background: linear-gradient(135deg, #f4f7fb, #ffffff);
}

.main-heading {
    font-size: 38px;
    font-weight: 700;
    color: #1a1a1a;
}

.subtitle {
    color: #777;
    font-size: 16px;
}
.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.service-card .icon {
    font-size: 35px;
    color: var(--primary-color);
    margin-bottom: 15px;
}
.service-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}
.service-card p {
    font-size: 14px;
    color: #666;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.why-choose-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
}

.why-choose-section .main-heading {
    color: #fff;
    font-weight: 700;
}

.why-choose-section .subtitle {
    color: #ddd;
}
.why-choose-card-line {
    position: relative;
    margin: 40px 0;
}
.why-choose-card-line::before {
    content: "";
    position: absolute;
    left: 50%;
    width: 4px;
    height: 100%;
    background: linear-gradient(#ff3c3c, #0d6efd);
    transform: translateX(-50%);
}
.why-choose-item {
    width: 50%;
    padding: 20px 40px;
    position: relative;
}
.why-choose-item:nth-child(odd) {
    left: 0;
    text-align: right;
}
.why-choose-item:nth-child(even) {
    left: 50%;
}
.why-choose-item::before {
    content: "";
    position: absolute;
    top: 30px;
    right: -10px;
    width: 20px;
    height: 20px;
    background: #ff3c3c;
    border-radius: 50%;
    z-index: 2;
}

.why-choose-item:nth-child(even)::before {
    left: -10px;
}
.why-choose-item .content {
    background: rgba(255,255,255,0.08);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(8px);
    transition: 0.3s;
}

.why-choose-item .content:hover {
    background: rgba(255,255,255,0.15);
    transform: scale(1.03);
}

.why-choose-item h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.why-choose-item p {
    font-size: 14px;
    color: #ddd;
}
@media (max-width: 768px) {
    .why-choose-card-line::before {
        left: 8px;
    }

    .why-choose-item {
        width: 100%;
        padding-left: 30px;
        text-align: left !important;
        left: 0 !important;
    }

    .why-choose-item::before {
        left: 0 !important;
        right: auto;
    }
}

.clients-section {
    background: #f8f9fb;
}

.client-title {
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.client-box {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #eee;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.client-box img {
    max-width: 100%;
    height: 50px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: 0.3s;
}

.client-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.client-box:hover img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .client-box img {
        height: 40px;
    }
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color), #0a2540);
}

.cta-box {
    background: rgba(255,255,255,0.08);
    padding: 50px 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    color: #fff;
}

.cta-box h2 {
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-box p {
    color: #ddd;
    max-width: 600px;
    margin: auto;
}
.cta-buttons .btn {
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
}
.cta-buttons .btn-primary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.cta-buttons .btn-outline-light:hover {
    background: #fff;
    color: #000;
}

.contact-section {
    background: #f8f9fb;
}

.contact-info h2 {
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-info p {
    color: #666;
    margin-bottom: 25px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 14px;
}

.info-item i {
    color: #0d6efd;
    font-size: 18px;
}

.contact-form-box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}


.contact-form-box .form-control {
    border-radius: 8px;
    padding: 12px;
    border: 1px solid #ddd;
}

.contact-form-box .form-control:focus {
    border-color: #0d6efd;
    box-shadow: none;
}

.contact-form-box .btn {
    padding: 12px;
    border-radius: 30px;
    font-weight: 500;
}

.faq-section {
    background: #ffffff;
}

.custom-accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.custom-accordion .accordion-button {
    font-weight: 500;
    padding: 15px 20px;
    background: #f8f9fb;
    border: none;
    box-shadow: none;
}
.custom-accordion .accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: #fff;
}
.custom-accordion .accordion-body {
    background: #fff;
    font-size: 14px;
    color: #666;
}
.footer {
    background: var(--primary-color);
    color: #fff;
    font-size: 14px;
}

.product-hero {
    background: linear-gradient(135deg, var(--primary-color), #0a2540);
    color: #fff;
    padding: 80px 0;
}

.product-hero h1 {
    font-size: 42px;
    font-weight: 700;
}

.product-hero p {
    color: #ddd;
}

.product-tabs .nav-link {
    border: none;
    margin: 0 10px;
    font-weight: 500;
    color: #555;
    position: relative;
}

.product-tabs .nav-link.active {
    color: var(--primary-color);
}

.product-tabs .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #0d6efd;
}

.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.4s;
    border: 1px solid #eee;
}

.product-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: 0.4s;
}

.product-content {
    padding: 20px;
}

.product-content h5 {
    font-weight: 600;
}

.product-content p {
    font-size: 14px;
    color: #666;
}
.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.product-card:hover img {
    transform: scale(1);
}

.product-cta {
    background: linear-gradient(135deg, #0a2540, var(--secondary-color));
    color: #fff;
}

.product-cta p {
    color: #ddd;
}