:root {
    --primary-yellow: #FFC800;
    --text-dark: #1D1D1D;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    padding: 15px 0;
    background: var(--white);
    border-bottom: 1px solid #F08B28;
    
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}
.abt-logo img {
    position: relative;
    height: 120px;
    top: 270px;
    left:-60px;
    padding: 10px;
    padding-top: 15px;
    padding-bottom: 15px;
    border-radius: 110px;
    /* background-color: #f8f8f8; */
    
}
.style-logo {
    position: relative;
    font-weight: bold;
    font-size: 150px;
    opacity: 0.2;
    left: 0px;
    top: 0px;
    z-index: 2;
    text-transform: uppercase;
    font-family: 'Arial', sans-serif;
    letter-spacing: 5px;
    overflow: hidden;
    height: 140px;
}

@media only screen and (min-width: 320px) and (max-width: 480px){
    .style-logo {
        position: relative;
        font-weight: bold;
        font-size: 100px;
        opacity: 0.2;
        right: -80px;
        bottom: -30px;
        z-index: 2;
        text-transform: uppercase;
        font-family: 'Arial', sans-serif;
        letter-spacing: 10px;
        
        /* Clip the bottom part (option 1) */
        overflow: hidden;
        height: 140px; /* Adjust to control how much is visible */
    }

    .style-logo p {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        display: inline-block;
    }
}

@media only screen and (min-width: 481px) and (max-width: 768px) {
    .style-logo {
        position: relative;
        font-weight: bold;
        font-size: 100px;
        opacity: 0.2;
        left: 250px;
        bottom: -30px;
        z-index: 2;
        text-transform: uppercase;
        font-family: 'Arial', sans-serif;
        letter-spacing: 10px;
        
        /* Clip the bottom part (option 1) */
        overflow: hidden;
        height: 140px; /* Adjust to control how much is visible */
    }

    .style-logo p {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        display: inline-block;
    }   
}

@media only screen and (min-width: 769px) and (max-width: 1024px) {
    .style-logo {
        position: relative;
        font-weight: bold;
        font-size: 100px;
        opacity: 0.2;
        left: 350px;
        bottom: -30px;
        z-index: 2;
        text-transform: uppercase;
        font-family: 'Arial', sans-serif;
        letter-spacing: 10px;
        
        /* Clip the bottom part (option 1) */
        overflow: hidden;
        height: 140px; /* Adjust to control how much is visible */
    }

    .style-logo p {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        display: inline-block;
    }   
}
.Faq-book{
   margin-top: 10%;
   display: flex;
   justify-content: center;
   align-items: center;
   width: 550px;
   
}
@media only screen and (min-width: 320px) and (max-width: 480px) {
    .Faq-book{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 350px;
        margin-left: 15%;
     }
     .style-logo p {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        display: inline-block;
    }
}
@media only screen and (min-width: 481px) and (max-width: 768px)  {
    .Faq-book{
        display: flex;
        justify-content: center;
        align-items: center;
         width: 250px;
        margin-left: 30%;
            
     }
     .style-logo p {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        display: inline-block;
    }
}

/* Option 2: Fading with mask */
.style-logo p {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
}

.nav-right {
    display: flex;
    gap: 20px;
}

.nav-right a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
}

