
@import url(fontawesome/css/all.css);

/* Dokumen */
:root {
	--primeLine: #FF0300;
	--secondaryLine : #0065BD;
	--timerPG: 0;
	--totalsec : 0;
	--totalsecTemp : 0;
}

*::-webkit-scrollbar {
  display: none;
}

*{
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	
}

body{
	padding: 0px;
	overflow: hidden;
	height: 100vh;
	width: 100vw;
	margin: 0;
}


.searchbar {
    background-color: gray;
    border-radius: 22px;
    top: 0;
    height: 200px;
    position: relative; /* Or fixed if needed */
    display: flex;
    align-items: center;
    justify-content: center;

}


/* Search Bar Styles */
.search-container {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 400px;
    background: #f1f1f1;
    border-radius: 25px;
    padding: 5px 45px;
}

.search-icon {
    position: absolute;
	right: 2px;
    font-size: 18px;
    color: #555;
}

.right-icon {
	position: absolute;
    left: 15px;
    font-size: 18px;
    color: #555;
    cursor: pointer;
}

.form-input {
    width: 100%;
    padding: 8px 35px 8px 35px; /* Space for icons */
    border: none;
    border-radius: 25px;
    outline: none;
    font-size: 16px;
}

/* Search Button */
#searchButton {
    padding: 7px 7px;
    background: none;
    color: #555;
    border: none;
    border-radius: 50%;
    cursor: pointer;
}

#searchButton:hover {
	border: solid 1px #ffffff;
	transform: scale(0.8); /* Slightly enlarges on hover */
	box-shadow: inset 3px 3px 3px #cbced1, inset -3px -3px 3px white;
	background-color: #fffcfc;
}


/* Modal Background Overlay */
.searchModal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Faded black background */
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: auto; /* Ensures clicks do not pass through */
	background-color: #1eb337;
}

/* Modal Content */
.searchModal-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
    position: relative;
	background-color: #4B00B7;
}

/* Close Button */
.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
    color: #333;
}

/* Disable Background Clicks */
body.modal-open {
    overflow: hidden; /* Prevent scrolling when modal is open */
    pointer-events: none; /* Blocks clicks outside the modal */
}

.modal-content {
    pointer-events: auto; /* Allow clicks inside the modal */
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
    color: #333;
}


input[type="text"]:focus {
    border: 1px solid rgb(255, 255, 255);
    box-shadow: 0 0 5px rgba(116, 116, 116, 0.8);
}

input[type="text"] {
    padding: 6px;
    margin-top: 8px;
    font-size: 17px;
    border-radius: 22px;
    border: 1px solid white;
	box-shadow: inset 3px 3px 3px #cbced1, inset -3px -3px 3px white;
    outline: none; /* Removes default browser focus */
}

textarea[type="text"]:focus {
    border: 1px solid rgb(255, 255, 255);
    box-shadow: 0 0 5px rgba(116, 116, 116, 0.8);
}

textarea[type="text"] {
    padding: 6px;
    margin-top: 8px;
    font-size: 17px;
    border-radius: 18px;
    border: 1px solid white;
	box-shadow: inset 3px 3px 3px #cbced1, inset -3px -3px 3px white;
    outline: none; /* Removes default browser focus */
}


input[type="tel"]:focus {
    border: 1px solid rgb(255, 255, 255);
    box-shadow: 0 0 5px rgba(116, 116, 116, 0.8);
}

input[type="tel"] {
    padding: 6px;
    margin-top: 8px;
    font-size: 17px;
    border-radius: 22px;
    border: 1px solid white;
	box-shadow: inset 3px 3px 3px #cbced1, inset -3px -3px 3px white;
    outline: none; /* Removes default browser focus */
}

input[type="email"]:focus {
    border: 1px solid rgb(255, 255, 255);
    box-shadow: 0 0 5px rgba(116, 116, 116, 0.8);
}

input[type="email"] {
    padding: 6px;
    margin-top: 8px;
    font-size: 17px;
    border-radius: 22px;
    border: 1px solid white;
	box-shadow: inset 3px 3px 3px #cbced1, inset -3px -3px 3px white;
    outline: none; /* Removes default browser focus */
}

input[type="url"]:focus {
    border: 1px solid rgb(255, 255, 255);
    box-shadow: 0 0 5px rgba(116, 116, 116, 0.8);
}

