/* Global reset */
*{
    margin: 0;
    padding: 0;
    
}
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
  }
  
  *, *::before, *::after {
    box-sizing: inherit;
  }
  
  /* Responsive media */
  img, video {
    max-width: 100%;
    height: auto;
  }
  
  /* Fix flex/grid issues */
  .container {
    min-width: 0;
  }.accordion-button,
.btn-light {
    color: #002147;
    background-color: #f8f9fa
}

/* header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center
}

header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('./images/hero-image.webp');
    background-size: cover;
    background-position: center;
    opacity: .5;
    z-index: 1
}

header .container {
    position: relative;
    z-index: 2;
    color: #f8f9fa;
    text-align: center
} */



/* h1 {
    color: #002147;
    font-size: 3rem;
    margin-bottom: 1rem
}

p {
    font-size:1rem;
    font-weight: 400;
    margin-bottom: 2rem
} */

.carouselCard {
    width: 80%;
    height: 50vh;
    margin: auto
}

#about h2,
#blogs h2 {
    font-size: 2.5rem;
    color: #002147;
    font-weight: 700
}

#about p {
    font-size: 1rem;
    line-height: 1.8
}

#about ul {
    padding-left: 0
}

#about ul li {
    font-size: 1rem;
    margin-bottom: 10px
}

#about .btn-primary {
    background-color: #0056b3;
    border-color: #0056b3;
    transition: background-color .3s
}

#about .btn-primary:hover {
    background-color: #003d80;
    border-color: #003d80
}

#blogs .btn-outline-primary:hover,
.accordion-button:not(.collapsed) {
    color: #fff;
    background-color: #0056b3
}

#blogs .card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #002147
}

#blogs .card-text {
    font-size: .95rem;
    line-height: 1.6
}

#blogs .btn-outline-primary {
    border-color: #0056b3;
    color: #0056b3
}

#faq h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #002147
}

.accordion-button {
    font-size: 1.1rem;
    font-weight: 700
}

.accordion-button:focus {
    box-shadow: none;
    border-color: #0056b3
}

.accordion-body {
    font-size: 1rem;
    line-height: 1.6;
    color: #555
}

.accordion-item {
    border-radius: 5px
}

.card{
    height: 250px !important;
}
#services ul li{
    font-size: 1rem !important;
    font-weight: 400  !important;

    margin-bottom: 10px !important;
}

.card-img-top{
    height: 60px;
    width: auto !important;
}
.card-text{
    font-size:16px;
}

#why-us .card , #choose-us .card ,#servicePage .card ,#pricing .card, #seo-success .card{
    height: 100% !important;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
}
#servicePage .card{
    background-color: #fff !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
}
#servicePage .card, #pricing .card{
    padding: 10px 10px !important;
}

#seo-success .card .card-text {
    font-weight: 400;
    text-align: justify;
}
.prop-card{
    cursor: pointer;
    height: 100% !important;
    transition: transform 0.3s ease-in-out;
}

#why-us .card:hover ,#choose-us .card:hover ,#servicePage .card:hover ,#pricing .card:hover,#seo-success .card:hover ,.prop-card:hover {
    transform: translateY(-5px);
    /* box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1); */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
}


.header-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 60vh;
    overflow: hidden;
}

/* Container to Ensure Proper Layout */
.hero-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Hero Image: Ensures Full Coverage Without Distortion */
.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0; 
    z-index: 1;
}

/* Overlay Content */
.overlay-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 2;
    color: #fff;
    text-align: center;
    background: rgba(0, 0, 0, 0.6); 
    padding: 20px; 
    width: 100%;
    height: 100%;
}
#services ul{
    list-style: none;
}
#services ul li{
    /* list-style-image: url('./images/arrow-right.svg'); */
    line-height: 20px;
        
}
.arrow-icon{
    height: 30px;
    width: auto;
    margin-right: 10px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    html,body{
        overflow-x: hidden;
    }
    .header-section {
        height: 25vh;
    } 

    .overlay-content {
        width: 100%;
        padding: 10px;
    }

    .overlay-content h1  {
        font-size: 1.3rem;
    }

    .overlay-content p {
        font-size: .6rem;
        font-weight: bold;
        /* display: none; */
    }

    .btn {
        font-size: .5rem;
        padding: 5px 10px;
    }
}
