/*
Theme Name: Twenty Thirteen Child
Theme URI: https://wordpress.org/themes/twentythirteen/
Template: twentythirteen
Author: the WordPress team
Author URI: https://wordpress.org/
Description: The 2013 theme for WordPress takes us back to the blog, featuring a full range of post formats, each displayed beautifully in their own unique way. Design details abound, starting with a vibrant color scheme and matching header images, beautiful typography and icons, and a flexible layout that looks great on any device, big or small.
Tags: blog,one-column,two-columns,right-sidebar,custom-header,custom-menu,editor-style,featured-images,footer-widgets,microformats,post-formats,rtl-language-support,sticky-post,translation-ready,accessibility-ready,block-patterns
Version: 4.5.1772800225
Updated: 2026-03-06 12:30:25

*/

:root {
	--primary: #1C8F8A;
	--secondary: #0F5E5B;
	--accent: #4FB7B2;
	--light: #F5FBFB;
	--dark: #1F2937;
	--white: #FFFFFF;
	--gradient: linear-gradient(135deg, #1C8F8A, #0F5E5B);
}

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

html,
body {
	height: 100%;
	width: 100%;
	overflow-x: hidden;
}

body {
	font-family: 'Inter', sans-serif;
	color: var(--dark);
	background: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
}

.main-wrapper {
	width: 100%;
	min-height: 100%;
	overflow-x: hidden;
}

/* Navbar */
img.header-logo {
	height: 75px;
}

@media(max-width:767px) {
	img.header-logo {
		height: 65px;
	}
}

.navbar-custom {
	background: var(--white);
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
	padding: 12px 0;
	transition: all 0.3s ease;
}

.navbar-custom.scrolled {
	padding: 8px 0;
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

.navbar-brand {
	font-family: 'Poppins', sans-serif;
	font-weight: 800;
	font-size: 1.8rem;
	color: var(--primary) !important;
	letter-spacing: -0.5px;
}

.navbar-brand span {
	color: var(--secondary);
}

.nav-link {
	color: var(--dark) !important;
	font-weight: 500;
	padding: 8px 18px !important;
	transition: all 0.3s ease;
	position: relative;
}

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

.nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 2px;
	background: var(--gradient);
	transition: all 0.3s ease;
	transform: translateX(-50%);
}

.nav-link:hover::after {
	width: 60%;
}

.btn-primary-gradient {
	background: var(--gradient);
	border: none;
	color: var(--white);
	padding: 12px 28px;
	border-radius: 50px;
	font-weight: 600;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(28, 143, 138, 0.3);
}

.btn-primary-gradient:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 25px rgba(28, 143, 138, 0.4);
	color: var(--white);
}

.btn-outline-custom {
	border: 2px solid var(--primary);
	color: var(--primary);
	padding: 12px 28px;
	border-radius: 50px;
	font-weight: 600;
	transition: all 0.3s ease;
	background: transparent;
}

.btn-outline-custom:hover {
	background: var(--gradient);
	border-color: transparent;
	color: var(--white);
	transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
	position: relative;
	min-height: 90%;
	display: flex;
	align-items: center;
	padding: 120px 0 80px;
}

.hero-section::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 120px;
	background: linear-gradient(to top, var(--white), transparent);
}

