/* General Navbar Styling */
.navbar {
    background-color: #fff; /* White background for the navbar */
   position: fixed;
   width: 100%;
   z-index: 999;
   margin-top: 0;
}

/* Logo styling */
.navbar-brand img {
    height: 100px; /* Adjust the logo size */
    width: auto;
}

/* Navbar Link Styling */
.navbar-nav .nav-link {
    font-size: 16px;
    font-weight: 500;
    color: #333; /* Default text color */
    
    letter-spacing: 1px; /* Slight letter-spacing */
    padding: 12px 18px; /* Spacing inside the link */
    transition: all 0.3s ease; /* Smooth hover transition */
}

/* Navbar Hover Effect */
.navbar-nav .nav-link:hover {
    color: #fff; /* Change text color on hover */
    background-color:#01adf2; /* Change background to blue on hover */
    border-radius: px; /* Rounded corners for the hover effect */
}

/* Dropdown Styling */
.nav-item.dropdown .nav-link {
    font-size: 14px;
    color: #333; /* Default text color for dropdown */
    font-size: 16px;
    font-weight: 500;
}

.nav-item.dropdown :hover {
    color: #fff;
}

/* Dropdown Menu */
.dropdown-menu {
    border-radius: px; /* Rounded corners for dropdown */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1); /* Subtle shadow for dropdown */
}

