/* Reset and base styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #253188;
    color: #fff;
    padding: 0px 20px;
    line-height: 1.6;
  overflow-x: hidden;
text-align: justify;
margin-top: 8% !important;
}

/* Typography */
h1, h2, h3 {
    color: #fff;
    margin-bottom: 15px;
}

h1.heading {
margin-top: 240px;
padding:2%;
text-align: center;
background-color: #00008B;
border-radius: 8px;
}

@media (max-width: 768px) {
h1.heading {
padding:2%;
margin-top: 130px;
}
}

h2.heading {
margin: 4% 2%;
padding:2%;
text-align: center;
background-color: #00008B;
border-radius: 8px;
}

@media (max-width: 768px) {
h2.heading {
padding:2%;
margin: 20% 2% 20% 2%;
}
}

h3.heading {
margin: 4% 2%;
padding:2%;
text-align: center;
background-color: #00008B;
border-radius: 8px;
}

@media (max-width: 768px) {
h3.heading {
padding:2%;
margin: 20% 2% 20% 2%;
}
}


a {
    color: #FFD700;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.top-bar {
    position: fixed !important;
    left: 0;
    right: 0;
    top: 0;
    padding: 10px;
    z-index: 15 !important;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #00094b;
}

.call-whatsapp-button-container {
    width: auto !important;  /* Set width to auto to avoid full width */
    display: flex;
    justify-content: center; /* Center buttons horizontally */
    align-items: center;     /* Center buttons vertically */
    gap: 10px;               /* Add some spacing between buttons */
}

@keyframes visibilitytrickcall {0%{border: 3px ridge cyan;}50%{border: 3px ridge white;}100%{border: 3px ridge cyan;}}

@keyframes visibilitytrickwhatsapp {0%{border: 3px ridge #F97C3D;}50%{border: 3px ridge white;}100%{border: 3px ridge #F97C3D;}}

.whatsapp-button {
    margin: 0 !important;
    color: white !important;
    background-color: #0BC24F !important;
    padding: 9px 15px;
    font-size: 21px !important;
    font-family: black !important;
    text-decoration: none !important;
    animation: visibilitytrickwhatsapp 3s infinite;
}

.call-button {
    margin: 0 !important;
    color: white !important;
    background-color: #F97C3D !important;
    padding: 9px;
    font-size: 21px !important;
    font-family: black !important;
    text-decoration: none !important;
    animation: visibilitytrickcall 3s infinite;
}

@media only screen and (max-width: 800px) {
    .call-whatsapp-button-container {
        width: auto !important;  /* Keep width auto on small screens */
    }

    .whatsapp-button {
        margin: 0 !important;
        padding: 9px 20px;
        font-size: 18px !important;
        animation: visibilitytrickwhatsapp 3s infinite;
    }

    .call-button {
        margin-left: 15px !important;
        padding: 9px 9px;
        font-size: 18px !important;
        animation: visibilitytrickcall 3s infinite;
    }
}

/* Header basic styling */
.site-header {
  background: #00094b;
  color: #fff;
  padding: 10px 20px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 3px solid white;
  margin-top: 66px;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.logo {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}

.menu {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
  font-size: 18px;
}

.menu a {
  color: #fff;
  text-decoration: none;
  padding: 8px 12px;
  display: inline-flex;  /* CHANGED from 'block' */
  align-items: center;   /* Vertically aligns text with arrow */
}

/* Submenu styling for desktop */
.menu li {
  position: relative;
}

.menu .submenu {
  display: none;
  position: absolute;
  top: 75%;
  left: 0;
  background: #333;
  min-width: 200px;
  z-index: 1000;
  border: 1px solid black;
}

.menu .submenu li {
  white-space: nowrap;
}

.menu .submenu a {
  padding: 10px 15px;
  color: #fff;
  display: block;
}

.menu li:hover > .submenu {
  display: block;
}

.menu .submenu a:hover {
  background-color: #00094b;
}

/* Hamburger menu (mobile only) */
.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: #fff;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  #main-nav {
    display: none;
    width: 100%;
  }

  #main-nav.open {
    display: block;
  }

  .menu {
    flex-direction: column;
    gap: 0;
  }

  .menu li {
    border-bottom: 1px solid black;
  }

.menu li.has-submenu {
  position: relative;
}

.menu-link-wrapper {
  display: flex;
  align-items: center;
}

  .menu .submenu {
    position: static;
    background: #00094b;
  }
}

