/* --- General Setup --- */
:root {
    --orange: #f9a602;
    --logo-blue: blue;
    --dark-blue: #002060;
    --text-dark: #333;
    --text-light: #fff;
    --bg-light-gray: #f4f4f4;
}

body {
    font-family: 'Lato', sans-serif;
    margin: 0;
    background-color: var(--bg-light-gray);
    color: var(--text-dark);
}

h1, h2, h3 {
    font-weight: 700;
}

.orange-text {
    color: var(--orange);
}

.blue-text {
    color: var(--logo-blue);
}
.hero{
    position: relative;
}

/* Centered content wrapper for all sections */
.section-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px; /* Gutter space for smaller screens */
    font-size: 17px;
}
.hero-content{
    position: absolute;
  bottom: 0;
  padding-bottom: 100px;
}

/* --- Header --- */
header {
    background-color: var(--text-light);
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
}

.header-content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo img {
width: 220px;
    height: auto;
}

header .logo span {
    color: var(--logo-blue);
}

header .contact-info {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    font-size: 1.3em;
    color: var(--logo-blue);
    font-weight: bold;
}

header .contact-info span:first-child {
    font-weight: normal;
    color: black;
  padding-right: 15px;
}

/* --- Hero Section --- */
.hero {
   background-image: url('1.png');
  background-size: cover;
  background-position: center;
  color: var(--text-light);
  height: 500px;
  background-repeat: no-repeat;
}

.hero h1 {
    font-size: 48px;
    font-weight: 900;
    margin: 0 0 10px 0;
    letter-spacing: 1px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

.hero ul {
    list-style: none;
    padding: 0;
    font-size: 1em;
    padding-top: 50px;
}

.hero ul li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 10px;
}

.hero ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--text-light);
    font-size: 1.2em;
    line-height: 1;
}

/* --- Services Section --- */
.services {
    background-color: var(--orange);
    padding: 50px 0;
}

.services h2 {
    color: var(--text-light);
    font-size: 2em;
    margin-top: 0;
    margin-bottom: 30px;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-item {
    background-color: var(--text-light);
    padding: 20px;
    border-radius: 8px;
    color: var(--text-dark);
}

.service-item .service-icon {
    font-size: 2.5em;
    color: var(--dark-blue);
    margin-bottom: 15px;
}
.service-item .service-icon i:first-child{
    margin-right: 10px;
}

.service-item .fa-cloud-arrow-up {
    transform: rotate(180deg);
}

.service-item h3 {
    color: var(--orange);
    margin: 0 0 10px 0;
    font-size: 1.2em;
}

.service-item h3 i {
    color: var(--dark-blue);
}

.service-item p {
    font-size: 0.9em;
    line-height: 1.5;
    margin: 0;
}

/* --- Testimonials Section --- */
.testimonials {
    background-color: var(--dark-blue);
    color: var(--text-light);
    padding: 50px 0;
    text-align: center;
}

.testimonials h2 {
    font-size: 1.4em;
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: normal;
}

.testimonial {
    margin-bottom: 20px;
}

.testimonial:last-child {
    margin-bottom: 0;
}

.testimonial p {
    margin: 0 0 5px 0;
    line-height: 1.5;
}

.testimonial footer {
    text-align: right;
    font-weight: 700;
}

/* --- About & Footer Wrapper Section --- */
.about-footer-wrapper {
    background-color: var(--orange);
    padding: 50px 0;
}

.about-footer-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.about-photo {
    flex: 0 0 200px;
}

.about-photo img {
    width: 100%;
    border-radius: 2px;
    display: block;
}

.about-text-and-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.about-text {
    color: var(--dark-blue);
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.1em;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.about-text .signature {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5em;
    text-align: right;
    margin: 0;
    padding: 0;
    color: var(--dark-blue);
}

.footer-info-box {
    background-color: var(--dark-blue);
    color: var(--text-light);
    padding: 20px;
}

.footer-logo {
    font-size: 1.8em;
    font-weight: 900;
    color: var(--orange);
    margin-bottom: 5px;
}

.footer-logo span {
    display: block;
    font-size: 0.5em;
    font-weight: normal;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

.footer-info-box ul {
    list-style: none;
    padding: 0;
    font-size: 0.9em;
    margin-top: 15px;
}

.footer-info-box ul li {
    padding-left: 15px;
    position: relative;
    margin-bottom: 5px;
}

.footer-info-box ul li::before {
    content: '▪';
    position: absolute;
    left: 0;
    color: var(--orange);
}

/* --- Bottom Copyright Footer --- */
.copyright-footer {
    text-align: center;
    padding: 20px 0;
    background-color: var(--text-light);
}
.copyright-footer p {
    margin: 0;
}


/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .header-content-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .header-content-wrapper .contact-info {
        align-items: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-footer-content {
        flex-direction: column;
        align-items: center;
    }
    
    .about-photo {
        max-width: 250px;
        flex-basis: auto;
    }
}

/* --- Styles for the New Footer Section --- */
.new-footer-section {
    background-color: #f7941d; /* The specific orange from the image */
    padding: 40px 20px;
    font-family: 'Lato', sans-serif;
}

.new-footer-section .footer-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Left Column: Photo --- */
.photo-column img {
    max-width: 250px;
}

/* --- Middle Column: Text --- */
.text-column {
    flex: 1;
    max-width: 450px;
}

.intro-text {
    font-size: 1.1em;
    line-height: 1.6;
    color: #000;
    margin: 0;
}

/* The red, wavy underlined text */
.highlight {
    color: #ff0000;
    text-decoration: underline wavy #ff0000;
    text-underline-offset: 3px;
}

.signature {
    text-align: right;
    margin: 0;

}

/* --- Right Column: Details --- */
.details-column {
    flex: 1;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.logo-container {
    background-color: #fff;
    border-radius: 50%; /* Creates an oval shape with padding */
    padding: 0;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    width: 100%;
}
.logo-container img {
    width: 200px; /* Adjusted for a more oval shape */
    height: auto;
}

.logo-line {
    width: 60%;
    height: 3px;
    background-color: #f7941d;
    margin: 0 auto 5px auto;
}

.logo-text {
    font-size: 2em;
    font-weight: 900;
    color: #333;
}

.logo-blue {
    color: #3c8fde;
}

.logo-tagline {
    font-size: 0.9em;
    color: #555;
}

.contact-details {
    text-align: center;
    font-size: 0.9em;
    font-weight: bold;
    color: #fff;
    margin: 0;
}

.blue-info-box {
    background-color: #0000ff;
    color: #fff;
    padding: 10px 5px;
    width: 98%;
}

.blue-info-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blue-info-box li {
    padding-left: 15px;
    position: relative;
    margin-bottom: 8px;
    font-size: 0.9em;
}

.blue-info-box li:last-child {
    margin-bottom: 0;
}

.blue-info-box li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: -2px;
    font-size: 1.2em;
}

/* --- Copyright Footer --- */
.copyright-container {
    max-width: 1200px;
    margin: 20px auto 0 auto;
    text-align: right;
    padding-right: 15px; /* Aligns with the right column content */
}

.copyright-container p {
    margin: 0;
    font-weight: bold;
    color: #fff;
}

.copyright{
    text-align: center;
    color: #fff;
}
/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .hero{
        background-position: right;
    }
    .new-footer-section .footer-container {
        flex-direction: column;
        align-items: center;
    }
    
    .text-column, .details-column {
        max-width: 500px;
        width: 100%;
    }
    
    .signature {
        text-align: center;
    }

    .copyright-container {
        text-align: center;
        padding-right: 0;
    }
}