@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Playwrite+VN:wght@100..400&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* corousle css start  */
.carousel-wrapper {
  overflow: hidden;
  background: #ff5f00;
  padding: 10px 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.carousel-track {
  display: flex;
  width: max-content;
  animation: scroll 20s linear infinite;
}

.carousel-item {
  flex: 0 0 auto;
  margin: 0 20px;
  font-size: 1.2rem;
  white-space: nowrap;
  color:#fff;
  transition: transform 0.3s;
  /* font-weight: 600; */
  font-family: 'Playfair Display', serif;
}

.carousel-item:hover {
  transform: scale(1.1);
  color: #007bff;
}

@keyframes scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .carousel-item {
    font-size: 1.2rem;
    margin: 0 20px;
  }
}
/* corousle css end  */

/* Astrology Hero Section Specific Styles */
.astro-hero-section {
    /* background: radial-gradient(circle at top left, #0b0c2a, #090a1f 70%); */
    /* background-color: green; */
    color: #fff;
    font-family: 'Segoe UI', sans-serif;
    padding: 40px 10px;
    overflow: hidden;
    padding-bottom: 140px;
}

.astro-hero-tag {
    color:#800000;
    font-size: 2rem;
    text-align: center;
    /* font-family: 'Playfair Display', serif; */
    font-family: 'Georgia', serif;
    font-weight: 700;
    /* text-shadow: 0 0 10px rgba(250, 185, 21, 0.5); */
    margin-bottom: 1rem;
}

.astro-hero-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    color: #800000;
    font-family: 'Georgia', serif;
    margin-bottom: 5rem;
    text-align: center;
}

/* === CTA Button === */
.astro-hero-btn {
    background-color: #ac0909 ;
    color: #fff;
    font-weight: bold;
    padding: 16px 38px;
    font-size: 18px;
    font-family: 'Playfair Display', serif;
    border: none;
    border-radius: 40px;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(251, 191, 36, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 1.5s ease;
    position: relative;
    overflow: hidden;
    margin-left: 40%;
}

/* Glowing animated pulse effect */
.astro-hero-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.25), transparent 70%);
    background: radial-gradient(circle, rgba(159, 11, 11, 0.25), transparent 70%);
    animation: rotateGlow 6s linear infinite;
    z-index: 0;
    border-radius: 50%;
}

/* Hover effect */
.astro-hero-btn:hover {
    transform: scale(1.08);
    /* background: linear-gradient(135deg, #7c3aed, #fbbf24); */
    background: linear-gradient(135deg, #af083d, #af2408);
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.6), 0 0 40px rgba(124, 58, 237, 0.4);
}

/* Keep text above the glow */
.astro-hero-btn span {
    position: relative;
    z-index: 1;
}

/* Rotate animation */
@keyframes rotateGlow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* whatsapp btn  */
.astro-whatsapp-btn, .astro-call-btn {
    position: fixed;
    bottom: 20px;
    left:  20px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 999;
}
.astro-call-btn{
    bottom: 12%;
    background-color: #ff5f00;
}

.astro-whatsapp-btn img {
    width: 35px;
    height: 35px;
}

/* === Responsive Adjustments === */
@media (max-width: 1024px) {

    .astro-hero-title {
        font-size: 40px;
        margin-bottom: 2rem;
    }
}

@media (max-width: 600px) {
    .astro-hero-title {
        font-size: 30px;
        margin-bottom: 3rem;
    }

    .astro-hero-btn {
        padding: 14px 24px;
        font-size: 18px;
        margin-left: 15%;
    }
}

/* hero css end  */


/* about section css  */
.section-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    background-color: #0f2b3d;
    color: #fff;
}

.image-box {
    flex: 1 1 400px;
    max-width: 500px;
    margin: 20px;
}

.image-box img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.content-box {
    flex: 1 1 400px;
    max-width: 700px;
    margin: 20px;
}

.content-box h2 {
    font-size: 2.5rem;
    border-bottom: 2px solid #ff6b00;
    display: inline-block;
    margin-bottom: 20px;
    /* color: #0d3f67; */
    /* color: #ff6b00; */
}

