/* Banner Section */
.banner {
    margin: 0; /* Remove any default margins */
    width: 100%; /* Ensure the section spans the entire width */
    height: 80px; /* Set height to 80px */
    background: linear-gradient(45deg, #0056b3, #4e8deb, #0066cc, #1e3a8a);
    background-size: 400% 400%;
    animation: backgroundAnimation 5s ease infinite;
    color: white;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center; /* Vertically and horizontally center content */
    flex-direction: column; /* Stack the heading and breadcrumb */
    padding: 20px 0; /* Add some padding */
}

/* Heading for the page title */
.page-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px; /* Space between title and breadcrumb */
}

/* Container */
.banner .container {
    width: 100%; /* Make sure container is full width */
    padding: 0 20px; /* Add some padding for small screens */
    max-width: 1200px; /* Limit max width for larger screens */
    box-sizing: border-box; /* Include padding in width calculation */
}

/* Breadcrumb Styling */
.breadcrumb {
    font-size: 1.2rem;
    font-weight: bold;
}

.breadcrumb-item {
    color: white;
}

.breadcrumb-item.active {
    color: #ffcc00; /* Active breadcrumb in yellow */
}

/* Animation for background color */
@keyframes backgroundAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Responsive Design */
@media only screen and (max-width: 768px) {
    .banner {
        padding: 50px 0; /* Adjust padding for smaller screens */
    }

    .page-title {
        font-size: 2rem; /* Adjust font size for smaller screens */
    }

    .breadcrumb {
        font-size: 1rem; /* Adjust breadcrumb font size for small screens */
    }
}

@media only screen and (max-width: 480px) {
    .banner {
        padding: 40px 0; /* Further adjust padding for very small screens */
    }

    .page-title {
        font-size: 1.5rem; /* Smaller font size for mobile */
    }

    .breadcrumb {
        font-size: 0.9rem; /* Adjust breadcrumb font size even smaller for mobile */
    }
}






/* PhD & Research Section */
.phd-research-section {
    padding: 80px 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
    /* background: #f9f9f9; */
}

.phd-research-section .container {
    display: flex;
    align-items: center;
    /* max-width: 1200px; */
    gap: 40px;
}

/* Image Styling */
.phd-research-section .image {
    flex: 1;
    max-width: 50%;
}

.phd-research-section .image img {
    /* width: 100%; */
    height: auto;
    border-radius: 8px;
}

/* Text Content Styling */
.phd-research-section .text {
    flex: 1;
    max-width: 50%;
}

.phd-research-section .text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color:#0b1f40;
    font-family: 'Lora';
}

.phd-research-section .text p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
    font-family: 'EB Garamond';
}

/* ✅ RESPONSIVE DESIGN */
@media (max-width: 1000px) {
    .phd-research-section .container {
        flex-direction: column;
        text-align: center;
    }

    .phd-research-section .image,
    .phd-research-section .text {
        max-width: 100%;
    }

    .phd-research-section .image img {
        width: 100%;
    }
}



/* 8 Sections */
.section-container {
    padding: 60px 20px;
    text-align: center;
}

.section-container .container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-container h2 {
    font-size: 2.8rem;
    font-weight: bold;
    color: #0056b3; /* Heading color */
    margin-bottom: 20px;
}

.section-container p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 40px;
}

/* Cards container */
.cards-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

/* Individual Service Card */
.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 30%;
    padding: 20px;
    text-align: left;
    box-sizing: border-box;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    animation: fadeInUp 0.7s ease-out forwards;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.5s ease;
}

/* Hover Effect: Apply Your Gradient */
.service-card:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    background: linear-gradient(to top right, #63b9e1, #ffffff);
}

/* Ensure text is visible on hover */
.service-card:hover h3,
.service-card:hover p {
    color: #003d7a;
}

/* Image Styling */
.service-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Card Title */
.service-card h3 {
    font-size: 1.8rem;
    margin-top: 15px;
    color: #0056b3;
}

/* Card Text */
.service-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
    margin-top: 10px;
}

/* Button Styling */
.service-card .btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #0056b3;
    color: white;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* Button Hover */