.hero-content h1 {
	font-size: 3rem;
	color: var(--white);
	line-height: 1.2;
	margin-bottom: 20px;
	text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero-content p {
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.1rem;
	line-height: 1.8;
	margin-bottom: 25px;
}

.hero-features {
	list-style: none;
	padding: 0;
	margin-bottom: 30px;
}

.hero-features li {
	color: var(--white);
	padding: 8px 0;
	font-size: 1rem;
	display: flex;
	align-items: center;
	gap: 12px;
}

.hero-features li i {
	color: var(--accent);
	font-size: 1.2rem;
}

.enquiry-card {
	background: var(--white);
	border-radius: 20px;
	padding: 35px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.enquiry-card h4 {
	color: var(--secondary);
	margin-bottom: 25px;
	font-size: 1.4rem;
}

.form-control {
	border: 2px solid #e5e7eb;
	border-radius: 10px;
	padding: 12px 16px;
	font-size: 0.95rem;
	transition: all 0.3s ease;
}

.form-control:focus {
	border-color: var(--primary);
	box-shadow: 0 0 0 4px rgba(28, 143, 138, 0.1);
}

/* Section Styles */
.section-padding {
	padding: 80px 0;
}

.section-title {
	font-size: 2.5rem;
	color: var(--dark);
	margin-bottom: 15px;
	position: relative;
}

.section-subtitle {
	color: #6b7280;
	font-size: 1.1rem;
	max-width: 600px;
	margin: 0 auto 50px;
}

.text-primary-custom {
	color: var(--primary) !important;
}

/* Trust Section */
.trust-section {
	background: var(--light);
}

.trust-card {
	background: var(--white);
	border-radius: 15px;
	padding: 35px 25px;
	text-align: center;
	box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
	transition: all 0.4s ease;
	height: 100%;
	border: 1px solid rgba(28, 143, 138, 0.1);
}

.trust-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 50px rgba(28, 143, 138, 0.15);
}

.trust-icon {
	width: 80px;
	height: 80px;
	background: var(--gradient);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	font-size: 2rem;
	color: var(--white);
}

.trust-card h5 {
	color: var(--dark);
	font-size: 1.1rem;
	margin-bottom: 10px;
}

.trust-card p {
	color: #6b7280;
	font-size: 0.9rem;
	margin: 0;
}

/* About Section */
.about-section {
	background: var(--white);
}

.about-image {
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.about-image img {
	width: 100%;
	height: 500px;
	object-fit: cover;
}

.gallery-thumb {
	border-radius: 12px;
	overflow: hidden;
	height: 120px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.gallery-thumb:hover {
	transform: scale(1.05);
}

.gallery-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Services Section */
.services-section {
	background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}

.services-section .contact-btn {
	/* text-align: center; */
	padding: 0 0 25px 25px;
}

.manufacturing-query {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px 18px;
	font-size: 14px;
	font-weight: 600;
	color: var(--white);
	background: var(--gradient);
	border-radius: 30px;
	text-decoration: none;
	transition: all .3s ease;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.manufacturing-query i {
	font-size: 16px;
	transition: transform .3s ease;
}

.manufacturing-query:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
	color: var(--white);
}

.manufacturing-query:hover i {
	transform: translateX(4px);
}

.manufacturing-query {
	animation: queryPulse 3s infinite;
}

@keyframes queryPulse {

	0% {
		box-shadow: 0 0 0 0 rgba(28, 143, 138, 0.5);
	}

	70% {
		box-shadow: 0 0 0 10px rgba(28, 143, 138, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(28, 143, 138, 0);
	}

}

.service-card {
	background: var(--white);
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
	transition: all 0.4s ease;
	height: 100%;
	border: 1px solid rgba(28, 143, 138, 0.08);
}

.service-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 50px rgba(28, 143, 138, 0.15);
}

.service-card-img {
	height: 180px;
	overflow: hidden;
	position: relative;
}

.service-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.5s ease;
}

.service-card:hover .service-card-img img {
	transform: scale(1.1);
}

.service-card-body {
	padding: 25px;
}

.service-card h5 {
	color: var(--dark);
	font-size: 1.1rem;
	margin-bottom: 10px;
}

.service-card p {
	color: #6b7280;
	font-size: 0.9rem;
	margin: 0;
}

/* Products Section */
.products-section {
	background: var(--white);
}

.product-card {
	position: relative;
	border-radius: 15px;
	overflow: hidden;
	height: 220px;
	box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
	transition: all 0.4s ease;
}

.product-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.5s ease;
}

.product-card:hover img {
	transform: scale(1.1);
}

.product-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 20px;
	background: linear-gradient(to top, rgba(15, 94, 91, 0.95), transparent);
	color: var(--white);
}

