
*{margin:0;padding:0;box-sizing:border-box;font-family:'Inter',sans-serif}
body{background:#0b3882;color:#e5e7eb;line-height:1.6}
.container{width:90%;max-width:1200px;margin:auto}
section{padding:100px 0}
h1,h2,h3{font-weight:800}
h1{font-size:48px;line-height:1.2}
h2{font-size:36px;margin-bottom:20px;text-align:center}
p{color:#cbd5e1}
.btn{
display:inline-block;
padding:16px 36px;
background:#2563eb;
color:#fff;
text-decoration:none;
font-weight:600;
border-radius:8px;
transition:0.3s;
}
.btn:hover{background:#1d4ed8}
.hero{
background:linear-gradient(135deg,#0b1220,#3b82f6);
text-align:center;
padding:140px 0;
}
.badge{
display:inline-block;
background:#f59e0b;
color:#000;
padding:8px 16px;
border-radius:30px;
font-size:14px;
font-weight:600;
margin-bottom:20px;
}
.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
margin-top:50px;
}
.card{
background:#20509e;
padding:30px;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,0.3);
transition:0.3s;
}
.card:hover{
transform:translateY(-6px);
box-shadow:0 15px 40px rgba(0,0,0,0.5);
}
.pricing{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:40px;
margin-top:60px;
}
.price-box{
background:#20509e;
padding:50px 40px;
border-radius:16px;
text-align:center;
border:1px solid #1f2937;
}
.price{
font-size:46px;
color:#f59e0b;
margin:20px 0;
font-weight:800;
}
ul{list-style:none;margin-top:20px}
ul li{margin:12px 0;color:#d1d5db}
.highlight{
border:2px solid #2563eb;
}
footer{
background:#20509e;
text-align:center;
padding:40px;
color:#94a3b8;
font-size:14px;
margin-top:80px;
}
@media(max-width:768px){
h1{font-size:30px}
h2{font-size:26px}
.price{font-size:36px}
}

/* ===== NAVBAR ===== */

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: #0b3882;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  z-index: 1000;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo img {
  height: 40px;
}

/* Menu */

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: 0.3s ease;
}

.nav-links a:hover {
  color: #ffffff;
}

/* Button */

.btn-nav {
  background: linear-gradient(90deg, #2563eb, #3b82f6);
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(59,130,246,0.3);
}

/* Content is pushed down because the navbar is fixed */
body {
  padding-top: 90px;
}

/*Starting to add configuration for Mobile mode*/
.menu-toggle{
	display:none;
	font-size:28px;
	cursor:pointer;
	color:white;
}

/* MOBILE */

@media(max-width:768px){

	.nav-links{
	position:absolute;
	top:70px;
	left:0;
	width:100%;
	background:#0b3882;
	flex-direction:column;
	align-items:center;
	gap:20px;
	padding:30px 0;
	display:none;
	}

	.nav-links.active{
	display:flex;
	}

	.menu-toggle{
	display:block;
	}

	.btn-nav{
	margin-top:10px;
	}

}
/*End of Mobile Mode Configuration*/

/*Starting CSS to Display Popup in the Middle of Landing Page*/
.popup-overlay{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
    z-index:9999;

    justify-content:center;
    align-items:center;
}

.popup-content{
    width:600px;
    max-width:95%;
    background:#fff;
    border-radius:10px;
    padding:10px;
    position:relative;
}

.close-btn{
    position:absolute;
    top:-12px;
    right:-12px;
    width:32px;
    height:32px;
    background:#ff4d4f;
    color:white;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    font-weight:bold;
    cursor:pointer;
    box-shadow:0 2px 6px rgba(0,0,0,0.3);
}
.close-btn:hover{
    background:#d9363e;
}
@media (max-width:768px){

	.close-btn{
	    top:2px;
	    right:2px;
	}

}
/*End of CSS for displaying the popup in the middle of the landing page*/

/*Start of CSS for the demo video*/
.video-demo{
    margin-top:15px;
}

.video-demo a{
    color:#ffffff;
    font-size:16px;
    text-decoration:none;
    opacity:0.9;
}

.video-demo a i{
    margin-right:6px;
    font-size:18px;
}
/*End of CSS for Demo Video*/

/*Start of CSS for Demo Deal Closing Process Image*/
/*1. Dark blurred background*/
.popup-overlay {
    display: none; 
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    overflow-y: auto; /* Allows vertical scrolling if the image is too tall */
}

/* 2. Image Container - Responsive */
.popup-content {
    position: relative;
    margin: 5vh auto; /* Vertically centered */
    width: 90%; /* Automatically adjusts in width */
    max-width: 800px; /* Matches the size of your original image */
    animation: zoomIn 0.3s ease;
    border-radius: 8px;
    background: #fff; /* White background for the photo frame */
    padding: 10px; /* Space for the X button to stand out */
}

/* 3. Automatic image resizing - Most important for responsive design. */
.responsive-img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    display: block; /* Avoid spacing under the image */
}

/* 4. Position the Close Button (X) - Insert IT INTO the frame */
.close-btn {
    position: absolute;
    top: -15px; /* Gently push up on the white frame to make it stand out */
    right: -15px; /* Gently push to the right */
    color: #fff; /* White X button color */
    background: #e74c3c; /* Red X button background for easy identification */
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    width: 40px; /* Circular X button */
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%; /* Make a circular button */
    box-shadow: 0 4px 6px rgba(0,0,0,0.3); /* Add a shadow to make the button stand out */
    transition: all 0.2s;
}

.close-btn:hover {
    background: #c0392b; /* Changes color when hovered */
    transform: scale(1.1);
}

/* 5. Automatically adjusts size on small phones. */
@media screen and (max-width: 600px) {
    .close-btn {
        top: 5px; /* Move further inside on Mobile to avoid being obscured */
        right: 5px;
        font-size: 24px;
        width: 35px;
        height: 35px;
    }
}

/* 6. Appearance of the effect */
@keyframes zoomIn {
    from {transform: scale(0.7); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}
/*End of CSS for Demo Deal Closing Process Image*/

/*** Begin For Google Translate ***/
/* When Google translates the page, this class will appear in the HTML tag */
.translated-ltr .navbar, 
.translated-rtl .navbar {
    margin-top: 35px !important;
}

/* Force whitespace to disappear during translation */
.translated-ltr, .translated-rtl {
    padding-top: 0px !important;
}
/*** End For Google Translate ***/