/* Hide submenu toggle on desktop */
.submenu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  margin-left: 5px;
  color: #fff;
}

/* Show toggle only on mobile */
@media (max-width: 768px) {
  .submenu-toggle {
    display: inline-block;
    background-color: #00094b !important;
  }

  .submenu {
    display: none !important;
    position: static;
    background: #00094b;
    padding-left: 20px;
  }

  .submenu.show-submenu {
    display: block !important;
  }


}

ul {
  list-style-type: disc;     /* bullet style: disc, circle, square, or none */
  padding-left: 20px;        /* space before list */
  margin: 10px 0;            /* vertical spacing */
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #fff;               /* text color */
}

li {
  margin-bottom: 8px;        /* space between items */
}

hr {
  border: 0;           /* Remove default border */
  height: 1px;         /* Set the height of the horizontal line */
  background-color: #ccc; /* Set the color of the line */
  margin: 20px 0;      /* Add space above and below the line */
}

p {
  font-family: 'Arial', sans-serif; /* Set a default font */
  font-size: 16px;         /* Set the font size */
  line-height: 1.6;        /* Improve readability with line spacing */
  margin-bottom: 15px;     /* Space between paragraphs */
  color: #fff;            /* Dark gray text color for better contrast */
}


/* Forms */
form {
    background-color: rgba(255, 255, 255, 0.08);
    padding: 20px;
    border-radius: 10px;
    max-width: 600px;
    margin: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

input[type="text"],
input[type="password"],
input[type="file"],
input[type="url"],
input[type="email"],
select,
textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0 20px 0;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    background-color: #fff;
    color: #000;
}

textarea {
    resize: vertical;
}

input[type="submit"], button {
    background-color: #FF8C00;
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

input[type="submit"]:hover,
button:hover {
    background-color: #e07a00;
}

/* Ad cards */
.ad-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 0 6px rgba(0,0,0,0.2);
}

.ad-card a {
    color: #00ffcc;
    font-weight: bold;
}

.ad-card a:hover {
    color: #fff;
}

/* Location autocomplete */
#location-suggestions {
    background: #fff;
    color: #000;
    border: 1px solid #ccc;
    position: absolute;
    z-index: 1000;
    max-height: 150px;
    overflow-y: auto;
    width: 100%;
    border-radius: 0 0 5px 5px;
}

#location-suggestions li {
    padding: 10px;
    cursor: pointer;
}

#location-suggestions li:hover {
    background: #f0f0f0;
}

/* Responsive layout */
@media (max-width: 768px) {
    body {
        padding: 10px 20px;
        margin-top: 25% !important;
    }

    form {
        padding: 15px;
    }

    nav {
        flex-direction: column;
        gap: 8px;
    }

    input, select, textarea, button {
        font-size: 16px;
    }
}

/* Ad Listing Block Styles */
.ad {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
    border-bottom: 1px solid #ffbb88;
    padding-bottom: 20px;
    align-items: flex-start;
}

.ad img {
    width: 220px;
    height: 140px; /* rectangle size */
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.ad-details {
    flex: 1;
    min-width: 200px;
}

.ad-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}