.content-box p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more-btn {
    display: inline-block;
    background-color: #ff6b00;
    color: #fff;
    padding: 12px 24px;
    border: none;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.read-more-btn:hover {
    background-color: #e65c00;
}

.contact-box {
    background-color: #18394d;
    margin-top: 30px;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-box i {
    font-size: 24px;
    color: #ff6b00;
}

.contact-box span {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ff6b00;
}

.icon-circle {
    width: 60px;
    height: 60px;
    background-color: #ff6b00;
    color: #fff;
    font-size: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    box-shadow: 0 0 10px rgba(255, 107, 0, 0.5);
    cursor: pointer;
}

.icon-circle:hover {
    transform: scale(1.15);
    box-shadow: 0 0 25px rgba(255, 153, 51, 0.7), 0 0 35px rgba(255, 102, 0, 0.5);
}

/* Expert Box */
.expert-box {
    /* background-color: rgba(245, 14, 14, 0.1); */
    /* box-shadow: 3px 5px 3px #ddd; */
    /* background-color: #c6d3ea; */
    background-color: #18394d;
    border-radius: 10px;
    padding: 20px 40px;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    /* width: 60%; */
    align-items: center;
}

.expert-box-title {
    font-size: 20px;
    margin-bottom: 15px;
    /* text-align: center; */
    color: #ff6b00;
}

.phone-container {
    display: flex;
    align-items: center;
    /* justify-content: center; */
    gap: 10px;
}

.phone-icon {
    width: 50px;
    height: 50px;
    background-color: #ff6b00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.phone-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.phone-number {
    font-size: 24px;
    font-weight: bold;
    color: #ff6b00;
}


@media screen and (max-width: 768px) {
    .section-container {
        flex-direction: column;
        text-align: center;
    }

    .contact-box {
        flex-direction: column;
    }

    .section-title {
        font-size: 28px;
    }

    .phone-number {
        font-size: 20px;
    }

    .btn-read-more {
        width: 160px;
        padding: 10px 20px;
    }
}

/* end  */

/* Services cards section styles */
.psn-services-section {
    padding: 20px;
    padding-top: 30px;
    background-color: #f9f9f9;
}

.service-title{
    text-align: center;
    color: #003366;
    font-size: 3rem;
    margin-bottom: 2rem;
    font-family: 'Georgia', serif;
}

.psn-services-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.psn-service-card {
    flex: 0 0 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
    /* background-color: #e6f2f8; */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.psn-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.psn-service-image-container {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.psn-service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.psn-service-card:hover .psn-service-image {
    transform: scale(1.05);
}

.psn-call-icon {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: #fff;
    border: 3px solid #ffc107;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.psn-call-icon:hover {
    transform: scale(1.1);
}

.psn-call-icon svg {
    width: 22px;
    height: 22px;
    fill: #1a365d;
}

.psn-service-content {
    padding: 20px;
}

.psn-service-title {
    color: #1a365d;
    /* color: #e65c00; */
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
    font-family: 'Georgia', serif;
}

.psn-service-description {
    color: black;
    font-size: 15px;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.6;
}

.psn-read-more {
    display: block;
    width: 80%;
    margin: 0 auto;
    padding: 10px;
    text-align: center;
    /* background: linear-gradient(to right, #ff9500, #ff5f00); */
    background: linear-gradient(to right, #05106e, #3300ff);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-size: 1.2rem;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.psn-read-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 127, 0, 0.3);
}

/* Phone buttons */
.psn-phone-btn {
    position: fixed;
    bottom: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.psn-phone-call {
    left: 20px;
    background-color: #00b300;
}

.psn-phone-whatsapp {
    right: 20px;
    background-color: #25d366;
}

.psn-phone-btn svg {
    width: 30px;
    height: 30px;
    fill: white;
}

/* Responsive styles */
@media (max-width: 992px) {
    .psn-service-card {
        flex: 0 0 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }

    .psn-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .psn-service-card {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .psn-title {
        font-size: 30px;
    }

    .psn-description {
        font-size: 15px;
    }

    .service-title{
    font-size: 2.5rem;
    margin-bottom: 2rem;
}
}
/* end third section Psychic header section styles */


/* are section start  */
.area-section {
    text-align: center;
    padding: 40px 20px;
}

.area-title{
    text-align: center;
    font-size: 2.5rem;
    color: #003366;
    margin-bottom: 2rem;
    font-family: 'Georgia', serif;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.city-card {
    /* background-color: #e6f5ff; */
    background-color: #ff5f00;
    border-radius: 8px;
    padding: 20px 10px;
    transition: transform 0.3s;
}

.city-card:hover {
    transform: translateY(-5px);
}

.pin-shape {
    width: 100px;
    height: 130px;
    margin: 0 auto;
    /* background: orange; */
    background-color: white;
    clip-path: path("M50,0 C77,0 100,23 100,50 C100,77 50,130 50,130 C50,130 0,77 0,50 C0,23 23,0 50,0 Z");
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pin-shape img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #e65c00;
    align-items: center;
    margin-top: -1.5rem;
}

.city-name {
    margin-top: 20px;
    font-weight: bold;
    font-size: 18px;
    /* color: #003366; */
    color: white;
    font-family: 'Georgia', serif;
}

@media (max-width: 600px) {

    .pin-shape img {
        width: 65px;
        height: 65px;
    }

    .city-name {
        font-size: 1.8rem;
    }

    .area-title{
    font-size: 2.5rem;
    color: #003366;
    margin-bottom: 2rem;
}
}

/* are section end  */


/* section six */
/* Namespace all styles with .astrologer-banner to avoid conflicts */
.astrologer-banner {
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

.astrologer-banner * {
    box-sizing: border-box;
}

.astrologer-banner .banner-container {
    position: relative;
    width: 100%;
    padding: 80px 0;
    background-image: url('../images/header_design.png');
    /* Replace with your actual image path */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* This makes the background image fixed */
    background-color: rgba(41, 86, 122, 0.9);
    /* Fallback color */
    overflow: hidden;
}

.astrologer-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(41, 86, 122, 0.85);
    /* Blue overlay with opacity */
    z-index: 1;
}

.astrologer-banner .banner-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #ffffff;
}

.astrologer-banner .banner-headline {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.astrologer-banner .banner-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 700px;
}

.astrologer-banner .cta-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.astrologer-banner .cta-button {
    display: inline-block;
    background-color: #ffbb00;
    color: #222;
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.astrologer-banner .cta-button:hover {
    background-color: #ffa500;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .astrologer-banner .banner-container {
        padding: 70px 0;
    }

    .astrologer-banner .banner-headline {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .astrologer-banner .banner-container {
        padding: 60px 0;
        background-attachment: scroll;
        /* For better mobile compatibility */
    }

    .astrologer-banner .banner-headline {
        font-size: 2rem;
    }

    .astrologer-banner .banner-description {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .astrologer-banner .banner-container {
        padding: 50px 0;
    }

    .astrologer-banner .banner-headline {
        font-size: 1.8rem;
    }

    .astrologer-banner .banner-description {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    .astrologer-banner .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .astrologer-banner .cta-container {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* section six end */

/* ############ */
/* end section seventh */




/* @@@@@@@@@@ */
/* section testomonial */
/* Testimonial Section Specific Styles with Namespaced Classes */

.testimonial-section {
    background-color: #0a2744;
    color: #fff;
    padding: 60px 0;
    font-family: 'Arial', sans-serif;
}

.testimonial-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonial-heading {
    text-align: center;
    margin-bottom: 40px;
    /* font-size: 36px; */
    font-weight: 400;
    font-size: 42px;
    font-weight: bold;
    font-family: 'Georgia', serif;
}

.testimonial-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.testimonial-divider {
    width: 80px;
    height: 3px;
    background-color: #ff7f00;
    margin: 15px auto 30px;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-slider-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    flex: 0 0 100%;
    padding: 20px;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .testimonial-slide {
        flex: 0 0 50%;
    }
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    box-sizing: border-box;
    position: relative;
}


.testimonial-avatar {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.testimonial-img-container {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    background-color: #ff5f00;
}


.testimonial-img, .name {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.name{
    color: #fff;
    font-size: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.testimonial-quote-icon {
    position: absolute;
    right: -10px;
    bottom: -10px;
    width: 40px;
    height: 40px;
    background-color: #ff7f00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    display: none;
}


.testimonial-content {
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 5px;
}

.testimonial-position {
    color: #ccc;
    font-size: 14px;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
}

.testimonial-btn {
    background-color: transparent;
    border: 2px solid #ff7f00;
    color: #ff7f00;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.testimonial-btn:hover {
    background-color: #ff7f00;
    color: white;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 8px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background-color: #ff7f00;
    transform: scale(1.2);
}

/* end section tesomonial */

/* section whty choose ue */

/* Why Choose Us Section Styles - Using unique class names to avoid conflicts */
/* Stats section */
.stats-section {
    background-color: #0a1729;
    padding: 60px 0;
    width: 100vw;
}

.why-choose-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Why Choose Us section */
.why-choose-section {
    display: flex;
    flex-wrap: wrap;
}

.why-choose-content {
    flex: 0 0 30%;
    padding-right: 20px;
    margin-top: 100px;
}

.stats-container {
    flex: 0 0 70%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 20px;
}

/* Header styling */
.why-choose-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.separator {
    width: 120px;
    height: 3px;
    background-color: #e67e22;
    margin-bottom: 20px;
}

.why-choose-description {
    font-size: 1rem;
    color: #ccc;
    max-width: 450px;
    line-height: 1.5;
}

/* Stat item */
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-orbit {
    position: relative;
    width: 130px;
    height: 130px;
    margin-bottom: 15px;
}

.orbit-image {
    position: absolute;
    width: 100%;
    height: 100%;
}

.orbit-circle {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 25px auto;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid rgba(230, 126, 34, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.stat-number {
    color: white;
    font-size: 1.8rem;
    font-weight: bold;
}

.stat-label {
    margin-top: 10px;
    font-size: 1.2rem;
    color: white;
    font-weight: normal;
}

/* Orbital elements */
.orbit-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Responsive styles */
@media screen and (max-width: 992px) {
    .why-choose-content {
        flex: 0 0 100%;
        margin-bottom: 40px;
    }

    .stats-container {
        flex: 0 0 100%;
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-choose-content {
    margin-top: 0px;
    text-align: center;
}

.separator {
    width: 120px;
    height: 3px;
    background-color: #e67e22;
    margin-bottom: 20px;
    margin-left: 30%;
}

}

@media screen and (max-width: 480px) {
    .stats-container {
        grid-template-columns: 1fr;
    }

    .why-choose-title {
        font-size: 2rem;
    }
}

/* section why choose us end */

/* Offices Section Styles - Using unique class names to avoid conflicts */
.faq-section{
    background-color: #ff5f00;
}
.faq-container {
    max-width: 1200px;
    margin: 0rem auto;
    padding: 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
}

.faq-header {
    flex: 1 1 300px;
}

.faq-header h2 {
    font-size: 2.5rem;
    /* color: #1a365d; */
    color: #fff;
    font-weight: 700;
    margin-bottom: 3rem;
    font-family: 'Georgia', serif;
}

.faq-image {
    flex: 1 1 300px;
    text-align: center;
}

.faq-image img {
    max-width: 100%;
    height: auto;
}

.faq-questions {
    flex: 1 1 500px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}


.faq-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #eaeaea;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #074564;
    font-weight: 600;
    font-size: 1.1rem;
    font-family: 'Georgia', serif;
}

.faq-question:hover{
    color: #ff5f00;
}

.faq-arrow {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}


.faq-arrow svg {
    width: 100%;
    height: 100%;
    fill: #074564;
}

.faq-arrow svg:hover{
    fill: #ff5f00;
}

.faq-answer {
    margin-top: 1rem;
    display: none;
    color: black;
    font-size: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eaeaea;
    font-family: Georgia, 'Times New Roman', Times, serif;
    line-height: 1.6rem;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-arrow {
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .faq-container {
        flex-direction: column;
        padding: 1rem;
    }
    
    .faq-header {
        text-align: center;
    }

    .faq-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    font-family: 'Georgia', serif;
}
}

/* @@@@@@@@@@@@ */
/* section footer */

/* Footer Section Styles - Using unique class names to avoid conflicts */
/* Footer Specific Styles with Namespaced Classes */
.footer-section {
    background-color: #0a2744;
    color: #fff;
    padding: 60px 0 0;
    font-family: 'Arial', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-column {
    flex: 1 1 250px;
    margin-bottom: 30px;
}

.footer-logo {
    margin-bottom: 20px;
    max-width: 200px;
}

.footer-logo img {
    max-width: 100%;
    height: auto;
}

.footer-about {
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 15px;
}

.footer-heading {
    position: relative;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 25px;
    padding-bottom: 10px;
}

.footer-heading:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #ff7f00;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #ff7f00;
    padding-left: 5px;
}

.footer-links a:before {
    content: '›';
    margin-right: 10px;
    font-size: 20px;
    color: #ff7f00;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.footer-contact-icon {
    color: #ff7f00;
    font-size: 18px;
    margin-right: 15px;
    margin-top: 5px;
    min-width: 20px;
    text-align: center;
}

.footer-contact-info {
    line-height: 1.5;
}

.footer-contact-info a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-info a:hover {
    color: #ff7f00;
}

.footer-social {
    margin-top: 20px;
}

.footer-social-heading {
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-social-icons {
    display: flex;
    gap: 10px;
}

.footer-social-icon {
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social-icon svg{
    color: #ff5f00;
}

.footer-social-icon svg:hover{
    color: white;
}

.footer-social-icon:hover {
    background-color: #ff7f00;
}

.footer-copyright {
    text-align: center;
    padding: 20px 0;
    margin-top: 30px;
    background-color: rgba(0, 0, 0, 0.2);
    font-size: 14px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .footer-column {
        flex: 0 0 50%;
        margin-bottom: 40px;
    }
}

@media (max-width: 576px) {
    .footer-column {
        flex: 0 0 100%;
    }
}