/* 
This file contains the main styles for the website, including layout, typography, and color schemes. 
*/

:root {
    --primary-color: #1A5F78;
    --secondary-color: #E4B109;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-bg: #f5f5f5;
    --gray-border:#e8e8e8;
    --light-color: #fff;
    --gray-color: #f5f5f5;
    
    
}
.bg-primary,.btn-primary{
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    
}
.text-primary{
    color: var(--primary-color) !important;
    font-weight: 600;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f4f4f4;
}

header {
    color: #fff;
    padding:  0;
    text-align: center;
}

nav {
    margin: 0;
}

nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
}

h1, h2, h3 {
    margin: 0;
    font-weight: 600;
}

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

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Top Bar Styles */
.top-bar {
    background: var(--primary-color);
    color: var(--light-color);
    padding: 10px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    margin-right: 20px;
    font-size: 14px;
}

.social-links a {
    color: white;
    margin-left: 15px;
    text-decoration: none;
}

.social-icon {
    color: var(--light-color);
    margin-left: 15px;
    font-size: 16px;
    transition: color 0.3s;
}

.social-icon:hover {
    color: var(--secondary-color);
}

/* Navbar Styles */
.navbar {
    background: var(--light-color);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 80px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li a {
    color: var(--secondary-color);
    text-decoration: none;
    padding: 10px 20px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--secondary-color);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    background: var(--primary-color);
    height: 3px;
    width: 25px;
    margin: 4px 0;
    transition: all 0.3s ease;
}

/* Show Hamburger on Smaller Screens */
@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
    }
   
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 0;
        background: var(--light-color);
        width: 100%;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
        color: var(--secondary-color);
    }

    .nav-links li {
        text-align: center;
        padding: 10px 0;
    }

    .nav-links li a {
        padding: 10px;
        font-size: 1.2em;
    }
}

/* Hero Section */
.hero-slider {
    position: relative;
    height: calc(100vh - 130px);
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Overlay color */
    z-index: 1;
}

.slide:nth-child(1) { background-image: url('../img/hero-1.jpg'); }
.slide:nth-child(2) { background-image: url('../img/hero-2.jpg'); }
.slide:nth-child(3) { background-image: url('../img/hero-3.jpg'); }

.slide.active {
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 2; /* Place content above overlay */
    color: white; /* Make text white */
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
}

.slider-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3; /* Place buttons above overlay */
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

slider-nav button:focus {
    outline: none;
}

.prev-slide { 
    left: 20px; 
}

.next-slide { 
    right: 20px; 
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 24px;
    cursor: pointer;
    animation: bounce 2s infinite;
    z-index: 3; /* Place above overlay */
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-20px); }
    60% { transform: translateY(-10px); }
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
}

.hero-content h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s;
}

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

.secondary-btn {
    background: transparent;
    color: var(--light-color);
    border: 2px solid var(--light-color);
}

.primary-btn:hover {
    background: var(--secondary-color);
    color: #000;
}

.secondary-btn:hover {
    background: var(--light-color);
    color: var(--text-color);
}

/* Features Section */
.features {
    padding: 20px 0;
    background-color: var(--light-bg);
    text-align: center;
}