.service-card .btn:hover {
    background: linear-gradient(to top right, #63b9e1, #ffffff);
    box-shadow: 0px 4px 15px rgba(99, 185, 225, 0.7);
    color: #003d7a;
}

/* Responsive Design */
@media (max-width: 1000px) {
    .section-container h2 {
        font-size: 2.5rem;
    }

    .cards-container {
        justify-content: center;
    }

    .service-card {
        width: 45%;
        margin-bottom: 30px;
    }
}

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

    .service-card {
        width: 100%;
    }

    .service-card .btn {
        width: 100%;
    }
}

/* Fade-in and Scale-up Animation */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}







/* Experience Section */
.experience-section {
    padding: 60px 20px;
    text-align: center;
    /* background-color: #f0f8ff; */
}

.experience-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #0056b3;
    margin-bottom: 40px;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 30px;
    position: relative;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 150px;
    position: relative;
}

.stat-icon {
    font-size: 3rem;
    color: #0056b3;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: bold;
    color: #ffcc00;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 1rem;
    color: #333;
}

/* Line and Circle Container */
.stat-line-container {
    position: relative;
    width: 80%;
    margin: auto;
    margin-top: 30px;
}

/* The Line (Goes Behind the Circles) */
.stat-line {
    width: 100%;
    height: 5px;
    background-color: #0056b3;
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 1; /* Puts it behind the circles */
}

/* Circles */
.circle-container {
    display: flex;
    justify-content: space-around;
    width: 100%;
    position: relative;
    z-index: 2; /* Brings circles on top of the line */
}

.circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #ffcc00;
    position: relative;
}

/* Responsive */
@media (max-width: 1000px) {
    .stats-container {
        flex-wrap: wrap;
        gap: 20px;
    }
    .stat-line-container {
        width: 90%;
    }
}





/* Contact Section */
.contact-section {
    position: relative;
    padding: 80px 10%;
    background: linear-gradient(45deg, #63b9e1, #ffffff);
    background-size: 200% 200%;
    animation: gradientBackground 8s ease infinite;
    clip-path: polygon(0% 5%, 100% 0%, 100% 95%, 0% 100%);
}

/* Gradient Animation */
@keyframes gradientBackground {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}


/* Contact Content */
.contact-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: auto;
    transition: all 0.5s ease;
}

/* Contact Info */
.contact-info {
    color: white;
    max-width: 50%;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    color: #0056b3;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #0056b3;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #0056b3;;
}

.info-item i {
    font-size: 1.5rem;
    margin-right: 12px;
}

/* Contact Form */
.contact-form-container {
    max-width: 45%;
    width: 100%;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.contact-form-container.visible {
    opacity: 1;
    transform: translateY(0);
}

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

.form-group {
    margin-bottom: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
    transition: border 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #0056b3;
    box-shadow: 0px 0px 8px rgba(0, 86, 179, 0.5);
}

.form-group textarea {
    resize: none;
    height: 100px;
}

/* Button Styles */
.btn {
    background: #0056b3;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn:hover {
    background: #004494;
    transform: scale(1.05);
}

/* ✅ RESPONSIVE DESIGN */
@media (max-width: 1000px) {
    .contact-content {
        flex-direction: column;
        text-align: center;
    }

    .contact-info {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .contact-form-container {
        max-width: 100%;
    }

    .contact-info h2 {
        font-size: 2rem;
    }
}






/* Expert Writers Section */
.expert-writers {
    padding: 80px 10%;
    text-align: center;
}

.expert-writers .section-heading h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #0b1f40; /* Darker shade for contrast */
}

.expert-writers .section-heading p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 40px;
}

/* Writers Container */
.writers-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

/* Writer Card */
.writer-card {
    width: 22%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    text-align: center;
    border:2px solid #0b1f40;
}

.writer-card:hover {
    transform: translateY(-10px);
    /* background: #0b1f40;
    color: white; */
}

.writer-card img {
    width: 100%;
    height: 310px;
    object-fit: cover;
    border-bottom: 1px solid #ddd;
}

.writer-card h3 {
    font-size: 1.6rem;
    margin-top: 20px;
    color: #0b1f40; /* Darker blue */
}


.writer-card .designation {
    font-size: 1.2rem;
    color: #0b1f40;
    margin-bottom: 15px;
}

