        /* ==========================================
		   GLOBAL VARIABLES
		========================================== */
	:root {
		--primary: #0e286d;
		--secondary: #0c3c60;
		--light-blue: #a1c4fd;
		--light-gradient: linear-gradient(135deg, #a1c4fd, #c2e9fb);
		--alt-section-bg: #a1c4fd30;
		--dark-blue: #012245;
		--teal: #036c82;
		--dark: #060b19;
		--black: #010510;
		--white: #ffffff;
		--text: #333333;
	}
	/* ==========================================
	   COMMON ELEMENTS
	========================================== */
	.phd-section-badge {
		display: inline-block;
		padding: 8px 18px;
		border-radius: 50px;
		background: rgba(14,40,109,0.15);
		color: var(--primary);
		font-size: 14px;
		font-weight: 600;
		margin-bottom: 15px;
		letter-spacing: .5px;
	}
	section h2 {
		font-size: 42px;
		font-weight: 700;
		color: var(--dark-blue);
		margin-bottom: 20px;
	}
	section p {
		font-size: 17px;
		line-height: 1.8;
		color: #555;
	}
	a {
		text-decoration: none;
	}
	/* Responsive Heading */
	@media (max-width: 991px) {
		section h2 {
			font-size: 36px;
		}
	}
	@media (max-width: 767px) {
		section h2 {
			font-size: 30px;
			margin-bottom: 15px;
		}
	}
	@media (max-width: 480px) {
		section h2 {
			font-size: 26px;
		}
	}
	/* ==========================================
	   HEADER
	========================================== */
	.phd-header {
		background: #ffffff;
		position: sticky;
		top: 0;
		z-index: 999;
		box-shadow: 0 5px 20px rgba(0,0,0,.08);
	}
	.phd-header .navbar {
		padding: 10px;
	}
	.phd-logo {
		max-height: 55px;
	}
	.phd-header-actions {
		display: flex;
		align-items: center;
		gap: 15px;
	}
	.phd-header-link {
		color: var(--primary);
		font-weight: 600;
		padding: 10px 15px;
		display:flex;
    	align-items:center;
    	gap:7px;
    	text-decoration:none;
	}
	.phd-header-link i {
		font-size:18px;
		margin-right: 6px;
		color: var(--primary);
	}
	.phd-header-btn {
		background: var(--primary);
		color: var(--white);
		padding: 12px 24px;
		border-radius: 50px;
		font-weight: 600;
		transition: .3s;
	}
	.phd-header-btn:hover {
		background: var(--light-blue);
		color: var(--secondary);
	}
	/* Mobile Header */
	@media(max-width:767px){
		.phd-logo{
			max-width:120px;
		}
		.phd-header-actions{
			gap:8px;
		}	
		.phd-header-link span{
			display:none;
		}
		.phd-header-link{
			width:38px;
			height:38px;
			justify-content:center;
			border-radius:50%;
		}
		.phd-header-link i{
			font-size:18px;
		}
		.phd-header-btn{
			padding:8px 12px;
			font-size:12px;
			white-space:nowrap;
		}
	}
	/* ==========================================
	   HERO SECTION
	========================================== */
	.phd-hero {
		background: radial-gradient(circle at top right, rgba(161,196,253,.5) 0%, transparent 35%), 
			linear-gradient(135deg, #f8fbff 0%, #eaf5ff 45%, #d7edff 100%);
		position: relative;
		overflow: hidden;
	}
	.phd-hero::before {
		content: "";
		position: absolute;
		width: 500px;
		height: 500px;
		background: rgba(161,196,253,.15);
		border-radius: 50%;
		top: -200px;
		right: -150px;
	}
	.phd-hero-content {
		position: relative;
		z-index: 1;
		padding: 50px 10px;
	}
	.phd-hero-badge {
		display: inline-block;
		background: rgba(14,40,109,0.15);
		color: var(--primary);
		padding: 8px 20px;
		border-radius: 50px;
		font-size: 14px;
		font-weight: 600;
		margin-bottom: 20px;
	}
	.phd-hero h1 {
		color: var(--dark-blue);
		font-size: 42px;
		line-height: 1.2;
		font-weight: 700;
		margin-bottom: 20px;
	}
	.phd-hero-text {
		color: var(--secondary);
		font-size: 18px;
		max-width: 650px;
		margin-bottom: 20px;
	}
	/* ==========================================
	   HERO FEATURES
	========================================== */
	.phd-hero-features {
		display: grid;
		grid-template-columns: repeat(2,1fr);
		gap: 15px;
		margin-bottom: 20px;
	}
	.phd-feature-item {
		display:flex;
		align-items:center;
		gap:10px;
		color:var(--secondary);
		font-size:16px;
	}
	.phd-feature-item i {
		color:var(--teal);
		font-size:20px;
	}
	/* ==========================================
	   HERO BUTTONS
	========================================== */
	.phd-hero-buttons {
		display:flex;
		gap:15px;
		flex-wrap:wrap;
	}
	.phd-btn-primary {
		display:inline-flex;
		align-items:center;
		justify-content:center;
		background:var(--primary);
		border:2px solid var(--light-blue);
		color:white;
		padding:14px 32px;
		border-radius:50px;
		font-weight:600;
		transition:.3s;
	}
	.phd-btn-primary:hover {
		background:var(--light-blue);
		color:var(--primary);
	}
	.phd-btn-secondary {
		display: inline-flex;
    		align-items: center;
    		justify-content: center;
    		background: var(--white);
    		border: 2px solid var(--light-blue);
    		color: var(--secondary);
    		padding: 14px 32px;
    		border-radius: 50px;
    		font-weight: 600;
    		transition: .3s;	
	}
	.phd-btn-secondary:hover {
		background:var(--light-blue);
		color:var(--primary);
	}
	/* ==========================================
	   PHD HERO IMAGE
	========================================== */
	.phd-hero-image{
   	 	display:flex;
    		align-items:flex-end;
    		justify-content:center;
    		height:100%;
		padding-top:50px;
	}

	.phd-hero-image img{
    		width:auto;
    		height:100%;
    		max-width:none;
		max-height: 580px;
	}
	@keyframes floatImage{
		0%,100%{
			transform:translateY(0);
		}
		50%{
			transform:translateY(-10px);
		}
	}
	@media(max-width:991px){
		.phd-hero-image{
			margin-top:0px;
			padding-top:30px;
		}
		.phd-hero-image img{
			max-height:420px;
		}
	}
	/* ==========================================
	   HERO RESPONSIVE
	========================================== */
	@media (max-width: 991px) {
		.phd-hero-content {
		padding: 50px 10px 0px;
	}
	}

	@media (max-width: 767px) {
		.phd-hero h1 {
        	font-size: 30px;
       		line-height: 1.25;
        	margin-bottom: 18px;
    	}
	}
	@media(max-width:576px){
		.phd-hero-features {
			grid-template-columns:1fr;
		}
		.phd-hero-buttons a {
			width:100%;
		}
	}
	@media (max-width: 480px) {
    	.phd-hero h1 {
        	font-size: 26px;
        	line-height: 1.3;
    	}
	}
	/* ==========================================
	   TRUST BAR SECTION
	========================================== */
	.phd-trust-bar {
		background:#ffffff;
		padding:40px 10px;
		position:relative;
		z-index:5;
	}
	.phd-trust-card {
		display:flex;
		align-items:flex-start;
		flex-direction: column;
		gap:15px;
		background:white;
		padding:25px;
		height:100%;
		border-radius:15px;
		box-shadow:0 10px 30px rgba(0,0,0,.08);
		transition:.3s;
	}
	.phd-trust-card:hover {
		transform:translateY(-8px);
	}
	.phd-trust-icon {
		min-width:55px;
		height:55px;
		border-radius:50%;
		display:flex;
		align-items:center;
		justify-content:center;
		background:var(--light-gradient);
		color:var(--primary);
		font-size:24px;
	}
	.phd-trust-card h4 {
		font-size:18px;
		color:var(--dark-blue);
		margin-bottom:8px;
	}
	.phd-trust-card p {
		font-size:14px;
		line-height:1.6;
		margin:0;
	}
	/* ==========================================
	   WHY PURSUE PhD SECTION
	========================================== */
	.phd-why-section {
		padding:90px 10px;
		background: var(--alt-section-bg);
	}
	.phd-image-wrap {
		border-radius:25px;
		overflow:hidden;
		box-shadow:0 20px 50px rgba(0,0,0,.12);
	}
	.phd-image-wrap img {
		width:100%;
		display:block;
	}
	.phd-section-content h2 {
		margin-bottom:20px;
	}
	/* BENEFIT LIST */
	.phd-benefit-list {
		margin-top:30px;
	}
	.phd-benefit-item {
		display:flex;
		gap:18px;
		margin-bottom:25px;
	}
	.phd-benefit-icon {
		min-width:50px;
		height:50px;
		background:rgba(14,40,109,.15);
		color:var(--primary);
		border-radius:12px;
		display:flex;
		align-items:center;
		justify-content:center;
		font-size:22px;
	}
	.phd-benefit-item h4 {
		font-size:20px;
		color:var(--dark-blue);
		margin-bottom:5px;
	}
	.phd-benefit-item p {
		margin:0;
		font-size:15px;
	}
	/* RESPONSIVE */
	@media(max-width:991px){
		.phd-trust-bar {
			margin-top:0;
		}
	}
	/* ==========================================
	   WHY CHOOSE SIILAP SECTION
	========================================== */
	.phd-siilap-section {
		padding:90px 10px;
		background:#ffffff;
	}
	.phd-service-card {
		height:100%;
		padding:35px 30px;
		background:#fff;
		border-radius:18px;
		border:1px solid #eef2f7;
		box-shadow:0 10px 30px rgba(0,0,0,.06);
		transition:.3s;
	}
	.phd-service-card:hover {
		transform:translateY(-8px);
		box-shadow:0 20px 45px rgba(0,0,0,.12);
	}
	.phd-service-icon {
		width:65px;
		height:65px;
		border-radius:15px;
		display:flex;
		align-items:center;
		justify-content:center;
		background:var(--light-gradient);
		color:var(--primary);
		font-size:28px;
		margin-bottom:25px;
	}
	.phd-service-card h3 {
		color:var(--dark-blue);
		font-size:22px;
		margin-bottom:12px;
	}
	.phd-service-card p {
		font-size:15px;
		margin:0;
	}
	/* ==========================================
	   UNIVERSITY SECTION
	========================================== */
	.phd-university-section {
		padding:90px 10px;
		background: var(--alt-section-bg);
	}
	.phd-university-image {
		border-radius:25px;
		overflow:hidden;
		box-shadow:0 20px 50px rgba(0,0,0,.12);
	}
	.phd-university-image img {
		width:100%;
		display:block;
	}
	.phd-university-content h2 {
		margin-bottom:20px;
	}
	.phd-university-points {
		margin:30px 0;
	}
	.phd-university-point {
		display:flex;
		align-items:center;
		gap:12px;
		margin-bottom:15px;
		font-size:16px;
		color:#444;
	}
	.phd-university-point i {
		color:var(--teal);
		font-size:20px;
	}
	.phd-university-content .phd-btn-primary {
		margin-top:10px;
	}
	/* RESPONSIVE */
	@media(max-width:991px){
		.phd-service-card {
			padding:30px 25px;
		}
	}
	/* ==========================================
	   PhD SPECIALIZATIONS SECTION
	========================================== */
	.phd-specializations-section {
		padding:90px 10px;
		background:#ffffff;
	}
	/* CATEGORY TABS */
	#phdCategoryTabs {
		gap:15px;
	}
	#phdCategoryTabs .nav-link {
		border-radius:50px;
		padding:12px 28px;
		font-weight:600;
		color:var(--primary);
		background:rgba(14,40,109,.15);
		transition:.3s;
	}
	#phdCategoryTabs .nav-link:hover {
		background:rgba(14,40,109,.15);
	}
	#phdCategoryTabs .nav-link.active {
		background:var(--primary);
		color:white;
	}
	/* DEPARTMENT CARD */
	.phd-department-card {
		height:100%;
		background:#fff;
		padding:35px 30px;
		border-radius:20px;
		border:1px solid #edf1f7;
		box-shadow:0 10px 30px rgba(0,0,0,.06);
		transition:.3s;
	}
	.phd-department-card:hover {
		transform:translateY(-8px);
		box-shadow:0 20px 45px rgba(0,0,0,.12);
	}
	.phd-department-icon {
		width:65px;
		height:65px;
		border-radius:15px;
		background:var(--light-gradient);
		display:flex;
		align-items:center;
		justify-content:center;
		color:var(--primary);
		font-size:28px;
		margin-bottom:25px;
	}
	.phd-department-card h3 {
		font-size:22px;
		color:var(--dark-blue);
		margin-bottom:12px;
	}
	.phd-department-card p {
		font-size:15px;
		margin-bottom:20px;
	}
	/* VIEW SPECIALIZATION BUTTON */
	.phd-department-card .btn-link {
		color:var(--primary);
		font-weight:600;
		text-decoration:none;
	}
	.phd-department-card .btn-link:hover {
		color:var(--primary);
	}
	/* COLLAPSE LIST */
	.phd-department-card ul {
		padding-left:20px;
	}
	.phd-department-card ul li {
		margin-bottom:8px;
		color:#555;
		font-size:15px;
	}
	/* MOBILE */
	@media(max-width:767px){
		#phdCategoryTabs {
			flex-direction:column;
			align-items:stretch;
		}
		#phdCategoryTabs .nav-link {
			width:100%;
		}
	}
	/* ==========================================
	   ELIGIBILITY SECTION
	========================================== */
	.phd-eligibility-section {
		padding:90px 10px;
		background: var(--alt-section-bg);
	}
	.phd-eligibility-content h2 {
		margin-bottom:20px;
	}
	.phd-eligibility-list {
		margin-top:35px;
	}
	.phd-eligibility-item {
		display:flex;
		gap:18px;
		margin-bottom:25px;
		align-items:flex-start;
	}
	.phd-eligibility-item .icon {
		width:50px;
		height:50px;
		flex-shrink:0;
		border-radius:12px;
		display:flex;
		align-items:center;
		justify-content:center;
		background:rgba(3,108,130,.12);
		color:var(--teal);
		font-size:22px;
	}
	.phd-eligibility-item h4 {
		color:var(--dark-blue);
		font-size:20px;
		margin-bottom:6px;
	}
	.phd-eligibility-item p {
		margin:0;
		font-size:15px;
	}
	/* ELIGIBILITY CTA CARD */
	.phd-eligibility-card {
		background:white;
		padding:40px 35px;
		border-radius:25px;
		text-align:center;
		box-shadow:0 20px 50px rgba(0,0,0,.1);
	}
	.phd-eligibility-card > i {
		font-size:55px;
		color:var(--primary);
		margin-bottom:20px;
	}
	.phd-eligibility-card h3 {
		font-size:28px;
		color:var(--dark-blue);
		margin-bottom:15px;
	}
	/* ==========================================
	   ADMISSION PROCESS SECTION
	========================================== */
	.phd-process-section {
		padding:90px 10px;
		background:#ffffff;
	}
	.phd-process-wrapper {
		max-width:850px;
		margin:auto;
		position:relative;
	}
	.phd-process-wrapper::before {
		content:"";
		position:absolute;
		left:40px;
		top:0;
		bottom:0;
		width:3px;
		background:linear-gradient(
			to bottom,
			#a1c4fd,
			#036c82
		);
	}
	.phd-process-item {
		display:flex;
		gap:35px;
		position:relative;
		margin-bottom:45px;
	}
	.phd-process-number {
		width:80px;
		height:80px;
		flex-shrink:0;
		border-radius:50%;
		background:var(--primary);
		color:white;
		display:flex;
		align-items:center;
		justify-content:center;
		font-size:22px;
		font-weight:700;
		position:relative;
		z-index:2;
	}
	.phd-process-content {
		background:white;
		border-radius:18px;
		padding:25px 30px;
		box-shadow:0 10px 30px rgba(0,0,0,.08);
		flex:1;
	}
	.phd-process-content h3 {
		color:var(--dark-blue);
		font-size:22px;
		margin-bottom:10px;
	}
	.phd-process-content p {
		margin:0;
		font-size:15px;
	}
	/* MOBILE */
	@media(max-width:767px){
		.phd-process-wrapper::before {
			left:25px;
		}
		.phd-process-item {
			gap:20px;
		}
		.phd-process-number {
			width:55px;
			height:55px;
			font-size:16px;
		}
		.phd-process-content {
			padding:20px;
		}
	}
	/* ==========================================
	   FEE STRUCTURE SECTION
	========================================== */
	.phd-fee-section {
		padding:90px 10px;
		background: var(--alt-section-bg);
	}
	.phd-fee-card {
		height:100%;
		background:white;
		padding:35px 30px;
		border-radius:20px;
		text-align:center;
		box-shadow:0 10px 30px rgba(0,0,0,.06);
		border:1px solid #edf1f7;
		transition:.3s;
	}
	.phd-fee-card:hover {
		transform:translateY(-8px);
		box-shadow:0 20px 45px rgba(0,0,0,.12);
	}
	.phd-fee-icon {
		width:70px;
		height:70px;
		margin:0 auto 25px;
		border-radius:50%;
		display:flex;
		align-items:center;
		justify-content:center;
		background:var(--light-gradient);
		color:var(--primary);
		font-size:30px;
	}
	.phd-fee-card h3 {
		color:var(--dark-blue);
		font-size:22px;
		margin-bottom:15px;
	}
	.phd-fee-card p {
		font-size:15px;
		margin:0;
	}
	/* ==========================================
	   TESTIMONIAL SECTION
	========================================== */
	.phd-testimonial-section {
		padding:90px 10px;
		background:white;
	}
	.phd-testimonial-card {
		height:100%;
		background:#ffffff;
		padding:35px 30px;
		border-radius:20px;
		box-shadow:0 10px 30px rgba(0,0,0,.07);
		border:1px solid #edf1f7;
		transition:.3s;
	}
	.phd-testimonial-card:hover {
		transform:translateY(-8px);
		box-shadow:0 20px 45px rgba(0,0,0,.12);
	}
	.phd-rating {
		color:#ffb400;
		margin-bottom:20px;
	}
	.phd-rating i {
		margin-right:3px;
	}
	.phd-testimonial-card p {
		font-size:16px;
		font-style:italic;
		line-height:1.8;
		margin-bottom:25px;
	}
	.phd-student-info{
		display:flex;
		align-items:center;
		justify-content: space-around;
		gap:15px;
		margin-top:25px;
		padding-top:20px;
		border-top:1px solid #edf1f7;
	}
	.phd-student-avatar{
		width:80px;
		height:80px;
		border-radius:50%;
		overflow:hidden;
		flex-shrink:0;
		border:3px solid rgba(14,40,109,.1);
	}
	.phd-student-avatar img{
		width:100%;
		height:100%;
		object-fit:cover;
		display:block;
	}
	.phd-student-details h4{
		margin:0 0 5px;
		font-size:18px;
		color:var(--dark-blue);
	}
	.phd-student-details p{
		margin:0;
		font-size:14px;
		color:#555;
	}
	.phd-student-details small{
		display:block;
		font-size:13px;
		color:var(--teal);
		margin-top:3px;
	}
	.phd-student-details .phd-counsellor{
		color:#888;
		margin-top:6px;
	}
	/* ==========================================
	   FAQ SECTION
	========================================== */
	.phd-faq-section {
		padding:90px 10px;
		background:var(--alt-section-bg);
	}
	#phdFaqAccordion {
		border-radius:15px;
		overflow:hidden;
	}
	#phdFaqAccordion .accordion-item {
		border:none;
		margin-bottom:15px;
		border-radius:15px;
		overflow:hidden;
		box-shadow:0 8px 25px rgba(0,0,0,.06);
	}
	#phdFaqAccordion .accordion-button {
		padding:22px 25px;
		font-size:18px;
		font-weight:600;
		color:var(--dark-blue);
		background:white;
	}
	#phdFaqAccordion .accordion-button:not(.collapsed) {
		background:var(--primary);
		color:white;
		box-shadow:none;
	}
	#phdFaqAccordion .accordion-button:focus {
		box-shadow:none;
	}
	#phdFaqAccordion .accordion-body {
		padding:25px;
		background:white;
		color:#555;
		line-height:1.8;
	}
	/* ==========================================
	   FINAL CTA SECTION
	========================================== */
	.phd-final-cta-section {
		padding:80px 10px;
		background:white;
	}
	.phd-cta-box {
		background:linear-gradient(
			135deg,
			#0e286d,
			#0c3c60
		);
		border-radius:30px;
		padding:55px;
		position:relative;
		overflow:hidden;
	}
	.phd-cta-box::after {
		content:"";
		position:absolute;
		width:350px;
		height:350px;
		background:rgba(161,196,253,.15);
		border-radius:50%;
		right:-100px;
		top:-100px;
	}
	.phd-cta-box h2 {
		color:white;
		position:relative;
		z-index:2;
	}
	.phd-cta-box p {
		color:rgba(255,255,255,.85);
		position:relative;
		z-index:2;
	}
	.phd-cta-box .phd-section-badge {
		background:rgba(255,255,255,.15);
		color:white;
	}
	.phd-cta-buttons {
		display:flex;
		flex-direction:column;
		gap:15px;
		position:relative;
		z-index:2;
	}
	.phd-btn-outline {
		display:inline-flex;
		justify-content:center;
		align-items:center;
		gap:8px;
		padding:14px 30px;
		border:2px solid var(--light-blue);
		color:white;
		border-radius:50px;
		font-weight:600;
	}
	.phd-btn-outline:hover {
		background:white;
		color:var(--primary);
	}
	/* ==========================================
	   FOOTER SECTION
	========================================== */
	.phd-footer {
		background:#060b19;
		color:white;
		padding:70px 10px 20px;
	}
	.footer-logo {
		max-width:160px;
		margin-bottom:20px;
	}
	.footer-about p {
		color:rgba(255,255,255,.7);
		font-size:15px;
	}
	.phd-footer h4 {
		color:white;
		font-size:20px;
		margin-bottom:25px;
	}
	.footer-links,
	.footer-contact {
		list-style:none;
		padding:0;
	}
	.footer-links li,
	.footer-contact li {
		margin-bottom:12px;
		color:rgba(255,255,255,.75);
		font-size:15px;
	}
	.footer-links a, .footer-contact a {
		color:rgba(255,255,255,.75);
	}
	.footer-links a:hover {
		color:white;
	}
	.footer-contact i {
		color:var(--white);
		margin-right:8px;
	}
	.footer-bottom {
		border-top:1px solid rgba(255,255,255,.15);
		margin-top:40px;
		padding-top:20px;
	}
	.footer-bottom p,
	.footer-bottom a {
		color:rgba(255,255,255,.65);
		font-size:14px;
		margin-bottom: 0;
	}
	/* ==========================================
	   FLOATING BUTTONS
	========================================== */
	.floating-whatsapp,
	.floating-call {
		position:fixed;
		right:25px;
		width:60px;
		height:60px;
		border-radius:50%;
		display:flex;
		align-items:center;
		justify-content:center;
		color:white;
		font-size:28px;
		z-index:999;
		box-shadow:0 10px 25px rgba(0,0,0,.2);
	}
	.floating-whatsapp {
		bottom:95px;
		background:#25d366;
	}
	.floating-call {
		bottom:25px;
		background:var(--teal);
	}
	.floating-whatsapp:hover,
	.floating-call:hover {
		color:white;
		transform:translateY(-5px);
	}
	.floating-whatsapp, .floating-call{
    		opacity:0;
    		visibility:hidden;
    		transform:translateY(20px);
    		transition:all .3s ease;
	}
	.floating-whatsapp.show, .floating-call.show{
    		opacity:1;
    		visibility:visible;
    		transform:translateY(0);
	}
	/* ==========================================
	   MOBILE CTA
	========================================== */
	@media(max-width:767px){
		.phd-cta-box {
			padding:35px 25px;
		}
		.phd-cta-box h2 {
			font-size:30px;
		}
		.footer-bottom {
			text-align:center;
		}
	}
	.phd-popup{
		border:0;
		border-radius:18px;
		overflow:hidden;
		box-shadow:0 20px 60px rgba(0,0,0,.15);
	}
	.phd-popup .modal-header{
		padding:30px 30px 10px;
	}
	.phd-popup .modal-body{
		padding:10px 30px 30px;
	}
	.phd-popup h3{
		font-size:30px;
		font-weight:700;
		color:var(--dark-blue);
		margin-bottom:8px;
	}
	.popup-subtitle{
		color:#666;
		font-size:15px;
	}
	.phd-popup .form-control,
	.phd-popup .form-select{
		height:52px;
		border-radius:10px;
		border:1px solid #d9dee8;
	}
	.phd-popup .form-control:focus,
	.phd-popup .form-select:focus{
		border-color:var(--primary);
		box-shadow:0 0 0 .2rem rgba(14,40,109,.15);
	}
	#error_text .alert{
		font-size:14px;
		padding:10px 12px;
		margin-bottom:15px;
	}
	@media(max-width:767px){
		.phd-popup .modal-header{
			padding:25px 20px 10px;
		}
		.phd-popup .modal-body{
			padding:10px 20px 25px;
		}
		.phd-popup h3{
			font-size:24px;
		}
	}