input[type="url"] {
    padding: 6px;
    margin-top: 8px;
    font-size: 17px;
    border-radius: 22px;
    border: 1px solid white;
	box-shadow: inset 3px 3px 3px #cbced1, inset -3px -3px 3px white;
    outline: none; /* Removes default browser focus */
}
.loader {
	background-color:  #ECF0F3;
    align-items: center !important;
    justify-content: center !important;
    height: 100% !important; /* Full screen height */
    text-align: center !important;
    background-color: #ECF0F3 !important; /* Adjust as needed */
    color: rgb(27, 27, 27) !important;
	z-index: 9999;
}


.loader-image {
    width: 100px; /* Adjust size as needed */
    height: auto;
    margin-bottom: 20px;
}

button {
    position: relative;
}
.cta-btn {
	background-color: var(--secondary-color);
	color: white;
	border: none;
	padding: 10px 5px;
	margin: 3px 8px;
	border-radius: 13px;
	cursor: pointer;
	font-weight: bold;
	transition: background-color 0.3s;
	background-color: #1687d3;
}

button:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    background: black;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    pointer-events: none;
}

button:hover::after {
    opacity: 1;
}
.card {
	width: 320px;
	height:  auto;
	padding: 10px 10px 40px 10px;
	background: #f5f5f5;
	position: relative;
	overflow: visible;
	box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
	margin: 15px;
	border-radius: 18px;
   }
   
   .card-img {
	background-color: #0e0e0e;
	height: 60%;
	width: 100%;
	border-radius: .5rem;
	transition: .3s ease;
   }
   
   .card-img  img {
	height: 80%;
	width: 100%;
	border-radius: .5rem;
	transition: .3s ease;
   }
   
   .card-info {
	padding-top: 10%;
   }
   
   svg {
	width: 20px;
	height: 20px;
   }
   
   .card-footer {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 10px;
	border-top: 1px solid #ddd;
   }
   
   /*Text*/
   .text-title {
	font-weight: 900;
	font-size: 1.2em;
	line-height: 1.5;
   }
   
   .text-body {
	font-size: .9em;
	padding-bottom: 10px;
   }
   
   /*Button*/
   .card-button {
	border: 1px solid #252525;
	display: flex;
	padding: .3em;
	cursor: pointer;
	border-radius: 50px;
	transition: .3s ease-in-out;
   }
   
   /*Hover*/
   .card-img:hover {
	transform: translateY(-25%);
	box-shadow: rgba(226, 196, 63, 0.25) 0px 13px 47px -5px, rgba(180, 71, 71, 0.3) 0px 8px 16px -8px;
   }
   
   .card-button:hover {
	border: 1px solid #ffcaa6;
	background-color: #ffcaa6;
   }
   
.card-div {
	height: 150px; 
	width: 100%; 
	background-color: red; 
	padding: 5px;
	margin: 5px;
	border-radius: 18px;
}
.slogan {
    font-size: 18px;
    font-weight: bold;
    color: #f3f3f3; /* Adjust to match theme */
}

.container{
	height: 100%;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Open Sans';
	overflow: hidden;
}

.content-wrapper{
	margin-top: 0;
	height: 100%;
	width: 100%;
	display: flex;
	flex-wrap: nowarp;
	padding-bottom: 0%;
	overflow-x: auto;
  	scroll-snap-type: x mandatory;
	overflow-y: hidden;
 	scroll-behavior: smooth;
  	-webkit-overflow-scrolling: touch;
	border-radius: 33px;
}


.a {
	position: fixed;
	top: 7%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 100;
	color: black;
	text-decoration: none;
	display: flex;
	justify-content:  start;
	align-items: center;
  }
  

.content-wrapper a:active{
	color: black;
}

.loader{
	position: absolute;
	width: 100%;
	height: 100%;
	font-size: 1em;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: center;
}

.topnavbar{
	position: absolute;
	top: 0;
	left: 0;
	margin: 15px 0px 0px 15px;
	background-color: #1eb337;
}

.topnavbar h2{
	font-weight: bold;
}

.navbar {
	position: fixed;
	bottom: 0;
	display: flex;
	justify-content: space-around;
	margin-bottom: 0px;
	z-index: 50;
	background-color: #f3f3f3;
	border-radius: 22px;
	padding-top: 20px;
}

