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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
}

/* Header Styles */
header {
    background-color: #ffffff;
    border-bottom: 1px solid #ddd;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.logo img {
    width: 250px; /* Adjust the logo size */
}

.nav ul {
    display: flex;
    list-style: none;
}

.nav ul li {
    margin: 0 15px;
}

.nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav ul li a:hover {
    color: #007bff;
}

.nav ul li a.highlight {
    color: #fff;
    background-color: #28a745;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.nav ul li a.highlight:hover {
    background-color: #218838;
}

/* Mobile Menu Icon */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* Body Styling */
body {
    background-color: #146eb4;
    color: #ffffff;
}

/* Contact Section */
.contact-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    height: 100vh;
    padding: 20px;
}

/* Left Section */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #ffffff;
}

.investment-section {
    background-color: #007bff;
    color: #ffffff;
    padding: 40px 20px;
    text-align: center;
}

.investment-content h1 {
    font-size: 2rem;
    margin: 0 0 20px;
}

.plan-buttons {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.plan-buttons .btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    width: fit-content;
}

.plan-buttons .btn.green {
    background-color: #146eb4;
    color: #ffffff;
}

.plan-buttons .btn.blue {
    background-color: #ffffff;
    color: #007bff;
    border: 2px solid #007bff;
}

.ratings {
    background-color: #146eb4;
    padding: 20px;
    margin-top: 20px;
    border-radius: 10px;
}

.ratings h2 {
    margin: 0 0 10px;
    font-size: 1.5rem;
}

.stars {
    font-size: 1.5rem;
    margin: 10px 0;
}

.stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
}

.stats div {
    text-align: center;
    flex: 1;
    min-width: 100px;
}

.stats h3 {
    margin: 0;
    font-size: 1.25rem;
}

.stats p {
    margin: 5px 0 0;
    font-size: 0.9rem;
}

.platform-info {
    margin-top: 10px;
    font-size: 0.95rem;
    font-style: italic;
}

@media (max-width: 768px) {
    .investment-content h1 {
        font-size: 1.5rem;
    }

    .plan-buttons {
        flex-direction: column;
    }

    .ratings {
        padding: 15px;
    }

    .stats {
        flex-direction: column;
        align-items: center;
    }

    .stats div {
        min-width: auto;
    }
}


/* Right Section - Form */
.contact-right {
    width: 30%;
    background-color: #ffffff;
    color: #333;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    animation: fadeIn 1s ease-in-out;
}

.contact-form .form-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #146eb4;
    text-align: center;
}

.contact-form .form-subtitle {
    font-size: 1rem;
    color: #555;
    text-align: center;
    margin-bottom: 20px;
}

.contact-form label {
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 5px;
    display: block;
}

.contact-form input,
.contact-form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form select:focus {
    border-color: #146eb4;
    outline: none;
    box-shadow: 0 0 5px rgba(20, 110, 180, 0.5);
}

.contact-form .submit-button {
    width: 100%;
    padding: 10px;
    background-color: #146eb4;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-form .submit-button:hover {
    background-color: #0b5a9f;
    transform: translateY(-3px);
}

/* Fade-in Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* Body Styling */
body {
    background-color: #146eb4;
    color: #000000;
}

/* Section Container */
.topics-section {
    padding: 50px 20px;
    text-align: center;
    background-color: #ffffff; /* Section Background */
    color: #000000;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    color: #ffffff;
}

/* Grid Layout */
.grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 0 auto;
    max-width: 1200px;
}

.grid-item {
    background-color: #003db0; /* Grid Item Background */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #ffffff;
}

.grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.grid-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.grid-item h3 {
    font-size: 1.2rem;
    padding: 15px;
    color: #ffffff;
    background-color: #146eb4;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: #146eb4; /* Background Color */
    color: #ffffff;
}

/* First Section Container */
.first-section {
    display: flex;
    flex-direction: row; /* Desktop View */
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    gap: 20px;
}

/* Image Container */
.image-container img {
    width: 100%; /* Full width on mobile */
    max-width: 6000px; /* Limits image size */
    height: auto;
    display: block;
    margin: 0 auto; /* Centers the image */
    border-radius: 8px;
}

