/* --- RESET & BASIC STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fdfdfd;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- BUTTONS --- */
.btn {
    display: inline-block;
    padding: 10px 22px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #007bbd;
    color: #fff;
}

.btn-primary:hover {
    background-color: #00598a;
}

.btn-secondary {
    background-color: #006097;
    color: #fff;
    border: 1px solid #007bbd;
    font-size: 15px;
    padding: 12px 24px;
}

.btn-secondary:hover {
    background-color: #00466f;
}

.btn-feature {
    background-color: #0066a4;
    color: white;
    margin-top: 15px;
}

.btn-feature:hover {
    background-color: #004d7c;
}

/* --- Logo --- */
.logo {
    font-weight: bold;
    color: #0a3d62;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
	margin-top:-30px;
}

.logo.light {
    color: #fff;
}

.logo img {
    width: 100%;       
    height: 80px;     
    object-fit: cover; 
    display: block;
}

/* --- NAVBAR --- */
.navbar {
  /*   background-color: #ffffff; */
	background-color: transparent;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
} 

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    margin: 0 12px;
    font-size: 14px;
    transition: color 0.2s;
}

.nav-links a:hover, .nav-links a.active {
    color: #007bbd;
}

/* --- HERO SECTION WITH BOTTOM CURVE --- */
.hero {
    position: relative;
    background: #02233c url('images/bg_head.png') no-repeat center center;
    background-size: cover;
    color: #fff;
    text-align: center;
    padding: 100px 0 150px 0;
    clip-path: ellipse(115% 100% at 50% 0%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
	/* background: linear-gradient(to bottom, rgba(2, 35, 60, 0.6), rgba(2, 35, 60, 0.8)); */
	background: rgba(0, 0, 0, 0.5); /* 50% opacity black */ 
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 42px;
    letter-spacing: 1px;
    line-height: 1.2;
    margin-bottom: 10px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 20px;
    color: #007bbd;
    font-weight: 500;
    margin-bottom: 5px;
}

.hero-description {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 35px auto;
    font-weight: 300;
    color: #e2f1fa;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 11px;
    letter-spacing: 2px;
    opacity: 0.8;
}

.scroll-indicator i {
    margin-top: 5px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-6px); }
    60% { transform: translateY(-3px); }
}

/* --- CONNECTED DIGITAL FEATURES SECTION --- */
.features-wrapper {
    background: #e1f0f5 url('images/bg_body.png') no-repeat center top;
    background-size: cover;
    margin-top: -50px;
    padding: 80px 0 50px 0;
}

.features {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two main cards side by side */
    gap: 50px;	
}

.feature-card {
	background-color: rgba(255, 255, 255, 0.6);
    border: 2px solid #b0cddb;
    border-radius: 8px;
}
	
.feature-card h2 {
    color: #0b2545;
    font-size: 22px;
	text-align:center;
    font-weight: 700;
	padding-top: 10px;
	padding-left: 25px;
}

/* Side-by-side elements inside each individual feature card */
.feature-split {
	padding-top: 10px;	
    display: grid;
    grid-template-columns: 1.1fr 0.9fr; /* Splits layout inside the card horizontally */
    gap: 20px;
    align-items: center;
}

.main-feat-img {   
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #555;
    padding: 10px;	
    height: 260px;
    width: 100%;
}

.main-feat-img img {
	width: 100%;
	height: 100%;
}

.feature-details
{
	padding-left: 15px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    margin-bottom: 14px;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-list li i {
    color: #0066a4;
    font-size: 18px;
    width: 24px;
    text-align: center;
}

/*------------ card -----------*/
.card {
    position: relative; 
    width: 100%;
    height: 100%;
	
	-webkit-user-select: none; /* Safari */
	-ms-user-select: none;     /* IE 10 and IE 11 */
	user-select: none; 
}

.blur { 
	filter: blur(3px);        /* Standard syntax */
}

.card-overlay,.card-overlay-alt {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10; 
    pointer-events: none; 	
    background: rgba(2, 35, 60, 0.5); 
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; 
}

.card-overlay::before {
    content: "COMING SOON";
    font-size: 3.5rem;
    font-weight: 900;
	color: rgba(255, 255, 255, 0.3); 
	/* color: transparent;  */
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.5);
    transform: rotate(-30deg);
    white-space: nowrap;
    text-transform: uppercase;
}

.card-overlay-alt::before {
    content: "COMING SOON";
    font-size: 4rem;
    font-weight: 900;
	color: rgba(255, 255, 255, 0.3); 
	/* color: transparent;  */
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.5);
    transform: rotate(30deg);
    white-space: nowrap;
    text-transform: uppercase;
}

/* --- COMMUNITY SECTION --- */
.community {
    text-align: center;
    padding: 60px 0;
    background-color: #fdfdfd;
}

.community h2 {
    color: #0b2545;
    font-size: 26px;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.community-intro {
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #555;
    font-size: 15px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
    text-align: left;
    border-top: 3px solid #007bbd;
}

.avatar-placeholder {
    width: 45px;
    height: 45px;
    background-color: #ccc;
    border-radius: 50%;
    margin-bottom: 12px;
}

.testimonial-item p {
    font-size: 13px;
    color: #555;
    font-style: italic;
}

/* --- FOOTER --- */
footer {
    background-color: #041c2c;
    color: #a0b3c6;
    padding: 50px 0 30px 0;
    font-size: 14px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1.5fr;
    gap: 40px;
	display: flex;
	width: 100%;
}

.side-div {
  flex: 1;
}

.middle-div {
  flex: 2; 
}

/* 
footer h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 14px;
    letter-spacing: 1px;
}

.footer-brand .copyright {
    margin-top: 15px;
    font-size: 12px;
    color: #708499;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #a0b3c6;
    font-size: 20px;
    transition: color 0.2s;
}

.social-icons a:hover {
    color: #fff;
}

.footer-about p {
    line-height: 1.5;
    font-size: 13px;
} */

/* --- RESPONSIVENESS --- */
@media (max-width: 992px) {
    .features {
        grid-template-columns: 1fr;
    }
    .feature-split {
        grid-template-columns: 1fr; /* Fallback to standard stacking columns on narrow mobile screens */
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .hero {
        clip-path: none;
        padding: 100px 0 60px 0;
    }
    .features-wrapper {
        margin-top: 0;
        padding-top: 40px;
    }
}


/*----------------- Contact Us---------------------- */
.contact-hero {
    background: #02233c; /* Matches the dark hero theme in image_53eae0.jpg */
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.contact-section {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.contact-info i {
    color: #007bbd;
    margin-right: 10px;
}