* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 50px;
    background: #111;
    position: relative;
    z-index: 9999;
    border-bottom: 2px solid #f4d03f;
    /* golden line */
}

.logo {
    margin-left: 110px;
}

.navbar .logo img {
    width: 100%;
    height: 69px;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 45px;
    margin-right: 90px;
    transition: all 0.3s ease;
}

.navbar ul li {
    position: relative;
}

.navbar ul li a {
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
    text-transform: none;
    letter-spacing: 0.05em;
    font-family: helvetica-w01-roman, helvetica-w02-roman, helvetica-lt-w10-roman, sans-serif;
    font-size: 1em;
    color: #FFFFFF;
}

.navbar ul li a:hover,
.navbar ul li a.active {
    color: #f4d03f;
}

.navbar ul li .dropdown {
    display: none;
    position: absolute;
    top: 20px;
    left: -30px;
    border: 1px solid #f4d03f;
    background: #222;
    padding: 10px 0;
    min-width: 200px;
    border-radius: 5px;
    z-index: 1000;
}

.navbar ul li .dropdown li {
    padding: 8px 20px;
}

.navbar ul li .dropdown li a {
    color: #fff;
    font-size: 14px;
}

.navbar ul li .dropdown li a:hover {
    color: #f4d03f;
}

.navbar ul li:hover .dropdown {
    display: block;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 28px;
    color: #fff;
}

@media (max-width: 991px) {
    .navbar {
        padding: 0px 15px;

    }

    .logo {
        margin-left: 0;
    }

    .navbar ul {
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 0px;
        left: 2px;
        background: #111;
        width: 240px;
        display: none;
        padding: 15px 0;
    }

    .navbar ul.active {
        display: flex;
        border: 1px solid #f4d03f;
    }

    .navbar ul li {
        width: 100%;
        text-align: left;
        padding: 10px 20px;
    }

    .navbar ul li .dropdown {
        position: relative;
        top: 0;
        left: 0;
        background: #222;
        width: 100%;
        border-radius: 0;
        margin-top: 10px;
    }

    .menu-toggle {
        display: block;
    }
}

@media (max-width: 600px) {
    .navbar {
        padding: 10px 15px;
    }

    .logo img {
        height: 50px;
    }

    .navbar ul li {
        width: 100%;
        gap: 20;
        text-align: left;
        padding: 1px 29px;
    }

    .navbar ul {
        width: 99%;
    }

    .navbar ul li a {
        font-size: 15px;
    }
}

.row {
    width: 99%;
    height: auto;
    text-align: center;
    padding: 25px 50px;
    overflow: hidden;
}

.row p {
    font-size: 1.1em;
    margin: 12px;
    padding: 20px 19px;
    border: 1px solid #f4d03f;
    text-align: justify;
    color: #f4d03f;
    font-weight: 400;
}

@media (max-width: 480px) {
    .row {
        width: 100%;
        height: auto;
        text-align: center;
        padding: 21px 16px;
        margin-left: -14px;
        border-radius: 24px;
    }

    .row p {
        width: 100%;
        height: auto;
        text-align: left;
        border-radius: 27px;
        padding: 18px 17px;
        border-radius: 17px;
        overflow: hidden;
    }
}

.banner {
    width: 100%;
    overflow: hidden;
}

.banner img {
    width: 100%;
    height: 400px;
    display: block;
    object-fit: cover;
}

/* Tablet view */
@media (max-width: 992px) {
    .banner img {
        height: auto;
    }
}

/* Mobile view */
@media (max-width: 600px) {
       .banner img {
        width: 100%;
        height: 148px;
    }
}









/* Section */

.about-section {
    padding: 0px 20px;

}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 80%;
    margin: auto;
}

.about-text {
    flex: 1;
    margin-left: -25px;
}

.about-text h2 {
    font-size: 28px;
    text-align: left;
    margin-left: 1px;
    font-weight: 400;
    color: #F5C543;
    margin-bottom: 15px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.6;
    text-align: justify;
    color: #ddd;
    width: 100%;
}

