:root {
  /* Body font: professional, clean, highly readable */
  --default-font: "Lato", "Inter", "Helvetica Neue", Arial, sans-serif;

  /* Heading font: elegant + classic financial look */
  --heading-font: "Playfair Display", "Times New Roman", serif;

  /* Navigation font: bold, sleek, trustworthy */
  --nav-font: "Cinzel", "Raleway", serif;
}


:root {
  /* 🎨 Brand Theme Colors */
  --primary-color: #0B1F3A;         /* Deep Navy Blue */
  --accent-color: #C9A94F;          /* Gold */
  --contrast-color: #FFFFFF;        /* White */
  --background-color: #F5F5F5;      /* Light gray */
  --default-color: #1A1A1A;         /* Body text */
  --heading-color: #003366;         /* Headings */

  /* 🧭 Navigation */
  --nav-color: rgba(255, 255, 255, 0.85);
  --nav-hover-color: #FFFFFF;
  --nav-dropdown-background-color: #FFFFFF;
  --nav-dropdown-color: #212529;
  --nav-dropdown-hover-color: #C9A94F;

  /* UI */
  --alt-background-color: #0B1F3A;
  --light-gray: #DADADA;
  --soft-gray: #EAEAEA;
  --card-bg: #FFFFFF;
  --text-muted: #6C757D;
  --danger-color: #B22222;
  --success-color: #1E5631;

  /* Charts */
  --chart-gain: #1E5631;
  --chart-loss: #B22222;
  --chart-neutral: #C9A94F;

  /* Fonts */
  --nav-font: 'Segoe UI', sans-serif;
}

 /* Hero Section Styling */
.hero {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

/* Ensure each carousel item fills the full viewport height */
.carousel-item {
    height: 100vh;
}

/* Background Image for Hero Slides */
.hero-slide {
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Overlay to darken background for better text visibility */
.hero-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay */
}

/* Hero Content Styling */
.hero-content {
    position: relative;
    text-align: center;
    color: #fff;
    max-width: 80%;
    z-index: 2;
}

/* Headings in Hero Section */
.hero-content h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
}

/* Paragraphs in Hero Section */
.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* CTA Button Styling */
.hero-content .btn {
    font-size: 1.2rem;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

/* Button Hover Effect */
.hero-content .btn:hover {
    background: #ffcc00;
    color: #000;
}

/* Carousel Navigation Buttons */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(100%);
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;

}

/* About Section Styling */
.about {
    padding: 80px 0;
    background-color: var(--background-color);
    color: var(--default-color);
}

.about h2 {
    color: var(--heading-color);
    font-weight: 700;
    margin-bottom: 20px;
}

.about p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--default-color);
}

.about .btn-primary {
    background-color: var(--accent-color);
    border: none;
    color: var(--contrast-color);
    padding: 12px 24px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.about .btn-primary:hover {
    background-color: #c69300; /* Darker gold on hover */
    color: var(--contrast-color);
}

.about img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}



/* ========== Investment opportunities ========== */

.investments {
    padding: 80px 0;
    background-color: var(--light-bg);
    color: var(--default-color);
}

.investments .section-title h2 {
    color: var(--heading-color);
    font-weight: 700;
    margin-bottom: 15px;
}

.investments .section-title p {
    font-size: 1rem;
    color: var(--default-color);
    margin-bottom: 40px;
}

.investment-card {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
}

.investment-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.investment-card i {
    color: var(--accent-color);
    margin-bottom: 20px;
}

.investment-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--heading-color);
}

.investment-card p {
    font-size: 0.95rem;
    color: var(--default-color);
    margin-bottom: 20px;
}

