@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Playwrite+IE+Guides&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Playwrite+IE+Guides&display=swap');

/* Global Styles */
:root {
    --primary-color: #001a40;
    /* Dark navy blue */
    --secondary-color: #e63e2e;
    /* Red accent color */
    --text-color: #333;
    --light-color: #fff;
    --gray-color: #f5f5f5;
    --dark-gray: #666;
    --border-color: #e1e1e1;
    --transition: all 0.3s ease;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.section-padding {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.section-header h2 span {
    color: var(--secondary-color);
}

.section-header p {
    font-size: 18px;
    color: var(--dark-gray);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 14px;
}

.primary-btn {
    background-color: var(--secondary-color);
    color: var(--light-color);
}

.primary-btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.secondary-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.secondary-btn:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
    transform: translateY(-3px);
}

/* Top Bar */
.top-bar {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.top-bar .contact-info .contact-info-item i.fas.fa-phone,
.top-bar .contact-info .contact-info-item i.fas.fa-envelope {
    color: var(--secondary-color);
}

.contact-info {
    display: flex;
    align-items: center;
}

.contact-info-item {
    margin-left: 20px;
    display: flex;
    align-items: center;
}

.contact-info-item i {
    margin-right: 8px;
}

/* Header Styles */
#header {
    background-color: var(--primary-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

#header.sticky {
    background-color: var(--light-color);
    box-shadow: var(--box-shadow);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.logo-img {
    height: 68px;
    width: auto;
    transition: transform 0.3s ease;
    max-height: 100%;
    cursor: pointer;
}

.logo-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    width: 68px;
    height: 68px;
    margin-right: 5px;
    transition: var(--transition);
}

#header.sticky .logo-container {
    background-color: transparent;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text h1 {
    font-size: 28px;
    font-weight: 700;
    color: var(--light-color);
    margin: 0;
    font-family: "Josefin Sans", sans-serif;
    letter-spacing: 0.5px;
}

.logo-text p {
    font-size: 16px;
    color: var(--secondary-color);
    margin: 0;
    font-family: 'Josefin Sans', sans-serif;
    letter-spacing: 1px;
}
#header.sticky .logo-text h1 {
    color: var(--primary-color);
}

.logo:hover .logo-text h1 {
    text-shadow: 0px 0px 1px rgba(255, 255, 255, 0.5);
     text-decoration: underline #e63e2e 1.5px;
}

#header.sticky .logo:hover .logo-text h1 {
    text-shadow: 0px 0px 1px rgba(0, 26, 64, 0.5);
    text-decoration: underline #e63e2e 1.5px;
}

.logo:hover .logo-img {
    transform: scale(1.1);
}


.navbar {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
}

.nav-item {
    margin-left: 30px;
    position: relative;
}

.nav-item a {
    font-weight: 650 !important;
    font-size: 16px;
    color: var(--light-color);
    padding: 10px 0;
    position: relative;
    font-family: "Open Sans", sans-serif;

}

#header.sticky .nav-item a {
    color: var(--primary-color);
    font-weight: 650 !important;
    font-family: "Open Sans", sans-serif;
}

.nav-item a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    bottom: 0;
    left: 0;
    transition: var(--transition);
}

.nav-item a:hover:after,
.nav-item.active a:after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #e63e2e;
    transition: var(--transition);
}

#header.sticky .bar {
    background-color: var(--primary-color);
}


/* Hero Section */
.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: var(--primary-color);
}

.hero-slider {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 26, 64, 0.7);
    z-index: 3;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--light-color);
    z-index: 4;
    width: 80%;
    max-width: 800px;
}

.slide-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.slide-content p {
    font-size: 20px;
    margin-bottom: 30px;
}

.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 5;
    padding: 0 30px;
    transform: translateY(-50%);
}

.prev-btn,
.next-btn {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--light-color);
    cursor: pointer;
    transition: var(--transition);
}

.prev-btn:hover,
.next-btn:hover {
    background-color: var(--secondary-color);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 5;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--light-color);
}