.about-image {
    flex: 1;
    margin-left: -52px;
    text-align: center;
}

.about-image img {
    max-width: 88%;
    border-radius: 12px;
}

@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-text {
        order: 1;
    }

    .about-image {
        order: 2;
        margin-top: -44px;
    }
}

@media (max-width: 600px) {
    .about-text h2 {
        font-size: 22px;
    }

    .about-text p {
        font-size: 14px;
    }

    .about-image img {
        max-width: 100%;
        margin-left: 20px;
        border-radius: 12px;
    }

    .about-section {
        padding: 0px 0px;
        width: 100%;
        margin-top: 40px;
    }
}




.container {
  text-align: center;
  padding: 40px 20px;
}


.container  h2 {
  margin-bottom: 30px;
  color: #333;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  justify-items: center;
}
.card {
    width: 97%;
    height: 240px;
    perspective: 1000px;
    cursor: pointer;
}

.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.7s;
  transform-style: preserve-3d;
}

.card.flip .card-inner {
  transform: rotateY(180deg);
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.card-front {
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px;
}

.card-front img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
}

.card-front p {
  margin-top: 10px;
  font-weight: bold;
  color: #333;
}

.card-back {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: white;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.card-back h3 {
    margin-bottom: 10px;
    color: black;
    font-weight: 400;
}

.card-back p {
  font-size: 14px;
  line-height: 1.4;
      color: black;

}


/* ---------- */
.key {
    color: #ffc107;
}

h2 {
    text-align: left;
    color: #ffc107;
    margin-left: 112px;
    font-weight: 400;
}

table {
    width: 70%;
    border-collapse: collapse;
    margin-top: 20px;
    margin-left: 112px;
    margin-bottom: 30px;
    background-color: #000;
}

th,
td {
    border: 1px solid #333;
    padding: 12px 16px;
    text-align: left;
    color: #fff;
}

th {
    background-color: #1a1a1a;
    color: #aaa;
}

@media (max-width: 992px) {

    table,
    thead,
    tbody,
    th,
    td,
    tr {
        display: block;
    }

    thead {
        display: none;
    }

    tr {
        margin-bottom: 15px;
        border: 1px solid #333;
        padding: 10px;
    }

    td {
        position: relative;
        padding-left: 50%;
        text-align: left;
    }

    td::before {
        position: absolute;
        top: 12px;
        left: 16px;
        width: 45%;
        white-space: nowrap;
        font-weight: bold;
        color: #ffc107;
    }

    td:nth-of-type(1)::before {
        content: "Features";
    }

    td:nth-of-type(2)::before {
        content: "Description";
    }
}

@media (max-width: 576px) {
    body {
        padding: 10px;
    }

    td {
        padding: 10px 10px 10px 50%;
    }

    h2 {
        text-align: left;
        color: #ffc107;
        margin-left: 7px;
        font-size: 1.2em;
        font-weight: 400;
    }

    table {
        width: 100%;
        border-collapse: collapse;
        margin-top: 20px;
        margin-left: -6px;
        margin-bottom: 30px;
        background-color: #000;
    }

    td::before {
        left: 10px;
    }
}

/* feature */
.features-section {
    padding: 40px 20px;
    background: radial-gradient(circle at center, #2b2b2b, #111);
    text-align: center;
}

.features-section h3 {
    color: #ffc107;
    font-weight: 400;
    font-size: 1.3em;
    margin-bottom: 30px;
    align-items: center;
}

.features-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
}

.feature-box {
    flex: 1 1 22%;
    margin: 20px 10px;
    background: transparent;
    color: #fff;
    text-align: center;
}

.feature-box img {
    max-width: 144px;
    margin-bottom: 19px;
}

.feature-title {
    font-size: 18px;
    font-weight: 400;
    color: #ffc107;
    margin-bottom: 10px;
}

.feature-description {
    font-size: 14px;
    color: #ddd;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .feature-box {
        flex: 1 1 45%;
    }

    .feature-box img {
        max-width: 70px;
    }
}