.navbar i {
    color: black !important; /* Ensures all icons in navbar are white */
	text-decoration: none;
}

.navbar button{
	height: 55px;
	width: 55px;
	margin: 0px 20px 0px 20px;
	border-radius: 10px;
	border: 1px solid #F3F3F3; box-shadow: 5px 5px 10px #c3c3c3, -5px -5px 12px #ffffff;
}

.navbar button:hover{
	box-shadow: inset 3px 3px 3px #cbced1, inset -3px -3px 3px white;
}

/* Bagian Jam*/
.clock-section{
	position: relative;
	height: 100%;
	width: 100%;
	flex: 0 0 auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	scroll-snap-align: start;
	overflow: scroll;
}

.clock-section h1{
	margin-top: 60px;
}

.clock-section h3{
	color: #454545;
	margin-top: 5px;
}




/* Bagian Stopwatch */
.stopw-section{
	position: relative;
	height: 100%;
	width: 100%;
	flex: 0 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	scroll-snap-align: start;
}

.lap-box-fixer{
	justify-content: start;
	align-items: center;
	flex-direction: column;
	overflow-y: scroll;
	margin-top: 10px;
	width: 330px;
	height: 100%;
	padding: 20px;
}

.lap-box{
	display: flex;
	justify-content: start;
	align-items: center;
	flex-direction: column;
	margin-bottom:15px ;
	margin-top: 60px;
}

.lap-boxes{
	display: flex;
	justify-content: start;
	align-items: center;
	flex-direction: column;
	margin-bottom:15px ;
	margin-top: 60px;
}
.laptab{
	display: flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: space-around;
	height: 35px;
	width: 250px;
	text-align: center;
	border-radius: 5px;
	margin: 5px 0px 5px 0px;
	border: 1px solid #F3F3F3; background: #ECF0F3; box-shadow: 5px 5px 10px #c3c3c3, -5px -5px 12px #ffffff;
}

.swbtn-holder{
	display: flex;
	justify-content: space-around;
	gap: 10vw;
}

.swbtn-holder button{
	width: 120px;
	height: 40px;
	border-radius: 10px;
	font-weight: bold;
	font-size: 1.1em;
	border: 1px solid #F3F3F3; background: #ECF0F3; box-shadow: 8px 8px 16px #c3c3c3, -5px -5px 5px #ffffff;
}

/* Bagian Timer */
.timer-section {
	position: relative;
	height: 100%;
	width: 100%;
	position: relative;
	flex: 0 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	background-color: transparent;
	scroll-snap-align: start;
}

.timedisplayHolder{
	display: flex;
	justify-content: center;
	align-items: center;
}

.timer-btnholder{
	width: 280px;
	height: 45px;
	display: flex;
	justify-content: space-around;
	gap: 10vw;
}

.timer-btnholder button{
	width: 120px;
	height: 40px;
	border-radius: 10px;
	font-weight: bold;
	font-size: 1.1em;
	flex-grow: 1;
	border: 1px solid #F3F3F3; background: #ECF0F3; box-shadow: 8px 8px 16px #c3c3c3, -5px -5px 5px #ffffff;
}

.time-boxes{
	display: flex;
	justify-content:  start;
	align-items: center;
	width: 280px;
	height: 70px;
	margin-bottom: 20px;
	
	overflow-x: scroll;
	scroll-snap-type: x mandatory;
 	scroll-behavior: smooth;
  	-webkit-overflow-scrolling: touch;
}

.time-boxes button{
	height: 57px;
	width: 57px;
	font-size: 1em;
	font-weight: bold;
	text-align: center;
	border-radius: 10px;
	margin: 0px 6px 0px 6px;
	border: 1px solid #F3F3F3; background: #ECF0F3; box-shadow: 5px 5px 5px #c3c3c3, -5px -5px 6px #ffffff;
	flex-shrink: 0;
	scroll-snap-align: end;
}

