@import url('https://fonts.googleapis.com/css2?family=Abhaya+Libre:wght@600&display=swap');


* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #003278 0%, #001f4d 100%);
    font-size: 1rem ;
}


h1,
h2,
h3,
h4,
h5,
h6 {
      font-family: 'Abhaya Libre', serif;
    font-weight: 600; /* SemiBold */
}

.hero-section {
    background: linear-gradient(135deg, #003278 0%, #001f4d 100%);
    color: white;
    height: 100%;
}

.feature-icon {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 20px;
}

.double-line-heading {
    position: relative;
    text-align: center;
    padding: 50px 0;
    background: white; /* Match body background */
}

.navbar-toggler {
    background-color: #fff !important;
}

.double-line-heading h2 {
    font-size: 2.5rem;
    font-weight: 400;
    color: #B8860B;
    letter-spacing: 2px;
    margin: 0;
    padding: 0 40px;
    background: white; /* Match actual background */
    display: inline-block;
    position: relative;
    z-index: 2;
}

/* First line (top line) */
.double-line-heading::before {
    content: '';
    position: absolute;
    top: calc(50% - 3px);
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent 20%, #DAA520 30%, #B8860B 50%, #DAA520 70%, transparent 80%);
    z-index: 1;
}

/* Second line (bottom line) */
.double-line-heading::after {
    content: '';
    position: absolute;
    top: calc(50% + 3px);
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent 20%, #DAA520 30%, #B8860B 50%, #DAA520 70%, transparent 80%);
    z-index: 1;
}

/* Thick double line version */
.thick-double-line-heading {
    position: relative;
    text-align: center;
    padding: 10px 0 10px 0; /* Fixed padding syntax */
}

.thick-double-line-heading {
    position: relative;
    text-align: center;
    margin: 10px 0;
}

.thick-double-line-heading h2 {
    font-size: 2.5rem;
    font-weight: 400;
    color: white; /* Changed to white */
    letter-spacing: 2px;
    margin: 0;
    /* padding: 0 40px; */
    background: transparent; /* Made transparent */
    display: inline-block;
    position: relative;
    z-index: 2;
}

.thick-double-line-heading::before {
    content: '';
    position: absolute;
    top: calc(50% - 0px);
    left: 0;
    right: calc(50% + (23px * 3)); /* Adjust based on heading width */
    height: 3px;
    background: linear-gradient(to right, transparent 15%, #DAA520 25%, #B8860B 50%, #DAA520 75%, transparent 85%);
    z-index: 1;
}

.thick-double-line-heading::after {
    content: '';
    position: absolute;
    top: calc(50% - 0px);
    left: calc(50% + (23px * 3)); /* Adjust based on heading width */
    right: 0;
    height: 3px;
    background: linear-gradient(to right, transparent 15%, #DAA520 25%, #B8860B 50%, #DAA520 75%, transparent 85%);
    z-index: 1;
}


/* Compact version */
.compact-double-line-heading {
    position: relative;
    text-align: center;
    padding: 50px 0;
    background: white; /* Match body background */
}

.compact-double-line-heading h2 {
    font-size: 2.5rem;
    font-weight: 400;
    color: #B8860B;
    letter-spacing: 2px;
    margin: 0;
    padding: 0 40px;
    background: white; /* Match actual background */
    display: inline-block;
    position: relative;
    z-index: 2;
}

.compact-double-line-heading::before {
    content: '';
    position: absolute;
    top: calc(50% - 23px);
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent 20%, #DAA520 30%, #B8860B 50%, #DAA520 70%, transparent 80%);
    z-index: 1;
}

.compact-double-line-heading::after {
    content: '';
    position: absolute;
    top: calc(50% + 2px);
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent 20%, #DAA520 30%, #B8860B 50%, #DAA520 70%, transparent 80%);
    z-index: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .double-line-heading h2,
    .thick-double-line-heading h2,
    .compact-double-line-heading h2 {
        font-size: 2rem;
        padding: 0 20px;
    }
    
    .double-line-heading::before,
    .double-line-heading::after,
    .thick-double-line-heading::before,
    .thick-double-line-heading::after,
    .compact-double-line-heading::before,
    .compact-double-line-heading::after {
        background: linear-gradient(to right, transparent 10%, #DAA520 20%, #B8860B 50%, #DAA520 80%, transparent 90%);
    }
}

/* If you have a different background color, use this version */
.section-with-bg {
    background: #f8f9fa; /* Your desired background */
}

.section-with-bg .double-line-heading,
.section-with-bg .thick-double-line-heading,
.section-with-bg .compact-double-line-heading {
    background: #f8f9fa; /* Match section background */
}

.section-with-bg .double-line-heading h2,
.section-with-bg .thick-double-line-heading h2,
.section-with-bg .compact-double-line-heading h2 {
    background: #f8f9fa; /* Match section background */
}


.hover-clr:hover {
    color: #B8860B;
}

.az-main-logo {
    width: 150px;
}

.az-header-section {
    background: linear-gradient(135deg, #003278 0%, #001f4d 100%);
}

.az-cust-nav .nav-item .nav-link {
color: #fff !important;
padding-left: 20px !important; 
padding-right: 20px !important;
}

.az-cust-nav .nav-item .nav-link:hover {
color: #B8860B !important;
}

.az-cust-nav .nav-item .nav-link.active {
color: #B8860B !important;
}

.az-nav-cust-btn {
    border-color: #B8860B !important;
    color: #B8860B !important;
    padding: 8px 25px 8px !important;
}

.az-cust-btn {
    border-color: #B8860B !important;
    color: #fff !important;
    background-color: #B8860B;
    padding: 8px 25px 8px !important;
}

.az-cust-btn:hover {
    border-color: #B8860B !important;
    color: #B8860B !important;
    background-color: #fff;
    padding: 8px 25px 8px !important;
}

.az-nav-cust-btn:hover {
    border-color: #B8860B !important;
    background-color: #B8860B !important;
    color: #fff !important;
    padding: 8px 25px 8px !important;
}

.az-home-banner-section {
    padding: 6rem 0px 4rem;
}

.az-banner-desc h2 {
    font-size: 40px;
    line-height: 46px;
}

.az-home-cust-align{
display: flex;
align-items: center;
gap: 20px;
margin-top: 30px;
}

.about-section {
    background: linear-gradient(135deg, #003278 0%, #001f4d 100%);
    padding: 60px 0;
}


.az-about-desc-section p {
    text-align:justify;
}

.az-about-img-section img {
    border-radius: 12px;
}
.service-section {
    background: linear-gradient(135deg, #003278 0%, #001f4d 100%);
    padding: 20px 0 60px;
}

.az-services-tab-section .nav-tabs {
    display: flex;
    flex-direction: column;
    border: none !important;
    gap: 12px;
}


.az-services-tab-section .nav-tabs .nav-link {
    color: #fff !important;
    border-radius: 8px !important;
     padding: 8px 20px !important;
     width: 100%;
     text-align: left;
}

.az-services-tab-section .nav-link.active {
    background: none !important;
     color: #fff !important;
    padding: 8px 20px !important;
    border: 1px solid #fff !important;
}

.az-services-desc-section img {
height: 340px;
border-radius: 12px;
}

.whyus-section {
     background: linear-gradient(135deg, #003278 0%, #001f4d 100%);
    padding: 20px 0 40px;
}

.contact-form-section-card {
     background: linear-gradient(135deg, #003278 0%, #001f4d 100%);
    border-radius: 12px;
    padding: 30px 30px 20px;
}

.why-section-card img {
    width: 54px;
}

.why-section-card h3 {
    font-size: 24px;
    color: #DAA520;
}

.why-section-card p {
    font-size: 15px;
}

.howwork-section {
    background: linear-gradient(135deg, #003278 0%, #001f4d 100%);
    padding: 20px 0 40px;
}

.how-work-card-section img {
    width: 55px;
}

.how-work-card-section h4 {
   font-size: 24px;
}

.how-work-card-section p {
   font-size: 15px;
}

.az-work-img-section {
    display: flex;
    align-items: center;
    height: 100%;
}

.az-contact-section {
    background: linear-gradient(135deg, #003278 0%, #001f4d 100%);
}

@media only screen and (max-width: 600px) {
 .az-services-desc-section {
     padding: 30px 10px 10px 20px;
 }
 .az-services-tab-section .nav-tabs .nav-link {
    padding: 8px 15px !important;
}
}