@media (max-width: 576px) {
    .features-container {
        flex-direction: column;
        align-items: center;
    }

    .feature-box {
        flex: 1 1 100%;
        max-width: 90%;
        margin: 20px 0;
    }

    .feature-box img {
        max-width: 60px;
    }

    .feature-title {
        font-size: 16px;
    }

    .feature-description {
        font-size: 13px;
    }
}


/*  */
.guide-section {
    padding: 25px 20px;
    max-width: 86%;
    margin: auto;
}

.guide-section h3 {
    color: #ffc107;
    font-size: 28px;
    font-weight: 400;
    text-align: left;
    margin-left: 0px;
    margin-bottom: 20px;
}

.guide-section p,
.guide-section li {
    color: #ddd;
    line-height: 1.6;
    font-size: 16px;
}

.guide-section strong {
    color: #ffc107;
    font-weight: 400;
}

.step-list {
    list-style-type: disc;
    padding-left: 20px;
}

.step-list li {
    margin-bottom: 10px;
}

@media (max-width: 992px) {
    .guide-section {
        padding: 30px 15px;
    }

    .guide-section h2 {
        font-size: 24px;
    }

    .guide-section p,
    .guide-section li {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .guide-section {
        padding: 20px 20px;
        max-width: 100%;
        margin: auto;
    }

    .guide-section p,
    .guide-section li {
        font-size: 14px;
    }

    .step-list {
        padding-left: 15px;
    }

    .guide-section h3 {
        color: #ffc107;
        font-size: 1.3em;
        font-weight: 400;
        text-align: left;
        margin-left: 0px;
        margin-bottom: 20px;
    }
}

/* faq */
body {
    font-family: Arial, sans-serif;
    background: #000;
    color: #fff;
    margin: 0;
    padding: 20px;
}

.faq-section {
    width: 83%;
    margin: auto;
}

.faq-section h3 {
    font-weight: 400;
    font-size: 2em;
    margin-bottom: 20px;
    margin-top: 35px;
    color: #ffc107;
    text-align: left;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.faq-item {
    border-bottom: 1px solid #555;
    margin-bottom: 10px;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 15px 10px;
    font-size: 18px;
    font-weight: 400;
    color: #ffc107;
    cursor: pointer;
    position: relative;
}

.faq-question::after {
    content: "▾";
    position: absolute;
    right: 10px;
    transition: transform 0.3s;
}

.faq-question.active::after {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.1s ease;
    padding: 0 10px;
}

.faq-answer p {
    margin: 10px 0;
    color: #ddd;
    font-size: 16px;
}

@media (max-width: 768px) {
    .faq-section {
        width: 92%;
        margin: auto;
    }

    .faq-question {
        font-size: 16px;
        padding: 12px 8px;
    }

    .faq-answer p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .faq-section h3 {
        font-size: 22px;
    }

    .faq-question {
        font-size: 15px;
    }
}

/* short */

.short {
    width: 85%;
    border-radius: 22px;
    margin: auto;
    text-align: justify;
    background-color: black;
    line-height: 1.6;
    border: 1px solid #ffc107;
    font-size: 16px;
    margin-top: 30px;
}


.short p {
    margin-top: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 400;
    margin-top: 16px;
    line-height: 1.6;
    padding: 10px 20px;
    text-align: justify;
    color: white;
}

@media (max-width: 480px) {


    .short {
        width: 98%;
        border-radius: 22px;
        margin: auto;
        text-align: justify;
        background-color: black;
        line-height: 1.6;
        border: 1px solid #ffc107;
        font-size: 16px;
        margin-top: 30px;
    }

}

/*  features-h
 */
.features-h {
    padding: 20px 40px;
    font-size: 1.1em;
    text-align: center;
}


.features-title-h {
    font-size: 28px;
    font-weight: 400;
    color: #f5c542;
    margin-bottom: 15px;
}

.features-subtitle-h {
    font-size: 16px;
    max-width: 400px;
    margin: 0 auto 40px;
    line-height: 1.6;
    color: #ddd;
}

.features-container-h {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.feature-box-h {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 96px;
    padding: 20px;
    flex: 1 1 calc(33.333% - 30px);
    max-width: 300px;
    text-align: center;
    transition: transform 0.3s;
}

.feature-box-h:hover {
    transform: translateY(-6px);
}

.feature-box-h h3 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 12px;
    color: #f5c542;
}

.feature-box-h p {
    font-size: 14px;
    color: #ccc;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .feature-box-h {
        flex: 1 1 calc(45% - 20px);
    }
}

@media (max-width: 600px) {
    .feature-box-h {
        flex: 1 1 100%;
    }

    .features-title-h {
        font-size: 22px;
    }

    .features-subtitle-h {
        font-size: 14px;
    }
}


/* blog-------------------------------------------------------------------------- */

.blog-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0px;
    margin-left: 69px;
    width: 90%;
    padding: 20px;
}