/* Hero Section */
.hero {
    background-color: var(--white);
    padding: 80px 0 200px 0;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.hero .container {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    z-index: 1;
}

.rating-badge {
    display: inline-flex;
    align-items: center;
    background: #000;
    color: var(--white);
    padding: 8px 15px;
    border-radius: 20px;
    margin-bottom: 30px;
}

.rating-badge span {
    font-size: 14px;
}

.rating-badge .badge-text {
    margin-left: 8px;
    font-weight: 600;
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 25px;
}

.hero-content p {
    color: #666;
    margin-bottom: 30px;
    font-size: 16px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.buy-button {
    background: #000;
    color: var(--white);
    padding: 15px 30px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
}
.buy-button:hover {
    background: #FFF;
    color: #000;
    padding: 15px 30px;
    border: 1px solid #000;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.5s;
    
}
.download-link {
    color: var(--text-dark);
    text-decoration: underline;
}

.diagonal-shape {
    position: absolute;
    top: 220px;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FFC800;
    clip-path: polygon(0 45%, 100% 25%, 100% 100%, 0% 100%);
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 50px;
    right: 50px;
    width: 30px;
    height: 30px;
    background: var(--primary-yellow);
    z-index: -1;
}
.hero-image {
    position: relative;
    margin-top: -50px; /* Move the image upwards */
    padding-bottom: 50px;
    display: flex;
    justify-content: center; /* Center the image horizontally */
    align-items: flex-start; /* Align the image to the top */
}

.bestseller-badge {
    position: relative; /* Change to relative so it moves with .hero-image */
    top: 70px; /* Adjust to move further up */
    left: 50px;
    right: auto; /* Reset right positioning */
    z-index: 2;
}

.bestseller-badge img {
    width: 500px; /* Allow natural width */
    max-width: 700px; /* Adjust as needed */
    height: auto; /* Maintain aspect ratio */
}



.bestseller-badge span {
    position: absolute;
    bottom: 40px;
    right: 0;
    color: var(--text-dark);
    font-weight: 500;
}


/* phone */
@media only screen and (min-width: 320px) and (max-width: 480px)  {
    .hero-image {
        position: relative;
        margin-top: -50px; /* Move the image upwards */
        padding-bottom: 0px;
        display: flex;
        justify-content: center; /* Center the image horizontally */
        align-items: flex-start; /* Align the image to the top */
    }
    
    .bestseller-badge {
        position: relative; /* Change to relative so it moves with .hero-image */
        top: 30px; /* Adjust to move further up */
        left: 30px;
        right: auto; /* Reset right positioning */
        z-index: 2;
    }
    
    .bestseller-badge img {
        width: 300px; /* Allow natural width */
        max-width: 700px; /* Adjust as needed */
        height: auto; /* Maintain aspect ratio */
    }
    .hero-content h1 {
        font-size: 30px;
        font-weight: 700;
        line-height: 1.5;
        margin-bottom: 25px;
    }
}

/* Tablets */
@media only screen and (min-width: 481px) and (max-width: 768px)  {
   .hero-image {
        position: relative;
        margin-top: -50px; /* Move the image upwards */
        padding-bottom: 0px;
        display: flex;
        justify-content: center; /* Center the image horizontally */
        align-items: flex-start; /* Align the image to the top */
    }
    
    .bestseller-badge {
        position: relative; /* Change to relative so it moves with .hero-image */
        top: 30px; /* Adjust to move further up */
        left: 30px;
        right: auto; /* Reset right positioning */
        z-index: 2;
    }
    
    .bestseller-badge img {
        width: 300px; /* Allow natural width */
        max-width: 700px; /* Adjust as needed */
        height: auto; /* Maintain aspect ratio */
    }
    .hero-content h1 {
        font-size: 50px;
        font-weight: 700;
        line-height: 1;
        margin-bottom: 25px;
    }
}

/* ipads */
@media only screen and (min-width: 769px) and (max-width: 1024px)  {
    .hero-image {
        position: relative;
        margin-top: -50px; /* Move the image upwards */
        padding-bottom: 0px;
        display: flex;
        justify-content: center; /* Center the image horizontally */
        align-items: flex-start; /* Align the image to the top */
    }
    
    .bestseller-badge {
        position: relative; /* Change to relative so it moves with .hero-image */
        top: 30px; /* Adjust to move further up */
        left: 30px;
        right: auto; /* Reset right positioning */
        z-index: 2;
    }
    
    .bestseller-badge img {
        width: 300px; /* Allow natural width */
        max-width: 700px; /* Adjust as needed */
        height: auto; /* Maintain aspect ratio */
    }
    .hero-content h1 {
        font-size: 50px;
        font-weight: 700;
        line-height: 1;
        margin-bottom: 25px;
    }
  }

  @media only screen and (min-width: 320px) and (max-width: 480px){
    .hero-heading{
        text-align: center;
    }
  }
.partner-icon{
    width: 40px;
    /* display: flex;
    flex-direction: row;
    white-space: nowrap; */
    /* justify-content: center; */
    /* align-items: center;
    gap: 10px; */
}



/* Trusted Section */
.trusted {
    padding: 50px 0;
    background: var(--white);
}

.trusted h2 {
    text-align: center;
    margin-bottom: 40px;
}


/* .partner-logos {
   
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-bottom: 10px;
} */

.partner-row img {
    max-width: 150px;
    opacity: 0.7;
}

/* Author Section */
.author {
   
    background: #f8f8f8;
    /* margin-top: 80px; */
    /* background-image: url(./assets/Img/cardboard-texture.jpg); */

}

.Publi-category{
margin-top: 70px;
}


.author-card {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.author-card img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.download-button {
    padding: 15px 30px;
    background: var(--text-dark);
    color: var(--white);
    border: none;
    border-radius: 5px;
    margin-top: 20px;
    cursor: pointer;
}

/* Features Section */
.features {
    
    padding: 80px 0;
    background: var(--white);
}

.features h2 {
    text-align: center;
    margin-bottom: 50px;
}

/* .feature-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
} */

.underline-h2{
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-decoration-color: #FFC800;
    text-underline-offset: 5px;
}

.feature-card {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    /* background: #f8f8f8; */
}

.feature-card i {
    font-size: 2rem;
    color: var(--primary-yellow);
    margin-bottom: 20px;
}
.black-heading{
    color: lightgray;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-decoration-color: #FFC800;
    text-underline-offset: 5px; 
}
.list{
  color: lightgray;
  margin-left: 55px;
}
.black-section{
    background-image: url(./assets/Img/dark-texture-surface.jpg);
    background-size: cover; 
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    background-blend-mode: overlay;
    padding-top: 50px;
    font-family: League Spartan;
    border-radius: 30px;
}
.black-sectionIMG{
    position: relative;
    margin-left: 180px;
    margin-bottom: 0;
    margin-top: -157px;
}
.black-sectionIMG img{
    width: 250px;
    height: 450px;
    margin-bottom: 0;
    
}
@media only screen and (min-width: 320px) and (max-width: 480px) {
    .black-sectionIMG{
        position: absolute;
        margin-left: 265px;
        /* margin-bottom: 0; */
        /* margin-top: -205px; */
    }
    .black-sectionIMG img{
        width: 150px;
        height: 200px;
        /* margin-bottom: 0; */
        
    }
}

@media only screen and (min-width: 481px) and (max-width: 768px) {
    .black-sectionIMG{
        position: absolute;
        margin-left: 465px;
        /* margin-bottom: 50; */
        /* margin-top: -10px; */
    }
    .black-sectionIMG img{
        width: 150px;
        height: 200px;
        margin-top: -20px;
        margin-left: 30px;
        /* margin-bottom: 0; */
        
    }
}
@media only screen and (min-width: 769px) and (max-width: 1024px)  {
    .black-sectionIMG{
        position: absolute;
        margin-left: 465px;
        /* margin-bottom: 50; */
        /* margin-top: -10px; */
    }
    .black-sectionIMG img{
        width: 150px;
        height: 200px;
        margin-top: -20px;
        margin-left: 30px;
        /* margin-bottom: 0; */
        
    }
}
/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 60px 0 150px 0;
    }

    .diagonal-shape {
        clip-path: polygon(0 55%, 100% 35%, 100% 100%, 0% 100%);
    }

    .hero::after {
        display: none;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-image {
        margin-top: 0;
    }

    .book-cover {
        transform: none;
        max-width: 320px;
        margin: 0 auto;
    }

    .feature-cards {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }
} 


/* .hero-maintext{
    font-size:3rem !important;
    font-weight: bold !important;
    line-height: 1.15 !important;
} */
.yellow-grid{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #f8f8f8;
    padding: 20px;
}
/* .yellow-img{
    padding-bottom: 10px;
} */
.yellow-Ptag{
    text-align: justify;
}
.abt-heading , .abt-pts{
    color: #075d9a;
}
.abt-para{
    text-align: justify;
    line-height: 35px;
    text-indent: 35px;
}
.abt-list{
    list-style: none;
   line-height: 35px;
   text-align: justify;
   margin-left: 30px;
}
.abt-us{
    text-align: justify;
    line-height: 35px;
    text-indent: 35px;
}

/* phone */
@media only screen and (min-width: 320px) and (max-width: 480px) {
    .author-img {
        width: 300px;
        display: block;  /* Ensures proper centering */
        margin: auto;   /* Centers horizontally */
    }

    .parent-container { 
        display: flex; 
        justify-content: center; 
        align-items: center; 
    }
    .abt-logo img {
        position: relative;
        height: 100px;
        top: 170px;
        left:20px;
        padding: 10px;
        padding-top: 15px;
        padding-bottom: 15px;
        border-radius: 110px;
        /* background-color: #f8f8f8; */
    }
 
}

/* Mobile */
@media only screen and (min-width: 320px) and (max-width: 767px)  {
    .contact-subheading {
        position: revert-layer!important;     
        font-size: 35px!important;
    }  
    .about-subheading{
        position: revert-layer!important;     
        font-size: 35px!important;
        margin-top: 5%;
        /* margin-left: 30%;   */
    }
    .FAQ-subheading{
        position: revert-layer!important;     
        font-size: 35px!important;
        margin-top: 5%;
        /* margin-left: 10%;   */
    }
}

/* Tablets */
@media only screen and (min-width: 768px) and (max-width: 1024px)  {
    .contact-subheading {
        position: revert-layer!important;     
        font-size: 50px!important;

    }
    .about-subheading{
        position: revert-layer!important;     
        font-size: 50px!important;
        margin-top: 5%;
        /* margin-left: %; */
    }
    .FAQ-subheading{
        position: revert-layer!important;     
        font-size: 50px!important;
        margin-top: 5%;
        /* margin-left: 10%; */
    }
}

/* Tablets */
@media only screen and (min-width: 481px) and (max-width: 768px)  {
    .author-img {
        width: 450px;
        display: block;  /* Ensures proper centering */
        margin: auto;   /* Centers horizontally */
    }

    .parent-container { 
        display: flex; 
        justify-content: center; 
        align-items: center; 
    }
    .abt-logo img {
        position: relative;
        height: 150px;
        top: 200px;
        left:30px;
        padding: 10px;
        padding-top: 15px;
        padding-bottom: 15px;
        border-radius: 110px;
        /* background-color: #f8f8f8; */
    }
  

}
/* ipads */
@media only screen and (min-width: 769px) and (max-width: 1024px)  {
    .author-img {
        width: 450px;
        display: block;  /* Ensures proper centering */
        margin: auto;   /* Centers horizontally */
    }

    .parent-container { 
        display: flex; 
        justify-content: center; 
        align-items: center; 
    }
    .abt-logo img {
        position: relative;
        height: 150px;
        top: 200px;
        left:30px;
        padding: 10px;
        padding-top: 15px;
        padding-bottom: 15px;
        border-radius: 110px;
        /* background-color: #f8f8f8; */
    }

}

.partners-heading{
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    padding-bottom: 20px;
    padding-top: 20px;
}

.partner{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
   
}

.partner{
    /* grid-template-columns: 1fr; */
}

.Partner-card{
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    background: #f8f8f8;
    text-wrap: wrap;
    height:auto;
    width: 100%;
}

.partner-ticker-box ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex; 
    gap: var(--ticker-gap);
   
    
}
.tickerbox {
    position: relative;
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: var(--ticker-gap);
  
}

.tickerbox {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.partner-ticker-box {
    display: flex;
    min-width: 200%; /* Ensure enough content for smooth scrolling */
    animation: tickerAnimationDesktop 20s linear infinite;
}

/* Mobile View: Adjust Scrolling Speed */
@media (max-width: 768px) {
    .partner-ticker-box {
        animation: tickerAnimationMobile 10s linear infinite;
    }
}

/* Desktop Animation */
@keyframes tickerAnimationDesktop {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Mobile Animation (Faster Scrolling) */
@keyframes tickerAnimationMobile {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}




/* Scrolling Animation */
@keyframes tickerAnimation {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}


.partner-ticker-box {
    display: flex;
    gap: 30px; /* Space between the two ul elements */
}
.hero-text{
    text-align: justify;
}



/* ====contact====== */

.send-msg{
    padding-left: 20px;
    /* margin-top: 25px; */
    color: #075d9a;
}
.Contact-info{
    padding-left: 50px;
    /* margin-top: 25px; */
    color: #075d9a;
}
/* .btn{
    color: #075d9a;
} */
 .contact-list{
    list-style: none;
    line-height: 35px;
    text-align: justify;
    
 }
 .contact-icon{
    margin-top: 10px;
    color: #075d9a;
    /* font-size: larger; */
    align-items: center;
    padding-right: 10px;
 
 }

 .contact-list span{
    padding-left: 15px;
 }


 .Contact-hero {
    width: 100%;
    height: 400px; /* Default height for desktop */
    background-image: url('./assets/Img/con-banner.jpg'); 
    background-size: cover; /* Ensures the image covers the entire section */
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
}

/* Tablet View */
@media (max-width: 991px) {
    .Contact-hero {
        height: 350px; /* Adjust height for tablets */
    }
   
}
/* Tablets */
@media only screen and (min-width: 481px) and (max-width: 768px)  {
    .vision-mission .row{
        display:block ;
    }
  }
  /* ipads */
  @media only screen and (min-width: 769px) and (max-width: 1024px)  {
    .vision-mission .row{
        display: block ;
    }
  }


/* Mobile View */
@media (max-width: 767px) {
    .Contact-hero {
        height: 250px; /* Reduce height for mobile */
    }
}

/* Keep font sizes the same but adjust positioning */
.contact-subheading { 
    position: absolute;
    top: 28%; /* Adjust positioning */
    left: 33%;
    font-size: 100px;
    transform: translate(-50%, -50%);
    text-align: center;
    white-space: nowrap;
    color: #fff;
}
.contact-subheading2 {
    position: absolute;
    top: 60%;
    color: #fff;
    font-size: medium;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%; /* Ensure proper visibility on small screens */
}
.about-subheading { 
    position: absolute;
    top: 25%;
    left: 34%;
    font-size: 100px;
    transform: translate(-50%, -50%);
    text-align: center;
    white-space: nowrap;
    color: #fff;
}
.about-subheading2 {
    position: absolute;
    top: 60%;
    left: 5%;
    font-size: medium;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
}
.FAQ-subheading{
    position: absolute;
    top: 30%;
    left: 42%;
    font-size: 80px;
    transform: translate(-50%, -50%);
    text-align: center;
    white-space: nowrap;
    color: #fff;
}
.FAQ-subheading2{
    position: absolute;
    top: 60%;
    left: 5%;
    font-size: medium;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
}
.footer-head{
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-decoration-color: #FFC800;
    text-underline-offset: 5px;
    margin-left: 0px;
}
.footer-list{
   list-style-type: none;
    line-height: 35px;
    text-align: justify;
   
}
.footer{
    margin-top: 85px;
    background-color: #000;
    color: #fff;
    padding-top: 3%;
}
.social-icons{
    list-style-type: none; 
    display: flex; 
    
}

/* ======About======= */
.about-text {
    font-size: 1.1rem;
    line-height: 35px;
    color: #666;
}

.abt-img{
    display: flex;
    align-items: center;
    justify-content: center;
}
.abt-img img{
    height: 400px;
}
.card-text{
    text-align: justify;
    line-height: 35px;
    text-indent: 35px;
}

.card-body1{
    background-image: linear-gradient(to right, white, #FFC800);
    border-radius: 0px 100px 100px 0px;
    padding-right: 20px;
    padding-left: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    box-shadow: rgba(0, 0, 0, 0.15) 3px 5px 5px;
}
.card-body2{
    background-image: linear-gradient(to left, white,  #075d9a );
    border-radius: 100px 0  0 100px;
    padding-right: 20px;
    padding-left: 30px;
    padding-top: 20px;
    padding-bottom: 20px;
    /* box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px; */
    box-shadow:rgba(0, 0, 0, 0.15) -2px 5px 5px;
}


   .footer-list {
        padding-left: 0rem;
      
    }

    .footer-row{
     padding-top: 100px !important;
    }
.section-title{
   
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-decoration-color: #FFC800;
    text-underline-offset: 5px;
}

.desg-by{
    text-decoration: none;
    color: #FFC800;
}
.desg-by:hover{
    color: #075d9a;
    transition: 0.5s;
}
.navbar-nav .nav-link.active {
    color: #075d9a !important;
    font-weight: bold
}
.navbar-icon{
    color: #075d9a !important;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}
