*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  color: #0A3A5C;
  background: #E8F4FD;
  overflow-x: hidden;
}
body.menu-open,
#main {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
p {
  margin: 0 0 1rem;
}
.container {
  width: 100%;
  margin-inline: auto;
  padding: 0 4rem;
}
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 0;
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26, 159, 216, 0.15);
}
#header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#logo .text-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #0A3A5C;
    letter-spacing: 0.02em;
}
#header .custom-logo-link img {
    max-height: 48px;
    width: auto;
}
#topnav {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}
#topnav .main-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
#topnav .main-menu a {
    color: #1A6A9A;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    transition: color 0.3s;
}
#topnav .main-menu a:hover {
    color: #1A9FD8;
}
#topnav .main-menu .nav-cta a {
    background: #0A3A5C;
    color: #E8F4FD;
    padding: 0.6rem 1.4rem;
    border-radius: 100px;
    transition: background 0.3s !important;
}
#topnav .main-menu .nav-cta a:hover {
    background: #1a9fd8 !important;
    color: #fff !important;
}
#nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(26, 159, 216, 0.18)                                                                                                                                                                                                                                                                                                                              ;
    border-radius: 12px;
    background: #fff;
    padding: 0;
    cursor: pointer;
}
#nav-toggle span {
    width: 18px;
    height: 2px;
    background: #0A3A5C;
    transition: transform 0.25s ease, opacity 0.25s ease;
}
#nav-toggle.is-open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}
#nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
}
#nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Front page Styling */
@keyframes morphBlob {
    0% {
      border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%;
      transform: rotate(0deg) scale(1);
    }
    100% {
      border-radius: 55% 45% 40% 60% / 60% 55% 45% 40%;
      transform: rotate(8deg) scale(1.05);
    } 
}
@keyframes morphBlob2 {
  0% {
    border-radius: 60% 40% 45% 55% / 55% 60% 40% 45%;
  }
  100% {
    border-radius: 40% 60% 60% 40% / 45% 40% 60% 55%;
  }
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-banner {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 8rem 4rem 4rem;
    position: relative;
    overflow: hidden;
}
.hero-banner::before {
    content: '';
    position: absolute;
    right: -10%;
    top: -20%;
    width: 75%;
    height: 140%;
    background: radial-gradient(ellipse at 60% 40%, #E8F4FD 0%, #B3D9F5 30%, #7EC8F0 60%, transparent 80%);
    border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%;
    opacity: 0.5;
    z-index: 0;
    animation: morphBlob 12s ease-in-out infinite alternate;
}
.hero-banner::after {
    content: '';
    position: absolute;
    left: -5%;
    bottom: -10%;
    width: 50%;
    height: 60%;
    background: radial-gradient(ellipse, #B3D9F5 0%, transparent 70%);
    border-radius: 60% 40% 45% 55% / 55% 60% 40% 45%;
    z-index: 0;
    opacity: 0.6;
    animation: morphBlob2 10s ease-in-out infinite alternate;
}
.hero-banner .hero-text {
    position: relative;
    z-index: 2;
    animation: fadeUp 1s ease 0.2s both;
}
.hero-banner .hero-image {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeUp 1s ease 0.5s both;
}
.hero-banner .hero-image-wrap {
    position: relative;
    width: 400px;
    height: 500px;
}
.hero-banner .hero-image-wrap::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: linear-gradient(135deg, #B3D9F5 0%, #7EC8F0 50%, #E8F4FD 100%);
    border-radius: 50% 40% 55% 45% / 45% 55% 40% 55%;
    z-index: -1;
    animation: morphBlob 8s ease-in-out infinite alternate;
}
.hero-banner .hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 45% 40% 50% 45% / 45% 50% 40% 50%;
    display: block;
    filter: saturate(0.9);
}
.hero-banner .hero-tag {
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #1a9fd8;
    margin-bottom: 1.5rem;
    font-weight: 500;
}
.hero-banner h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    line-height: 1.15;
    margin-bottom: 1.8rem;
    color: #0a3a5c;
    margin-top: 0;
}
.hero-banner h1 em {
    font-style: italic;
    color: #1a9fd8;
}
.hero-banner p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #1a6a9a;
    max-width: 480px;
    margin-bottom: 2.5rem;
    font-weight: 300;
}
.hero-banner .hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.hero-banner .btn-primary {
    background: #0a3a5c;
    color: #e8f4fd;
    padding: 0.9rem 2rem;
    border-radius: 100px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s;
    display: inline-block;
}
.hero-banner .btn-secondary {
    color: #0a3a5c;
    padding: 0.9rem 2rem;
    border-radius: 100px;
    text-decoration: none;
    font-size: 0.95rem;
    border: 1.5px solid #b3d9f5;
    transition: all 0.3s;
    display: inline-block;
}
@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.ticker-strip {
    background: #0A3A5C;
    padding: 1.1rem 0;
    overflow: hidden;
    white-space: nowrap;
    border-top: 1px solid rgba(26, 159, 216, 0.15);
    border-bottom: 1px solid rgba(26, 159, 216, 0.15);
    position: relative;
}
.ticker-strip::before, .ticker-strip::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}
.ticker-strip::before {
    left: 0;
    background: linear-gradient(to right, #0A3A5C, transparent);
}
.ticker-strip::after {
    right: 0;
    background: linear-gradient(to left, #0A3A5C, transparent);
}
.ticker-strip .ticker-track {
    display: inline-flex;
    gap: 0;
    animation: tickerScroll 30s linear infinite;
    width: max-content;
}
.ticker-strip .ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0 2.2rem;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 400;
    white-space: nowrap;
}
.ticker-strip .ticker-sep {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #1A9FD8;
    flex-shrink: 0;
    opacity: 0.7;
}
.wave {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin-top: -2px;
}
.wave svg {
    display: block;
}
.services {
    background: #f0f8ff;
    padding: 6rem 4rem;
    position: relative;
}
.section-label {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #1a9fd8;
    font-weight: 500;
    margin-bottom: 0.8rem;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: #0a3a5c;
    margin-bottom: 1rem;
    max-width: 500px;
}
.section-title em {
    font-style: italic;
    color: #1a9fd8;
}
.section-sub {
    color: #1a6a9a;
    font-size: 1rem;
    line-height: 1.7;
    max-width: 500px;
    font-weight: 300;
    margin-bottom: 3.5rem;
}
.services .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}
.services .service-card {
    background: #f0f8ff;
    border-radius: 24px;
    padding: 2.2rem;
    border: 1px solid rgba(26, 159, 216, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.services .service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(10, 58, 92, 0.08);
    border-color: #7ec8f0;
}
.services .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #b3d9f5, #1a9fd8);
    opacity: 0;
    transition: opacity 0.3s;
}
.services .service-card:hover::before {
    opacity: 1;
}
.services .service-icon {
    font-size: 2rem;
    margin-bottom: 1.2rem;
}
.services .service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #0a3a5c;
}
.services .service-card p {
    color: #1a6a9a;
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 300;
}
.about {
    background: #e8f4fd;
    padding: 7rem 4rem;
}
.about .about-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}
.about .about-image-wrap {
    position: relative;
}
.about .about-photo-container {
    position: relative;
    width: 380px;
    height: 460px;
}
.about .about-photo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 40% 45% 50% 38% / 38% 50% 45% 42%;
    filter: saturate(0.85);
}
.about .about-photo-container::after {
    content: '';
    position: absolute;
    inset: 15px -15px -15px 15px;
    border: 2px solid #7ec8f0;
    border-radius: 40% 45% 50% 38% / 38% 50% 45% 42%;
    z-index: -1;
    animation: morphBlob 10s ease-in-out infinite alternate;
}
.about .about-text .section-label {
    margin-bottom: 0.8rem;
}
.about .about-text p {
    color: #1a6a9a;
    line-height: 1.8;
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 1.2rem;
}
.about .about-text .values {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.about-text .values .value-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.about-text .values .value-dot {
    width: 8px;
    height: 8px;
    background: #1a9fd8;
    border-radius: 50%;
    margin-top: 0.45rem;
    flex-shrink: 0;
}
.about-text .values .value-item p {
    margin: 0;
    font-size: 0.95rem;
}
.process {
    background: #DDEEF8;
    padding: 7rem 4rem;
    position: relative;
    overflow: hidden;
}
.process::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(26, 159, 216, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}
.process .section-label {
    color: #1a9fd8;
}
.process .section-title {
    color: #0a3a5c;
}
.process .section-sub {
    color: #1a6a9a;
}
.process .process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3.5rem;
}
.process .step {
    position: relative;
    padding: 2rem;
    border: 1px solid rgba(180, 210, 240, 0.5);
    border-radius: 20px;
    transition: border-color 0.3s;
    background: rgba(255, 255, 255, 0.5);
}
.process .step:hover {
    border-color: #1a9fd8;
}
.process .step-num {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: rgba(26, 159, 216, 0.2);
    line-height: 1;
    margin-bottom: 1rem;
}
.process .step h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #0a3a5c;
    margin-bottom: 0.8rem;
}
.process .step p {
    color: #1a6a9a;
    font-size: 0.9rem;
    line-height: 1.7;
    font-weight: 300;
}
.contact {
    background: #f0f8ff;
    padding: 7rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.contact::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(242, 196, 216, 0.35) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.contact .contact-inner {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}
.contact .section-title {
    max-width: 100%;
    margin: 0.5rem auto 1.2rem;
    text-align: center;
}
.contact .section-sub {
    max-width: 100%;
    text-align: center;
    margin: 0 auto 2.5rem;
}
.submit-btn {
    background: #0a3a5c;
    color: #e8f4fd;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 100px;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    align-self: center;
    margin-top: 0.5rem;
}
.submit-btn:hover {
    background: #1a9fd8;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 159, 216, 0.4);
}
.wpforms-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    align-items: flex-start;
}
.wpforms-field label {
    font-size: 0.85rem;
    color: #1a6a9a;
    font-weight: 400 !important;
    letter-spacing: 0.03em;
}
.wpforms-field input, 
.wpforms-field textarea {
    background: #e8f4fd;
    border: 1.5px solid #b3d9f5;
    border-radius: 12px;
    padding: 0.85rem 1.1rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: #0a3a5c;
    transition: border-color 0.3s;
    outline: none;
}
.wpforms-field input:focus, .wpforms-field textarea:focus {
    border-color: #1a9fd8;
}
.wpforms-container {
    margin-bottom: 0 !important;
}
.front-form #wpforms-121-field_1-container,
.front-form #wpforms-121-field_2-container {
    width: 49.5%;
    display: inline-flex;
    padding: 0 10px 0 0;
}
.front-form #wpforms-121-field_2-container {
    padding: 0 0 0 10px;
}
/* Footer Styling */
#footer {
    background: #DDEEF8;
    padding: 2.5rem 0;
}
#footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem 1.5rem;
    flex-wrap: wrap;
}
#footer .footer__brand {
    color: #0a3a5c;
    font-size: 1.1rem;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.02em;
}
#footer .footer__copy,
#footer .footer__socials a {
    color: #1A6A9A;
    font-size: 0.85rem;
}
#footer .footer__socials {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
@media (max-width: 900px) {
    .container {
        padding: 0 1rem;
    }
    #nav-toggle {
        display: inline-flex;
    }
    #topnav {
        position: absolute;
        top: calc(100% + 0.75rem);
        left: 1rem;
        right: 1rem;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        padding: 1rem;
        border-radius: 20px;
        border: 1px solid rgba(26, 159, 216, 0.18);
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 18px 45px rgba(10, 58, 92, 0.08);
    }
    #topnav.is-open {
        display: flex;
    }
    #topnav .main-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }
    #topnav .main-menu li{
        width: 100%;
        border-bottom: 1px solid rgba(26, 159, 216, 0.18);
    }
    #topnav .main-menu li a{
        padding: 15px 0;
        display: block;
        font-size: 16px;
    }
    #topnav .main-menu .nav-cta a {
        background: none;
        color: #1A6A9A;
        padding: 15px 0;
    }
    .hero-banner {
        grid-template-columns: 1fr;
        padding: 7rem 2rem 4rem;
        text-align: center;
    }
    .hero-banner p {
        margin: 0 auto 2rem;
    }
    .hero-banner .hero-buttons {
        justify-content: center;
    }
    .hero-banner .hero-image {
        margin-top: 3rem;
    }
    .hero-banner .hero-image-wrap {
        width: 300px;
        height: 370px;
    }
    .services, 
    .about, 
    .process, 
    .contact {
        padding: 5rem 2rem;
    }
    .about .about-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .about .about-photo-container {
        width: 300px;
        height: 360px;
        margin: 0 auto;
    }
    .about .about-text .values {
        align-items: flex-start;
    }
    .about-text .values .value-item {
        text-align: left;
    }
    .front-form #wpforms-121-field_1-container, 
    .front-form #wpforms-121-field_2-container {
        width: 100%;
        display: flex;
        padding: 15px 0;
    }
    .front-form #wpforms-121-field_2-container {
        padding: 15px 0;
    }
    #footer .container {
        justify-content: center;
    }
}   