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

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    background-color: #f9f9f9;
    line-height: 1.6;
}

/* Header Section */
.header {
    background: #fff;
    padding: 15px 40px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
}

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

.nav ul li a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    transition: color 0.3s ease;
}

.nav ul li a:hover,
.nav ul li a.active {
    color: #0000FF;
}

/* Remove the old main-heading styles as it's not in the screenshot */
.main-heading {
    display: none;
}

.logo h1 {
    font-size: 28px;
    font-weight: bold;
    background: linear-gradient(to right, #fff, #ccc);
    -webkit-background-clip: text;
    color: transparent;
}

.logo p {
    font-size: 12px;
    color: #fff;
}

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

.nav ul li {
    margin-left: 20px;
}

.nav ul li a {
    color: #000000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
}

.nav ul li a.active {
    font-weight: bold;
}

.main-heading {
    text-align: center;
    margin: 30px 0;
    font-size: 36px;
    font-weight: bold;
}

/* Contact Form Section */
.contact-section {
    background: #fff;
    padding: 40px;
    margin: 20px auto;
    max-width: 1200px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.contact-text {
    flex: 1;
}

.contact-text h2 {
    font-size: 24px;
    color: #003366;
    font-weight: bold;
    margin-bottom: 10px;
}

.contact-text h3 {
    font-size: 18px;
    color: #003366;
    margin-bottom: 15px;
}

.contact-text p {
    font-size: 14px;
    color: #000;
    margin-bottom: 15px;
}

.contact-form {
    flex: 1;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    width: 100%;
}

.contact-form textarea {
    resize: none;
}

.contact-form button {
    padding: 12px;
    background-color: #003366;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
}

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

.operating-hours {
    margin-top: 10px;
    font-size: 12px;
    color: #000;
    text-align: center;
}



/* Our Blogs Section */
.blogs-section {
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.blogs-section h2 {
    font-size: 32px;
    color: #003366;
    font-weight: bold;
    margin-bottom: 30px;
}

.blogs-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.blog-card {
    background: #fff;
    padding: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.blog-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    margin-bottom: 10px;
}

.blog-card p.category {
    font-size: 12px;
    color: #003366;
    margin-bottom: 5px;
}

.blog-card h3 {
    font-size: 16px;
    color: #000;
    font-weight: bold;
    margin-bottom: 10px;
}

.blog-card a {
    color: #003366;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
}

.blog-card a:hover {
    text-decoration: underline;
}

/* Explore Our Services Section */
.explore-services-section {
    padding: 40px;
    background-color: #fff;
    max-width: 1200px;
    margin: 0 auto;
}

.explore-services-section h2 {
    text-align: center;
    color: #2A2F4F;
    margin-bottom: 40px;
    font-size: 32px;
}

.explore-services-wrapper {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.service-column {
    flex: 1;
}

.service-column h3 {
    color: #0000FF;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: bold;
}

.service-column ul {
    list-style: none;
    padding: 0;
}

.service-column ul li {
    color: #666;
    margin-bottom: 15px;
    font-size: 14px;
    position: relative;
    padding-left: 20px;
}

/* .service-column ul li:before {
    content: "►";
    position: absolute;
    left: 0;
    color: #666;
    font-size: 10px;
} */

@media (max-width: 768px) {
    .explore-services-wrapper {
        flex-direction: column;
    }
    
    .service-column {
        margin-bottom: 30px;
    }
}

.explore-services-section h2 {
    font-size: 32px;
    color: #003366;
    font-weight: bold;
    margin-bottom: 30px;
}

.explore-services-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.service-column ul {
    list-style: disc inside;
    font-size: 14px;
    color: #003366;
    text-align: left;
}

.service-column ul li {
    margin-bottom: 10px;
}

/* Map Section */
.map-section {
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.map iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

.address {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
    color: #000;
}

/* Footer Section */
.footer {
    background: #003366;
    color: #fff;
    padding: 40px;
}

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

.footer-left, .footer-center, .footer-right {
    flex: 1;
}

/* Header Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 170px;
    height: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

/* Footer Logo Styles */
.footer-left .logo {
    margin-bottom: 20px;
}

.footer-left .logo img {
    width: 60px;
    height: auto;
}

/* Remove the old gradient styles */
.logo h1,
.footer-left .logo h1 {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
}

.footer-left .logo p {
    font-size: 12px;
}

.footer-left p {
    font-size: 14px;
    margin-top: 10px;
}

.footer-center h3, .footer-right h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

.footer-center ul {
    list-style: none;
}

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

.footer-center ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.footer-right p {
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p {
    font-size: 12px;
}

.social-icons img {
    width: 24px;
    height: 24px;
    margin-left: 10px;
}

/* Contact Form Section */
.contact-section {
    background: #fff;
    padding: 40px;
    margin: 20px auto;
    max-width: 1200px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.contact-text {
    flex: 1;
}

.contact-text h2 {
    flex: 1;
}

.contact-text h2 {
    color: #2A2F4F;
    font-size: 32px;
    margin-bottom: 15px;
}

.contact-text h3.blue-text {
    color: #0000FF;
    font-size: 18px;
    margin-bottom: 20px;
}

.contact-text p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.contact-info {
    margin-top: 40px;
}

.contact-info h3 {
    color: #2A2F4F;
    font-size: 24px;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info span {
    color: #2A2F4F;
    font-weight: 500;
}

.contact-info a {
    color: #0000FF;
    text-decoration: none;
}

.contact-form {
    flex: 1;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #666;
}

.required {
    color: red;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #f5f5f5;
}

.phone-input {
    display: flex;
    align-items: center;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.country-code {
    padding: 10px;
    color: #666;
    border-right: 1px solid #ddd;
}

.phone-input input {
    border: none !important;
}

.char-count {
    display: block;
    text-align: right;
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}

.submit-btn {
    background-color: #00A3FF;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    margin-top: 20px;
}

.submit-btn:hover {
    background-color: #0082cc;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    width: 100%;
}

.contact-form textarea {
    resize: none;
}

.contact-form button {
    padding: 12px;
    background-color: #003366;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
}

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

.operating-hours {
    margin-top: 10px;
    font-size: 12px;
    color: #000;
    text-align: center;
}

/* Our Services Section */
.services-section {
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.services-section h2 {
    font-size: 32px;
    color: #003366;
    font-weight: bold;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.services-wrapper {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Photo on left, text on right */
.service.service-left {
    flex-direction: row;
}

.service.service-left .service-icon {
    order: 1; /* Ensure the icon is first */
}

.service.service-left .service-text {
    order: 2; /* Ensure the text is second */
}

/* Photo on right, text on left */
.service.service-right {
    flex-direction: row;
}

.service.service-right .service-icon {
    order: 2; /* Ensure the icon is second */
}

.service.service-right .service-text {
    order: 1; /* Ensure the text is first */
}

.service-icon {
    position: relative;
    width: 250px;
    height: 250px;
    display: flex
;
    justify-content: center;
    align-items: center;
}
.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0;
    z-index: 1;
}

/* Cloud-like background shape */
.service-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #003366;
    border-radius: 50% 50% 40% 60% / 60% 40% 50% 50%;
    z-index: 0;
}

.service-text {
    flex: 1;
}

.service-text h3 {
    font-size: 24px;
    color: #003366;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.service-text p {
    font-size: 14px;
    color: #000;
    text-align: left;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-list {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.service-list span {
    font-size: 14px;
    color: #003366;
    font-weight: bold;
    position: relative;
    padding-right: 15px;
}

/*.service-list span:not(:last-child)::after {*/
/*    content: "•";*/
/*    position: absolute;*/
/*    right: 0;*/
/*    color: #003366;*/
/*    font-size: 18px;*/
/*    line-height: 1;*/
/*    font-weight: bold;*/
/*}*/

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

    .service.service-left .service-icon,
    .service.service-right .service-icon {
        order: 1; /* On mobile, always show the image first */
    }

    .service.service-left .service-text,
    .service.service-right .service-text {
        order: 2; /* On mobile, always show the text second */
    }

    .service-icon {
        width: 300px;
        height: 300px;
        margin: 0 auto;
    }

    .service-icon img {
        width: 100%;
        height: 100%;
    }

    .service-list {
        justify-content: center;
    }
}

/* Updated Footer Styles */
.new-footer {
    background-color: #fff;
    border-top: 1px solid #eee;
}

.newsletter-signup {
    background-color: #f8f9fa;
    padding: 30px 0;
    border-bottom: 1px solid #eee;
}

.newsletter-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 15px;
    padding: 0 20px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid #0000FF;
    border-radius: 4px;
    font-size: 14px;
}

.newsletter-button {
    padding: 12px 30px;
    background-color: #0000FF;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
}

.new-footer-main {
    padding: 60px 20px;
    background-color: #fff;
}

.new-footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.new-footer-logo {
    width: 170px;
    margin-bottom: 20px;
}

.new-footer-heading {
    color: #2A2F4F;
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 600;
}



.new-footer-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.new-footer-contact p {
    color: #666;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.new-footer-services {
    background-color: #f8f9fa;
    padding: 40px 20px;
    border-top: 1px solid #eee;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.service-list-heading {
    color: #0000FF;
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 600;
}

.service-items li {
    color: #666;
    margin-bottom: 12px;
    padding-left: 15px;
    position: relative;
}

.service-items li:before {
    content: "►";
    position: absolute;
    left: 0;
    color: #666;
    font-size: 8px;
    top: 5px;
}

.new-footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
}

.copyright-text {
    color: #666;
    font-size: 14px;
}

/* Update the social links styles */
.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: #666;
    font-size: 18px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #f5f5f5;
}

.social-links a:hover {
    color: #0000FF;
    background-color: #e5e5e5;
}

/* Remove old image styles */
.social-links img {
    display: none;
}

.new-footer-contact i {
    color: #0000FF;
    width: 20px;
}
a {
    text-decoration: none;
}

.social-links img {
    width: 18px;
    height: 18px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.social-links img:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .new-footer-content,
    .services-grid {
        flex-direction: column;
        gap: 40px;
    }
    
    .new-footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

a{
    color: black;

}
li {
    list-style: none;
}

/* Contact Section Responsive */
@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
        padding: 20px;
    }

    .contact-text, 
    .contact-form {
        width: 100%;
    }

    .form-row {
        flex-direction: column;
        gap: 15px;
    }

    .form-group {
        width: 100%;
    }
}

/* Blog Section Responsive */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 30px;
    }

    .blog-card {
        width: 100%;
    }

    .blog-card img {
        height: 200px;
    }

    .blog-content {
        padding: 15px;
    }

    .blog-title {
        font-size: 18px;
    }

    .blog-meta {
        flex-direction: column;
        gap: 5px;
        align-items: flex-start;
    }
}

/* Newsletter Section Responsive */
@media (max-width: 768px) {
    .newsletter-container {
        flex-direction: column;
    }

    .newsletter-input {
        width: 100%;
    }

    .newsletter-button {
        width: 100%;
    }
}

/* Footer Services Responsive */
@media (max-width: 768px) {
    .services-grid {
        flex-direction: column;
        gap: 30px;
    }

    .service-list-column {
        width: 100%;
    }

    .service-list-heading {
        margin-top: 20px;
    }
}

/* Our Blogs Section */
.blogs-section {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.blogs-section h2 {
    font-size: 32px;
    color: #003366;
    font-weight: bold;
    margin-bottom: 30px;
}

.blogs-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Blog Section Responsive */
@media (max-width: 992px) {
    .blogs-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blogs-section {
        padding: 20px 15px;
    }

    .blogs-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .blogs-section h2 {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .blog-card {
        max-width: 100%;
    }

    .blog-card img {
        height: 200px;
    }

    .blog-card h3 {
        font-size: 18px;
        line-height: 1.4;
    }

    .blog-card p.category {
        font-size: 14px;
    }
}

/* Updated Footer Styles */
.new-footer {
    background-color: #fff;
    border-top: 1px solid #eee;
}

.newsletter-signup {
    background-color: #f8f9fa;
    padding: 30px 0;
    border-bottom: 1px solid #eee;
}

.newsletter-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 15px;
    padding: 0 20px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid #0000FF;
    border-radius: 4px;
    font-size: 14px;
}

.newsletter-button {
    padding: 12px 30px;
    background-color: #0000FF;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
}

.new-footer-main {
    padding: 60px 20px;
    background-color: #fff;
}

.new-footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.new-footer-logo {
    width: 170px;
    margin-bottom: 20px;
}

.new-footer-heading {
    color: #2A2F4F;
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 600;
}



.new-footer-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.new-footer-contact p {
    color: #666;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.new-footer-contact i {
    color: #0000FF;
    width: 20px;
}

.new-footer-services {
    background-color: #f8f9fa;
    padding: 40px 20px;
    border-top: 1px solid #eee;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.service-list-heading {
    color: #0000FF;
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 600;
}

.service-items li {
    color: #666;
    margin-bottom: 12px;
    padding-left: 15px;
    position: relative;
}

.service-items li:before {
    content: "►";
    position: absolute;
    left: 0;
    color: #666;
    font-size: 8px;
    top: 5px;
}

.new-footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: #666;
    font-size: 18px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #f5f5f5;
}

.social-links a:hover {
    color: #0000FF;
    background-color: #e5e5e5;
}

@media (max-width: 768px) {
    .new-footer-content,
    .services-grid {
        flex-direction: column;
        gap: 40px;
    }
    
    .new-footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .newsletter-container {
        flex-direction: column;
    }

    .newsletter-input,
    .newsletter-button {
        width: 100%;
    }
}


/* Add these styles for the mobile menu */
.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

@media (max-width: 992px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #ffffff;
        transition: 0.3s;
        z-index: 1000;
    }

    .nav.active {
        left: 0;
    }

    .nav ul {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }

    .nav ul li {
        width: 100%;
        margin: 0;
    }

    .nav ul li a {
        display: block;
        padding: 10px 0;
        font-size: 16px;
    }
}

.new-footer-left {
    width: 26%;
}