* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    font-family: "Inter", Arial, sans-serif;

    color: #333;

    line-height: 1.6;

    background: #ffffff;

}



.navbar {

    position: sticky;

    top: 0;

    z-index: 100;

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 20px 8%;

    background: white;

    border-bottom: 1px solid #eeeeee;

}



.logo{
    display:flex;
    align-items:center;
    text-decoration:none;
}

.logo-icon{
    width:88px;
    height:auto;
}

.logo-divider{

    width:1px;
    height:72px;

    background:#163B73;

    margin:0 26px;

    opacity:.45;

}

.logo-text{

    display:flex;
    flex-direction:column;
    justify-content:center;

}

.logo-name{

    font-family:"Cormorant Garamond", serif;

    font-size:52px;

    font-weight:500;

    line-height:.9;

    color:#163B73;

}

.logo-subtitle{

    margin-top:10px;

    font-family:"Montserrat", sans-serif;

    font-size:15px;

    letter-spacing:11px;

    color:#2F74C8;

}



.nav-links {

    display: flex;

    list-style: none;

    gap: 30px;

}



.nav-links a {

    text-decoration: none;

    color: #333;

    font-weight: 500;

}



.hero {

    min-height: 75vh;

    display: flex;

    align-items: center;

    padding: 80px 8%;

    background: #f7f9fb;

}



.hero-content {

    max-width: 700px;

}



.hero h1 {

    font-size: 3rem;

    color: #123A63;

    margin-bottom: 25px;

}



.hero p {

    font-size: 1.15rem;

    margin-bottom: 35px;

}



.button {

    display: inline-block;

    padding: 14px 30px;

    background: #123A63;

    color: white;

    text-decoration: none;

    border-radius: 6px;

}



.section {

    padding: 80px 8%;

}



.section h2 {

    text-align: center;

    color: #123A63;

    font-size: 2rem;

    margin-bottom: 45px;

}



.service-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 30px;

}



.service-card {

    padding: 35px;

    border: 1px solid #e5e5e5;

    border-radius: 10px;

    background: white;

}



.service-card h3 {

    color: #123A63;

    margin-bottom: 15px;

}



/* 1. The Main About Section Background */
.about {
    background: #f7f9fb;
    padding: 60px 20px; /* Adds breathing room on top and bottom */
}

/* 2. The Container Layout */
.about-container {
    display: flex;                
    align-items: center;          
    justify-content: space-between;
    gap: 50px;                    
    max-width: 1100px;            /* Keeps the content neatly contained */
    margin: 0 auto;               /* Centers the container on the page */
}

/* 3. Sizing the Image and Text blocks */
.about-image {
    flex: 1;                      
}

.about-text {
    flex: 1;                      
    text-align: left;             /* Overrides any center alignment so it sits nicely next to the image */
}

/* 4. Styling the Paragraphs (Replaces your old .about p rule) */
.about-text p {
    margin-bottom: 20px; 
    line-height: 1.6;             /* Adds a professional amount of space between lines of text */
}

/* 5. Styling the Image itself */
.about-image img {
    width: 100%;                  
    height: auto;                 
    border-radius: 8px;           /* Gives the photo a modern, slightly rounded corner */
    box-shadow: 0 4px 12px rgba(0,0,0,0.1); 
}



.contact {

    text-align: center;

}



.contact-details {

    margin-top: 25px;

    font-size: 1.1rem;

}



.contact a {

    color: #123A63;

}



footer {

    background: #123A63;

    color: white;

    text-align: center;

    padding: 25px;

}



@media(max-width:768px) {


    .navbar {

        flex-direction: column;

        gap: 15px;

    }


    .nav-links {

        gap: 15px;

    }


    .hero h1 {

        font-size: 2.2rem;

    }


    .service-grid {

        grid-template-columns: 1fr;

    }


    .about-container {
        flex-direction: column;     /* Stacks the image on top of the text */
        gap: 30px;
    }
    
    
    .about-text {
        text-align: center;         /* Centers the text for mobile viewing */
    }

}