.product-overlay h5 {
	font-size: 1rem;
	margin: 0;
}

/* Why Choose Section */
.why-choose-section {
	background: var(--light);
}

.feature-item {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	padding: 15px 0;
}

.feature-icon {
	width: 50px;
	height: 50px;
	min-width: 50px;
	background: var(--gradient);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	font-size: 1.3rem;
}

.feature-item h6 {
	color: var(--dark);
	margin-bottom: 5px;
	font-size: 1rem;
}

.feature-item p {
	color: #6b7280;
	font-size: 0.9rem;
	margin: 0;
}

/* Process Section */
.process-section {
	background: var(--white);
}

.process-step {
	text-align: center;
	padding: 30px 15px;
	position: relative;
}

.process-step::after {
	content: '';
	position: absolute;
	top: 50px;
	right: -50%;
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, var(--primary), var(--accent));
	z-index: 0;
}

.process-step:last-child::after {
	display: none;
}

.process-number {
	width: 70px;
	height: 70px;
	background: var(--gradient);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--white);
	position: relative;
	z-index: 1;
	box-shadow: 0 5px 25px rgba(28, 143, 138, 0.3);
}

.process-step h6 {
	color: var(--dark);
	font-size: 1rem;
	margin-bottom: 5px;
}

.process-step p {
	color: #6b7280;
	font-size: 0.85rem;
	margin: 0;
}

/* Export Section */
.export-section {
	background: var(--light);
}

.export-image {
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.export-image img {
	width: 100%;
	height: 350px;
	object-fit: cover;
}

/* Partnership Section */
.partnership-section {
	position: relative;
	padding: 100px 0;
	text-align: center;
}

.partnership-section h2 {
	color: var(--white);
	font-size: 2.5rem;
	margin-bottom: 20px;
}

.partnership-section p {
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.1rem;
	margin-bottom: 30px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

/* Contact Section */
.contact-section {
	background: var(--white);
}

.contact-image {
	border-radius: 20px;
	overflow: hidden;
	height: 100%;
	min-height: 400px;
}

.contact-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.contact-form-card {
	background: var(--light);
	border-radius: 20px;
	padding: 40px;
}

/* Contact Info Cards */
.contact-info-card {
	background: var(--white);
	border-radius: 15px;
	padding: 25px;
	text-align: center;
	box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
	height: 100%;
	border: 1px solid rgba(28, 143, 138, 0.1);
	transition: all 0.3s ease;
}

.contact-info-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 40px rgba(28, 143, 138, 0.15);
}

.contact-info-icon {
	width: 60px;
	height: 60px;
	background: var(--gradient);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 15px;
	font-size: 1.5rem;
	color: var(--white);
}

.contact-info-card h6 {
	color: var(--dark);
	margin-bottom: 8px;
}

.contact-info-card p,
.contact-info-card a {
	color: #6b7280;
	font-size: 0.9rem;
	text-decoration: none;
	margin: 0;
}

.contact-info-card a:hover {
	color: var(--primary);
}

/* Footer */
.footer {
	background: var(--dark);
	padding: 60px 0 0;
}

.footer-widget h5 {
	color: var(--white);
	font-size: 1.2rem;
	margin-bottom: 25px;
	position: relative;
	padding-bottom: 12px;
}

.footer-widget h5::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 40px;
	height: 3px;
	background: var(--gradient);
	border-radius: 2px;
}

.footer-widget p {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.95rem;
	line-height: 1.8;
}

.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links li {
	padding: 8px 0;
	color: rgba(255, 255, 255, 0.7);
}

.footer-links li i {
	color: var(--primary) !important;
}

.footer-links a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	font-size: 0.95rem;
	transition: all 0.3s ease;
}

.footer-links a:hover {
	color: var(--accent);
	padding-left: 8px;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 25px 0;
	margin-top: 40px;
}

.footer-bottom p {
	color: rgba(255, 255, 255, 0.6);
	margin: 0;
	font-size: 0.9rem;
}

.social-icons {
	display: flex;
	gap: 12px;
}