.heading {
    font-size: 1.9em;
    color: #f4d03f;
    margin-top: 35px;
    font-weight: 400;
    font-style: initial;
    text-align: center;
}



.blog-card {
    background: black;
    width: 100%;
    max-width: 350px;
    border-radius: 10px;
    cursor: pointer;
    border: 1px solid #f4d03f;
    overflow: hidden;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
    transition: all 0.2s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
}

.blog-title {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 10px;
    color: #f4d03f;
}

.blog-description {
    font-size: 14px;
    color: white;
    margin-bottom: 15px;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #f4d03f;
}

.author-name {
    font-weight: bold;
}

.read-time {
    font-style: italic;
}

@media (max-width: 768px) {
    .blog-container {
        justify-content: center;
        margin-left: 20px;

    }

    .blog-card {
        max-width: 100%;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .blog-title {
        font-size: 18px;
    }

    .blog-description {
        font-size: 12px;
    }

    .blog-footer {
        font-size: 10px;
    }
}

/* services---------------------------------------------------------------------------------------- */


.services-section {
    background: url("../images/service.jpg") no-repeat center center/cover;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 50px 10%;
    position: relative;
    color: #fff;
}

.services-section::before {
    content: "";
    position: absolute;
    inset: 0;
}

.services-content {
    position: relative;
    max-width: 500px;
    text-align: left;
}

.services-content h1 {
    margin-left: 0px;
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 400;
    color: #f5c542;
    text-align: left;
}

.services-content p {
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 20px;
}

.services-btn {
    padding: 12px 25px;
    font-size: 1rem;
    border: 1px solid #f4d03f;
    background: black;
    color: #f4d03f;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s ease;
}

.services-btn:hover {
    background: #f4d03f;
    color: black;
}

@media (max-width: 992px) {
    .services-section {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .services-content h1 {
        font-size: 1.6rem;
    }

    .services-content p {
        font-size: 0.95rem;
    }

    .services-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .services-section {
        background: url(../images/service.jpg) no-repeat center center / cover;
        min-height: 360px;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        padding: 11px 7%;
        position: relative;
        color: #fff;
    }
}


.container {
    text-align: center;
    width: 80%;
    padding: 30px;
    margin-left: 133px;
}

.container h2 {
    font-size: 2em;
    color: #ffcc00;
    text-align: center;
    font-weight: 400;
    margin-bottom: 70px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.service {
    background-color: #222;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s;
}

.service img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service p {
    padding: 15px;
    font-size: 1.2em;
    background-color: #333;
    color: #ffcc00;
    margin-top: -10px;
}

.service:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    h1 {
        font-size: 2em;
    }

    .grid {
        grid-template-columns: 1fr 1fr;
    }

    .service p {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5em;
    }

    .grid {
        grid-template-columns: 1fr;
    }

    .service p {
        font-size: 0.9em;
    }

    .container {
        text-align: center;
        width: 96%;
        padding: 30px;
        margin-left: 9px;
    }

    .container h2 {
        font-size: 1.3em;
        color: #ffcc00;
        text-align: center;
        font-weight: 400;
        margin-bottom: 20px;
    }
}


/* about----------------------------------------------------------------------------------- */






































