.investment-card .btn-primary {
    background-color: var(--accent-color);
    border: none;
    color: var(--contrast-color);
    padding: 10px 22px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.investment-card .btn-primary:hover {
    background-color: #c69300;
    color: var(--contrast-color);
}


/* 📱 Responsive Design for Small Screens */
@media (max-width: 768px) {
    .investments .row {
        flex-direction: column;
        align-items: center;
    }

    .investment-card {
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .section-title h2 {
        font-size: 2rem;
    }

    .investment-card {
        max-width: 95%;
    }

    .investment-card h3 {
        font-size: 1.5rem;
    }

    .investment-card p {
        font-size: 0.95rem;
    }
}

.testimonial-cta {
    margin-top: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    text-align: center;
}

.testimonial-cta h3 {
    font-size: 1.8rem;
    color: #333;
}

.testimonial-cta p {
    font-size: 1.2rem;
    color: #555;
}

.testimonial-cta .btn {
    margin-top: 10px;
}

/* ========== How it works ========== */
.how-it-works {
  background-color: var(--background-color);
  color: var(--default-color);
  padding: 80px 0;
}

.how-it-works .section-title h2 {
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 15px;
}

.how-it-works .section-title p {
  color: #555;
  margin-bottom: 40px;
}

.steps-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.step {
  flex: 1 1 calc(20% - 30px);
  background-color: var(--contrast-color);
  border: 1px solid #ddd;
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 5px 15px rgba(11, 31, 58, 0.05);
}

.step:hover {
  box-shadow: 0 10px 25px rgba(11, 31, 58, 0.15);
  transform: translateY(-5px);
}

.step-icon {
  font-size: 36px;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.step h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.step p {
  font-size: 14px;
  color: #555;
}
/* Responsive Design */
@media (max-width: 992px) {
    .steps-wrapper {
        flex-direction: row;
        justify-content: space-evenly;
    }
}

@media (max-width: 768px) {
    .steps-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .step {
        width: 80%;
    }
}

@media (max-width: 480px) {
    .step {
        width: 95%;
    }
}

/* ========== Why Choose Us and Market Stats ========== */
.why-choose-us,
.market-stats {
  padding: 80px 0;
  background-color: var(--background-color);
  color: var(--default-color);
}

.why-choose-us .section-title h2,
.market-stats .section-title h2 {
  color: var(--heading-color);
  font-weight: 700;
}

.why-choose-us .section-title p,
.market-stats .section-title p {
  color: #555;
  margin-bottom: 40px;
}

.feature {
  text-align: center;
  margin-bottom: 40px;
}

.feature i {
  margin-bottom: 20px;
}

.feature h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.feature p {
  font-size: 14px;
  color: #555;
}

.stats-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 40px;
}

.stats-box {
  flex: 1 1 calc(25% - 30px);
  background-color: var(--contrast-color);
  border: 1px solid #ddd;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(11, 31, 58, 0.05);
  transition: all 0.3s ease;
}

.stats-box:hover {
  box-shadow: 0 10px 25px rgba(11, 31, 58, 0.15);
  transform: translateY(-5px);
}

.stats-box h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.stats-box p {
  font-size: 20px;
  font-weight: bold;
  color: var(--accent-color);
}

.chart-container {
  margin-top: 50px;
}

/* 📱 Responsive Design */
@media (max-width: 768px) {
    .feature {
        max-width: 90%;
        margin: 0 auto 20px auto;
    }
}

@media (max-width: 480px) {
    .section-title h2 {
        font-size: 2rem;
    }

    .feature h3 {
        font-size: 1.5rem;
    }

    .feature p {
        font-size: 0.95rem;
    }
}



/* Responsive Design */
@media (max-width: 768px) {
    .stats-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .stats-box {
        width: 90%;
    }
}

.bitcoin-stats {
    background: #1a1a1a; /* Dark background for professional look */
    color: #ffffff;
    padding: 50px 20px;
    text-align: center;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.stat-box {
    background: #222; /* Dark gray for contrast */
    padding: 20px;
    border-radius: 8px;
    min-width: 150px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

.stat-box h3 {
    font-size: 18px;
    color: #ffcc00; /* Bitcoin’s yellow-orange theme */
}

.stat-box p {
    font-size: 22px;
    font-weight: bold;
    margin-top: 5px;
}


/* ========== Bitcoin Statistics Section ========== */
.bitcoin-stats {
    background-color: #111;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.bitcoin-stats h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

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

.stat-box {
    background-color: #1c1c1c;
    border: 1px solid #f1c40f;
    padding: 25px 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
    transition: transform 0.3s;
}

.stat-box h3 {
    color: #f1c40f;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.stat-box p {
    font-size: 1.2rem;
    font-weight: bold;
}

.stat-box:hover {
    transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .stats-wrapper {
        flex-direction: row;
        justify-content: space-evenly;
    }
}

@media (max-width: 768px) {
    .stats-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .stat-box {
        width: 80%;
    }
}

@media (max-width: 480px) {
    .stat-box {
        width: 95%;
    }
}




/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #e9ecef; /* Subtle greyish-blue for contrast */
    text-align: center;
}

/* Section Title */
.section-title h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
}

/* Testimonial Content Box */
.testimonial-content {
    max-width: 600px;
    margin: auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.testimonial-content:hover {
    transform: scale(1.02);
}

.testimonial-content img {
    width: 150px;
    height: 90px;
    border-radius: 20%;
    margin-bottom: 15px;
}

.testimonial-content p {
    font-size: 1.2rem;
    color: #555;
    font-style: italic;
}

.testimonial-content h4 {
    font-size: 1.3rem;
    color: #007bff;
    margin-top: 10px;
}

.stars {
    font-size: 1.5rem;
    color: #FFD700;
    margin-top: 5px;
}

/* Adjusted Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    height: 40px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
}

.carousel-control-prev {
    left: -20px; /* Adjust closer to the item */
}

.carousel-control-next {
    right: -20px; /* Adjust closer to the item */
}

/* Smaller Arrow Icons */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
    background-size: contain;
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonial-content {
        max-width: 90%;
    }

    .carousel-control-prev {
        left: -10; /* Further tweak for smaller screens */
    }

    .carousel-control-next {
        right: -10;
    }
}

@media (max-width: 480px) {
    .section-title h2 {
        font-size: 2rem;
    }

    .testimonial-content p {
        font-size: 1rem;
    }

    .testimonial-content h4 {
        font-size: 1.2rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 35px;
        height: 35px;
    }
}


#item{
    height: 50%;
}


/* Features Section */
.features {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.features .section-title {
    text-align: center;
    margin-bottom: 40px;
}

.features .section-title h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #222;
}

.features .section-title p {
    font-size: 16px;
    color: #555;
}

.feature-box {
    background: #fff;
    border-radius: 10px;
    padding: 30px 20px;
    margin-bottom: 30px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease-in-out;
    height: 100%;
}

.feature-box:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.feature-box i {
    font-size: 40px;
    color: #007bff;
    margin-bottom: 20px;
}

.feature-box h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.feature-box p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 767px) {
    .feature-box {
        padding: 25px 15px;
    }

    .features .section-title h2 {
        font-size: 26px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .feature-box {
        padding: 20px;
    }

    .feature-box i {
        font-size: 2.5rem;
    }

    .feature-box h3 {
        font-size: 1.3rem;
    }
}

/* Account Types Section */
.account-types {
    padding: 60px 20px;
    background-color: #f0f4f8;
    text-align: center;
}

.account-types h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #003366;
}