/* Dropdown Item Styling */
.dropdown-item {
    font-size: 15px;
    color: #333; /* Default color for dropdown items */
    padding: 12px 20px; /* Padding inside dropdown items */
    transition: background-color 0.3s ease; /* Smooth transition for background */
}


     /* Section Header */
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 40px;
            color: #333;
        }

        .theme {
        font-family: 'Poppins', sans-serif;
        background: #013c72;
        color: #ffff;
    }
    .theme p {           
        color: #ffff;
    }
    .theme ul {           
        color: #ffff;
    }

    .theme h3 {           
        color: #ffff;
    }

        /* Product Cards */
        .product-card {
            border-radius: 15px;
            overflow: hidden;
            background: #fff;
            transition: all 0.3s ease-in-out;
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
            text-align: center;
            padding: 20px;
        }

        .product-card img {
            border-radius: 10px;
            transition: 0.3s;
            height: 200px;
            object-fit: cover;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2);
        }

        .product-card:hover img {
            transform: scale(1.05);
        }

        .card-title {
            font-size: 1.3rem;
            font-weight: bold;
            margin-top: 15px;
        }

        .btn-primary {
            background: linear-gradient(45deg, #ff8a00, #e52e71);
            border: none;
            padding: 10px 15px;
            border-radius: 20px;
            transition: 0.3s;
        }

        .btn-primary:hover {
            background: linear-gradient(45deg, #e52e71, #ff8a00);
        }
            .high {
           /* background: linear-gradient(45deg, #012a4a, #00509d);*/
            color: white;
            padding: 80px 20px;
            text-align: center;
        }

        h1 {
            font-size: 2.5rem;
            font-weight: bold;
        }

        p {
            font-size: 1.1rem;
            line-height: 1.7;
        }

        /* Video Container */
        .video-container {
            position: relative;
            width: 100%;
            padding-top: 56.25%; /* 16:9 Aspect Ratio */
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
        }

        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

          /* For mobile screens (less than 576px) */
    @media (max-width: 576px) {
        .founder img {
            max-width: 90%; /* Ensure the image takes up most of the screen on small devices */
        }

        .founder p,
        .founder h1 {
            font-size: 1.1em; /* Reduce font size for mobile */
        }

        .founder .btn {
            font-size: 1em;
            padding: 12px 24px; /* Make the button slightly smaller for mobile */
        }

        .founder .text-warning {
            font-size: 1.4em; /* Reduce font size for better readability on mobile */
        }

        .founder .text-light {
            font-size: 1em; /* Reduce font size for better readability on mobile */
        }
    }
        .founder {
            overflow: hidden;
        }

    /* For tablets (from 576px to 768px) */
    @media (min-width: 576px) and (max-width: 768px) {
        .founder img {
            max-width: 80%;
        }

        .founder p,
        .founder h1 {
            font-size: 1.3em;
        }

        .founder .btn {
            font-size: 1.2em;
            padding: 14px 28px;
        }
    }

    /* For large screens (larger than 768px) */
    @media (min-width: 769px) {
        .founder img {
            max-width: 80%;
        }

        .founder p,
        .founder h1 {
            font-size: 1.5em; /* Larger font size for larger screens */
        }
    }

    /* Prevent Overflow */
body, html {
    overflow-x: hidden;
}

/* Ensure images fit within their containers */
img {
    max-width: 100%;
    height: auto;
}

/* Box-sizing to include padding and borders within element's total size */
*,
*::before,
*::after {
    box-sizing: border-box;
}

        /* Content Box */
        .content-box {
            background: white;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        }

       

/* Hover Effect for Dropdown Items */
.dropdown-item:hover {
    background-color: #01adf2; /* Change background color on hover */
    color: #fff; /* White text on hover */
}

/* Icon Styling for Dropdown */
.nav-item .fas {
    margin-right: 10px; /* Space between icon and text */
}

/* Fixed Header Styling */
        .navbar {
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            z-index: 1050;
            background: #ffffff;
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        }

        /* Proper menu alignment */
        .navbar-nav {
            display: flex;
            align-items: center;
        }

        .navbar-nav .nav-item {
            margin: 0 10px;
        }

        .dropdown-menu {
            min-width: 250px;
        }

        .dropdown-item i {
            margin-right: 10px;
        }

        /* Adjust logo size */
        .logo {
            height: 50px;
        }


        /* Fixing body padding so content doesn't go under navbar */
        body {
            padding-top: 80px;
            
        }
/* Mobile View Adjustments */
@media (max-width: 768px) {
    .navbar {
        padding: 10px 20px;
    }

    .navbar-nav {
        text-align: center;
    }

    .navbar-nav .nav-link {
        font-size: 14px;
        padding: 10px;
    }
}


.footer {
    color: #fff; /* Change text color on hover */
    background-color: #016a9a; /* Change background to blue on hover */
}




/* Container and Layout */
.container-fluid {
    padding: 0;
}

.row {
    margin: 0;
}

/* Main Content */
.animated-content {
    padding: 30px;
   
    transition: transform 0.3s ease-in-out;
}

.animated-content:hover {
    transform: translateY(-10px);
}

/* Heading */
h4 {
    font-size: 28px;
    font-weight: bold;
    color: #007BFF;
    text-align: left;
    margin-bottom: 20px;
}

.para {
    font-size: 16px;
    line-height: 1.5;
    color: #1c1111;
}

.para i {
    color: #007BFF;
    margin-right: 10px;
}

/* Button */
button.the2 {
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    padding: 12px 30px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button.the2:hover {
    background-color: #0056b3;
}

/* Heading with Gradient Effect */
h1, h3, h2 {
  
    font-weight: bold;
    font-size: 28px;
}

/* Paragraph Styling for Better Readability */
p.para {
    font-size: 18px;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

/* Bullet Points (Theme Circle) */
.theme {
    color: #007bff; /* Blue */
    margin-right: 10px;
}

/* Change Color on Hover */
p.para:hover .theme {
    color: #ff4d4d; /* Red on Hover */
}

/* Button Styling */
.the2 {
    background: linear-gradient(90deg, #007bff, #6610f2);
    color: white;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
    border: none;
}

/* Button Hover Effect */
.the2:hover {
    transform: scale(1.1);
    box-shadow: 0px 4px 10px rgba(0, 123, 255, 0.5);
    background: linear-gradient(90deg, #6610f2, #007bff);
}


/* Carousel */
.carousel {
    margin-top: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.carousel-inner img {
    transition: transform 0.4s ease-in-out;
}

.carousel-inner img:hover {
    transform: scale(1.1);
}

/* Social Icons */
.social-icons-container {
    position: fixed;
    top: 70%;
    right: 0;
    transform: translateY(-50%);
    text-align: center;
}

.social-icon {
    /*background-color: #fff;*/
   /* padding: 10px;
    border-radius: 50%;*/
    margin-bottom: 15px;
   /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);*/
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
    animation: upDown 1.5s infinite alternate ease-in-out;
}
@keyframes upDown {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

.social-icon:hover {
    transform: scale(1.2);
}

.social-icon i {
    color: #333;
}

/* Vertical Line */
.vertical-line {
    width: 2px;
    height: 100px;
    background-color: #33a9e5;
     animation: upDown 1.5s infinite alternate ease-in-out;
}

/* Facebook Icon - Blue */
.facebook i {
    color: #fff; /* Facebook blue */
}

/* Instagram Icon - Gradient */
.instagram i {
    color: #fff;
}

/* Twitter Icon - Blue */
.youtube i {
    color: #fff; /* Twitter blue */
}

/* LinkedIn Icon - Blue */
.linkedin i {
    color: #fff; /* LinkedIn blue */
}

/* Scroll Text */
.Ver {
    font-size: 18px;
    color: #007BFF;
    font-weight: bold;
    letter-spacing: 2px;
    cursor: pointer;
    animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.5;
    }
}

/* Media Queries */
@media (max-width: 991px) {
    .col-md-5 {
        width: 100%;
        padding: 15px;
    }
}

@media (max-width: 767px) {
    h4 {
        font-size: 24px;
    }

    .para {
        font-size: 14px;
    }

    .carousel-inner img {
        width: 100%;
    }

    .social-icons-container {
        display: none;
    }
}



/* Card Container Styling */
.card-custom {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-custom:hover {
    transform: translateY(-10px);
    box-shadow: 0px 20px 50px rgba(0, 0, 0, 0.2);
}

/* Card Image Styling */
.card-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.card-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.5s ease;
}

/* Header Displayed on Image */
.card-header {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    z-index: 1;
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* Card Overlay (Content hidden by default) */
.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    border-radius: 10px;
}

/* Hide header and display content on hover */
.card-custom:hover .card-header {
    opacity: 0; /* Hide the header on hover */
}

.card-custom:hover .card-overlay {
    opacity: 1;
    visibility: visible;
}

.card-overlay h4 {
    font-size: 1.8em;
    margin-bottom: 10px;
    font-weight: bold;
}

.card-description-text {
    font-size: 1.2em;
    line-height: 1.6;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

/* Display description text on hover */
.card-custom:hover .card-description-text {
    opacity: 1;
}

/* Founder Section */
.founder-section {
    background-color: #2c3e50;
    color: white;
    padding: 50px 0;
    border-radius: 10px;
}

.founder-section img {
    border-radius: 10px;
    max-width: 100%;
    height: auto;
}

/* Animations */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

[data-aos="fade-up"] {
    animation: fadeInUp 1s ease-out forwards;
}

[data-aos="flip-left"] {
    animation: flipInX 1s ease-out forwards;
}

@keyframes flipInX {
    0% {
        transform: rotateX(90deg);
        opacity: 0;
    }
    100% {
        transform: rotateX(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .col-sm-4, .col-md-3 {
        flex: 0 0 48%;
        max-width: 48%;
    }
}

@media (max-width: 768px) {
    .col-sm-4, .col-md-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}


/* Main Container Styling */
.container.high {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 20px 50px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

/* Video Container */
.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
    border-radius: 10px;
}

/* Content Section */
.content-box {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
}

.content-box p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #333;
}

.content-box p strong {
    color: #007bff;
}

/* Text Styling */
.text-muted {
    color: #6c757d;
}

/* Responsive Design */
@media (max-width: 768px) {
    .col-12.col-sm-6 {
        margin-bottom: 20px;
    }

    .video-container iframe {
        width: 100%;
        height: 250px;
    }

    .content-box {
        padding: 15px;
    }
}

.founder {
    height: auto;
    width: auto;
}

/* Footer Container Styling */
.footer {
  background: #1e2026 url(https://smartxpose.com/images/footer-bg.jpg) top center repeat-x;
  color: #bbb;
  padding: 0px 0;
  font-family: 'Arial', sans-serif;
}
.social-icons-container a {text-decoration:none !important;}
/* Footer Sections */
.footer h3 {
  color: #fff;
  font-size: 1.8em;
  margin-bottom: 20px;
}

.footer p {
  color: #ccc;
  font-size: 1em;
}

.footer blockquote {
  font-style: italic;
  color: #ddd;
  margin: 0;
}

/* Logo and Quote Section */
.footer img {
  width: 150px;
  margin-bottom: 15px;
}
/* Custom Navbar */
.custom-navbar {
    background: linear-gradient(45deg, #012a4a, #00509d);
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    padding: 15px;
}

.custom-navbar .nav-link {
    color: white !important;
    font-size: 1.1em;
    font-weight: 600;
    transition: color 0.3s ease-in-out;
}

.custom-navbar .nav-link:hover {
    color: #FFD700 !important;
}

/* Dropdown Menu Animation */
.animate-dropdown {
    animation: fadeIn 0.5s ease-in-out;
}

/* Social Icons Sidebar */
.social-icons-container {
    position: fixed;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: white;
    font-size: 1.5em;
    transition: all 0.3s ease-in-out;
}

.facebook { background: #1877F2; }
.instagram { background: #E1306C; }
.youtube { background: #FF0000; }
.linkedin { background: #0077B5; }

.social-icon:hover {
    transform: scale(1.1);
    box-shadow: 0px 5px 15px rgba(255, 255, 255, 0.3);
}

/* Contact Information Section */
.footer .d-flex {
  margin-bottom: 15px;
}

.footer i {
  color: #00bcd4;
  
}

.footer .mb-0 {
  color: #fff;
  font-size: 1em;
}

/* Quick Links Section */
.footer ul {
  padding-left: 0;
}

.footer ul li {
  margin: 10px 0;
}

.footer ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1em;
}

.footer ul li a:hover {
  color: #fff;
  text-decoration: none;
}

/* Footer Bottom Section */
.footer .row {
  margin-top: 20px;
}

.footer .footer-bottom {
  font-size: 0.9em;
  color: #aaa;
}

.footer .footer-bottom span {
  color: red;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .footer h3 {
    font-size: 1.5em;
  }

  .footer .col-12.col-sm-6 {
    margin-bottom: 20px;
  }

  .footer ul li a {
    font-size: 1em;
  }

  .footer .mb-0 {
    font-size: 0.9em;
  }
}

/* Category Section Styling */
.services-list {
    padding: 20px;
    background-color: #f7f7f7;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.services-list h5 {
    font-size: 1.6em;
    color: #007bff;
    font-weight: bold;
    margin-bottom: 30px;
}

.category-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.category-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.category-card h6 {
    font-size: 1.2em;
    color: #333;
    margin-bottom: 10px;
}

.category-card p {
    font-size: 1em;
    color: #555;
}

.category-card i {
    color: #007bff;
    margin-right: 10px;
    font-size: 1.5em;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .category-container {
        grid-template-columns: 1fr;
    }

    .category-card {
        padding: 15px;
    }
}


/* Left Column (Image) Styling */
.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

/* Hover Effect for Image */
.image-container:hover {
    transform: scale(1.05);
    box-shadow: 0px 15px 40px rgba(0, 0, 0, 0.2);
}

/* Right Column (Content) Styling */
.text-content {
    padding-left: 30px;
    padding-right: 30px;
    background: linear-gradient(135deg, #e9ecef, #f8f9fa);
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 40px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

h2 {
    font-size: 2.8em;
    color: #333;
    font-weight: 700;
    letter-spacing: 1px;
}

h4 {
    font-size: 1.5em;
    color: #fff;
    font-weight: 300;
    margin-bottom: 30px;
    text-align: center;
}

.description {
    font-size: 1.2em;
    color: #fff;
    line-height: 1.8;
    margin-bottom: 30px;
}

.services {
    list-style: none;
    padding-left: 0;
    font-size: 1.1em;
}

.services li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
    color: #495057;
    line-height: 1.6;
}

.services li .icon {
    position: absolute;
    left: 10px;
    top: 3px;
    color: #28a745;
    font-size: 1.3em;
}

/* Hover Effect for Text Content */
.text-content:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .row {
       
        text-align: center;
    }

    .text-content {
        padding-left: 20px;
        padding-right: 20px;
    }

    h2 {
        font-size: 2.2em;
    }

    h4 {
        font-size: 1.3em;
    }

    .services li {
        font-size: 1em;
    }

    .services li .icon {
        font-size: 1.2em;
    }
}


/* Web Development Page Styles */
.service-title {
    font-size: 2.5em;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.service-description {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 30px;
}

.category-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    padding: 20px;
}

.category-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.category-card h6 {
    font-size: 1.2em;
    color: #2a2a2a;
    font-weight: 600;
}

.category-card p {
    font-size: 1em;
    color: #666;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.category-card i {
    font-size: 1.5em;
    color:#01adf2;
    margin-right: 10px;
}

.category-card h6 i {
    color: #01adf2; /* Custom colors for each service */
}

/* Service section responsive styling */
@media (max-width: 767px) {
    .service-title {
        font-size: 2em;
    }

    .service-description {
        font-size: 1em;
    }

    .category-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}



/*Productss Section Header */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h1, .section-header h2 {
    font-size: 2.5em;
    color: #2c3e50;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1em;
    color: #7f8c8d;
}

/* Product Abstract */
.product-abstract {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.product-image img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
}

.product-description {
    font-size: 1.1em;
    color: #7f8c8d;
}

/* Industry Cards */
.industry-cards {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.industry-card {
    background-color: #ffffff;
    padding: 30px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    flex: 1;
}

.industry-card i {
    font-size: 3em;
    color: #3498db;
    margin-bottom: 20px;
}

.industry-card h3 {
    font-size: 1.5em;
    color: #34495e;
    margin-bottom: 15px;
}

.industry-card p {
    font-size: 1em;
    color: #7f8c8d;
}

/* Benefit Cards */
.benefit-cards {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.benefit-card {
    background-color: #ffffff;
    padding: 30px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    flex: 1;
}

.benefit-card i {
    font-size: 3em;
    color: #e74c3c;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.5em;
    color: #34495e;
    margin-bottom: 15px;
}

.benefit-card p {
    font-size: 1em;
    color: #7f8c8d;
}

/* Call to Action */
.cta {
    background-color: #2c3e50;
    color: #fff;
    padding: 40px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.cta h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #fff;
}

.cta p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.cta-button {
    padding: 15px 30px;
    background-color: #e74c3c;
    color: #fff;
    font-size: 1.2em;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #c0392b;
}


/* General Layout */
.contact-info {
    text-align: center;
    margin-bottom: 30px;
}

.contact-info h3 {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.info-box {
    padding: 20px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 10px;
    transition: transform 0.3s ease;
}

.info-box i {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 10px;
}

.info-box p {
    font-size: 1.1rem;
    color: #333;
}

.info-box:hover {
    transform: translateY(-10px);
}

/* Contact Form Section */
.contact-section h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.contact-section p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 30px;
}

/* Form Elements */
.contact-form {
    display: flex;
    flex-direction: column;
}

.contact-form .form-row {
    margin-bottom: 20px;
}

.contact-form label {
    font-size: 1rem;
    color: #555;
    margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 100%;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form .submit-btn {
    padding: 12px 20px;
    background-color: #007bff;
    color: #fff;
    font-size: 1.1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form .submit-btn:hover {
    background-color: #0056b3;
}

/* Map Section */
.map-section {
    padding: 20px;
    text-align: center;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

/* Flexbox Layout */
.row {
    display: flex;
    flex-wrap: wrap;
}

.row > .col-md-4, .col-md-6 {
    display: flex;
    flex-direction: column;
}

.d-flex {
    display: flex;
   
}

.flex-column {
    flex-direction: column;
}

.align-items-stretch {
    align-items: stretch;
}

@media (max-width: 768px) {
    .info-box {
        flex: 1 1 100%;
    }

    .contact-section,
    .map-section {
        flex: 1 1 100%;
    }
}




/* Section Header Styling */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h1, .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
}

.section-header p {
    font-size: 1.1rem;
    color: #777;
    max-width: 800px;
    margin: 0 auto;
}

/* Product Content */
.product-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.product-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    max-height: 400px;
    object-fit: cover;
}

.product-description {
    max-width: 100%;
    padding: 0 30px;
}

.product-description h3 {
    font-size: 2rem;
    color: #333;
    font-weight: 600;
    margin-bottom: 20px;
}

.product-description p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    text-align: justify;
}

/* Industry Benefits */
.industry-benefits .benefit-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.industry-benefits .benefit-item {
    width: 48%;
    background: #fff;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.industry-benefits .benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.industry-benefits .benefit-item h4 {
    font-size: 1.6rem;
    color: #333;
    font-weight: 600;
    margin-bottom: 15px;
}

.industry-benefits .benefit-item ul {
    list-style: none;
    padding: 0;
}

.industry-benefits .benefit-item ul li {
    font-size: 1rem;
    color: #555;
    margin-bottom: 8px;
}

/* Features Section */
.features .feature-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.features .feature-item {
    width: 48%;
    background: #fff;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.features .feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.features .feature-item h4 {
    font-size: 1.6rem;
    color: #333;
    font-weight: 600;
    margin-bottom: 15px;
}

.features .feature-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* CTA Section */
#cta {
    background-color: #007bff;
    color: white;
    text-align: center;
    padding: 60px 20px;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

#cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

#cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #f1f1f1;
}

#cta .cta-button {
    background-color: #f8f9fa;
    color: #007bff;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

#cta .cta-button:hover {
    background-color: #007bff;
    color: white;
    transform: scale(1.05);
}

/* Mobile Responsiveness */
@media (max-width: 767px) {
    .product-content {
        flex-direction: column;
        text-align: center;
    }

    .product-description {
        max-width: 100%;
        padding: 0;
        margin-top: 30px;
    }

    .industry-benefits .benefit-item, .features .feature-item {
        width: 100%;
    }

    #cta h2 {
        font-size: 2rem;
    }

    #cta p {
        font-size: 1rem;
    }
}



/* Hero Section */


.hero {
    background-color: #007bff;
    color: #fff;
    padding: 40px;
    text-align: center;
}

.hero .cta-button {
    background-color: #fff;
    color: #007bff;
    padding: 15px 30px;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 5px;
}

.content-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Course Overview */
.course-overview {
    padding: 40px 0;
    background-color: #fff;
    text-align: center;
}

.course-overview .section-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.course-overview p {
    font-size: 1.1rem;
    color: #555;
}

/* Course Modules */
.course-modules {
    background-color: #f8f8f8;
    padding: 40px 0;
}

.course-modules .section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.module-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-around;
}

/* Module Card */
.module-card {
    width: 300px;
    height: auto;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s ease-in-out;
}

.module-card:hover {
    transform: translateY(-10px);
}

.module-card h3 {
    font-size: 1.3rem;
    color: #333;
}

.module-card ul {
    list-style: none;
    padding: 0;
}

.module-card ul li {
    margin: 10px 0;
}

.module-card ul li::before {
    content: "✅ ";
    color: #01adf2;
}

/* Key Benefits */
.key-benefits {
    background-color: #;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

.key-benefits .section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.benefit-cards {
    display: flex;
    justify-content: space-around;
    gap: 30px;
}

.benefit-card {
    width: 300px;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.benefit-card h3 {
    font-size: 1.4rem;
    color: #007bff;
}

.benefit-card p {
    font-size: 1.1rem;
    color: #333;
}

/* Call to Action */
.cta {
    background-color: #007bff;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.cta .cta-button {
    background-color: #fff;
    color: #007bff;
    padding: 15px 30px;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 5px;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
    font-size: 1rem;
}

/* Media Queries for Responsiveness */

/* Mobile Devices (up to 600px) */
@media (max-width: 600px) {
    .hero .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .course-overview .section-title,
    .course-modules .section-title,
    .key-benefits .section-title {
        font-size: 1.5rem;
    }

    .module-cards {
        flex-direction: column;
        gap: 15px;
    }

    .module-card {
        width: 100%;
        padding: 15px;
    }

    .benefit-cards {
        flex-direction: column;
        gap: 20px;
    }

    .benefit-card {
        width: 100%;
        padding: 15px;
    }

    .cta h2 {
        font-size: 1.5rem;
    }

    .cta .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* Tablet Devices (601px to 900px) */
@media (min-width: 601px) and (max-width: 900px) {
    .module-cards {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: space-between;
    }

    .module-card {
        width: 48%;
    }

    .benefit-cards {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .benefit-card {
        width: 48%;
    }

    .cta h2 {
        font-size: 1.8rem;
    }
}

/* Desktop Devices (901px and above) */
@media (min-width: 901px) {
    .module-card {
        width: 300px;
    }

    .benefit-cards {
        display: flex;
        justify-content: space-between;
    }

    .benefit-card {
        width: 30%;
    }

    .cta h2 {
        font-size: 2rem;
    }

    .cta .cta-button {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
}
 