/* About Section */
.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 16px;
    color: var(--dark-gray);
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    width: 626px;
    height: 414px;
    object-fit: cover;
}

/* Services Section */
.services-section {
    background-color: var(--gray-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--light-color);
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    font-size: 28px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-card p {
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.read-more {
    color: var(--secondary-color);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.read-more i {
    margin-left: 5px;
    transition: var(--transition);
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Why Choose Us Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    box-shadow: var(--box-shadow);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.feature-card p {
    color: var(--dark-gray);
}

/* Testimonials Section */
.testimonials-section {
    background-image: url('../assect/Client testimonial paraloxx.jpg');
    background-size: 1920px 1080px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 26, 64, 0.85);
}

.testimonials-section .container {
    position: relative;
    z-index: 2;
}

.testimonials-section .section-header h2,
.testimonials-section .section-header p {
    color: var(--light-color);
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    height: 250px;
}

.testimonial-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.testimonial-item.active {
    opacity: 1;
}

.testimonial-content {
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    position: relative;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--light-color);
}

.testimonial-content:after {
    content: '\201D';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 60px;
    color: rgba(0, 26, 64, 0.1);
    font-family: serif;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.client-info h4 {
    color: var(--light-color);
}

.client-info p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

/* CTA Section */
.cta-section {
    background-color: var(--primary-color);
    padding: 80px 0;
    color: var(--light-color);
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background-color: #001530;
    color: var(--light-color);
    padding-top: 70px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-logo .logo-img {
    height: auto;
    max-height: 50px;
    width: auto;
    display: block;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.footer-logo-text h2 {
    font-size: 1.2em;
    font-weight: 700;
    color: var(--light-color);
    margin: 0;
    font-family: "Josefin Sans", sans-serif;
}

.footer-logo-text h4 {
    font-size: 14px;
    color: var(--secondary-color);
    margin: 0;
    font-family: "Josefin Sans", sans-serif;
}

.footer-column p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--secondary-color);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--light-color);
    padding-left: 5px;
}

.footer-column .contact-info {
    display: block;
    width: 100%;
}

.footer-column .contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
    word-break: break-word;
}

.footer-column .contact-info i {
    margin-right: 10px;
    color: var(--secondary-color);
    min-width: 16px;
    margin-top: 4px;
}

.footer-bottom {
    background-color: #001020;
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}
.developer-credit {
    display: inline-block;
    margin-left: 5px;
}

.developer-credit a {
    color: var(--secondary-color);
    transition: var(--transition);
}

.developer-credit a:hover {
    color: #fff;
    text-decoration: underline;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

/* About Page Specific Styles */

/* Page Banner */
.page-banner {
    position: relative;
    background-image: url('../assect/about page banner.jpg');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--light-color);
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 26, 64, 0.8);
}

.page-banner .container {
    position: relative;
    z-index: 2;
}

.page-banner h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
}

.breadcrumb a {
    color: var(--secondary-color);
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--light-color);
}

.breadcrumb span {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.7);
}

/* About Company Section */
.about-company-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-company-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    position: relative;
}

.about-company-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.about-company-image:hover img {
    transform: scale(1.05);
}

.about-company-text {
    flex: 1;
}

.section-header.left-align {
    text-align: left;
}

.about-company-text p {
    margin-bottom: 20px;
    color: var(--dark-gray);
    line-height: 1.8;
}