.rival-boxes{	
	display: flex;
	justify-content:  start;
	align-items: center;
	width: 290px;
	height: 76px;
	margin-bottom: 14px;
	border-radius: 60px;
	overflow-x: scroll;
	scroll-snap-type: x mandatory;
 	scroll-behavior: smooth;
  	-webkit-overflow-scrolling: touch;
	border: solid 1px #b8b8b8 ;
	box-shadow: inset 3px 3px 3px #cbced1, inset -3px -3px 3px white;
	background-color: #ECF0F3 !important; /* Adjust as needed */
}
.rival-box{
	display: flex;
	justify-content:  start;
	align-items: center;
	width: 76px;
	height: 76px;
	margin: 10px;
	margin: 14px;
	border-radius: 50%;
  	-webkit-overflow-scrolling: touch;
	border:none;
	background-color: #ECF0F3 !important; /* Adjust as needed */
	border: solid 1px #ff7504 ;
}
  .rival-boxes img {
	max-width: 100%;
	max-height: 100%;
	border-radius: 50%;
  }

  .rival-box img {
	max-width: 100%;
	max-height: 100%;
	border-radius: 50%;
  }
  .iframe-container {
	width: 100%;
	height: 1000px;
	border-radius: 22px;
}


.rival-boxes button{
	height: 57px;
	width: 57px;
	font-size: 1em;
	font-weight: bold;
	text-align: center;
	border-radius: 50%;
	margin: 0px 6px 0px 6px;
	border: 1px solid #F3F3F3; background: #ECF0F3; box-shadow: 5px 5px 5px #c3c3c3, -5px -5px 6px #ffffff;
	flex-shrink: 0;
	scroll-snap-align: end;
}

.rival-box button{
	height: 65px;
	width: 65px;
	font-size: 1em;
	font-weight: bold;
	text-align: center;
	border-radius: 50%;
	margin: 0px 6px 0px 6px;
	border: 1px solid #F3F3F3; background: #ECF0F3; box-shadow: 5px 5px 5px #c3c3c3, -5px -5px 6px #ffffff;
	flex-shrink: 0;
	scroll-snap-align: end;
}

.rival-boxes button:hover{
	box-shadow: inset 3px 3px 3px #cbced1, inset -3px -3px 3px white;
}

.rival-box button:hover{
	box-shadow: inset 3px 3px 3px #cbced1, inset -3px -3px 3px white;
}

.timer-pickerholder{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 280px;
	margin: 6px 0px 10px 0px;
}

.timer-pickerholder input[type=time] {
	position: absolute;
	height: 40px;
	width: 280px;
	background: transparent;
	color: transparent;
	border: 0px;
}



/* Bagian Social */
.social-section {
	position: relative;
	height: 100%;
	width: 100%;
	position: relative;
	flex: 0 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	background-color: transparent;
	scroll-snap-align: start;
}

.timedisplayHolder{
	display: flex;
	justify-content: center;
	align-items: center;
}

.timer-btnholder{
	width: 280px;
	height: 45px;
	display: flex;
	justify-content: space-around;
	gap: 10vw;
}

.timer-btnholder button{
	width: 120px;
	height: 40px;
	border-radius: 10px;
	font-weight: bold;
	font-size: 1.1em;
	flex-grow: 1;
	border: 1px solid #F3F3F3; background: #ECF0F3; box-shadow: 8px 8px 16px #c3c3c3, -5px -5px 5px #ffffff;
}

.time-boxes{
	display: flex;
	justify-content:  start;
	align-items: center;
	width: 280px;
	height: 70px;
	margin-bottom: 20px;
	
	overflow-x: scroll;
	scroll-snap-type: x mandatory;
 	scroll-behavior: smooth;
  	-webkit-overflow-scrolling: touch;
}

.time-boxes button{
	height: 57px;
	width: 57px;
	font-size: 1em;
	font-weight: bold;
	text-align: center;
	border-radius: 10px;
	margin: 0px 6px 0px 6px;
	border: 1px solid #F3F3F3; background: #ECF0F3; box-shadow: 5px 5px 5px #c3c3c3, -5px -5px 6px #ffffff;
	flex-shrink: 0;
	scroll-snap-align: end;
}

.time-boxes button:hover{
	box-shadow: inset 3px 3px 3px #cbced1, inset -3px -3px 3px white;
}

.timer-pickerholder{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 280px;
	margin: 6px 0px 10px 0px;
}

.timer-pickerholder input[type=time] {
	position: absolute;
	height: 40px;
	width: 280px;
	background: transparent;
	color: transparent;
	border: 0px;
}
/* Utility */

#swdisms{
	color: #FF0051;
}