.account-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.account-box {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    padding: 30px 25px;
    max-width: 360px;
    flex: 1 1 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.account-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.account-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #C9A94F; /* Gold accent */
}

.account-box p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #444;
}

.account-box ul {
    list-style-type: none;
    padding: 0;
    margin-bottom: 20px;
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

.account-box ul li {
    margin-bottom: 8px;
}

.account-box ul.instruments {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding-left: 0;
    justify-content: flex-start;
}

.account-box ul.instruments li {
    background-color: #C9A94F;
    color: #003366;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
}




/* Our Team Section */
.team {
    padding: 0 0;
    background: #f8f9fa; /* Light grey background */
    text-align: center;
}

.team-member {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
    margin: 20px 0;
}

.team-member:hover {
    transform: scale(1.05);
}

.team-member img {
    width: 130px;
    height: 130px;
    border-radius:60%;
    margin-bottom: 15px;
}

.team-member h4 {
    font-size: 1.5rem;
    color: #333;
}

.team-member p {
    font-size: 1rem;
    color: #777;
    margin-bottom: 10px;
}

.social-icons a {
    font-size: 1.2rem;
    margin: 0 5px;
    color: #007bff;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #0056b3;
}

/* Responsive */
@media (max-width: 768px) {
    .team-member img {
        width: 80px;
        height: 80px;
    }
}

/* ========== Trading Platform Features ========== */
.trading-platform {
    background-color: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
}

.trading-platform h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #222;
}

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

.feature-box {
    background-color: #fff;
    border: 1px solid #eaeaea;
    padding: 30px 25px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s;
    text-align: left;
}

.feature-box h3 {
    color: #f1c40f;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.feature-box p {
    color: #555;
    font-size: 1rem;
    margin-bottom: 15px;
}

.feature-box ul {
    padding-left: 20px;
    list-style: none;
}

.feature-box ul li {
    margin-bottom: 10px;
    color: #333;
}

.feature-box:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}



/* Security & Compliance Section */
.security-compliance {
    padding: 80px 0;
    background: #1e1e1e; /* Dark and secure-feeling theme */
    color: #ffffff;
    text-align: center;
}

.security-compliance .section-title h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffffff;
}

.security-compliance .section-title p {
    font-size: 1.2rem;
    color: #ddd;
    margin-bottom: 40px;
}

/* Security Wrapper */
.security-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* Security Items */
.security-item {
    width: 300px;
    padding: 20px;
    background: #2c2c2c;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.security-item:hover {
    transform: scale(1.05);
}

/* Security Icons */
.security-item i {
    font-size: 40px;
    color: #f1c40f;
    margin-bottom: 10px;
}

/* Security Titles */
.security-item h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
}

/* Security Descriptions */
.security-item p {
    font-size: 1rem;
    color: #ccc;
}

/* Trusted Partners */
.trusted-partners {
    margin-top: 50px;
}

.trusted-partners h3 {
    font-size: 2rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 20px;
}