.writer-card .bio {
    font-size: 1rem;
    color: #333;
    padding: 0 10px 20px;
}

/* ✅ RESPONSIVE DESIGN */
@media (max-width: 1000px) {
    .writers-container {
        justify-content: center;
    }
    .writer-card {
        width: 45%;
    }
}

@media (max-width: 600px) {
    .writers-container {
        justify-content: center;
    }
    .writer-card {
        width: 80%;
    }
}











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

body {
    font-family: 'Arial', sans-serif;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 40px;
    margin-right: 15px;
}

.brand-name {
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

.mobile-brand {
    display: none;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    position: relative;
}

.mobile-brand img {
    height: 40px;
    margin-right: 15px;
}

.close-btn {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 28px;
    cursor: pointer;
}

.navbar-nav {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-item {
    position: relative;
}

.nav-item-wrapper {
    display: flex;
    align-items: center;
}

.arrow-icon {
    display: none;
    margin-right: 10px;
}

.arrow-icon img {
    width: 12px;
    height: 12px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #0066cc;
}

.plus-icon {
    display: none;
    font-size: 18px;
    transition: transform 0.3s ease;
    margin-left: 5px;
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    list-style: none;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 8px 20px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: #f5f5f5;
    color: #0066cc;
}

.nav-item.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.quote-btn {
    background-color: #0066cc;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.quote-btn:hover {
    background-color: #0052a3;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 100;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.4s;
}

.nav-divider {
    display: none;
    width: 100%;
    border: none;
    height: 1px;
    background-color: #eee;
    margin: 0;
} */








.train-wrapper {
      padding: 40px 20px;
      background-color: #0b1f40;
    }

    .train-grid {
      display: grid;
      grid-template-columns: repeat(8, 1fr);
      gap: 20px;
      position: relative;
    }

    .step {
      background-color: #ffffff;
      border: 2px solid white;
      padding: 20px 15px;
      text-align: center;
      /* border-radius: 12px; */
      position: relative;
      z-index: 1;
      box-shadow: 0 4px 8px rgba(0,0,0,0.05);
      transition: transform 0.3s ease;
      line-height: 1.6;
    }

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

    .step h4 {
      margin: 0 0 10px;
      color: #0b1f40;
    }

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

    /* Connector Line */
    /* .train-grid::before {
      content: '';
      position: absolute;
      height: 4px;
      background-color: #00796b;
      top: 50%;
      left: 0;
      right: 0;
      z-index: 0;
    } */

    /* Wheels */
    .step::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 16px;
      height: 16px;
      background: #ffcc00;
      border-radius: 50%;
    }

    /* Responsive Design */
    @media (max-width: 1600px) {
      .train-grid {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    @media (max-width: 1000px) {
      .train-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .train-grid {
        grid-template-columns: 1fr;
      }
    }


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background-color: 
#ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1000;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 40px;
    margin-right: 15px;
}

.brand-name {
    font-size: 20px;
    font-weight: bold;
    color: 
#333;
}

.mobile-brand {
    display: none;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid 
#eee;
    position: relative;
}

.mobile-brand img {
    height: 40px;
    margin-right: 15px;
}

.close-btn {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 28px;
    cursor: pointer;
}

.navbar-nav {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-item {
    position: relative;
}

.nav-item-wrapper {
    display: flex;
    align-items: center;
}

.arrow-icon {
    display: none;
    margin-right: 10px;
}

.arrow-icon img {
    width: 12px;
    height: 12px;
}

.nav-link {
    text-decoration: none;
    color: 
#333;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: 
#0066cc;
}

.plus-icon {
    display: none;
    font-size: 18px;
    transition: transform 0.3s ease;
    margin-left: 5px;
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    list-style: none;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 8px 20px;
    color: 
#333;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: 
#f5f5f5;
    color: 
#0066cc;
}

.nav-item.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.quote-btn {
    background-color: 
#0066cc;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.quote-btn:hover {
    background-color: 
#0052a3;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 100;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: 
#333;
    margin: 3px 0;
    transition: 0.4s;
}

.nav-divider {
    display: none;
    width: 100%;
    border: none;
    height: 1px;
    background-color: 
#eee;
    margin: 0;
}






/* Base styles (keeping your original styles) */



/* .brand-name {
    font-size: 20px;
    font-weight: bold;
    color: #333;
} */



/* Enhanced plus icon with smooth transition */
.plus-icon {
    display: inline-block;
    font-size: 18px;
    margin-left: 5px;
    cursor: pointer;
    transition: transform 0.3s ease, color 0.3s ease;
    font-weight: bold;
    color: #333;
}

.plus-icon.active {
    color: #0066cc;
}

/* Plus icon rotation effect */
.plus-icon.rotated {
    transform: rotate(90deg);
    color: #0066cc;
}

/* Nested plus icon */
.nested-plus-icon {
    display: inline-block;
    font-size: 14px;
    margin-left: 5px;
    transition: transform 0.4s ease, color 0.3s ease;
    font-weight: bold;
    color: #333;
}

.nested-plus-icon.rotated {
    transform: rotate(45deg);
    color: #0066cc;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 220px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    list-style: none;
    border-radius: 6px;
    /* border-bottom: 3px solid #0066cc; */
}

.dropdown-menu li {
    padding: 0;
    position: relative;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    position: relative;
}

/* Hover effect for dropdown items */
.dropdown-menu a:hover {
    background-color: #f5f5f5;
    color: #0066cc;
}

/* Shift right on hover effect */
.dropdown-menu a.hover-shift {
    transform: translateX(5px);
}

.nav-item.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Nested dropdowns styling */
.nested-dropdown {
    position: absolute;
    top: 0;
    left: 100%;
    transform: translateX(20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.dropdown-menu .has-dropdown:hover .nested-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.quote-btn {
    background-color: #0066cc;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.quote-btn:hover {
    background-color: #0052a3;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 100;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.4s;
}

.nav-divider {
    display: none;
    width: 100%;
    border: none;
    height: 1px;
    background-color: #eee;
    margin: 8px 0;
}


/* Media Queries */
@media (max-width: 1024px) {
    .navbar {
        padding: 15px 30px;
    }

    .navbar-nav {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 25px;
    }

    .hamburger {
        display: flex;
    }

    .navbar-nav {
        position: fixed;
        flex-direction: column;
        /* background-color: #0066cc; */
        background-color: white;
        width: 280px;
        height: 100vh;
        top: 0;
        left: -300px;
        padding-left: 20px;
        padding-right: 10px;
        transition: left 0.3s ease-in-out;
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 90;
        overflow-y: auto;
    }

    .mobile-brand {
        display: flex;
        height: 60px;
    }

    .navbar-nav.active {
        left: 0;
    }

    .nav-item {
        width: 100%;
        margin: 0;
        padding: 10px;
        padding-top: 0px;
        margin-top: 0px;
    }

    .nav-divider {
        display: block;
    }

    .nav-item-wrapper {
        justify-content: flex-start;
        padding: 0px 8px;
        cursor: pointer;
    }

    .nav-item-wrapper:hover {
        background-color: #f7f7f7;
    }

    .nav-item-wrapper:hover .nav-link {
        color: #0066cc;
    }

    .arrow-icon {
        display: inline-block;
    }

    .plus-icon {
        display: inline-block;
        margin-left: auto;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0;
    }

    .dropdown-menu.active {
        max-height: 500px;
        padding: 5px 0 10px 0;
        background-color: #f9f9f9;
    }

    .dropdown-menu a {
        padding-left: 35px;
    }

    .dropdown-menu a:hover {
        background-color: #eaeaea;
    }

    .nav-item.has-dropdown:hover .dropdown-menu {
        transform: none;
    }

    .plus-icon.active {
        transform: rotate(45deg);
    }
    
    .quote-btn {
        display: none;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 15px 15px;
    }

    .brand-name {
        font-size: 16px;
    }

    .navbar-brand img, .mobile-brand img {
        height: 30px;
        margin-right: 10px;
    }
}


    .container1 {
      width: 70%;
      margin: 0 auto; /* centers the container horizontally */
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
      margin-bottom: 30px;
    }

    .box {
      flex: 1 1 45%;
      background-color: #0b1f40;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    }

    .box h2 {
      color: #ffcc00;
      margin-bottom: 10px;
    }

    @media (max-width: 768px) {
      .box {
        flex: 1 1 100%;
      }
    }
    .box p{
        color: white;
    }