@charset "utf-8";
/* CSS Document */

        :root {
            --primary: #FF6B35; /* Orange */
            --secondary: #2E86AB; /* Blue */
            --light: #F8F9FA;
            --dark: #333333;
            --gray: #6C757D;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-weight: 600;
        }
        
        /* Header Styles */
        .top-bar {
            background-color: var(--secondary);
            color: white;
            padding: 8px 0;
            font-size: 0.9rem;
        }
        
        .top-bar a {
            color: white;
            text-decoration: none;
            margin-right: 15px;
        }
        
        .navbar {
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 10px 0;
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            flex-shrink: 0;
        }
        
        .logo {
            height: 50px;
            margin-right: 10px;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--secondary);
            margin: 0;
            white-space: nowrap;
        }
        
        .navbar-brand span {
            color: var(--primary);
        }
        
        .nav-link {
            font-weight: 500;
            color: var(--dark);
            margin: 0 8px;
            transition: color 0.3s;
            white-space: nowrap;
        }
        
        .nav-link:hover {
            color: var(--primary);
        }
        
        .dropdown-menu {
            border: none;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border-radius: 10px;
            padding: 10px;
        }
        
        .dropdown-item {
            padding: 8px 12px;
            border-radius: 5px;
            transition: all 0.3s;
        }
        
        .dropdown-item:hover {
            background-color: rgba(255, 107, 53, 0.1);
            color: var(--primary);
        }
        
        .btn-primary {
            background-color: var(--primary);
            border: none;
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .btn-primary:hover {
            background-color: #e55a2b;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
        }
        
        .btn-outline-primary {
            border: 2px solid var(--primary);
            color: var(--primary);
            padding: 6px 20px;
            border-radius: 30px;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .btn-outline-primary:hover {
            background-color: var(--primary);
            color: white;
            transform: translateY(-2px);
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, rgba(46, 134, 171, 0.9) 0%, rgba(255, 107, 53, 0.8) 100%);
		
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0;
            text-align: center;
        }
        
        .hero h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .hero p {
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto 30px;
        }
        
        /* Services Section */
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        

        .section-title h2 {
            font-size: 2.2rem;
            margin-bottom: 15px;
            color: var(--secondary);
        }
        
        .section-title p {
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto;
        }
        
        .service-card {
            border: none;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
            height: 100%;
            overflow: hidden;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .service-icon {
            width: 70px;
            height: 70px;
            background-color: rgba(255, 107, 53, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: var(--primary);
            font-size: 1.8rem;
        }
        
        .service-card h3 {
            color: var(--secondary);
            margin-bottom: 15px;
            font-size: 1.3rem;
        }
        
        /* Features Section */
        .feature-box {
            padding: 30px 25px;
            border-radius: 15px;
            background-color: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
            height: 100%;
        }
        
        .feature-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .feature-icon {
            width: 60px;
            height: 60px;
            background-color: rgba(46, 134, 171, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: var(--secondary);
            font-size: 1.5rem;
        }
        
        /* Testimonials */
        .testimonial-card {
            background-color: white;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            padding: 25px;
            margin: 15px 0;
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            color: var(--gray);
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            margin-right: 15px;
        }
        
        /* FAQ Section */
        .accordion-button {
            font-weight: 500;
            padding: 18px;
        }
        
        .accordion-button:not(.collapsed) {
            background-color: rgba(46, 134, 171, 0.05);
            color: var(--secondary);
        }
        
        .accordion-button:focus {
            box-shadow: none;
            border-color: rgba(46, 134, 171, 0.2);
        }
        
        /* Contact Form */
        .contact-form {
            background-color: white;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            padding: 35px;
        }
        
        .form-control {
            padding: 12px 15px;
            border-radius: 10px;
            border: 1px solid #e0e0e0;
            margin-bottom: 20px;
        }
        
        .form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 0.25rem rgba(255, 107, 53, 0.25);
        }
        
        /* Footer */
        footer {
            background-color: #2c3e50;
            color: white;
            padding: 60px 0 20px;
        }
        
        .footer-heading {
            font-size: 1.1rem;
            margin-bottom: 20px;
            color: white;
            font-weight: 600;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
            margin-bottom: 30px;
        }
        
        .footer-links li {
            margin-bottom: 8px;
        }
        
        .footer-links a {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.3s;
            font-size: 0.9rem;
        }
        
        .footer-links a:hover {
            color: var(--primary);
        }
        
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            margin-right: 8px;
            transition: all 0.3s;
        }
        
        .social-icons a:hover {
            background-color: var(--primary);
            transform: translateY(-3px);
        }
        
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            margin-top: 30px;
            text-align: center;
            color: #bdc3c7;
            font-size: 0.85rem;
        }
        
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .footer-logo-section {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .footer-logo-img {
            height: 35px;
            margin-right: 10px;
        }
        
        .footer-logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
        }
        
        .footer-logo-text span {
            color: var(--primary);
        }
        
        .footer-social {
            margin-bottom: 15px;
        }
        
        .footer-copyright {
            margin-bottom: 15px;
        }
        
        /* WhatsApp QR Code */
        .whatsapp-qr {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
            background-color: white;
            border-radius: 15px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
            padding: 12px;
            text-align: center;
            max-width: 160px;
            transition: all 0.3s;
        }
        
        .whatsapp-qr:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        .whatsapp-qr img {
            max-width: 100%;
            border-radius: 10px;
            margin-bottom: 8px;
        }
        
        .whatsapp-qr p {
            font-size: 0.75rem;
            margin: 0;
            color: var(--dark);
            font-weight: 500;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .navbar-collapse {
                margin-top: 15px;
            }
            
            .nav-link {
                margin: 5px 0;
            }
            
            .navbar-nav .btn {
                margin-top: 10px;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero {
                padding: 80px 0;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
        }
        
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .whatsapp-qr {
                max-width: 140px;
                bottom: 10px;
                right: 10px;
            }
            
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            
            .footer-logo-section {
                justify-content: center;
            }
            
            .footer-links {
                margin-bottom: 20px;
            }
        }
        
        @media (max-width: 576px) {
            .navbar-brand {
                font-size: 1.3rem;
            }
            
            .logo {
                height: 40px;
            }
            
            .top-bar {
                font-size: 0.8rem;
            }
            
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .hero {
                padding: 60px 0;
            }
            
            .section-title h2 {
                font-size: 1.6rem;
            }
            
            .contact-form {
                padding: 25px;
            }
        }
		 .stats-section {
      background-color: var(--primary);
      color: white;
      padding: 4rem 0;
    }

    .stat-item h3 {
      font-size: 2.8rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
    }

    .stat-item p {
      font-size: 1.1rem;
      opacity: 0.9;
    }

    /* Contact CTA */
    .contact-cta {
      background: linear-gradient(to right, var(--primary), #2c5282);
      color: white;
      padding: 5rem 0;
      text-align: center;
    }

    /* Footer */
    footer {
      background-color: var(--dark);
      color: #adb5bd;
      padding: 3rem 0 1.5rem;
    }

    .footer-logo {
      height: 40px;
      margin-bottom: 1rem;
    }

    .footer-links h5 {
      color: white;
      margin-bottom: 1.25rem;
      font-size: 1.1rem;
    }

    .footer-links a {
      color: #adb5bd;
      text-decoration: none;
      display: block;
      margin-bottom: 0.5rem;
      transition: color 0.2s;
    }

    .footer-links a:hover {
      color: white;
    }

    .social-icons a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      background: #343a40;
      color: white;
      border-radius: 50%;
      margin-right: 8px;
      text-decoration: none;
      transition: background 0.3s;
    }

    .social-icons a:hover {
      background: var(--secondary);
    }

    .copyright {
      border-top: 1px solid #343a40;
      padding-top: 1.5rem;
      margin-top: 2rem;
      font-size: 0.9rem;
    }

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

      .hero-content p {
        font-size: 1.1rem;
      }

      .stats-section, .contact-cta {
        padding: 3rem 0;
      }
    }
.img-responsive{
	display: block;
	max-width: 100%;
	height: auto;
}
.back-cor-orange {
	background-color: #FF6600;
}
.quotegirl {
	height: 230px;
	padding: 18px;
	color: #FFFFFF;
	font-family: Georgia, "Times New Roman", Times, serif;
}

.quotegirl h3 {
	height: 18px;
}

@media (min-width:768px) {
	.quotegirl p {
		width: 50%;
		margin: 0 auto;
	}

	.quotegirl {
		background-image: url(../freightimg/quotegirl.png);
		background-repeat: no-repeat;
		background-position: right;
	}
}
.quote03 a {
	width: 180px;
	font-size: 18px;
	color: #FFFFFF;
	background-color: #FF6600;
	padding: 16px;
	border-radius: 8px;
	border: thin solid #FFFFFF;
}

.quote03 a:hover {
	background-color: #FFFFFF;
	color: #FF6600;
}

.quote03 {
	clear: both;
	padding-top: 38px;
}