#strbtn, #strTm{
	color: white;
	border: 1px solid #6900FF; background: #6900FF; box-shadow: 5px 5px 10px #4B00B7, -5px -5px 12px #ffffff;
}

#stpbtn, #canTm{
	color: white;
	border: 1px solid red; background: #FF1B4B; box-shadow: 5px 5px 10px #A0001E, -5px -5px 12px #ffffff;
}

#rstbtn, #lapbtn, #pauseTm{
	color: red;
}

#pickerTm{
	width: 120px;
	height: 40px;
	border-radius: 10px;
	font-weight: bold;
	font-size: 1.1em;
	flex-grow: 1;
	border: 1px solid #F3F3F3; background: #ECF0F3; box-shadow: 8px 8px 16px #c3c3c3, -5px -5px 5px #ffffff;
}
























.tiktok-card {
	width: 100%;
	max-width: 400px !important;
	margin: 0 auto;
	background: white;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 10px rgba(0,0,0,0.1);
	margin-bottom: 40px;
	  }

  .video-container {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
  }

  .video-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
  }

  .tiktok-user-info {
	padding: 15px;
  }

  .floating-actions {
	display: flex;
	justify-content: space-around;
	align-items: center;
	padding: 10px 15px;
	border-top: 1px solid #eee;
  }

  .floating-actions img.profile-photo {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
  }

  .fb-comments {
	margin: 0 15px 15px 15px;
  }






























.user-card {
	width: 320px;
	background: white;
	border-radius: 14px;
	box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	text-align: center;
	padding-bottom: 20px;
	margin-bottom: 10px;
}

.cover-photo {
	width: 100%;
	height: 120px;
	background: url('whatsnext-wallpaper.jpg') no-repeat center/cover;
	position: relative;
}

.cover-photo-wrapper {
    position: relative;
    width: 100%;
    height: 120px;
    overflow: hidden;
}

.cover-background-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.cover-overlay {
    position: relative;
    z-index: 1;
}

.savvy-cover-photo {
	width: 100%;
	height: 120px;
	background: url('1pulse-cover.jpg') no-repeat center/cover;
	position: relative;
	border-radius: 22px;
}

.profile-photo {
	width: 90px;
	height: 90px;
	border-radius: 50%;
	border: 4px solid white;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: -45px;
}

.user-info {
	padding: 50px 20px 10px;
}

.user-info h3 {
	margin: 0;
	font-size: 20px;
	color: #333;
}

.user-info p {
	color: gray;
	font-size: 14px;
	margin: 5px 0;
}

.buttons {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 10px;
}

.formb {
	background: #faa12c;
	color: white;
	border: none;
	padding: 8px 15px;
	cursor: pointer;
	font-size: 14px;
	border-radius: 18px;
	border: solid 2px #fff;
	margin: 5px;
	box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.26);
}

.formb:hover {
	background: #f5ba6d;
}

















.logo {
    width: 60px;
    height: 60px;
    cursor: pointer;
    border-radius: 50%; /* Makes the image round */
    object-fit: cover; /* Ensures the image fits well */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2); /* Adds a subtle shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effect */
}

.logo:hover {
    transform: scale(0.5); /* Slightly enlarges on hover */
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.3); /* Increases shadow on hover */
}


.modal { 
	display: none; 
	position: fixed; 
	top: 50%; left: 50%; 
	transform: translate(-50%, -50%); 
	background: white; padding: 20px; 
	border-radius: 15px; 
	box-shadow: 0px 0px 10px rgba(0,0,0,0.1); 
z-index: 99999;
	padding: 10px; 
	border: 1px solid #ccc;
}
        .modal.active { display: block; }
        .modal form { display: flex; 
			flex-direction: column; 
			gap: 10px; }


.inputs {
  text-align: left;
}

label, input, button {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  outline: none;
  box-sizing: border-box;
}

label {
  margin-bottom: 0px;
}

label:nth-of-type(2) {
  margin-top: 12px;
  border-radius: 10px;
}

input::placeholder {
  color: gray;
}

input {
  background: #ecf0f3;
  font-size: 14px;
  border-radius: 50px;
  box-shadow: inset 6px 6px 6px #cbced1, inset -6px -6px 6px white;
}

.stable {
	width: 250px; height: 350px;
	padding: 15px;
	display: flex;
	overflow: scroll;
	justify-content: space-between;
}
.form {
	display:flex;
	gap: 10px;
}











