*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



/* Base Styles */
body {
    background-color: white;
    overflow-x: hidden !important;
}
a {
    text-decoration: none !important;
}
/* Header Styles */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* flex-wrap: wrap; */
    padding: 14px 14px;
    position: sticky;
    top: 0; 
    background-color: #fff; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    z-index: 1000; 
}

.header .logo {
    display: flex;
    align-items: center;
    /* gap: 1px; */
}
.header .logo a {
    display: flex;
    align-items: center;
    text-decoration: none; 
}

 .header .logo img {
    /* max-width: 100%;  */
    width: 60px;
    /* height: auto; */
}

.header .logo h1 {
    margin-left: 10px; 
    color: black;
    font-size: 30px;
}


.header ul {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.header ul li {
    list-style: none;
    position: relative;
    margin-left: 20px;
}

.header ul li a {
    text-decoration: none;
    color: black;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
}

.header ul li a:hover {
    color: #15386b;
    transition: all 0.2s;
}

.header ul li a:hover,
.header ul li.active a {
    color: #15386b;
    transition: all 0.2s;
}
.header .header-btn a {
    align-items: center;
    background-clip: padding-box;
    background-color: #15386b;
    border: 1px solid transparent;
    border-radius: 2.25rem;
    box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font-family: system-ui, -apple-system, system-ui, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
    justify-content: center;
    line-height: 1.25;
    margin: 0;
    min-height: 4rem;
    padding: calc(0.870rem - 1px) calc(1.9rem - 1px);
    position: relative;
    text-decoration: none;
    transition: all 250ms;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: baseline;
    width: auto;
    font-weight: bold;
}

.header .header-btn a:hover {
    background-color: black;
    transition: all 0.3s;
}

.header ul li .dropdown-menu {
    display: none;
    position: absolute;
    left: 0;
    top: 28px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 5px;
    box-shadow: 0 4px 8px #00000033;
}

.header ul li .dropdown-menu ul {
    display: flex;
    flex-direction: column;
    padding: 10px;
    margin: 0;
}

.header ul li .dropdown-menu ul li {
    margin: 0;
    text-wrap: nowrap;
}

.header ul li .dropdown-menu ul li a {
    color: #000;
    font-size: 15px;
    font-weight: normal;
    text-decoration: none;
}

.header ul li .dropdown-menu ul li a:hover {
    color: #15386b;
    transition: all 0.2s;
}

.header ul li:hover .dropdown-menu,
.header ul li .dropdown-menu:hover {
    display: block;
}

/* Hamburger Styles */
.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger i {
    font-size: 24px;
}

/* Mobile Nav Styles */
.mobile-nav {
    display: block;
    position: fixed;
    top: 0;
    left: -100%;
    width: 92%;
    height: 100%;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: left 0.3s;
    padding: 20px;
}

.mobile-nav .logo{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mobile-nav .logo img{
    width: 50px;
}
.mobile-nav .logo h2{
    font-size: 27px;
}

.mobile-nav .logo button{
    padding: 8px 8px 8px 8px;
    margin: 0px 0px 0px 0px;
    width: 45px;
    border-radius: 3px;
    background-color: #15386b;
    border: none;
    transition: all 0.4s;
    color:white;
}
.mobile-nav .logo button:hover{
    background-color: grey;
    color:white;
    /* border: 1px solid grey; */
}

.mobile-nav ul {
    list-style: none;
    margin-top: 20px;
    padding: 0;
}

.mobile-nav ul li {
    margin-bottom: 20px;
}

.mobile-nav ul li a {
    text-decoration: none;
    color: black;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
}

.mobile-nav ul li a:hover {
    color: #15386b;
    transition: all 0.3s;
    
}



.mobile-nav ul li .dropdown-menu {
    display: none;
    position: relative;
    background-color: #fff;
    padding: 0px 8px;
    box-shadow: 0 4px 8px #00000033;  
    
}


.mobile-nav ul .dropdown-menu li a {
    font-size: 14px;
}

/* Responsive Styles */


/* Responsive Styles for Tablets */
@media (max-width: 1024px) {
    .header .logo img {
        width: 50px;
    }

    .header .logo h1 {
        font-size: 24px;
    }

    .header .header-btn a {
        padding: 8px 16px;
    }

    .header ul {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .header ul li {
        margin-left: 0;
        margin-right: 20px;
    }

    .header ul li a {
        font-size: 16px;
    }

    .mobile-nav .logo img {
        width: 45px;
    }

    .mobile-nav .logo h2 {
        font-size: 24px;
    }

    .mobile-nav ul li {
        margin-bottom: 15px;
    }

    .mobile-nav ul li a {
        font-size: 16px;
    }

    .hamburger {
        display: block;
    }

    .nav-links {
        display: none;
    }
}

/* Responsive Styles for 360px to 370px Width */
@media (min-width: 360px) and (max-width: 370px) {
    .header .logo img {
        width: 32px; /* Slightly larger than 30px for better scaling */
    }

    .header .logo h1 {
        font-size: 19px; /* Slightly larger font size for readability */
    }

    .header .header-btn a {
        font-size: 16px;
        padding: 6px 12px; /* Adjust padding for better fit */
    }

    .header ul {
        display: none;
    }

    .hamburger {
        display: block;
    }


    .mobile-nav .logo img {
        width: 42px; /* Slightly larger than 40px for better scaling */
    }

    .mobile-nav .logo h2 {
        font-size: 23px; /* Slightly larger font size for readability */
    }

    .mobile-nav ul {
        padding-left: 0;
    }

    .mobile-nav ul li {
        margin-bottom: 13px; /* Adjust spacing between items */
    }

    .mobile-nav ul li a {
        font-size: 15px; /* Adjust font size for readability */
    }

    .mobile-nav ul li .dropdown-menu {
        padding: 0 6px; /* Adjust padding for better fit */
    }
}

@media (max-width: 768px) {
    .header .logo img{
        width: 30px;
        margin-bottom: 4px;
    }
   .header .logo h1{
    font-size: 20px;
    font-weight: 700;
   }
   .header .header-btn a {
    padding: 17px 10px;
    font-size: 15px;
    min-height: 2rem;
}
    .nav-links {
        display: none;
    }
    .hamburger {
        display: block;
    }
      
}



/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    width: 100%;
    /* min-height: 80vh; */
    position: relative;
    padding: 103px 0 120px 0;
    display: flex;
    align-items: center;
}

.hero:before {
    content: "";
    background: color-mix(in srgb, #ffffff, transparent 10%);
    position: absolute;
    inset: 0;
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
}

.hero span {
    font-size: 30px;
    font-weight: 600;
    color: #444444;
    margin-bottom: 10px;
}

.hero h1 {
    margin: 0 0 20px 0;
    font-size: 50px;
    font-weight: 700;
    line-height: 56px;
    color: black;
    text-transform: uppercase;
}

.hero h1 span {
    text-transform: uppercase;
}

.hero p {
    color: #444444;
    font-size: 23px;
    font-weight: 400;
}

.hero .btn-get-started {
    display: none; /* Remove button */
}

/* Media Queries for Tablets */
@media (max-width: 1024px) {
    .hero {
        padding: 80px 0 80px 0;
        min-height: 60vh;
    }

    .hero span {
        font-size: 24px;
    }

    .hero h1 {
        font-size: 36px;
        line-height: 42px;
    }

    .hero p {
        font-size: 18px;
    }

    .hero .hero-img {
        /* margin: 0 auto; */
        order: 1; /* Ensure image is below text */
    }

    .hero .hero-img img {
        width: 100%;
        height: auto;
    }
}


/* Responsive Design */
@media (max-width: 992px) {
    .hero {
        padding: 60px 0;
    }

    .hero span {
        font-size: 28px;
    }

    .hero h1 {
        font-size: 40px;
        line-height: 46px;
    }

    .hero p {
        font-size: 21px;
    }

    .hero-img {
        width: 100%;
        margin-bottom: 20px;
    }
    .d-flex {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero .container {
        padding: 0 20px;
    }

    .hero span {
        font-size: 26px;
    }

    .hero h1 {
        font-size: 36px;
        line-height: 40px;
    }

    .hero p {
        font-size: 20px;
    }

    .hero-img {
        order: -1;
        width: 80%;
        margin: 0 auto 20px;
        /* filter: drop-shadow(20px 20px 50px rgba(0, 0, 0, 0.5)); */
    }

    .d-flex {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero span {
        font-size: 24px;
    }

    .hero h1 {
        font-size: 35px;
        line-height: 36px;
    }

    .hero p {
        font-size: 21px;
    }

    .hero .btn-get-started {
        display: none; /* Remove button */
    }
    .d-flex {
        justify-content: center;
    }

    .hero-img {
        width: 96%;
    }
}


/* case study cards  */

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
        color: #1a1f24;
        background-color: #ffffff;
        padding: 60px 0;
        scroll-margin-top: 100px;
        overflow: clip;
}

.services .section-title {
    text-align: center;
    padding-bottom: 60px;
    position: relative;
  }
  
.services .section-title h2 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 15px;
  }
  
.services .img {
    border-radius: 8px;
    overflow: hidden;
  }
  
  .services .img img {
    transition: 0.6s;
  }
  
  .services .details {
    background: color-mix(in srgb, #ffffff, transparent 5%);
    padding: 50px 30px;
    margin: -100px 30px 0 30px;
    transition: all ease-in-out 0.3s;
    position: relative;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0px 0 25px rgba(0, 0, 0, 0.1);
    height: 290px;
  }
  
  .services .details .icon {
    margin: 0;
    width: 72px;
    height: 72px;
    background: #15386b;
    color: white;
    border: 6px solid #ffffff;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
    transition: ease-in-out 0.3s;
    position: absolute;
    top: -36px;
    left: calc(50% - 36px);
  }
  
  .services .details h3 {
    font-weight: 700;
    margin: 10px 0 15px 0;
    font-size: 22px;
    transition: ease-in-out 0.3s;
  }
  
  .services .details a{
    color:#15386b;
    text-decoration: none;
  }
  .services .details p {
    color: color-mix(in srgb, #1a1f24, transparent 10%);
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
  }
  
  .services .service-item:hover .details h3 {
    color: #0ea2bd;
  }
  
  .services .service-item:hover .details .icon {
    background: #ffffff;
    border: 2px solid #0ea2bd;
  }
  
  .services .service-item:hover .details .icon i {
    color: #0ea2bd;
  }
  
  .services .service-item:hover .img img {
    transform: scale(1.2);
  }
  






/*--------------------------------------------------------------
# Best Practice Section
--------------------------------------------------------------*/

.best-practice {
    background: #15386b;
    padding: 40px 0;
}
.best-practice .info {
    margin-top: 20px;
    text-align: center;
}
.best-practice-heading {
    color: white;
    font-family: "Raleway", sans-serif;
    text-transform: uppercase;
    margin-top: 20px;
    font-weight: 600;
}
.best-practice .subtitle {
    color: white;
}
.best-practice .container {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.best-practice .row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.best-practice .col {
    flex: 0 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
    display: flex;
}
.best-practice .practice-item {
    background-color: #ffffff;
    padding: 30px;
    transition: 0.3s;
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    position: relative;
    width: 100%;
}
.best-practice .practice-item .number {
    font-size: 30px;
    line-height: 1;
    margin-right: 30px;
    color: white;
    font-weight: bold;
    border-radius: 50%;
    background-color: #15386b;
    height: 59px;
    width: 59px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.best-practice .practice-item .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 20px;
}
.best-practice .practice-item .title a {
    color: #111111;
    text-decoration: none;
    
}
.best-practice .practice-item .description {
    line-height: 24px;
    font-size: 14px;
    margin: 0;
    font-family: 'Roboto', sans-serif;
}
.best-practice .practice-item:hover {
    background-color: #f2f2f2;
}
.best-practice-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #15386b;
    width: 100%; /* Ensure full width */
    margin-top: 54px; /* Add margin to space it from other content */
}
.best-practice .btn-primary {
    display: inline-block;
    padding: 15px 30px; /* Add padding for better button size */
    font-size: 18px; /* Font size for the button text */
    font-weight: 700; /* Make the text bold */
    color: #ffffff; /* Button text color */
    background-color: #3b91bb;; /* Background color of the button */
    border-radius: 5px; /* Rounded corners for the button */
    text-decoration: none; /* Remove underline from the link */
    transition: background-color 0.3s ease, color 0.3s ease; /* Smooth transition for hover effect */
    border: none;
    
    

}
.best-practice .btn-primary:hover {
    background-color: white;
    color:#15386b
}

@media (max-width: 1024px) {
    .best-practice .col {
        flex: 0 1 calc(100% - 20px);
        max-width: calc(100% - 20px);
    }

    .best-practice .practice-item {
        padding: 66px; /* Adjust padding */
    }

    .best-practice .practice-item .number {
        font-size: 20px; /* Adjust font size */
        height: 40px; /* Adjust height */
        width: 40px; /* Adjust width */
    }

    .best-practice .practice-item .title {
        font-size: 20px; /* Adjust font size */
    }

    .best-practice .practice-item .description {
        font-size: 15px; /* Adjust font size */
    }

    .best-practice-btn {
        margin-top: 30px; /* Adjust margin */
    }

    .btn-primary {
        padding: 10px 20px; /* Adjust padding for button */
        font-size: 14px; /* Adjust font size for button text */
    }
}


/* Responsive adjustments */
@media (max-width: 767px) {
    .best-practice .col {
        flex: 0 1 calc(100% - 20px);
        max-width: calc(100% - 20px);
    }

    .best-practice .practice-item {
        padding: 20px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .best-practice .practice-item .number {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .best-practice .practice-item .title {
        font-size: 18px;
    }

    .best-practice .practice-item .description {
        font-size: 12px;
    }

    .best-practice .info {
        margin-top: 10px;
    }

    .best-practice-heading {
        font-size: 24px;
    }

    .best-practice .subtitle {
        font-size: 14px;
    padding: 2px 14px;
    }

    .best-practice-btn {
        margin-top: 30px;
    }

    .btn-primary {
        padding: 10px 20px;
        font-size: 16px;
    }
}

/*--------------------------------------------------------------
# Amazon PPC Strategies Section
--------------------------------------------------------------*/
.ppc-strategies {
    color: #444444;
    background-color: #ffffff;
    padding: 60px 0;
    scroll-margin-top: 98px;
    overflow: clip;
}

.ppc-strategies .intro-text {
    text-align: center;
    margin-bottom: 40px;
}

.ppc-strategies .intro-text h1 {
    font-size: 28px;
    font-weight: 700;
    color: #012970;
    font-family: "Nunito", sans-serif;
    margin-bottom: 20px;
}

.ppc-strategies .intro-text p {
    font-size: 17px;
    color: #444444;
    margin: 0 0 10px 0;
}
/* Existing styles for strategy items */
.ppc-strategies .strategy-item {
    display: flex;
}

.ppc-strategies .strategy-item h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #012970;
    font-family: "Nunito", sans-serif;
}

.ppc-strategies .strategy-item i {
    font-size: 44px;
    line-height: 44px;
    color: #15386b;
    margin-right: 15px;
}

.ppc-strategies .strategy-item p {
    font-size: 15px;
    margin-bottom: 0;
}
.ppc-strategies .col-xl-5 img {
    width: 500px;
}

/* Responsive Styles */
@media (max-width: 767.98px) {
    .ppc-strategies .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .ppc-strategies .intro-text h1 {
        font-size: 36px;
    }

    .ppc-strategies .intro-text p {
        font-size: 14px;
    }

    .ppc-strategies .strategy-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .ppc-strategies .strategy-item i {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .ppc-strategies .strategy-item h4 {
        font-size: 18px;
    }

    .ppc-strategies .strategy-item p {
        font-size: 14px;
    }

    .ppc-strategies .col-xl-7 {
        order: 2;
    }

    .ppc-strategies .col-xl-5 {
        order: 1;
        margin-bottom: 20px;
    }

    .ppc-strategies .col-xl-5 img {
        width: 100%;
    }
}

/*--------------------------------------------------------------
# Amazon Sellers Insights Section
--------------------------------------------------------------*/
.sellers-insights-section {
    color: #444444;
    background-color: #f9f9f9;
    padding: 60px 0; /* Re-added padding */
}

.content-container {
    display: flex;
    flex-wrap: wrap; /* Allows wrapping of flex items */
    justify-content: center;
    align-items: center;
    gap: 20px; /* Adjusts spacing between divs */
}

.image-container,
.text-content {
    flex: 1 1 100%; /* Allows the containers to take full width in smaller screens */
    max-width: 500px; /* Optional: Ensures a max-width constraint */
}

.image-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-container img {
    width: 100%; /* Ensures image takes full width of its container */
    height: auto; /* Maintains aspect ratio */
}

.text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    padding: 0 15px; /* Adjusted padding for better spacing */
}

.insights-heading {
    font-size: 32px;
    font-weight: 700;
    color: #012970;
    font-family: "Nunito", sans-serif;
    margin-bottom: 20px;
}

.insights-introduction,
.insights-details,
.insights-conclusion {
    font-size: 17px;
    color: #444444;
    margin-bottom: 20px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .insights-heading {
        font-size: 24px;
    }

    .insights-introduction,
    .insights-details,
    .insights-conclusion {
        font-size: 15px;
    }

    .content-container {
        flex-direction: column;
        padding: 0 15px;
    }

    .image-container,
    .text-content {
        flex: 1 1 auto; /* Allows the containers to adjust based on content */
        max-width: none; /* Removes max-width constraint */
    }

 
    .text-content {
        text-align: center; /* Center text on small screens */
    }
}

/*--------------------------------------------------------------
# Metrics Section
--------------------------------------------------------------*/
.metrics{
    margin-top: 40px;
    background-color: #15386b;
}

.metrics .section-title {
    padding-top: 1px; /* Small padding to prevent margin collapse */
}



.metrics .section-title h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    /* color: #012970; */
    color:white;
    margin-top: 30px;
}

.metrics .section-title p {
    font-size: 18px;
    color: #444444;
    margin-bottom: 40px;
    color:white;
}

.metrics .metric-item {
    background-color: #ffffff;
    box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
    padding: 30px;
    transition: all 0.3s ease-in-out;
    height: 300px; /* Set a fixed height for uniformity */
    display: flex;
    width: 400px;
    flex-direction: column;
    justify-content: center; /* Center content vertically */
    align-items: center; /* Center content horizontally */
    position: relative;
    z-index: 1;
}

.metrics .metric-item:before {
    content: "";
    position: absolute;
    background: #15386b;
    inset: 100% 0 0 0;
    transition: all 0.3s;
    z-index: -1;
}

.metrics .metric-item .icon {
    margin-bottom: 10px;
}

.metrics .metric-item .icon i {
    color: #15386b;
    font-size: 36px;
    transition: ease-in-out 0.3s;
}

.metrics .metric-item h4 {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 20px;
    text-align: center; /* Center align heading */
}

.metrics .metric-item h4 a {
    color: #493c3e;
    transition: ease-in-out 0.3s;
    font-family: 'Nunito',sans-serif;
}

.metrics .metric-item p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
    text-align: center; /* Center align text */
    transition: ease-in-out 0.3s;
}

.metrics .metric-item:hover h4 a,
.metrics .metric-item:hover .icon i,
.metrics .metric-item:hover p {
    color: #ffffff;
}

.metrics .metric-item:hover:before {
    background: #0f2341;
    inset: 0;
    border-radius: 0px;
}

/* Button Styling */
.metrics .metrics-btn {
    text-align: center; /* Center align the button */
    margin-top: 30px; /* Add margin to top for spacing */
}

.metrics .metrics-btn a {
    display: inline-block;
    padding: 15px 30px; /* Add padding for better button size */
    font-size: 18px; /* Font size for the button text */
    font-weight: 700; /* Make the text bold */
    color: #ffffff; /* Button text color */
    background-color: #3b91bb;; /* Background color of the button */
    border-radius: 5px; /* Rounded corners for the button */
    text-decoration: none; /* Remove underline from the link */
    transition: background-color 0.3s ease, color 0.3s ease; /* Smooth transition for hover effect */
    margin-bottom: 20px;
}
.metrics .metrics-btn a:hover{
    background: white;
    color:#0f2341;
}


/* Responsive Styles */
@media (max-width: 1024px) {
    .metrics .section-title h1 {
        font-size: 28px; /* Adjust font size for tablet screens */
    }

    .metrics .section-title p {
        font-size: 16px; /* Adjust font size for tablet screens */
    }

    .metrics .metric-item {
        height: auto; /* Remove fixed height */
        width: 100%; /* Full width for smaller tablets */
        max-width: 100%; /* Ensure no max-width constraint */
        margin-bottom: 20px; /* Spacing between items */
    }

    .metrics .metric-item h4 {
        font-size: 18px; /* Adjust font size for tablet screens */
    }

    .metrics .metric-item p {
        font-size: 13px; /* Adjust font size for tablet screens */
    }

    .metrics .metrics-btn a {
        padding: 12px 25px; /* Adjust padding for tablet screens */
        font-size: 16px; /* Adjust font size for tablet screens */
    }
}


@media (max-width: 768px) {
    .metrics .section-title h1 {
        font-size: 24px;
    }

    .metrics .section-title p {
        font-size: 15px;
    }

    .metrics .metric-item {
        height: auto; /* Adjust height for small screens */
        width: 100%; /* Adjust width for small screens */
        margin-bottom: 20px; /* Add margin for spacing between items */
    }
}




/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq{
    margin-top: 20px;
}
.faq .section-title {
    padding-bottom: 20px;
  }
  .section-title h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    color: black;
    font-weight: 600;
  }

  .faq .faq-container .faq-item {
    position: relative;
    padding: 20px;
    margin-bottom: 15px;
    border: 1px solid color-mix(in srgb, #3d4348, transparent 85%);
    border-radius: 5px;
    overflow: hidden;
  }
  
  .faq .faq-container .faq-item:last-child {
    margin-bottom: 0;
  }
  .section-title {
    text-align: center;
    padding-bottom: 60px;
    position: relative;
  }
  

  .section-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
  }
  .section-title h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: #15386b;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
  }
  
  .faq .faq-container .faq-item h3 {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    margin: 0 30px 0 0;
    transition: 0.3s;
    cursor: pointer;
    display: flex;
    align-items: center;
  }
  
  .faq .faq-container .faq-item h3 .num {
    color: #15386b;
    padding-right: 5px;
  }
  
  .faq .faq-container .faq-item h3:hover {
    color: #15386b;
  }
  
  .faq .faq-container .faq-item .faq-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: 0.3s ease-in-out;
    visibility: hidden;
    opacity: 0;
  }
  
  .faq .faq-container .faq-item .faq-content p {
    margin-bottom: 0;
    overflow: hidden;
  }
  
  .faq .faq-container .faq-item .faq-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 16px;
    line-height: 0;
    transition: 0.3s;
    cursor: pointer;
  }
  
  .faq .faq-container .faq-item .faq-toggle:hover {
    color: #15386b;
  }
  
  .faq .faq-container .faq-active {
    background-color: color-mix(in srgb, #15386b, transparent 97%);
    border-color: color-mix(in srgb, #15386b, transparent 80%);
  }
  
  .faq .faq-container .faq-active h3 {
    color: #15386b;
  }
  
  .faq .faq-container .faq-active .faq-content {
    grid-template-rows: 1fr;
    visibility: visible;
    opacity: 1;
    padding-top: 10px;
  }
  
  .faq .faq-container .faq-active .faq-toggle {
    transform: rotate(90deg);
    color: #15386b;
  }



/* footer styling  */
#footer {
    background: #081e5b;
    padding: 0 0 30px 0;
    color: #fff;
    font-size: 14px;
    margin-top: 60px
  }
 
  #footer .footer-top {
    /* background: #0d2735; */
    background: #081e5b;
    border-top:1px solid #43677a;
    border-bottom: 1px solid #43677a;
    padding: 60px 0 30px 0;
  }
  
  #footer .footer-top .footer-info {
    margin-bottom: 30px;
  }
  
  #footer .footer-top .footer-info h3 {
    font-size: 18px;
    margin: 0 0 20px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    color: white;
    font-weight: 600;
  }
  
  #footer .footer-top .footer-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Roboto", sans-serif;
    color: #fff;
  }
  
  #footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #2f566a;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
  }
  
  #footer .footer-top .social-links a:hover {
    /* background: #0d2735; */
    background: #0d2735;
    color: #fff;
    text-decoration: none;
  }
  
  #footer .footer-top h4 {
    font-size: 18px;
    font-weight: 600;
    color: white;
    position: relative;
    padding-bottom: 12px;
  }
  
  #footer .footer-top .footer-links {
    margin-bottom: 30px;
  }
  
  #footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  #footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #d5e4e6;
    font-size: 18px;
    line-height: 1;
  }
  
  #footer .footer-top .footer-links ul li {
    padding: 10px 0;
    color: #a2cce3;
    display: flex;
    align-items: center;
  }
  
  #footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
  }
  
  #footer .footer-top .footer-links ul a {
    color: #fff;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
  }
  
  #footer .footer-top .footer-links ul a:hover {
    color: #a2cce3;
  }
  
  #footer .footer-top .footer-contact {
    margin-bottom: 30px;
  }
  
  #footer .footer-top .footer-contact p {
    line-height: 26px;
  }
  