.features .section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: white;
    border: 1px solid var(--gray-border);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    border: 1px solid var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-card i {
    font-size: 2.5em;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 1em;
    color: #666;
    line-height: 1.6;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Products Preview Section */
.products-preview {
    padding: 40px 0;
    background-color: var(--light-color);
    text-align: center;
}

.products-preview h2 {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.product-card h3 {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.product-card p {
    font-size: 1em;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-card .btn {
    padding: 10px 20px;
    font-size: 1em;
    background: var(--secondary-color);
    color: white;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.product-card .btn:hover {
    background: #d4a007;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .product-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 576px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer Styles */
.footer {
    background: #121212;
    color: white;
    padding: 50px 5% 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section {
    text-align: left;
}

.footer-logo {
    width: 150px;
    margin-bottom: 15px;
}

.footer-section h4 {
    margin-bottom: 15px;
    font-size: 1.2em;
    color: var(--secondary-color);
}

.footer-section p {
    font-size: 0.95em;
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    font-size: 0.95em;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
}

.social-links {
    margin-top: 10px;
}

.social-icon {
    color: white;
    font-size: 1.2em;
    margin-right: 10px;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9em;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section {
        margin-bottom: 20px;
    }
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 40px 0;
    background-color: var(--light-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

.section-header p {
    color: #666;
    font-size: 1.1em;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 20px;
}

.why-choose-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.why-choose-item:hover {
    transform: translateY(-10px);
}

.icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    transition: background-color 0.3s ease;
}

.why-choose-item:hover .icon-box {
    background: var(--secondary-color);
}

.why-choose-item h3 {
    color: var(--primary-color);
    margin: 15px 0;
    font-size: 1.3em;
}

.why-choose-item p {
    color: #666;
    font-size: 0.95em;
    line-height: 1.6;
}

/* Responsive styles for Why Choose Us section */
@media screen and (max-width: 992px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 576px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 2em;
    }
}

/* Top-Grade Mosquito Nets Section */
.top-grade-nets {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.nets-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.nets-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.nets-content h2 {
    font-size: 2.5em;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.nets-feature {
    margin-bottom: 20px;
}

.nets-feature h3 {
    font-size: 1.3em;
    color: var(--black-color);
    margin-bottom: 10px;
}

.nets-feature p {
    color: #666;
    font-size: 1em;
    line-height: 1.6;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .nets-grid {
        grid-template-columns: 1fr;
    }

    .nets-image {
        margin-bottom: 30px;
    }
}

/* Free Visit Section */
.free-visit {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.free-visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.visit-info h2 {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.visit-info p {
    color: #666;
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 20px;
}

.visit-info ul {
    list-style: none;
    padding: 0;
}

.visit-info ul li {
    font-size: 1.1em;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.visit-form {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.visit-form .form-group {
    margin-bottom: 20px;
}

.visit-form label {
    display: block;
    font-size: 1em;
    color: var(--text-color);
    margin-bottom: 5px;
}

.visit-form input,
.visit-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
}

.visit-form textarea {
    resize: none;
    height: 100px;
}

.visit-form button {
    width: 100%;
    padding: 15px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
    cursor: pointer;
    transition: background 0.3s ease;
}

.visit-form button:hover {
    background: #d4a007;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .free-visit-grid {
        grid-template-columns: 1fr;
    }

    .visit-info {
        text-align: center;
    }
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    z-index: 999;
}

.floating-btn {
    position: fixed;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.floating-btn i {
    font-size: 24px;
    color: white;
}

.floating-btn .tooltip {
    position: absolute;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.call-btn {
    left: 20px;
    bottom: 40px;
    transform: rotate(90deg);
    background: #E4B109;
}

.call-btn .tooltip {
    left: 60px;
   
}

.whatsapp-btn {
    right: 20px;
    bottom: 40px;
    background: #25D366;
}

.whatsapp-btn .tooltip {
    right: 60px;
}

.floating-btn:hover {
    transform: scale(1.1);
    
}

.floating-btn:hover .tooltip {
    opacity: 1;
}

/* Responsive styles for floating buttons */
@media screen and (max-width: 768px) {
    .floating-btn {
        width: 45px;
        height: 45px;
    }
    
    .floating-btn i {
        font-size: 20px;
    }
    
    .call-btn {
        left: 15px;
        bottom: 80px;
    }
    
    .whatsapp-btn {
        right: 15px;
        bottom: 80px;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    background: url('../img/hero-1.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay */
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5em;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.hero-buttons .btn {
    padding: 15px 30px;
    font-size: 1em;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.primary-btn:hover {
    background: var(--secondary-color);
    color: black;
}

.secondary-btn {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.secondary-btn:hover {
    background: white;
    color: var(--primary-color);
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5em;
    }

    .hero-content p {
        font-size: 1em;
    }

    .hero-buttons .btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}

/* Vision and Mission Section */
.vision-mission {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.vision, .mission {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.vision h2, .mission h2 {
    font-size: 2em;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.vision p, .mission p {
    font-size: 1em;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.vision ul, .mission ul {
    list-style: none;
    padding: 0;
}

.vision ul li, .mission ul li {
    font-size: 1em;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .vision-mission-grid {
        grid-template-columns: 1fr;
    }
}

/* Product Section */
.product-section {
    padding: 60px 0;
    background-color: var(--light-bg);
    text-align: center;
}

.product-section .section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.product-card h3 {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.product-card .price {
    font-size: 1.2em;
    color: var(--secondary-color);
    font-weight: bold;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background-color: var(--light-color);
}

.faq-section .section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 40px;
    text-align: center;
}

.faq {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-10px);
}

.faq-item h3 {
    font-size: 1.3em;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 1em;
    color: #666;
    line-height: 1.6;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .product-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 576px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

/* Our Works Section */
.our-works {
    padding: 60px 0;
    background-color: var(--light-bg);
    text-align: center;
}

.our-works .section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.work-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.work-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.work-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.work-card h3 {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.work-card p {
    font-size: 1em;
    color: #666;
    line-height: 1.6;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .works-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 576px) {
    .works-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Us Section */
.contact-us {
    padding: 60px 0;
    background-color: var(--light-bg);
}

.contact-us .section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 40px;
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.contact-form, .contact-details {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form h3, .contact-details h3 {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-size: 1em;
    color: var(--text-color);
    margin-bottom: 5px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
}

.contact-form textarea {
    resize: none;
    height: 100px;
}

.contact-form button {
    width: 100%;
    padding: 15px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background: #d4a007;
}

.contact-details p {
    font-size: 1em;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.6;
}

.contact-details p i {
    color: var(--secondary-color);
    margin-right: 10px;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}