/* Beauty App - Custom Styles */

:root {
    --primary-color: #019C8C;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
}

/* Typography - ICONICA Brand Fonts */
body {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-weight: 600;
}

.navbar-brand {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-weight: 700;
    font-size: 1.8rem;
}

.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-weight: 600;
}

/* ICONICA Brand Colors */
.text-primary {
    color: #019C8C !important;
}

.bg-primary {
    background-color: #019C8C !important;
}

.btn-primary {
    background-color: #019C8C;
    border-color: #019C8C;
}

.btn-primary:hover {
    background-color: #017a6f;
    border-color: #017a6f;
}

.btn-outline-primary {
    color: #019C8C;
    border-color: #019C8C;
}

.btn-outline-primary:hover {
    background-color: #019C8C;
    border-color: #019C8C;
}

/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header Styles */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

.nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.nav-link.active {
    color: var(--primary-color) !important;
    font-weight: 600;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #00bcd4 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-buttons .btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.hero-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Service Cards */
.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(1, 156, 140, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.card:hover .service-icon {
    background: var(--primary-color);
    color: white !important;
    transform: scale(1.1);
}

.card {
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Feature Icons */
.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(1, 156, 140, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.feature-icon:hover {
    background: var(--primary-color);
    color: white !important;
    transform: scale(1.1);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.footer a {
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--primary-color) !important;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    color: white !important;
    transform: translateY(-2px);
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .hero-buttons .btn:last-child {
        margin-bottom: 0;
    }
}

/* Utility Classes */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #017a6f;
    border-color: #017a6f;
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.text-footer {
    color: #d3d4d5 !important;
}

.card:hover .service-icon {
    background: rgb(195, 235, 227) !important;
    color: white !important;
    transform: scale(1.3);
}

.card:hover .btn-outline-primary {
    background-color: #019C8C !important;
    border-color: #019C8C !important;
    color: white !important;
}

.feature-icon:hover {
    background: rgb(193, 231, 224) !important;
    color: white !important;
    transform: scale(1.3);
}



/**
 * ---------------------------------------------------
 * Doctor - Version 1
 * ---------------------------------------------------
 */

 .doctor-v1 {
	background: #fff;
	padding-top: 50px;
	padding-bottom: 50px;
}

.doctor-v1 .heading {
	margin-bottom: 50px;
}

.doctor-v1 .heading h2 {
	font-size: 30px;
	text-align: center;
	text-transform: uppercase;
	font-weight: 600;
}

.doctor-v1 .heading p {
	font-size: 16px;
	text-align: center;
	color: #333;
}

.doctor-v1 .doctor-carousel {
	position: relative;
}

.doctor-v1 .owl-controls {
	position: absolute;
	top: -60px;
	right: 0;
}

.doctor-v1 .owl-controls .owl-prev,
.doctor-v1 .owl-controls .owl-next {
	background: #333;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
	padding-left: 13px;
	padding-right: 13px;
}

.doctor-v1 .owl-controls .owl-prev i,
.doctor-v1 .owl-controls .owl-next i {
	font-size: 16px;
}

.doctor-v1 .owl-controls .owl-prev:hover,
.doctor-v1 .owl-controls .owl-next:hover {
	background: #1AABDD;
}


.doctor-v1 .text {
	background: #f1f1f1;
	padding: 15px;
}

.doctor-v1 .text h3 {
	text-align: center;
	color: #1AABDD;
	font-weight: bold;
	font-size: 18px;
	margin-bottom: 5px;
}

.doctor-v1 .text p {
	text-align: center;
	font-size: 14px;
	margin-bottom: 0;
}

.doctor-v1 .item .thumb {
	position: relative;
	overflow: hidden;
}

.doctor-v1 .item .thumb .photo {
	width: 100%;
	height: 275px;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	background-position: top center;
}

.doctor-v1 .item:hover .thumb img {
	width: 100%;
}

.doctor-v1 .item .thumb .overlay {
	width: 100%;
	height: 100%;
	opacity: 0;
	filter: alpha(opacity=0);
	position: absolute;
	top: 0;
	left: 0;
	-webkit-transform: scale(0.2);
    -ms-transform: scale(0.2);
    -o-transform: scale(0.2);
    transform: scale(0.2);
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
	background: rgba(32, 60, 67, 0.6);
}

.doctor-v1 .item:hover .thumb .overlay {
	opacity: 1;
	-webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.doctor-v1 .item:hover .text h3 a {
	color: #fff!important;
}



.doctor-v1 .item .social-icons {
	width: 100%;
	height: 100%;
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	-webkit-transition: all 0.6s ease;
	transition: all 0.6s ease;
}

.doctor-v1 .item:hover .social-icons {
	opacity: 1;
	filter: alpha(opacity=1);
}

.doctor-v1 .social-icons ul {
	text-align: center;
	margin-top: calc(100% - 40px);
}

.doctor-v1 .social-icons ul li {
	list-style-type: none;
	margin-bottom: 10px;
	display: inline-block;
	margin-right: 5px;
}

.doctor-v1 .social-icons ul li a {
	width: 30px;
	line-height: 30px;
	background: #1AABDD;
	color: #fff;
	display: block;
	text-align: center;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	transition: all 0.4s ease;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	font-size: 16px!important;
}

.doctor-v1 .item:hover .social-icons ul li a:hover {
	background: #333!important;
}

.doctor-v1 .item:hover .text {
	background: #1AABDD;
	color: #fff;
}

.doctor-v1 .item:hover .text h3,
.doctor-v1 .item:hover .text h3 a,
.doctor-v1 .item:hover .text p {
	color: #fff;
}



/**
 * ---------------------------------------------------
 * Doctor - Version 2
 * ---------------------------------------------------
 */

 .doctor-v2 {
	background: #fff;
	padding-top: 50px;
	padding-bottom: 50px;
}

.doctor-v2 .heading {
	margin-bottom: 50px;
}

.doctor-v2 .heading h2 {
	font-size: 30px;
	text-align: center;
}

.doctor-v2 .heading p {
	font-size: 16px;
	text-align: center;
	color: #333;
}

.doctor-v2 .doctor-carousel {
	position: relative;
}

.doctor-v2 .owl-controls {
	position: absolute;
	top: -60px;
	right: 0;
}

.doctor-v2 .owl-controls .owl-prev,
.doctor-v2 .owl-controls .owl-next {
	background: #333;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
	padding-left: 13px;
	padding-right: 13px;
}

.doctor-v2 .owl-controls .owl-prev i,
.doctor-v2 .owl-controls .owl-next i {
	font-size: 16px;
}

.doctor-v2 .owl-controls .owl-prev:hover,
.doctor-v2 .owl-controls .owl-next:hover {
	background: #1AABDD;
}

.doctor-v2 .item .thumb .photo {
	width: 100%;
	height: 275px;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	background-position: top center;
}


.doctor-v2 .text {
	background: #f1f1f1;
	padding: 15px;
}

.doctor-v2 .text h3 {
	text-align: center;
	color: #1AABDD;
	font-weight: bold;
	font-size: 18px;
	margin-bottom: 5px;
}

.doctor-v2 .text p {
	text-align: center;
	font-size: 14px;
	margin-bottom: 0;
}

.doctor-v2 .item .thumb {
	position: relative;
	overflow: hidden;
}

.doctor-v2 .social-icons {
	margin-top: 15px;
}

.doctor-v2 .social-icons ul {
	text-align: center;
}

.doctor-v2 .social-icons ul li {
	list-style-type: none;
	display: inline-block;
	margin-right: 10px;
}

.doctor-v2 .social-icons ul li a {
	width: 30px;
	line-height: 30px;
	background: #1AABDD;
	color: #fff;
	display: block;
	text-align: center;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	transition: all 0.4s ease;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	font-size: 16px!important;
}

.doctor-v2 .social-icons ul li a:hover {
	background: #333;
}