.social-icons a {
	width: 42px;
	height: 42px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	font-size: 1.1rem;
	transition: all 0.3s ease;
}

.social-icons a:hover {
	background: var(--gradient);
	transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 991px) {
	.hero-content h1 {
		font-size: 2.2rem;
	}

	.section-title {
		font-size: 2rem;
	}

	.process-step::after {
		display: none;
	}

	.enquiry-card {
		margin-top: 40px;
	}
}

@media (max-width: 767px) {
	.hero-content h1 {
		font-size: 1.8rem;
	}

	.section-padding {
		padding: 50px 0;
	}

	.section-title {
		font-size: 1.7rem;
	}

	.partnership-section h2 {
		font-size: 1.8rem;
	}
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.animate-fade-in {
	animation: fadeInUp 0.6s ease forwards;
}
/* Daffohils Mobile Quick Menu */

#daffohils-mobile-quick-menu {
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 999;
    display: flex;
    justify-content: space-around;
    align-items: center;

    background: var(--white);
    height: 65px;

    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.08);
    border-top: 3px solid var(--primary);
}

#daffohils-mobile-quick-menu a {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-decoration: none;
    font-size: 12px;
    font-weight: 600;

    color: var(--secondary);
    transition: all .3s ease;

    border-right: 1px solid rgba(0, 0, 0, 0.05);
}

#daffohils-mobile-quick-menu a:last-child {
    border-right: none;
}

#daffohils-mobile-quick-menu a:hover {
    background: var(--light);
    color: var(--primary);
}

#daffohils-mobile-quick-menu a i {
    font-size: 22px;
    margin-bottom: 3px;
    color: var(--primary);
    transition: all .3s ease;
}

#daffohils-mobile-quick-menu a:hover i {
    color: var(--secondary);
}

#callll i {
    animation: phonePulse 2s infinite;
}

@keyframes phonePulse {

    0% {
        transform: scale(1)
    }

    10% {
        transform: scale(1.15)
    }

    20% {
        transform: scale(1)
    }

    30% {
        transform: rotate(10deg)
    }

    40% {
        transform: rotate(-10deg)
    }

    50% {
        transform: rotate(10deg)
    }

    60% {
        transform: rotate(0deg)
    }

    100% {
        transform: scale(1)
    }

}

#whatsappp i {
    animation: whatsappGlow 2.5s infinite;
}

@keyframes whatsappGlow {

    0%,
    100% {
        transform: scale(1);
        text-shadow: 0 0 0 transparent;
    }

    50% {
        transform: scale(1.12);
        text-shadow: 0 0 10px var(--accent),
            0 0 15px var(--accent);
    }

}

.custom-primary i {
    animation: sendBounce 2.2s infinite;
}

@keyframes sendBounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0)
    }

    40% {
        transform: translateY(-6px)
    }

    60% {
        transform: translateY(-3px)
    }

}

@media(max-width:767px) {
    .footer {
        padding: 60px 0 50px;
    }
}

.thankyou-box{
    background: var(--white);
    padding:60px 40px;
    border-radius:15px;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
    margin:80px 0;
    position:relative;
    overflow:hidden;
}

.thankyou-box::before{
    content:"";
    position:absolute;
    width:200px;
    height:200px;
    background:var(--gradient);
    opacity:0.1;
    border-radius:50%;
    top:-80px;
    right:-80px;
}

.thankyou-icon{
    width:90px;
    height:90px;
    margin:auto;
    background:var(--gradient);
    color:var(--white);
    font-size:45px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    margin-bottom:25px;
}

.thankyou-box h2{
    font-size:32px;
    color:var(--dark);
    margin-bottom:15px;
}

.thankyou-box p{
    font-size:16px;
    color:#6b7280;
    margin-bottom:30px;
}

.btn-home{
    display:inline-block;
    padding:12px 30px;
    background:var(--gradient);
    color:var(--white);
    border-radius:30px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.btn-home:hover{
    background:var(--secondary);
    transform:translateY(-2px);
}