@charset "utf-8";
/* CSS Document */

:root {
	--primary-dark: #0A2540;
	--primary-teal: #007A87;
	--accent-gold: #E5A93C;
	--accent-gold-hover: #CD932B;
	--text-dark: #333333;
	--text-muted: #666666;
	--bg-light: #F4F7F9;
	--white: #FFFFFF;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: 'Inter', sans-serif;
	color: var(--text-dark);
	line-height: 1.6;
	background-color: var(--white);
}

a {
	text-decoration: none;
	color: inherit;
	transition: all 0.3s ease;
}

ul {
	list-style: none;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* --- TOP UTILITY BAR --- */
.top-bar {
	background-color: var(--primary-dark);
	color: var(--white);
	font-size: 13px;
	padding: 10px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.top-bar-contact span {
	margin-right: 20px;
}

.top-bar-contact i {
	margin-right: 6px;
	color: var(--accent-gold);
}

.top-bar-socials a {
	margin-left: 15px;
	color: var(--white);
	font-size: 14px;
}

.top-bar-socials a:hover {
	color: var(--accent-gold);
}

/* --- MAIN HEADER & NAV --- */
.main-header {
	background-color: var(--white);
	padding: 15px 0;
	position: relative;
	top: 0;
	z-index: 1000;
	box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.main-header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo-area {
	display: flex;
	align-items: center;
	gap: 12px;
}

.logo-img-src {
	height: 60px;
	width: auto;
	object-fit: contain;
}

.logo-text h1 {
	font-size: 24px;
	font-weight: 700;
	color: var(--primary-dark);
	line-height: 1.1;
}

.logo-text h1 span {
	color: var(--primary-teal);
}

.logo-text p {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--text-muted);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
}

.nav-links a:hover, .nav-links a.active {
	color: var(--primary-teal);
}

.nav-links .dropdown i {
	font-size: 12px;
	margin-left: 4px;
}

.btn-gold {
	background-color: var(--accent-gold);
	color: var(--primary-dark) !important;
	padding: 12px 24px;
	border-radius: 6px;
	font-weight: 600;
	border: none;
	cursor: pointer;
}

.btn-gold:hover {
	background-color: var(--accent-gold-hover);
}

/* Responsive Mobile Drawer Trigger Button */
.menu-toggle {
	display: none;
	background: none;
	border: none;
	font-size: 24px;
	color: var(--primary-dark);
	cursor: pointer;
	z-index: 1001;
}

/* --- HERO SECTION --- */
.hero {
	background: linear-gradient(135deg, #06192c 0%, #0d3b5a 100%);
	color: var(--white);
	padding: 80px 0;
	overflow: hidden;
	position: relative;
}

.hero .container {
	display: grid;
	grid-template-columns: 1.2fr 1fr 0.8fr;
	align-items: center;
	gap: 30px;
}

.hero-left h2 {
	font-family: 'Playfair Display', serif;
	font-size: 48px;
	line-height: 1.2;
	margin-bottom: 20px;
}

.hero-left h2 span {
	color: var(--accent-gold);
}

.hero-left p {
	font-size: 16px;
	color: #ccd6e0;
	margin-bottom: 35px;
	max-width: 450px;
}

.hero-buttons {
	display: flex;
	gap: 15px;
}

.btn-outline {
	border: 2px solid var(--white);
	color: var(--white);
	padding: 12px 24px;
	border-radius: 6px;
	font-weight: 600;
}

.btn-outline:hover {
	background-color: var(--white);
	color: var(--primary-dark);
}

.hero-center {
	position: relative;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;

}

.hero-circle-bg {
	width: 320px;
	height: 320px;
	border: 2px solid var(--accent-gold);
	border-radius: 50%;
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-image {
	width: 320px;
	height: 320px;
	border-radius: 50%;
	object-fit: cover;
	position: relative;
	z-index: 2;
	/*background: url('https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?auto=format&fit=crop&q=80&w=300') center no-repeat;*/
	background: url('../images/myra_blue.png') center no-repeat;
	background-size: cover;
}

.hero-right {
	background-color: var(--white);
	color: var(--text-dark);
	border-radius: 12px;
	padding: 10px 0;
	box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.stat-row {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 20px 25px;
	border-bottom: 1px solid #eeeeee;
}

.stat-row:last-child {
	border-bottom: none;
}

.stat-icon {
	font-size: 28px;
	color: var(--primary-teal);
	width: 40px;
	text-align: center;
}

.stat-info h4 {
	font-size: 22px;
	font-weight: 700;
	color: var(--primary-dark);
}

.stat-info p {
	font-size: 13px;
	color: var(--text-muted);
}

/* --- SERVICES SECTION --- */
.services {
	padding: 80px 0;
	background-color: #FAFCFD;
}

.services-layout {
	display: grid;
	grid-template-columns: 1fr 3fr;
	gap: 40px;
}

.services-intro h5 {
	color: var(--primary-teal);
	text-transform: uppercase;
	font-size: 13px;
	letter-spacing: 1px;
	margin-bottom: 15px;
	position: relative;
}

.services-intro h5::after {
	content: '';
	display: inline-block;
	width: 30px;
	height: 2px;
	background-color: var(--primary-teal);
	vertical-align: middle;
	margin-left: 10px;
}

.services-intro h3 {
	font-family: 'Playfair Display', serif;
	font-size: 32px;
	color: var(--primary-dark);
	line-height: 1.3;
	margin-bottom: 15px;
}

.services-intro p {
	color: var(--text-muted);
	font-size: 14px;
	margin-bottom: 25px;
}

.btn-dark-blue {
	background-color: var(--primary-dark);
	color: var(--white);
	padding: 12px 24px;
	border-radius: 4px;
	font-size: 14px;
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.btn-dark-blue:hover {
	background-color: var(--primary-teal);
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.service-card {
	background-color: var(--white);
	border: 1px solid #EAEFEF;
	border-radius: 8px;
	padding: 30px 20px;
	text-align: center;
	box-shadow: 0 4px 12px rgba(0,0,0,0.02);
	display: flex;
	flex-direction: column;
	align-items: center;
}

.service-card-icon {
	width: 60px;
	height: 60px;
	border: 2px dashed var(--primary-teal);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary-teal);
	font-size: 22px;
	margin-bottom: 20px;
}

.service-card h4 {
	font-size: 16px;
	color: var(--primary-dark);
	margin-bottom: 15px;
	font-weight: 600;
}

.service-card p {
	font-size: 13px;
	color: var(--text-muted);
	margin-bottom: 20px;
	flex-grow: 1;
}

.service-card .learn-more {
	color: var(--primary-teal);
	font-size: 14px;
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 6px;
}

.service-card .learn-more:hover {
	gap: 10px;
}

/* --- MISION VISION SECTION --- */
.blog-section {
	padding: 60px 0 80px 0;
}

.blog-layout {
	display: grid;
	grid-template-columns: 1fr 3fr;
	gap: 40px;
}

.blog-sidebar h5 {
	color: var(--primary-teal);
	text-transform: uppercase;
	font-size: 13px;
	letter-spacing: 1px;
	margin-bottom: 15px;
}

.blog-sidebar p {
	color: var(--text-muted);
	font-size: 14px;
	margin-bottom: 20px;
}

.blog-sidebar .view-all {
	color: var(--primary-teal);
	font-weight: 600;
	font-size: 14px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.blog-card {
	background-color: var(--white);
	border: 1px solid #EAEFEF;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.blog-img {
	height: 140px;
	background-color: #eee;
	background-size: cover;
	background-position: center;
}

.blog-content {
	padding: 20px;
}

.blog-tag {
	color: var(--primary-teal);
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	display: block;
	margin-bottom: 8px;
}

.blog-content h4 {
	font-size: 14px;
	color: var(--primary-dark);
	line-height: 1.4;
	margin-bottom: 15px;
	font-weight: 600;
	height: 40px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.blog-date {
	font-size: 12px;
	color: var(--text-muted);
	display: flex;
	align-items: center;
	gap: 6px;
}
/* --- INNER PAGE BANNER --- */
.page-banner {
	background: linear-gradient(135deg, #06192c 0%, #0d3b5a 100%);
	color: var(--white);
	padding: 60px 0;
	text-align: center;
}

.page-banner h2 {
	font-family: 'Playfair Display', serif;
	font-size: 40px;
	margin-bottom: 10px;
}

.page-banner p {
	color: #ccd6e0;
	font-size: 16px;
}
/* --- CONTACT MAIN SECTION --- */
.contact-section {
	padding: 80px 0;
}

.contact-layout {
	display: grid;
	grid-template-columns: 1fr 1.3fr;
	gap: 50px;
}

/* Left Side: Contact details */
.contact-info-side h3 {
	font-family: 'Playfair Display', serif;
	font-size: 32px;
	color: var(--primary-dark);
	margin-bottom: 15px;
}

.contact-info-side > p {
	color: var(--text-muted);
	font-size: 15px;
	margin-bottom: 35px;
}

.info-card-list {
	display: flex;
	flex-direction: column;
	gap: 25px;
	margin-bottom: 40px;
}

.info-item {
	display: flex;
	align-items: flex-start;
	gap: 20px;
}

.info-icon {
	width: 45px;
	height: 45px;
	background-color: rgba(0, 122, 135, 0.08);
	color: var(--primary-teal);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	flex-shrink: 0;
}

.info-details h4 {
	font-size: 16px;
	color: var(--primary-dark);
	font-weight: 600;
	margin-bottom: 4px;
}

.info-details p, .info-details a {
	font-size: 14px;
	color: var(--text-muted);
}

.info-details a:hover {
	color: var(--primary-teal);
}

/* Placeholder for Map frame */
.map-placeholder {
	width: 100%;
	height: 220px;
	background-color: var(--bg-light);
	border: 1px solid #EAEFEF;
	border-radius: 8px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: var(--text-muted);
	font-size: 14px;
	gap: 8px;
}

.map-placeholder i {
	font-size: 24px;
	color: var(--primary-teal);
}

/* Right Side: Contact Form */
.contact-form-side {
	background-color: var(--white);
	border: 1px solid #EAEFEF;
	border-radius: 12px;
	padding: 40px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.form-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin-bottom: 20px;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.form-group.full-width {
	grid-column: span 2;
}

.form-group label {
	font-size: 14px;
	font-weight: 500;
	color: var(--primary-dark);
}

.form-group input, .form-group select, .form-group textarea {
	width: 100%;
	padding: 12px 15px;
	border-radius: 6px;
	border: 1px solid var(--border-color);
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	color: var(--text-dark);
	outline: solid;
	transition: border-color 0.2s ease;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
	border-color: var(--primary-teal);
}

.form-group textarea {
	resize: vertical;
	min-height: 120px;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
	justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #4f46e5, #06b6d4);
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.3);
	width: 100%;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(79, 70, 229, 0.4);
}

.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-content {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    width: 320px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.popup-content i {
    font-size: 50px;
    color: #10b981;
    margin-bottom: 10px;
}

.popup-content button {
    margin-top: 15px;
    padding: 10px 20px;
    border: none;
    background: #4f46e5;
    color: #fff;
    border-radius: 8px;
    cursor: pointer;
}
/* --- STORY SECTION --- */
.about-story {
	padding: 80px 0;
}

.story-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: center;
}

.story-left h5 {
	color: var(--primary-teal);
	text-transform: uppercase;
	font-size: 13px;
	letter-spacing: 1px;
	margin-bottom: 15px;
}

.story-left h3 {
	font-family: 'Playfair Display', serif;
	font-size: 32px;
	color: var(--primary-dark);
	line-height: 1.3;
	margin-bottom: 20px;
}

.story-left p {
	color: var(--text-muted);
	font-size: 15px;
	margin-bottom: 20px;
}

.story-right {
	position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.story-circle-bg {
	width: 340px;
    height: 340px;
    border: 2px dashed var(--primary-teal);
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.story-img {
	width: 320px;
    height: 320px;
    border-radius: 50%;
    position: relative;
    z-index: 2;
	background: url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?auto=format&fit=crop&q=80&w=300') center no-repeat;
	background-size: cover;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* --- VALUES SECTION --- */
.values-section {
	background-color: var(--bg-light);
	padding: 80px 0;
	text-align: center;
}

.values-section h3 {
	font-family: 'Playfair Display', serif;
	font-size: 32px;
	color: var(--primary-dark);
	margin-bottom: 40px;
}

.values-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.value-card {
	background-color: var(--white);
	padding: 40px 30px;
	border-radius: 8px;
	box-shadow: 0 4px 15px rgba(0,0,0,0.02);
	border: 1px solid #EAEFEF;
}

.value-icon {
	font-size: 32px;
	color: var(--primary-teal);
	margin-bottom: 20px;
}

.value-card h4 {
	font-size: 18px;
	color: var(--primary-dark);
	margin-bottom: 12px;
	font-weight: 600;
}

.value-card p {
	font-size: 14px;
	color: var(--text-muted);
}
/* --- CTA RIBBON --- */
.cta-ribbon {
	background-color: var(--primary-teal);
	color: var(--white);
	padding: 30px 0;
	border-radius: 8px;
	margin-bottom: 40px;
}

.cta-ribbon .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}

.cta-left {
	display: flex;
	align-items: center;
	gap: 20px;
}

.cta-icon {
	font-size: 32px;
}

.cta-text h3 {
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 4px;
}

.cta-text p {
	font-size: 14px;
	color: rgba(255,255,255,0.85);
}

.btn-cta-gold {
	background-color: var(--accent-gold);
	color: var(--primary-dark);
	padding: 14px 28px;
	border-radius: 6px;
	font-weight: 600;
	font-size: 15px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border: none;
	cursor: pointer;
}

.btn-cta-gold:hover {
	background-color: var(--accent-gold-hover);
}
/* --- DROPDOWN MENUS --- */
.nav-links li {
	position: relative;
	display: inline-block;
}

/* Base style for the hidden dropdown drawer */
.dropdown-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background-color: var(--white);
	min-width: 220px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
	border-radius: 6px;
	padding: 10px 0;
	margin-top: 10px;
	border: 1px solid #EAEFEF;
	z-index: 1010;
}

/* Individual links inside the dropdown drawer */
.dropdown-menu li {
	display: block;
	width: 100%;
}

.dropdown-menu li a {
	display: block;
	padding: 10px 20px;
	font-size: 14px;
	font-weight: 500;
	color: var(--text-dark);
	border-bottom: none;
	transition: background 0.2s ease;
}

.dropdown-menu li a:hover {
	background-color: var(--bg-light);
	color: var(--primary-teal);
}
/* --- SERVICES SECTION --- */

.services-section {
  background: #f8fafc;
  padding: 80px 0;
}

/* Card Base */
.service-card {
  position: relative;
  padding: 35px 22px;
  border-radius: 20px;
  color: #fff;
  height: 100%;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Hover animation */
.service-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

/* Glow sweep effect */
.service-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: rgba(255,255,255,0.12);
  transform: rotate(25deg);
  transition: 0.6s;
}

.service-card:hover::before {
  left: 120%;
}

/* ICON BOX */
.icon-box {
  width: 55px;
  height: 55px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
  transition: 0.3s ease;
}

.icon-box i {
  font-size: 22px;
  color: #fff;
}

.service-card:hover .icon-box {
  transform: rotate(8deg) scale(1.1);
  background: rgba(255,255,255,0.35);
}

/* Text */
.service-card h5 {
  font-weight: 700;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  opacity: 0.95;
}

/* Gradients */
.gradient-1 { background: linear-gradient(135deg, #4f46e5, #06b6d4); }
.gradient-2 { background: linear-gradient(135deg, #f97316, #ef4444); }
.gradient-3 { background: linear-gradient(135deg, #10b981, #059669); }
.gradient-4 { background: linear-gradient(135deg, #8b5cf6, #ec4899); }

/* Fade-up animation */
.service-card {
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Desktop Hover Interaction Trigger */
@media (min-width: 993px) {
	.nav-links li.dropdown:hover .dropdown-menu {
		display: block;
	}
}
/* --- MODERN MOBILE MEDIA QUERIES --- */
@media (max-width: 992px) {
	.menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 20px;
        flex-direction: column;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
	

	/* Active drawer layer flagged by JavaScript */
	.nav-links.active {
		display: flex; 

	}

	.nav-links a {
		padding: 12px 0;
		width: 100%;
		border-bottom: 1px solid #f4f7f9;
	}

	.nav-links a:last-child {
		border-bottom: none;
	}

	.header-cta {
		padding: 8px 16px;
		font-size: 14px;
	}

	.hero .container {
		grid-template-columns: 1fr;
		text-align: center;
	}
	.hero-left p { margin: 0 auto 35px auto; }
	.hero-buttons { justify-content: center; }
	.hero-center { order: -1; margin-bottom: 20px; }
	
	.services-layout, .blog-layout {
		grid-template-columns: 1fr;
	}
	.services-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.blog-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.nav-links li {
		display: block;
		width: 100%;
	}

	.dropdown-menu {
		display: none;
		position: static; /* Forces it inline inside the drawer list expansion */
		background-color: var(--bg-light);
		box-shadow: none;
		border: none;
		width: 100%;
		padding-left: 15px;
		margin-top: 5px;
	}

	/* JavaScript will toggle this sub-class when users click the menu arrow on mobile */
	.dropdown-menu.open {
		display: block;
	}
}

@media (max-width: 768px) {
	.top-bar .container, .cta-ribbon .container {
		flex-direction: column;
		text-align: center;
		gap: 15px;
	}
	.services-grid, .blog-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 576px) {
	.logo-text {
		display: none; /* Keeps navigation bar neat by showing only graphic emblem icon on compact phone screens */
	}
	.header-cta {
		display: none; /* Hides duplicate top button on phones to make room for hamburger */
	}
}

@media (max-width: 480px) {
	.hidden-mobile-text {
		display: none;
	}
}
/* --- ENLARGED & EMBOSSED LOGO STYLING --- */
.logo-area {
	display: flex;
	align-items: center;
	gap: 16px; /* Slightly increased gap to balance the larger logo size */
}

.logo-img-container {
	display: inline-flex;
	padding: 4px; /* Gives the shadow room to blend smoothly */
	border-radius: 12px; /* Smooth card layout integration */
	background: var(--white);
	
	/* True Emboss Shadow Layering */
	/* 1. Subtle dark drop shadow anchor (bottom-right) */
	/* 2. Soft white reflective highlights (top-left) */
	box-shadow: 
		3px 3px 8px rgba(10, 37, 64, 0.15), 
		-3px -3px 8px rgba(255, 255, 255, 0.9);
		
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-img-src {
	height: 85px; /* Increased from 60px to make it noticeably bigger */
	width: auto;
	object-fit: contain;
	display: block;
}

/* Optional: Elegant letter emboss effect for the primary typography */
.logo-text h1 {
	font-size: 26px; /* Slightly adjusted to scale alongside the logo */
	font-weight: 700;
	color: var(--primary-dark);
	line-height: 1.1;
	text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.8);
}

/* Update this specific block inside your <style> tags */
.logo-area:hover .logo-img-container {
	/* Scale multiplier turns 100% size into 108% size smoothly */
	transform: scale(1.25); 
	
	/* Slightly broadens the shadow depths to match the scale-up effect */
	box-shadow: 
		5px 6px 14px rgba(10, 37, 64, 0.18), 
		-4px -4px 12px rgba(255, 255, 255, 1);
}
.map-container {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

.service-card {
    padding: 20px;
    border-radius: 18px;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-img {
    transform: scale(1.05);
}
/* keep ALL your CSS exactly the same below this */
/* top-bar, header, hero, services, blog, etc... */