/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    line-height: 1.6;
    color: #333;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px;
}
.header {
    background: #0056b3;
    color: #fff;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
}
.btn {
    display: inline-block;
    background: #ff6600;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin: 5px;
}
.hero {
    background: #f4f4f4;
    text-align: center;
    padding: 50px 20px;
}
.products {
    background: #fff;
    padding: 50px 20px;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.contact {
    background: #f4f4f4;
    padding: 50px 20px;
}
.footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

.footer-world-class {
    background: linear-gradient(135deg, #0056b3, #003d7a);
    color: #fff;
    padding: 50px 20px;
    text-align: center;
}

.footer-world-class .footer-header h2 {
    font-size: 28px;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffcc00;
}

.footer-world-class .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-world-class .footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-world-class .footer-column h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #ffcc00;
}

.footer-world-class .footer-column p {
    font-size: 16px;
    line-height: 1.8;
}

.footer-world-class .footer-column a {
    text-decoration: none;
    color:#fff;
}

.footer-world-class .footer-column a:hover {
    text-decoration: underline;
}

.footer-world-class .btn {
    display: inline-block;
    background: #ffcc00;
    color: #0056b3;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.footer-world-class .btn:hover {
    background: #ff9900;
    color: #fff;
}

.footer-world-class .footer-bottom {
    margin-top: 30px;
    font-size: 14px;
    border-top: 1px solid #fff;
    padding-top: 20px;
}


.footer-world-class .footer-services {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
    font-size: 16px;
    line-height: 1.8;
}

.footer-world-class .footer-services li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.footer-world-class .footer-services li::before {
    display: none;
}

.footer-world-class .footer-services li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #ffcc00;
    font-size: 18px;
    font-weight: bold;
}

.about {
    background: #f9f9f9;
    padding: 50px 20px;
    color: #333;
    text-align: center;
}

.about-header h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #0056b3;
}

.about-header p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    font-style: italic;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.about-text {
    flex: 1;
    max-width: 600px;
    text-align: left;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

.about-text ul {
    list-style: none;
    padding: 0;
}

.about-text ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.about-text ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #ff6600;
    font-size: 20px;
}

.about-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.about-bottom {
    margin-top: 30px;
}

.about-bottom h3 {
    font-size: 24px;
    color: #0056b3;
    margin-bottom: 15px;
}

.about-bottom p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    max-width: 800px;
    margin: 0 auto;
}

.products {
    background: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
}

.products-header h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #0056b3;
}

.products-header p {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.product-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.product {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1;
    max-width: 300px;
    text-align: left;
    margin: 0 auto;
}

.product:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.product-image img {
    width: 100%;
    display: block;
    height: auto;
}

.product-content {
    padding: 20px;
}

.product-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.product-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-content .btn {
    display: inline-block;
    background: #0056b3;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 5px;
    transition: background 0.3s ease;
    font-weight: bold;
}

.product-content .btn:hover {
    background: #003d7a;
}

.hero {
    background: linear-gradient(to right, #0056b3, #4a90e2);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #fff;
}

.hero p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta {
    margin-top: 20px;
}

.cta .btn {
    display: inline-block;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-primary {
    background: #ffcc00;
    color: #0056b3;
    margin-right: 15px;
}

.btn-primary:hover {
    background: #ffd633;
}

.btn-secondary {
    background: #ff
}

/* Header Styles */
.header {
    background-color: #0056b3;
    color: #fff;
    padding: 20px 0;
    border-bottom: 3px solid #ffcc00;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 20px;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
}

.contact-info {
    display: flex;
    gap: 10px;
}

.contact-info .btn {
    padding: 10px 15px;
    font-size: 14px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #ffcc00;
    color: #0056b3;
}

.btn-primary:hover {
    background-color: #ffd633;
    color: #004080;
}

.btn-secondary {
    background-color: #fff;
    color: #0056b3;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background-color: #f2f2f2;
    color: #004080;
}

/* Navigation Styles */
.nav {
    background-color: #003d7a;
    width: 100%;
    margin-top: 15px;
}

.nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 10px 0;
    margin: 0;
    gap: 30px;
}

.nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    padding: 5px 10px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.nav ul li a:hover {
    background-color: #ffcc00;
    color: #0056b3;
    border-radius: 5px;
}


/* mobile responsiveness*/