@media screen and (max-width: 768px) {
    .ad {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .ad img {
        width: 100%;
        height: auto;
        max-width: 400px;
    }

    .ad-details {
        width: 100%;
    }
}


.meta {
    font-size: 0.9em;
    color: #f2d1b3;
    margin-top: 5px;
}

.no-ads {
    color: #ffccbb;
    padding: 20px 0;
    font-style: italic;
}

/* Package Display CSS */

.column {
  float: left;
  width: 33.33%;
  padding: 5px;
  box-sizing: border-box;
}

@media screen and (max-width: 1024px) {
  .column {
    width: 50%;
  }
}

@media screen and (max-width: 768px) {
  .column {
    width: 100%;
  }
}


/* Clearfix (clear floats) */
.row::after {
  content: "";
  clear: both;
  display: table;
  padding: 0px;

}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media screen and (max-width: 800px) {
.row {
margin-left:0;
width:97%;
}
}

.contid {
font-size : 50px;
}
.more {
display: none;
font-size : 25px;
}

button.rdmore {
margin: auto;
font-family: 'Roboto';
font-weight: 700;
margin-top: 15px;
margin-bottom: 15px;
padding: 10px;
border: 2px solid #ffffff;
background-color: black;
color: white;
font-size: 20px;
display: block !important;
cursor: pointer !important;
vertical-align: middle !important;
text-align: center !important;
line-height: 1 !important;
}
@media screen and (max-width: 800px) {
button.rdmore {
margin: auto;
margin-top: 15px;
margin-bottom: 15px;
padding : 10px;
border : 2px solid #ffffff;
background-color : black;
color: white;
font-size : 20px;
display : block;
cursor : pointer;
vertical-align: middle;
text-align: center;
line-height: 1;
	}

button.rdmore a:hover {
margin: auto;
margin-top: 15px;
margin-bottom: 15px;
padding : 10px;
border : 2px solid #ffffff;
background-color : black;
color: white;
font-size : 20px;
display : block;
cursor : pointer;
vertical-align: middle;
text-align: center;
line-height: 1;
}
}

.packages {
    max-width: 1200px;
    margin: 0 auto;
}

.package {
  background-color: #00008B;
  border: 3px #F97C3D ridge;
  border-radius: 3% !important;
  padding: 5px;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  line-height: 1.2;
}

/* mobile figure */
@media only screen and (max-width: 768px) {
  .package {
    width: 100%;
    margin: 0 auto 66px auto !important;
  }
}

.site-footer {
    text-align: center !important;
    padding: 20px;
    background-color: #00094b;
    border-top: 1px solid #ddd;
    margin-top: 40px;
    font-size: 14px;
    color: #fff;
    font-weight: 600;
}

.site-footer a {
    color: #fff;
    text-decoration: none;
    margin: 0 5px;
}

.site-footer a:hover {
    text-decoration: underline;
}

#goTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  background-color: red;
  color: white;
  border: none;
  outline: none;
  padding: 12px 16px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  display: none; /* Hidden by default */
  transition: background-color 0.3s ease;
}
#goTopBtn:hover {
  background-color: red;
}

button.post-ad-button {
background-color: #00094b;
color: white !important;
border: 5px ridge white;
padding: 10px;
font-size: 20px;
margin: 0px 40px;
}

button.post-ad-button a {
color: white !important;
background-color: #00094b;
}

button.post-ad-button a:hover {
color: white !important;
background-color: #00094b;
}


.column {
  float: left;
  padding: 3.5%;
}

/* Clearfix (clear floats) */
.row::after {
  content: "";
  clear: both;
  display: table;
  padding: 0px;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media screen and (max-width: 800px) {
.column {
    float: none;
    width: 97%;
    padding:0px;
    margin-left:0%;
  }
.row {
margin-left:0%;
width:100%;
}

}

.contid {
font-size : 50px;
}
section {
padding : 20px;
margin : 10px;
font-size: 18px;
}
.more {
display : none;
font-size : 50px;
}


/* pc figure */
figure {background-color: #8AABFF; border: 0px white solid; padding: 5px;width: 252px;
text-align:center;
border-bottom: 10px solid #8AABFF;
} /* mobile figure */
@media only screen and (max-width: 800px) {
figure {width:99%;}

	
/* pc figcaption */
figcaption {background-color:#253188; color:white !important;font-style: bold;font-size: 15px;padding: 0px;text-align: center !important;
opacity:0.9;font-weight:bold;
margin-bottom: 5px;
width:100%%;height:80%;
border-width:50px;border-style:style;border-color:#253188;
border-bottom:25px solid black;
}
} /* mobile figcaption */
@media only screen and (max-width: 768px) {
figcaption {font-size:20px;}}

.wp-caption-text {
	color: white;
	font-size: 20px !important;
	padding: 5px !important;
	text-align: center;
}

/* pc image */
.image {
padding: 1px;width: 240px; height: 300px; align: center;transition:all 0.6s ease-in-out;
margin-top:2%;position: relative;
opacity:0.9;
border-width: 1px;border-style: solid;border-color: white;border-radius: 2%; border-spacing: 30px 30px;
}
.image:hover {
opacity: 0.9;  filter: alpha(opacity=100);transform:scale(0.99);transition:all 0s ease-in-out;
  transform: translateY(0%);
background: linear-gradient(to bottom, rgba(255,0,0,0.8), rgba(355,0,0,0.9)));
}