/* Mission Vision Section */
.mission-vision {
    background-color: var(--gray-color);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mission-card,
.vision-card,
.values-card {
    background-color: var(--light-color);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mission-card:hover,
.vision-card:hover,
.values-card:hover {
    transform: translateY(-10px);
}

.card-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
    font-size: 32px;
}

.mission-card h3,
.vision-card h3,
.values-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.mission-card p,
.vision-card p,
.values-card p {
    color: var(--dark-gray);
    line-height: 1.7;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    background-color: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.member-image img {
    width: 100px;
    height: 100px;
    overflow: hidden;
    transition: transform 0.5s ease;

}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-info {
    padding: 25px 20px;
    text-align: center;
}

.member-info h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.designation {
    color: var(--secondary-color);
    font-size: 14px;
    margin-bottom: 15px;
    display: block;
}

.member-info .social-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.member-info .social-icons a {
    width: 35px;
    height: 35px;
    background-color: var(--gray-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    transition: var(--transition);
}

.member-info .social-icons a:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

/* About Us Main Section */
.about-us-main {
    text-align: center;
    padding-bottom: 0;
}

.about-us-main h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 700;
}

.about-us-main p {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.about-us-content {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    color: var(--dark-gray);
}

.about-us-content p {
    margin-bottom: 20px;
    font-size: 16px;
    color: var(--dark-gray);
}

/* Process Section */
.process-section {
    text-align: center;
}

.process-image {
    max-width: 800px;
    margin: 0 auto;
    display: block;
    margin-top: 60px;
    border-radius: 20px;
}

/* Services Page Specific Styles */

/* Page Banner */
.page-banner1 {
    position: relative;
    height: 500px;
    overflow: hidden;
    background-color: var(--primary-color);
}

.banner-slider {
    position: relative;
    height: 100%;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 1;
}

.banner-slide.active {
    opacity: 1;
    z-index: 2;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 26, 64, 0.8);
    z-index: 3;
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--light-color);
    z-index: 4;
    width: 80%;
    max-width: 800px;
}

.banner-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.banner-content p {
    font-size: 18px;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
}

.banner-slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 5;
    padding: 0 30px;
    transform: translateY(-50%);
}

.banner-prev-btn,
.banner-next-btn {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--light-color);
    cursor: pointer;
    transition: var(--transition);
}

.banner-prev-btn:hover,
.banner-next-btn:hover {
    background-color: var(--secondary-color);
}

.banner-slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 5;
}

.banner-dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
}

.banner-dot.active {
    background-color: var(--light-color);
}

.page-banner1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 26, 64, 0.8);
}

.page-banner1 .container {
    position: relative;
    z-index: 2;
}

.page-banner1 h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    margin-top: 10px;
}

.breadcrumb a {
    color: var(--secondary-color);
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--light-color);
}

.breadcrumb span {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.7);
}

/* Services Main Section */
.services-main {
    text-align: center;
    padding-bottom: 40px;
}

.services-main h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 700;
}

.services-main p {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.services-main .container .description {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    color: var(--dark-gray);
}

/* Service Detail Section */
.service-detail {
    padding: 80px 0;
}

.service-detail:nth-child(odd) {
    background-color: var(--gray-color);
}

.service-detail-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.service-detail-content.reverse {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    position: relative;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.service-detail-image:hover img {
    transform: scale(1.05);
}

.service-detail-text {
    flex: 1;
}

.service-detail-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
}

.service-detail-text h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 3px;
    background-color: var(--secondary-color);
}

.service-detail-text p {
    margin-bottom: 20px;
    color: var(--dark-gray);
    line-height: 1.8;
}

.service-detail-text ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.service-detail-text ul li {
    margin-bottom: 10px;
    color: var(--dark-gray);
    position: relative;
    padding-left: 25px;
}

.service-detail-text ul li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--secondary-color);
}

/* Service Benefits Section */
.service-benefits {
    margin-top: 30px;
}

.service-benefits h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
}

.benefit-icon {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 18px;
    margin-top: 2px;
}

.benefit-text {
    flex: 1;
}

.benefit-text h5 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.benefit-text p {
    font-size: 14px;
    margin-bottom: 0;
}

/* Documents Page Specific Styles */

/* Page Banner */
.page-banner2 {
    position: relative;
    background-image: url('../assect/Document.jpg');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--light-color);
}

.page-banner2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 26, 64, 0.8);
}

.page-banner2 .container {
    position: relative;
    z-index: 2;
}

.page-banner2 h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
}

.breadcrumb a {
    color: var(--secondary-color);
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--light-color);
}

.breadcrumb span {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.7);
}