/* Form Container */
.form-container {
    width: 100%;
    max-width: 400px;
    background: #ffffff;
    color: #000000;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Form Fields */
.contact-form input,
.contact-form select,
.contact-form button {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.contact-form button {
    background-color: #003db0;
    color: #ffffff;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background-color: #0096c7;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: #146eb4; /* Primary Background */
    color: #ffffff;
}

/* Section Title */
.section-title {
    text-align: center;
    font-size: 2rem;
    margin: 20px 0;
    color: #ffffff;
}

/* Grid Container */
.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Responsive Grid */
    gap: 20px;
    padding: 20px;
}

/* Individual Partner Item */
.partner-item {
    background: #ffffff; /* Card Background */
    color: #000000; /* Text Color */
    text-align: center;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.partner-item img {
    width: 100%; /* Responsive Image */
    max-height: 100px;
    object-fit: contain;
    margin-bottom: 10px;
}

.partner-item p {
    font-size: 1rem;
    font-weight: bold;
}

/* Hover Effect */
.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* Body Styling */
body {
    background-color: #146eb4;
    color: #ffffff;
}


/* Section Styling */
.talk-to-experts {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.text-area {
    max-width: 600px;
    flex: 1;
    text-align: left;
}

.text-area h3 {
    font-size: 3rem;
    color: #3C873A;
    margin-bottom: 10px;
}

.text-area h1 {
    font-size: 2.5rem;
    color: #000000;
    font-weight: bold;
    margin: 10px 0;
}

.text-area p {
    font-size: 1rem;
    margin: 20px 0;
    color: #555;
}

.buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.btn {
    padding: 12px 20px;
    background-color: #3C873A;
    color: #ffffff;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #2A5C28;
}

/* Image Area */
.image-area {
    flex: 1;
    text-align: center;
}

.image-area img {
    max-width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

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

.footer {
    background-color: #000;
    color: #fff;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer .social-media {
    margin-bottom: 20px;
}

.footer .social-media a {
    margin: 0 10px;
    display: inline-block;
}

.footer .social-media img {
    width: 30px;
    height: 30px;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.footer .social-media img:hover {
    filter: grayscale(0%);
}

.footer .address {
    font-size: 1.2em;
  margin-bottom: 10px;
}

.footer .copyright {
    font-size: 1em;
}
/* Media Queries for Mobile */
@media (max-width: 1300px) {
  
  .container {
    gap: 0;
}
  
  .contact-left img {
    width: 100%;
}
  
  .contact-left {
    margin:0;
}
  
  .contact-section {
    display: block;
    height:auto;
}
  
  body {
    max-width:420px;
    margin: 0 auto;
  }
    .main-content {
        flex-direction: column;
    }

  .image-container {max-width: 840px} 
  
  
  
  .form-container {
        max-width: 100%;
    }

    .form-container {
        margin-top: 20px;
    }

.nav ul {
        display: none;
        flex-direction: column;
        background: #fff;
        position: absolute;
        top: 60px;
        right: 20px;
        width: 200px;
        border: 1px solid #ddd;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .nav ul.active {
        display: flex;
    }

    .menu-toggle {
      color: #fff
        display: block;
    }

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

    .contact-left,
    .contact-right {
        width: 100%;
    }

    .contact-right {
        margin-top: 20px;
    }

 .grid-container {
        grid-template-columns: 1fr;
    }

.grid-container {
        grid-template-columns: repeat(1, 1fr);
    }

 .first-section {
        flex-direction: column; /* Stack Image and Form */
        padding: 10px;
    }

    .image-container img {
        max-width: 100%; /* Adjust image to fit screen */
    }

    .form-container {
        margin-top: 20px;
        width: 100%;
    }

 .section-title {
   color:#fff;
        font-size: 1.5rem;
    }
    .partner-item {
        padding: 10px;
    }

 .container {
        flex-direction: column;
   padding:0;
        text-align: right;
    }

    .text-area {
        text-align: right;
        margin-bottom: 20px;
    }

    .buttons {
        justify-content: right;
    }
  
  .text-area h3 {
    font-size: 4.2rem;
    
}
  
  .text-area h1 {
   
    color: black;
}

}