.modal { 
            display: none; 
			height: 100%;
			width: 100%;
            position: fixed; 
            top: 50%; left: 50%; 
            transform: translate(-50%, -50%); 
            background: rgba(100, 100, 100, 0.288); 
            padding: 20px; 
            border-radius: 0;
            z-index: 99999;
            min-width: 300px;
            max-width: 400px;
        }
        .modal.active { display: block; }

        .stable {
            width: 330px;
            height: 480px;
            padding: 5px;
            display: flex;
            overflow: scroll;
            justify-content: center;
			align-items: center;
			background-color: #ffffff;
			border-radius: 18px;
			box-shadow: 0px 0px 10px rgba(0,0,0,0.1); 
        }

        .form {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        /* Close Button */
        .close-btn {
            position: absolute;
            top: 25px;
            right: 60px;
            font-size: 24px;
            font-weight: bold;
            color: black;
            cursor: pointer;
        }

        .close-btn:hover {
            color: red;
        }
    

		   /* Close Button */
		   .close {
            position: absolute;
            top: 25px;
            right: 60px;
            font-size: 24px;
            font-weight: bold;
            color: black;
            cursor: pointer;
        }

        .close:hover {
            color: red;
        }
    











		.post-card {
			max-width: 400px;
			background: white;
			border-radius: 8px;
			box-shadow: 0px 2px 10px rgba(177, 177, 177, 0.055);
			padding: 15px;
			border: solid 1px rgb(230, 230, 230);
			margin: 5px;
		}

		.post-header {
			display: flex;
			align-items: center;
			gap: 10px;
			margin-bottom: 10px;
		}

		.profile-photo {
			width: 40px;
			height: 40px;
			border-radius: 50%;
		}

		.user-info {
			display: flex;
			flex-direction: column;
		}

		.user-info h4 {
			margin: 0;
			font-size: 16px;
			font-weight: bold;
		}

		.user-info p {
			margin: 0;
			font-size: 12px;
			color: gray;
		}

		.post-content {
			font-size: 14px;
			color: #333;
			margin: 10px 0;
		}

		.post-image {
			width: 100%;
			border-radius: 8px;
			margin-top: 10px;
		}

		.post-actions {
			display: flex;
			justify-content: space-between;
			margin-top: 10px;
			font-size: 14px;
			color: #65676b;
			cursor: pointer;
		}

		.post-actions div:hover {
			color: #1877f2;
		}
	



		
		.pic-post-card {
			width: 400px;
			background: white;
			border-radius: 8px;
			box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
			padding: 15px;
			border: 1px  solid grey;
		}

		.pic-post-header {
			display: flex;
			align-items: center;
			gap: 10px;
			margin-bottom: 10px;
		}

		.pic-profile-photo {
			width: 40px;
			height: 40px;
			border-radius: 50%;
		}

		.pic-user-info {
			display: flex;
			flex-direction: column;
		}

		.pic-user-info h4 {
			margin: 0;
			font-size: 16px;
			font-weight: bold;
		}

		.pic-user-info p {
			margin: 0;
			font-size: 12px;
			color: gray;
		}

		.pic-post-content {
			font-size: 14px;
			color: #333;
			margin: 10px 0;
		}

		.pic-image-grid {
			display: grid;
			gap: 5px;
		}

		.pic-large-image {
			width: 100%;
			height: 200px;
			object-fit: cover;
			border-radius: 8px;
		}

		.pic-small-images {
			display: grid;
			grid-template-columns: repeat(3, 1fr);
			gap: 5px;
			margin-top: 5px;
		}

		.pic-small-image {
			width: 100%;
			height: 80px;
			object-fit: cover;
			border-radius: 6px;
			position: relative;
		}

		.pic-overlay {
			position: absolute;
			width: 100%;
			height: 100%;
			background: rgba(0, 0, 0, 0.5);
			color: white;
			font-size: 20px;
			display: flex;
			align-items: center;
			justify-content: center;
			border-radius: 6px;
			font-weight: bold;
		}

		.pic-post-actions {
			display: flex;
			justify-content: space-between;
			margin-top: 10px;
			font-size: 14px;
			color: #65676b;
			cursor: pointer;
		}

		.pic-post-actions div:hover {
			color: #1877f2;
		}
	









		.ca-contact-card {
			width: 320px;
			background: white;
			border-radius: 12px;
			box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
			text-align: center;
			padding: 20px;
		}

		.ca-profile-photo {
			width: 80px;
			height: 80px;
			border-radius: 50%;
			margin-bottom: 10px;
		}

		.ca-contact-card h2 {
			margin: 5px 0;
			font-size: 20px;
		}

		.ca-contact-card p {
			color: gray;
			font-size: 14px;
			margin: 5px 0 15px;
		}

		.ca-contact-buttons {
			display: flex;
			flex-direction: column;
			gap: 10px;
		}

		.ca-contact-buttons a {
			display: flex;
			align-items: center;
			justify-content: center;
			text-decoration: none;
			font-size: 14px;
			color: white;
			padding: 10px;
			border-radius: 8px;
			font-weight: bold;
		}

		.call { background: #28a745; } /* Green */
		.email { background: #007bff; } /* Blue */
		.whatsapp { background: #25D366; } /* WhatsApp Green */
		.socials { background: #6c757d; } /* Gray */

		.ca-contact-buttons a img {
			width: 18px;
			margin-right: 10px;
		}
	

























/* Universal Animation*/
@keyframes fadeout{
	from{opacity: 1;}
	to{opacity: 0;}
}

@media only screen and (max-width: 200px) {
	.rival-boxes {
			  max-width: 220px;
	}
	.navbar{
		max-width: 100%;
	}
	.navbar button{
		margin: 0px 10px 0px 10px;
  }
}
@media only screen and (max-width: 310px) {
	.rival-boxes {
			  max-width: 200px;
	}
	.navbar{
		max-width: 100%;
	}
	.navbar button{
		margin: 0px 10px 0px 10px;
  }
}
  @media only screen and (max-width: 400px) {
	.rival-boxes {
			  max-width: 350px;
	}
	.navbar{
		max-width: 100%;
	}

	.navbar button{
		margin: 0px 10px 0px 10px;
	}
  }
















































  /* Modal styles */
  .logoModal {
	  display: none;
	  position: fixed;
	  z-index: 100;
	  left: 0;
	  top: 0;
	  width: 100%;
	  height: 100%;
	  background-color: rgba(0,0,0,0.7);
	  overflow-y: auto;
  }
  
  .logoModal-content {
	display: flex;
	justify-content: start;
	align-items: center;
	  background-color: #ffffff;
	  display: flex;
	  margin: 5% auto;
	  padding: 20px;
	  border-radius: 8px;
	  width: 80%;
	  max-width: 800px;
	  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
	  animation: modalFadeIn 0.3s;
  }
  
  @keyframes modalFadeIn {
	  from { opacity: 0; transform: translateY(-20px); }
	  to { opacity: 1; transform: translateY(0); }
  }
  
  .close-modal {
	  color: #aaa;
	  float: right;
	  font-size: 28px;
	  font-weight: bold;
	  cursor: pointer;
  }
  
  .close-modal:hover {
	  color: black;
  }
  
  .company-header {
	  display: flex;
	  align-items: center;
	  gap: 20px;
	  margin-bottom: 20px;
  }
  
  .company-logo-large {
	  width: 120px;
	  height: 120px;
	  border-radius: 50%;
	  object-fit: cover;
  }
  
  .company-info {
	  flex: 1;
  }
  
  .social-links a {
	  margin-right: 15px;
	  color: #3498db;
	  text-decoration: none;
  }
  
  .products-grid {
	  display: grid;
	  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	  gap: 20px;
	  margin-top: 20px;
  }
  









  /*
 Styles for the logo modals 
  */
  .compModal {
    display: none;
    position: fixed;
    z-index: 10000000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    overflow-y: auto;
}

.compModal-content {
	display: flex;
    background-color: #ffffff00;
    margin: 5% auto;
    padding: 20px;
    border-radius: 18px;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    animation: modalFadeIn 0.3s;
	overflow: scroll;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.close-company-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
	padding: 3px;
	border-radius: 25px 0 0 25px;
	height: 40px;
	width: 40px;
	background-color: #ffffff;
}

.close-company-modal:hover {
    color: black;
}

.company-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
	
}

.company-logo-large {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.product-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
}

.post {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.post-image {
    max-width: 100%;
    margin-top: 10px;
}