 .about-section {
    background: #f8f9fa;
}

.about-image img {
    transition: transform 0.4s ease;
}

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

.experience-badge {
    position: absolute;
    bottom: -20px;
    left: 20px;
    padding: 20px 25px;
    border-radius: 12px;
    line-height: 1.2;
}

.experience-badge h3 {
    font-size: 32px;
    font-weight: 700;
}

.btn-outline-primary {
    border-width: 2px;
}

@media (max-width: 991px) {
    .experience-badge {
        position: relative;
        bottom: 0;
        left: 0;
        margin-top: 15px;
        width: fit-content;
    }
}

/* Portfolio Modal */
.portfolio-modal .modal-content {
    background: #0f172a;
    color: #fff;
}

/* Header */
.portfolio-header {
    padding: 5px;
    background: linear-gradient(135deg, #2563eb, #1e40af);
}

.portfolio-header h4 {
    font-weight: 700;
}

.portfolio-header p {
    font-size: 14px;
    opacity: 0.9;
}

/* Close Button */
.btn-close-custom {
    position: absolute;
    top: 12px;
    right: 18px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: none;
    font-size: 28px;
    width: 40px;
    /*height: 80px;*/
    border-radius: 50%;
    z-index: 9;
    transition: 0.3s;
}

.btn-close-custom:hover {
    background: #ef4444;
}

/* Carousel Image */
.carousel-item img {
    border-radius: 0 0 18px 18px;
}

/* Controls */
.modern-control {
    width: auto;
}

.arrow-circle {
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 12px 16px;
    border-radius: 50%;
    font-size: 20px;
    transition: 0.3s;
}

.arrow-circle:hover {
    background: #2563eb;
}

/* Indicators */
.modern-indicators li {
    background-color: #94a3b8;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.modern-indicators .active {
    background-color: #2563eb;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .portfolio-header h4 {
        font-size: 18px;
    }
}


/*###########################*/

.homepage-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
    color: #fff;
}

.homepage-section::before {
    content: "";
    position: absolute;
    width: 150%;
    height: 150%;
    top: -25%;
    left: -25%;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.15), transparent 70%), 
                radial-gradient(circle at 70% 70%, rgba(255,255,255,0.1), transparent 70%);
    transform: rotate(30deg);
    z-index: 0;
}

.content-left {
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 1.9rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #fff;
    margin-top: 5px;
    border-radius: 2px;
}

.section-text {
    font-size: 1.05rem;
    margin-bottom: 30px;
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
}

.counters h3 {
    font-size: 2rem;
    color: #ffd700;
    transition: transform 0.3s;
}

.counters h3:hover {
    transform: scale(1.1);
}

.form-right {
    position: relative;
    z-index: 1;
}

.quote-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.quote-form input,
.quote-form select {
    width: 100%;
    padding: 5px 8px;
    margin-bottom: 20px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.quote-form input:focus,
.quote-form select:focus {
    outline: none;
    box-shadow: 0 0 15px rgba(255,255,255,0.6);
}

.quote-form button {
    width: 100%;
    padding: 15px;
    background: #ffd700;
    color: #1a2a6c;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quote-form button:hover {
    background: #fff;
    color: #b21f1f;
}

.quote-msg {
    color: #fff;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

/****####################****/
/* Abstract Section Background */
.abstract-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    font-family: 'Poppins', sans-serif;
}

/* Abstract Shapes */
.abstract-section::before,
.abstract-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    opacity: 0.25;
    z-index: 0;
}

.abstract-section::before {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, #00c6ff, transparent 70%);
    top: -120px;
    left: -120px;
}

.abstract-section::after {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #0072ff, transparent 70%);
    bottom: -150px;
    right: -150px;
}

/* Keep content above shapes */
.abstract-section .container {
    position: relative;
    z-index: 1;
}

/* Image Styling */
.image-wrapper img {
    transition: transform 0.4s ease;
}

.image-wrapper img:hover {
    transform: scale(1.03);
}

/* Text */
.section-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

/* Badge */
.bg-primary-soft {
    background: rgba(0, 123, 255, 0.15);
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 600;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    font-size: 1.05rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.feature-list i {
    color: #00c6ff;
    margin-right: 12px;
    font-size: 1.1rem;
}

/* Button */
.abstract-section .btn-primary {
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    border: none;
    box-shadow: 0 10px 30px rgba(0, 114, 255, 0.4);
    transition: all 0.3s ease;
}

.abstract-section .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 114, 255, 0.6);
}


/*#########modal box##########*/
/* Modal container */
.demo-modal {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  border: none;
}

/* Header with gradient */
.demo-header {
  background: linear-gradient(135deg, #0d6efd, #6610f2);
  padding: 18px 24px;
}

/* Input styling */
.demo-input {
  border-radius: 10px;
  padding: 10px 14px;
  transition: all 0.3s ease;
}

.demo-input:focus {
  border-color: #6610f2;
  box-shadow: 0 0 0 0.15rem rgba(102, 16, 242, 0.25);
}

/* Gradient button */
.btn-gradient {
  background: linear-gradient(135deg, #0d6efd, #6610f2);
  color: #fff;
  border-radius: 30px;
  border: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102, 16, 242, 0.4);
}

/* Mobile fix */
@media (max-width: 576px) {
  .modal-body {
    padding: 20px !important;
  }
}

/*#####################*/

/* Section Background */
.why-choose-section {
    background: linear-gradient(135deg, #f8fbff, #eef4ff);
}

/* Heading */
.section-title {
    font-weight: 800;
    color: #0d6efd;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title span {
    color: #212529;
}

.section-subtitle {
    max-width: 800px;
    margin: auto;
    color: #6c757d;
    font-size: 16px;
}

/* Service Card */
.service-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(13, 110, 253, 0.2);
}

/* Icon Box */
.icon-box {
    width: 70px;
    height: 70px;
    margin: auto;
    margin-bottom: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0d6efd, #0a58ca);
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box i {
    font-size: 30px;
    color: #ffffff;
}

/* Card Text */
.service-card h5 {
    font-weight: 700;
    margin-bottom: 12px;
    color: #212529;
}

.service-card p {
    font-size: 14.5px;
    color: #6c757d;
}

/*#######################*/

/* Background */
.why-choose-section {
    background: linear-gradient(135deg, #f8fbff, #eef4ff);
}

/* Points */
.why-points li {
    font-size: 15px;
    margin-bottom: 10px;
    color: #343a40;
}

.why-points i {
    color: #0d6efd;
    margin-right: 8px;
}

/* FAQ Box */
.faq-box {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.faq-item {
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.faq-item h6 {
    font-weight: 600;
    color: #0d6efd;
}

.faq-item p {
    font-size: 14.5px;
    color: #6c757d;
    margin-bottom: 0;
}

/*#####################*/

/* Background */
.about-overview {
    background: linear-gradient(135deg, #f8fbff, #eef4ff);
}

/* Highlight Cards */
.highlight-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 25px;
    height: 100%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.highlight-card h3 {
    color: #0d6efd;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Content Box */
.content-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Why Choose Box */
.why-choose-box {
    background: #0d6efd;
    color: #ffffff;
    padding: 40px;
    border-radius: 20px;
}

.why-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 15px;
    border-radius: 12px;
}

.why-item i {
    margin-right: 10px;
    font-size: 18px;
    color: #ffffff;
}