.partners-logos {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.partners-logos img {
    width: 100px;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.partners-logos img:hover {
    filter: grayscale(0%);
}

/* Responsive Design */
@media (max-width: 992px) {
    .security-wrapper {
        flex-direction: row;
        justify-content: space-evenly;
    }
}

@media (max-width: 768px) {
    .security-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .security-item {
        width: 80%;
    }

    .partners-logos img {
        width: 80px;
    }
}

@media (max-width: 480px) {
    .security-item {
        width: 95%;
    }

    .partners-logos img {
        width: 70px;
    }
}

/* Contact & Support Section */
.contact-support {
    padding: 80px 0;
    background: #222; /* Dark background */
    color: #ffffff;
    text-align: center;
}

.contact-support .section-title h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffffff;
}

.contact-support .section-title p {
    font-size: 1.2rem;
    color: #ddd;
    margin-bottom: 40px;
}

/* Contact Wrapper */
.contact-wrapper {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

/* Contact Form */
.contact-form {
    background: #2c2c2c;
    padding: 30px;
    border-radius: 10px;
    width: 400px;
    box-shadow: 0 4px 6px rgba(255, 255, 255, 0.1);
}

.contact-form h3 {
    font-size: 1.8rem;
    color: #f1c40f;
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: none;
    border-radius: 5px;
    background: #fff;
    color: #fff;
    font-size: 1rem;
}

.contact-form textarea {
    resize: none;
}

.contact-form button {
    width: 100%;
    padding: 12px;
    background: #f1c40f;
    color: #222;
    font-size: 1.2rem;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background: #d4a00c;
}

/* Contact Details */
.contact-details {
    background: #2c2c2c;
    padding: 30px;
    border-radius: 10px;
    width: 400px;
    box-shadow: 0 4px 6px rgba(255, 255, 255, 0.1);
}

.contact-details h3 {
    font-size: 1.8rem;
    color: #f1c40f;
    margin-bottom: 20px;
}

.contact-details p {
    font-size: 1.2rem;
    color: #ddd;
    margin: 10px 0;
}

.contact-details i {
    color: #f1c40f;
    margin-right: 10px;
}

/* Live Chat Button */
.chat-button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 20px;
    background: #f1c40f;
    color: #222;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.chat-button:hover {
    background: #d4a00c;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-wrapper {
        flex-direction: row;
        justify-content: space-evenly;
    }
}

@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .contact-form, .contact-details {
        width: 90%;
    }
}

@media (max-width: 480px) {
    .contact-form, .contact-details {
        width: 100%;
    }
}


/* Newsletter Section */
.newsletter {
    width: 50%; /* Set width to half */
    margin: 25px auto; /* Center it */
    padding: 50px 0;
    background: #e9ecef; /* Primary blue */
    color: red;
    text-align: center;
    border-radius: 10px; /* Optional: Slight rounding for better design */
}


.newsletter .section-title h2 {
    font-size: 2.5rem;
}

.newsletter p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Subscription Form */
#newsletter-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    max-width: 500px;
    margin: auto;
}

#newsletter-form input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 5px;
}

#newsletter-form button {
    padding: 10px 20px;
    background: #ffcc00;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    color: #333;
    transition: background 0.3s ease;
}

#newsletter-form button:hover {
    background: #ffb300;
}

/* Success Message */
#success-message {
    font-size: 1.2rem;
    margin-top: 10px;
    color: #ffcc00;
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    #newsletter-form {
        flex-direction: column;
    }

    #newsletter-form input {
        width: 100%;
    }

    #newsletter-form button {
        width: 100%;
    }
}

/* Footer Section */
.footer {
    background: #0b1b34; /* Dark background */
    color: #ffffff;
    padding: 0 0;
    text-align: center;
}

.footer .container {
    max-width: 1100px;
    margin: auto;
}

.footer .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: left;
}

.footer-col {
    flex: 1;
    min-width: 250px;
    padding: 20px;
}


/* Footer Logo Styling */
.logo-col {
    text-align: center;
}

.footer-logo {
    width: 140px; /* Adjust as needed */
    height: auto;
}

.footer-col h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: red /* Matches general theme */
}

.footer-col p, .footer-col ul {
    font-size: 1rem;
    color: #dcdcdc;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #dcdcdc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #f8b400;
}

/* Social Media Links */
.social-links {
    margin-top: 10px;
}

.social-links a {
    display: inline-block;
    margin: 0 8px;
    font-size: 1.5rem;
    color: #f8b400;
    transition: 0.3s;
}

.social-links a:hover {
    color: #ffffff;
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 20px;
    padding: 15px;
    background: #1a1a1a;
    font-size: 0.9rem;
    color: #aaa;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer .row {
        flex-direction: column;
        text-align: center;
    }

    .footer-col {
        padding: 10px 0;
    }
}