/* Documents Intro Section */
.documents-intro {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.documents-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--dark-gray);
}

/* Document Item Styles */
.document-item {
    margin-bottom: 80px;
    background-color: var(--light-color);
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.document-item:last-child {
    margin-bottom: 0;
}

.document-header {
    display: flex;
    align-items: center;
    padding: 25px 30px;
    background-color: var(--primary-color);
    color: var(--light-color);
}

.document-icon {
    font-size: 36px;
    margin-right: 20px;
    color: var(--secondary-color);
}

.document-title h3 {
    font-size: 24px;
    margin-bottom: 5px;
}

.document-title p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.document-content {
    padding: 30px;
}

.document-description {
    margin-bottom: 25px;
    line-height: 1.7;
    color: var(--dark-gray);
}

.document-viewer {
    width: 100%;
    height: 500px;
    border: 1px solid var(--border-color);
    margin-bottom: 25px;
    background-color: #f5f5f5;
}

.document-actions {
    display: flex;
    justify-content: flex-end;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 25px;
    background-color: var(--secondary-color);
    color: var(--light-color);
    border-radius: 5px;
    font-weight: 500;
    transition: var(--transition);
}

.download-btn i {
    margin-left: 10px;
}

.download-btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.registration-number {
    font-size: 18px;
    color: var(--primary-color);
    margin-top: 15px;
    padding: 10px;
    background-color: rgba(230, 62, 46, 0.05);
    border-left: 4px solid var(--secondary-color);
    display: inline-block;
}

.document-info {
    display: flex;
    align-items: flex-start;
    padding: 30px;
    background-color: var(--light-color);
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
    transition: var(--transition);
}

.document-info:last-child {
    margin-bottom: 0;
}

.document-info:hover {
    transform: translateY(-5px);
}

.document-info-icon {
    font-size: 40px;
    color: var(--secondary-color);
    margin-right: 25px;
    padding-top: 5px;
    min-width: 40px;
}

.document-info-content {
    flex: 1;
}

.document-info-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.document-info-content p {
    margin-bottom: 0;
    line-height: 1.7;
    color: var(--dark-gray);
}

/* Contact Page Specifice Styles */
.page-banner3 {
    position: relative;
    background-image: url('../assect/contact.jpg');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--light-color);
}

.page-banner3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 26, 64, 0.8);
}

.page-banner3 .container {
    position: relative;
    z-index: 2;
}

.page-banner3 h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.contact-section {
    padding: 80px 0;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/*layout for map and contact details side by side */
.contact-top-row {
    display: flex;
    gap: 30px;
    width: 100%;
}

.map-container {
    flex: 1;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-details {
    flex: 1;
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.office-info h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.office-info h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #ff5e14;
}

.office-info h4 {
    font-size: 18px;
    color: #ff5e14;
    margin-bottom: 10px;
}

.office-info p {
    font-size: 15px;
    color: #666;
    margin-bottom: 5px;
    line-height: 1.6;
}

.contact-item {
    margin-top: 15px;
    font-size: 15px;
    color: #666;
}

.contact-item span {
    font-weight: 600;
    color: #333;
    margin-right: 5px;
}

/* Contact form below */
.contact-form-container {
    width: 100%;
}

.contact-form {
    width: 100%;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    width: 100%;
    margin-bottom: 20px;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    color: #333;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #ff5e14;
    box-shadow: 0 0 5px rgba(255, 94, 20, 0.3);
    outline: none;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.file-upload {
    position: relative;
}

.file-upload label {
    display: inline-block;
    background-color: #f5f5f5;
    color: #333;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.file-upload label:hover {
    background-color: #e9e9e9;
}

.file-upload input[type="file"] {
    position: absolute;
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    z-index: -1;
}

.file-info {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
}

.checkbox-group label {
    font-size: 15px;
    color: #333;
}

.submit-btn {
    background-color: #ff5e14;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

.submit-btn:hover {
    background-color: #e04d0d;
}

.form-note {
    font-size: 14px;
    color: #666;
    margin-top: 15px;
}