/* mobile image */
@media screen and (max-width: 800px) {
.image { 
padding: 1px;margin: 0px;width: 100%; height: auto; opacity: 0.9;float: center;transition:all 0.6s ease-in-out;
margin-top:2%;position: relative;
border-width: 2px;border-style: solid;border-color: white;border-radius: 2%;
}
.image:hover {
opacity: 0.9;  filter: alpha(opacity=100);transform:scale(0.8);transition:all 0s ease-in-out;
  transform: translateY(0%);
background: linear-gradient(to bottom, rgba(255,0,0,0.8), rgba(355,0,0,0.9)));
}

}


.rdmore {
margin: auto;
font-family: 'Roboto';
font-weight: 700;
margin-top: 5px;
padding : 10px;
border : 2px solid #ffffff;
background-color : #253188;
color: white;
font-size : 20px;
display : block;
cursor : pointer;
vertical-align: middle;
text-align: center;
line-height: 1;
	width: 150px !important;
}

.rdmore a:hover {
margin: auto;
margin-top: 5px;
padding : 10px;
border : 2px solid #ffffff;
background-color : #253188;
color: white;
font-size : 20px;
display : block;
cursor : pointer;
vertical-align: middle;
text-align: center;
line-height: 1;
}
@media screen and (max-width: 800px) {
.rdmore {
margin: auto;
margin-top: 15px;
padding : 10px;
border : 2px solid #ffffff;
background-color : #253188;
color: white;
font-size : 20px;
display : block;
cursor : pointer;
vertical-align: middle;
text-align: center;
line-height: 1;
}

.rdmore a:hover {
margin: auto;
margin-top: 15px;
padding : 10px;
border : 2px solid #ffffff;
background-color : #253188;
color: white;
font-size : 20px;
display : block;
cursor : pointer;
vertical-align: middle;
text-align: center;
line-height: 1;
}
}

.custom-html-content {
  background-color: #253188;
  padding: 25px;
  border-radius: 10px;
  margin: 30px auto;
  max-width: 1000px;
  font-size: 18px;
  line-height: 1.7;
  color: #ffffff; /* match your base text color */
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.08);
}

/* Optional header styles within custom content */
.custom-html-content h2, 
.custom-html-content h3 {
  color: #FFD700; /* gold for visual pop */
  margin-top: 25px;
}

/* Link styles inside custom content */
.custom-html-content a {
  color: #00ffff; /* brighter cyan for link emphasis */
  font-weight: bold;
}

.custom-html-content a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Lists inside custom content */
.custom-html-content ul,
.custom-html-content ol {
  margin: 15px 0 15px 20px;
  padding-left: 20px;
}

/* Mobile responsiveness */
@media screen and (max-width: 768px) {
  .custom-html-content {
    padding: 20px 15px;
    margin: 20px 5px;
    font-size: 17px;
  }
}


/* Ad Listing Block Styles */
.listing-item {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
    border-bottom: 1px solid #ffbb88;
    padding-bottom: 20px;
    align-items: flex-start;
}

.listing-item img {
    width: 220px;
    height: 140px; /* rectangle size */
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
	margin-top: 6% !important;
}

.listing-item-details {
    flex: 1;
    min-width: 200px;
}

.listing {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}


@media screen and (max-width: 768px) {
    .listing-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .listing-item img {
        width: 100%;
        height: auto;
        max-width: 400px;
    }

    .listing-item-details {
        width: 100%;
    }
}


.meta {
    font-size: 0.9em;
    color: #f2d1b3;
    margin-top: 5px;
}

.listing-heading {
    background: none;
    border: none;
    color: white !important;
    margin: 0px 0px 15px 0px !important;
    font-size: 24px;
}

#response-message {
  background: white;
  margin-top: 15px;
  padding: 12px 16px;
  border: 5px green solid;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  display: none; /* Hidden by default */
  transition: all 0.3s ease-in-out;
}

#response-message.success {
  color: #155724;
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
}

#response-message.error {
  color: #721c24;
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
}
